html, body {
  color: #19423c;
  background-color: rgb(232, 232, 232);
  --green-dark: #19423c;
  --green-medium: rgb(24, 66, 59);
  --green-light: rgb(81, 135, 126);
  --white: rgb(232, 232, 232);
  --input-outline-color:rgb(81, 135, 126);
}

#home,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
}

#home.carousel-half {
  height: 50vh;
}

.carousel-half {
  height: 50vh !important;
}

.carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 992px) {
  #home,
  .carousel-inner,
  .carousel-item,
  .carousel-item.active {
    height: 100vh;
  }
  #home.carousel-half {
    height: 50vh;
  }
  .carousel-half .carousel-inner .carousel-item {
    height: 50vh;
  }
}
.navbar .nav-link {
  color: #fff !important;
  text-align: center;
}

.navbar {
  box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0);
  transition: all 0.15s ease-in-out;
}

.navbar-scrolled {
  background-color: rgba(25, 66, 60, 0.9);
  box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.25);
}

.btn-green {
  background: #19423c;
  color: rgb(232, 232, 232);
}

.card > .btn-green {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-green:hover {
  background: #27675e;
  color: rgb(232, 232, 232);
}

.btn-green:active {
  background: #2e796e !important;
  color: rgb(232, 232, 232);
}

.btn-contact {
  font-size: 1.25rem;
}

footer {
  background: #19423c;
  color: rgb(232, 232, 232);
}

.list-unstyled {
  margin-bottom: 0;
}

a.link {
  color: #3c9e90;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}

a.link:hover {
  color: #67a49a;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-decoration-line: underline;
  text-underline-offset: 5px;
}

.form-check-input[type=checkbox]:checked {
  background-image: none;
  background-color: rgb(81, 135, 126);
}

.form-check-input[type=checkbox]:checked:focus {
  background-color: rgb(81, 135, 126);
}

.form-check-input:checked:focus {
  border-color: rgb(81, 135, 126);
}

.form-check-input:checked:focus:before {
  box-shadow: 0px 0px 0px 13px rgb(81, 135, 126);
  transform: scale(1);
  transition: box-shadow 0.2s, transform 0.2s;
}

.form-check-input:checked {
  border-color: rgb(81, 135, 126);
}

.card {
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.013);
  transform-origin: 51% 51%;
}

.form-outline .form-control:focus ~ .form-label {
  color: rgb(81, 135, 126);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
  border-color: rgb(81, 135, 126);
  box-shadow: -1px 0 0 0 rgb(81, 135, 126), 0 1px 0 0 rgb(81, 135, 126), 0 -1px 0 0 rgb(81, 135, 126);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
  border-color: rgb(81, 135, 126);
  box-shadow: 1px 0 0 0 rgb(81, 135, 126), 0 -1px 0 0 rgb(81, 135, 126), 0 1px 0 0 rgb(81, 135, 126);
}

.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
  border-color: rgb(81, 135, 126);
  box-shadow: 0 1px 0 0 rgb(81, 135, 126);
  border-top: 1px solid rgba(0, 0, 0, 0);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: white;
  background-color: rgb(81, 135, 126);
}

.btn-outline-light:hover {
  color: #19423c;
}

.inactive {
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  mask-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}

.table {
  --mdb-table-bg: transparent;
}

.table-responsive td {
  vertical-align: middle;
  max-height: 150px;
}

.table-responsive td img {
  max-height: 150px;
}

.clickable-link {
  cursor: pointer;
}

.w-70 {
  width: 70%;
}

.invalid-feedback {
  margin-bottom: 2rem;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #19423c;
  opacity: 0;
}

.loader {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff rgba(0, 0, 0, 0);
  animation: l1 0.75s infinite;
}

#blur-target {
  position: relative;
}

.form-send {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  font-size: x-large;
}

@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}/*# sourceMappingURL=styles.css.map */