@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
        url('../fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Light.woff2') format('woff2'),
      url('../fonts/Antonio-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Regular.woff2') format('woff2'),
      url('../fonts/Antonio-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Bold.woff2') format('woff2'),
      url('../fonts/Antonio-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* Fonts */
:root {
  --font-default: "Inter";
  --font-primary: "Inter";
  --font-secondary: "Antonio";
}

/* Colors */
:root {
  --color-dark: #161416;
  --color-default: #706f6f;
  --color-light: #fbf1ce;
  --color-primary: #4c6749;
  --color-secondary: #052933;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
  transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

p {
  font-size: 15px;
}

.fw-black {
  font-weight: 900 !important;
}

.bg-cover {
  background-size: cover;
}
.bg-bottom {
  background-position: center bottom;
}

.btn-outline-custom {
  --bs-btn-color: #161616;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #4c6749;
  --bs-btn-hover-border-color: #4c6749;
  --bs-btn-focus-shadow-rgb: 255,193,7;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #4c6749;
  --bs-btn-active-border-color: #4c6749;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #4c6749;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #4c6749;
  --bs-gradient: none;
  font-weight: 500;
  font-size: 15px;
  
}

.btn-custom {
  --bs-btn-color: var(--color-secondary);
  --bs-btn-border-color: var(--color-secondary) !important;
  --bs-btn-hover-color: var(--color-light);
  --bs-btn-hover-bg: var(--color-secondary);
  --bs-btn-bg: var(--color-primary);
  --bs-btn-hover-border-color: var(--color-secondary);
  --bs-btn-focus-shadow-rgb: 255,193,7;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: var(--color-secondary);
  --bs-btn-active-border-color: var(--color-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--color-secondary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--color-secondary);
  --bs-gradient: none;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--color-secondary) !important;
  color: var(--color-light) !important;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-dark);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-dark);
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}





.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.header.sticked {
  position: fixed;
  background-color: #FFF;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}


.header .logo .logo-hrader {
  width: 150px;
  position: absolute;
  top: -8px;
  left: 0;
  transition: all 0.5s;
}


.not-header {
  transition: all 0.5s;
  height: 70px;
  background-color: #FFF;
  position: relative;
}
.not-header .logo .logo-hrader {
  width: 150px;
  position: absolute;
  top: -147px;
  left: 0;
  transition: all 0.5s;
}
.not-header.sticked  {
  transition: all 0.5s;
  height: 70px;
  background-color: #FFF;
  position: relative;
}
.not-header.sticked  .logo .logo-hrader {
  width: 150px;
  position: absolute;
  top: -147px;
  left: 0;
  transition: all 0.5s;
}

.header .logo:hover .logo-hrader {
  width: 150px;
  position: absolute;
  top: -8px;
  left: 0;
  transition: all 0.5s;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.header.sticked .logo .logo-hrader {
  width: 150px;
  position: absolute;
  top: -147px;
  left: 0;
  transition: all 0.5s;
}

.header.sticked .logo:hover .logo-hrader {
  width: 150px;
  position: absolute;
  top: -33px;
  left: 0;
  transition: all 0.5s;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}








/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 30px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-secondary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-secondary);
    opacity: 0.8;
    z-index: 9996;
  }
}















/*--------------------------------------------------------------
# Hero Section
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background-image: url(../img/bg_1.jpg);
  height: 100vh;
  background-position: center;
    background-size: cover;
}
.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,0.9) 100%);
}


.hero h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 75px;
  margin-bottom: 20px;
  color: #fff;
}

.hero h4 {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 0px;
  font-family: var(--font-primary);
  font-size: 24px;
  line-height: 28px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# SERVICIOS
--------------------------------------------------------------*/
.service-card i {
  font-size: 60px;
  color: var(--color-primary)
} 





/*--------------------------------------------------------------
# FAQS
@media (min-width: 1365px) {
  #faqs {
  background-attachment: fixed;
}
--------------------------------------------------------------*/

#faqs::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 100%);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  font-size: 14px;
  padding: 30px 0;
  background-color: var(--color-dark);
  color: var(--color-light);
}



.footer .credits {
  padding-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--color-dark);
}



.contact-list {
  display: flex;
  justify-content: end;
  align-items: center;
}
.contact-list li {
  margin-right: 10px;
  background-color: #FFF;
  padding: 5px 8px 3px;
  border-radius: 0;
}
.contact-list li:last-child {
  margin-right: 0px;
}
.contact-list li a{
  font-size: 16px;
}





.titulo-size {
  font-size: 54px;
}
.accordion-button {
  font-family: var(--font-primary) !important;
}


.init-background {
  height: 350px;
}
.item-for-slide .float-text, .cta-bg .float-text  {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
  text-align: end;
}









@media only screen and (max-width: 600px) {
  .header .logo .logo-hrader {
    width: 100px;
  }
  .header.sticked .logo .logo-hrader {
    width: 100px;
    top: -94px;
  }
  .header.sticked {
    height: 46px;
  }
  .hero h1 {
    font-size: 60px;
    line-height: 58px;
  }
  .hero h4 {
    font-size: 20px;
    line-height: 21px;
  }
  .titulo-size {
    font-size: 40px;
  }
  .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    color: #000;
  }
  .hero {
    height: 85vh;
    background-image: url(../img/bg_0.jpg);
  }
  .bg-bottom {
    background-position: center bottom;
  }
}






/*WHATSAPP*/

.DirectWppContact {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 9999!important;
}

.WppContainer {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #0aa345;
  color: #FFF;
  transition: .3s;
  font-size: 24px;
  font-weight: normal;
  padding-left: 15px;
  padding-right: 15px;
}

.WppContainer:hover {
  background-color: #04db57;
  color: #fff;
  transition: .3s;
}

/*END WHATSAPP*/