.brand-color {
  color: rgb(108, 140, 23);
}

.brand-color-bg {
  background-color: rgb(108, 140, 23);
}

.light-blue-color {
  color: rgb(226, 241, 245);
}

.light-blue-bg {
  background-color: rgb(226, 241, 245);
}

body {
  color: rgb(49, 54, 56);
  font-family: "Poppins", sans-serif;
}

.font-cookie {
  font-family: "Cookie", cursive;
}

/* Reusable layout helpers that complement Bootstrap classes. */
.lpkp-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lpkp-grid--2-md {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lpkp-flex {
  display: flex;
  gap: 1rem;
}

.lpkp-flex--stack-mobile {
  flex-direction: column;
}
@media (min-width: 768px) {
  .lpkp-flex--stack-mobile {
    flex-direction: row;
    align-items: center;
  }
}

.tiles .row > [class*=col-] > div {
  background-color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tiles .row > [class*=col-] > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

nav a {
  color: rgb(0, 88, 114);
  text-decoration: none;
}

header {
  backdrop-filter: blur(6px);
  color: rgb(49, 54, 56);
}
header .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
header .header-top-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  header .header-top-row {
    width: auto;
  }
}
header .mobile-main-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: none;
  border-radius: unset;
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1;
  background-color: transparent;
}
@media (min-width: 768px) {
  header .mobile-main-nav__toggle {
    display: none;
  }
}
header .mobile-main-nav__icon-wrap {
  position: relative;
  width: 2rem;
  height: 2rem;
}
header .mobile-main-nav__icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  transition: opacity 0.25s ease, transform 0.3s ease;
}
header .mobile-main-nav__icon--menu {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
header .mobile-main-nav__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}
header .mobile-main-nav__toggle[aria-expanded=true] .mobile-main-nav__icon--menu {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
header .mobile-main-nav__toggle[aria-expanded=true] .mobile-main-nav__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
header .mobile-main-nav__panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  width: 100%;
  min-width: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease, padding-top 0.25s ease, border-color 0.25s ease;
}
header .mobile-main-nav__panel.is-open {
  max-height: 22rem;
  opacity: 1;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top-color: rgba(49, 54, 56, 0.12);
  pointer-events: auto;
}
header .mobile-main-nav__panel .primary_custom_btn {
  align-self: flex-start;
}
@media (min-width: 768px) {
  header .mobile-main-nav__panel {
    display: none !important;
  }
}
header .desktop-main-navs {
  display: none !important;
}
@media (min-width: 768px) {
  header .desktop-main-navs {
    display: flex !important;
  }
}
header .site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgb(49, 54, 56);
}
header .site-brand .site-brand__logo {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}
header .site-brand .site-brand__wordmark {
  line-height: 1;
}
header .site-brand .site-brand__wordmark .site-brand__name {
  font-size: 2.25rem;
  font-weight: 600;
}
header .site-brand .site-brand__wordmark .site-brand__script {
  font-size: 3.45rem;
}
header .site-nav a {
  color: inherit;
  font-weight: 500;
}
header .site-nav a:hover,
header .site-nav a:focus-visible {
  color: #0d6efd;
}

footer {
  background: #f8f9fa;
}
@media (min-width: 768px) {
  footer {
    padding-top: 30px;
  }
}
footer nav a {
  position: relative;
  font-weight: 500;
}
footer nav a.is-active {
  font-weight: 700;
  color: #0d6efd;
}
footer nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: currentColor;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    align-items: center;
  }
}
footer .container a.corporate {
  display: flex;
  flex-direction: row;
  gap: 20px;
  text-decoration: none;
  color: rgb(0, 88, 114);
  align-items: center;
  margin: 25px auto 0 auto;
}
@media (min-width: 768px) {
  footer .container a.corporate {
    margin-top: -10px;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
footer .container a.corporate img {
  max-width: 150px;
}

.primary_custom_btn {
  display: inline-block;
  background-color: rgb(0, 133, 172) !important;
  border: 1px solid rgb(0, 133, 172);
  border-radius: 5px;
  padding: 10px;
  color: #FFFFFF !important;
  font-family: "Poppins";
  font-size: 1rem;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  -moz-box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  transition: transform 0.1s;
  text-decoration: none;
}
.primary_custom_btn:hover {
  transform: translateY(2px);
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #FFFFFF;
}

.hero-slider-shell {
  position: relative;
  padding: 1rem 0.75rem;
}
.hero-slider-shell:before, .hero-slider-shell:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero-slider-shell:before {
    width: 100%;
    height: 100%;
    right: -50px;
    top: -5px;
    transform: rotate(-5deg);
    z-index: 1;
    background-image: url("/assets/images/bg_light_green@x3.png");
  }
  .hero-slider-shell:after {
    width: 100%;
    height: 100%;
    right: -50px;
    bottom: 0;
    background-image: url("/assets/images/bg_green.png");
  }
}
.hero-slider-shell .hero-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: #e9ecef;
}
.hero-slider-shell .hero-slider .hero-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-fade 20s infinite;
}
.hero-slider-shell .hero-slider .hero-slider__img:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider-shell .hero-slider .hero-slider__img:nth-child(2) {
  animation-delay: 5s;
}
.hero-slider-shell .hero-slider .hero-slider__img:nth-child(3) {
  animation-delay: 10s;
}
.hero-slider-shell .hero-slider .hero-slider__img:nth-child(4) {
  animation-delay: 15s;
}

@keyframes hero-fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__img {
    animation: none;
  }
  .hero-slider__img:first-child {
    opacity: 1;
  }
}
#features {
  position: relative;
  background-color: rgb(225, 233, 204);
}
#features:before {
  content: "";
  position: absolute;
  background: url("../images/bg_light_green_full_width.png");
  width: 100%;
  height: 50px;
  top: -40px;
  display: block;
}
#features h2 {
  max-width: 22ch;
  margin-inline: auto;
}

@media (max-width: 767.98px) {
  #prices .prices-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0.25rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}
#prices .prices-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  #prices .prices-slide {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 576px) {
  #prices .prices-slide {
    max-width: 72%;
    flex-basis: 72%;
  }
}
@media (min-width: 768px) {
  #prices .prices-slide {
    max-width: 25%;
    flex-basis: 25%;
  }
}
#prices .prices-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  #prices .prices-slider-dots {
    margin-top: 1rem;
  }
}
#prices .prices-slider-dots__dot {
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(0, 88, 114, 0.3);
  transform: scale(1);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
#prices .prices-slider-dots__dot.is-active {
  background: rgba(0, 88, 114, 0.95);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(0, 88, 114, 0.28);
}
#prices .prices-slider-dots__dot:focus-visible {
  outline: 2px solid rgba(0, 88, 114, 0.5);
  outline-offset: 2px;
}

#request {
  background: white;
}
#request .request-mobile-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
#request .request-mobile-image__asset {
  height: 100%;
  width: 150%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #request {
    background-image: url(../images/bg_webform.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: rgb(108, 140, 23);
  }
  #request .form-wrapper {
    position: relative;
    min-height: 600px;
  }
  #request .form-wrapper .form-container {
    position: absolute;
    top: -25px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.08);
  }
}
#request form .form-control,
#request form .form-select {
  min-height: 44px;
}
#request form .btn {
  width: auto;
  display: inline-block;
  background-color: rgb(0, 133, 172) !important;
  border: 1px solid rgb(0, 133, 172);
  border-radius: 5px;
  padding: 10px;
  color: #FFFFFF !important;
  font-family: "Poppins";
  font-size: 1rem;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  -moz-box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  box-shadow: 0px 2px 0px 0px rgb(0, 88, 114);
  transition: transform 0.1s;
  text-decoration: none;
}
#request form .btn:hover {
  transform: translateY(2px);
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #FFFFFF;
}

/*# sourceMappingURL=main.css.map */
