/* Define CSS variables */
@import url('https://fonts.googleapis.com/css2?family=Dosis&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");

:root {
  
  --primary-color: rgb(33,37,41);
  --primary-color: #17570b;
}

.page__header {
  font-size: 1.7rem;
  margin-top: 25px;
}

.logo {
  display: inline-block;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  line-height: 25px;
  font-family: 'Dosis', sans-serif;
  color: var(--primary-color);
}

.logo__first {
  font-weight: bold;
  font-size: 25px;
}

.nav-item {
  background-color: #fff;
  color: #fff;
  padding: 5px 15px;
  margin: 0 5px;
}

.active > .nav-link {
  font-weight: bold;
}

.nav-link {
  color: #212529;
  font-family: georgia;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link:active {
  color: #212529;
  font-weight: bold;
}

.jumbotron {
  min-height: 150px;
  width: 100%;
  padding: 100px 0;
  background-image: url("../img/wallpaper3-large.jpg");
  background-size: cover;
  background-position: center;
  box-shadow:inset 0 0 0 2000px rgba(23, 87, 11, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.jumbotron__title {
  color: #fff;
  text-align: center;
  max-width: 90%;
}

.jumbotron__text {
  color: #fff;
  font-size: 1.2rem;
  max-width: 90%;
  text-align: center;
}


.boxes {
  margin: 35px 0;
}

.box {
  width: 90%;
  margin: 0 auto;
  border-radius: 50%;
  color: #000;
  text-align: center;
  opacity: 0.25;
}

.box:hover {
  opacity: .5;
  cursor: pointer;
}

.box img {
  width: 30%;
  margin-bottom: 5px;

}

.card > img {
  height: 200px;
}




.page__p {
  line-height: 200%;
}

.page__h2 {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 0;
}


.page__h3 {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 0;
  
}

.address__names {
  flex-direction: column;
}


.hr {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 5px;
  opacity: .18;
}

address {
  font-size: 1.2rem;;
}


.lead {
  max-width: 500px;;
  padding: 25px;
  /* border: 1px solid rgba(0,0,0,0.12); */
  /* box-shadow: 3px 5px 15px 4px rgba(0,0,0,0.12); */
  margin: 0 auto;
  background: #fff;

}

.lead__btn {
  border: 0;
  display: block;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  width: 100%;
  font-size: 1rem;
  padding: 10px;
  border-radius: 5px;
}

.lead__btn:hover, .lead__btn:active {
  opacity: 0.8;
}

.lead-header {
  text-align: center;
}


textarea.form-control {
  height: 100px;
}

#form-success, #form-error {
  display: none;
}

@media screen and (min-width: 800px) {

  .row-reverse {
    flex-direction: row-reverse;
  }


  .address__names {
    flex-direction: row;
  }


}