/*HEADER*/
nav.navbar.navbar-expand-lg.py-2 {
  box-shadow: 0px 0px 0px;
}

header {
  border-bottom: 1px solid #e2e8f0;
}

.header-sticky-cta {
  display: none !important;
}

header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
  background: transparent;
  will-change: transform, box-shadow, background-color;
}

/* Smooth sticky effect */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: none;
  transform: translateY(0);
  animation: headerSlideDown 0.4s ease forwards;
}

/* Smooth CTA show */
header.sticky .header-sticky-cta {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide CTA smoothly when not sticky */
.header-sticky-cta {
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Slide animation when header becomes sticky */
@keyframes headerSlideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* HEADER HOME PAGE */
.home-page header#site-header {
  position: fixed;
  top: 0;
  background: transparent !important;
}

.home-page header#site-header {
  border-bottom: 0px;
}

.home-page h6.logo-heading {
  color: #fff;
}
.home-page header.sticky h6.logo-heading {
  color: #06292b;
}
.home-page img.brand-logo {
  filter: brightness(0) invert(1) contrast(100%);
}

.home-page header.sticky img.brand-logo {
  filter: none;
}
.home-page nav.navbar.navbar-expand-lg.py-2 {
  background-color: #ffffff00 !important;
}

.home-page header.sticky nav.navbar.navbar-expand-lg.py-2 {
  background-color: #fff !important;
}

/*FOOTER CSS*/
.copyright-footer {
  background: #021f20;
}

.copyright-footer p {
  color: rgb(116, 165, 167);
  font-size: 14px;
  line-height: 14px;
}

.copyright-footer {
  padding: 13px 0px;
}

.footer-main {
  background-image: url("../images/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 50px;
  background-position: center;
  border-radius: 20px 20px 0px 0px;
}

.footer-menu-tittle {
  font-size: 24px !important;
  line-height: 34px !important;
  color: #4fd671 !important;
  font-family: "Instrument Sans", sans-serif !important;
  margin-bottom: 26px;
}

.footer-menu li a {
  font-size: 14px;
  font-family: "Inter";
  transition: 0.5s;
}

.footer-menu {
  padding: 0px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a:hover {
  text-decoration: underline !important;
}

footer .container {
  max-width: 1150px !important;
}

.footer-menu li {
  list-style: none;
}

.col-sm-6.col-md-3.footer-col-3 {
  padding-left: 80px;
}

.col-sm-6.col-md-3.footer-col-4 {
  padding-left: 100px;
}

/*FOOTER CTA*/
.footer-cta a {
  display: none;
  background-color: #f8d94d;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-family: "Inter";
  font-weight: 700;
  color: #0a0a0a;
  padding: 14px;
  text-decoration: none;
  position: fixed;
  bottom: 0;
}

.footer-cta a img {
  width: auto;
  padding-left: 14px;
}

@media (max-width: 767px) {
  .footer-cta a {
    display: block;
  }

  /*FOOTER MOBILE*/
  .footer-menu-tittle {
    font-size: 20px !important;
    line-height: 30px !important;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .col-sm-6.col-md-3.footer-col-3,
  .col-sm-6.col-md-3.footer-col-4,
  .col-sm-6.col-md-3.footer-col-1,
  .col-sm-6.col-md-3.footer-col-2 {
    padding: 0px;
  }

  .footer-main {
    padding: 50px 15px 36px;
  }

  .copyright-footer {
    padding-bottom: 80px;
    text-align: center;
    padding-top: 16px;
  }

  p.text-end {
    text-align: center !important;
    padding-top: 5px;
  }
}
