@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 30vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.jumbotron::after {
  content: "";
  background-color: rgba(0, 51, 21, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 30vw;
}

.jumbotron .title-font-size {
  position: relative;
  color: white;
  font-size: 3rem;
  z-index: 50;
  font-weight: 600;
  padding: 5px;
  text-shadow: 0 0 6px black;
}

.container {
  max-width: 100vw;
  color: white;
  padding: 0;
}

.max-w-100 {
  width: 100vw;
  max-width: 100vw;
}

.contact-tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-tabs-item {
  margin: 0px 1.5vw;
  border-radius: 25px;
  outline: none;
}

.contact-tabs-item-link {
  display: block;
  padding: 0.5vw 3vw;
  color: black;
  border: none;
  outline: none;
  background-color: inherit;
}

.contact-tabs-item-link:hover {
  cursor: pointer;
  text-decoration: none;
  color: white;
  background-color: rgba(39, 211, 91, 0.65);
}

.tab {
  max-width: 100vw;
}

.tab-content {
  display: none;
  padding: 5vh 10vw;
  color: black;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fadeEffect 0.5s;
          animation: fadeEffect 0.5s;
}

.tab-content p {
  margin: 0;
}

.active {
  background-color: #197449;
  color: white;
}

.description-tab-content {
  margin-bottom: 20px;
}

.google-maps {
  width: 100vw;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/*# sourceMappingURL=contact.css.map */