@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

body.admin-bar #site-header {
  top: 31px;
}

.geist-sdi {
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0b0f0d;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
}

#site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.5rem 0;
  color: #ffffff;
}
#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#site-header .site-logo {
  max-height: 48px;
}
#site-header .site-logo img {
  max-height: 100%;
  width: auto;
}
#site-header .header-social {
  display: flex;
  gap: 1rem;
}
#site-header .header-social a {
  display: block;
  transition: opacity 0.3s;
}
#site-header .header-social a:hover {
  opacity: 0.8;
}
#site-header .header-social a img {
  height: 20px;
  width: auto;
}
#site-header nav.main-nav .desktop-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#site-header nav.main-nav .desktop-menu li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
  transition: opacity 0.3s;
  letter-spacing: 1px;
}
#site-header nav.main-nav .desktop-menu li a:hover {
  opacity: 0.8;
}
#site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}
#site-header .mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #121212;
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  overflow-y: auto;
}
#site-header .mobile-menu.open {
  left: 0;
}
#site-header .mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#site-header .mobile-menu__header .site-logo img {
  max-height: 40px;
}
#site-header .mobile-menu__header .menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  line-height: 3.4rem;
  cursor: pointer;
}
#site-header .mobile-menu .mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#site-header .mobile-menu .mobile-menu__list a {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 100;
  text-decoration: none;
  transition: opacity 0.3s;
}
#site-header .mobile-menu .mobile-menu__list a:hover {
  opacity: 0.8;
}
#site-header .mobile-menu .mobile-menu__social {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}
#site-header .mobile-menu .mobile-menu__social a img {
  height: 20px;
  width: auto;
}
@media (max-width: 768px) {
  #site-header nav.main-nav {
    display: none;
  }
  #site-header .menu-toggle {
    display: block;
  }
}

.main-nav .desktop-menu li a {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.menu-item__inner,
.menu-item__inner--clone {
  display: block;
  will-change: transform;
}

.menu-item__inner--clone {
  position: absolute;
  top: 0;
  left: 0;
}

section {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, a, span, div, p, li, textarea, input, button {
  font-family: "Geist", sans-serif, sans-serif;
}

p {
  font-weight: 200;
  color: #393939;
}

h1 {
  font-size: 42px;
  line-height: 56px;
}

h2 {
  font-size: 42px;
  line-height: 56px;
  font-weight: 400;
  color: #393939;
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

h3 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

h5 {
  font-size: 21px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 24px;
}

#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #121212;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
@media (max-width: 768px) {
  #hero {
    min-height: 100vh;
  }
}
#hero .container {
  position: relative;
  z-index: 2;
}
#hero .container .row {
  min-height: 100vh;
}
@media (max-width: 768px) {
  #hero .container .row {
    min-height: 100vh;
  }
}
#hero .col-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  #hero .col-holder {
    display: none;
  }
}
#hero .social-icons.header-social {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  z-index: 5;
}
#hero .social-icons.header-social:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #ffffff;
  transition: 0.3s all ease-in-out;
  transform: translateY(-5px);
}
#hero .social-icons.header-social:before {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #ffffff;
  transition: 0.3s all ease-in-out;
  transform: translateY(5px);
}
#hero .social-icons.header-social:hover:before, #hero .social-icons.header-social:hover:after {
  transform: translateY(0px);
}
#hero .scrollmore {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eae7e0;
  border-radius: 9999px;
  z-index: 5;
}
@media (max-width: 992px) {
  #hero .scrollmore {
    display: none;
  }
}
#hero .scrollmore a.scroll-link {
  font-size: 16px;
  color: #818E94;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0px, -37px);
}
#hero .scrollmore a.scroll-link .scroll-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-right: 5px;
  font-weight: 500;
}
#hero .scrollmore a.scroll-link .scroll-text span {
  font-size: 14px;
  font-weight: 300;
}
#hero .hero-title {
  font-weight: 100;
  max-width: 520px;
  margin-bottom: 3rem;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hero .hero-title strong {
  font-weight: 400;
}
@media (max-width: 576px) {
  #hero .hero-title {
    font-size: 32px;
    padding-right: 40px;
    line-height: 42px;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  #hero .hero-title svg {
    max-width: 80%;
  }
}
#hero .hero-bajada {
  max-width: 490px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fff;
}
@media (max-width: 576px) {
  #hero .hero-bajada {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
#hero .hero-sponsors {
  position: absolute;
  bottom: 70px;
  margin-top: 0;
}
#hero .hero-sponsors p {
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#hero .hero-sponsors .sponsor-logo {
  max-height: 40px;
}
#hero .hero-sponsors .sponsor-logo img {
  max-height: 100%;
  width: auto;
}
@media (max-width: 576px) {
  #hero .hero-sponsors {
    position: absolute;
    bottom: 10vh;
    margin-top: 2rem;
  }
  #hero .hero-sponsors .sponsor-logo img {
    max-height: 100%;
    width: auto;
    width: 55px;
    max-height: 50px;
    object-fit: contain;
  }
}
#hero .hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
#hero .hero-swiper .swiper-wrapper,
#hero .hero-swiper .swiper-slide {
  height: 100% !important;
}
#hero .hero-swiper .swiper-slide {
  display: flex;
  flex-wrap: nowrap;
}
#hero .hero-swiper .swiper-slide .hero-bg-left,
#hero .hero-swiper .swiper-slide .hero-bg-right {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #hero .hero-swiper .swiper-slide .hero-bg-left {
    width: 100%;
    height: 100vh;
  }
  #hero .hero-swiper .swiper-slide .hero-bg-right {
    display: none;
  }
}

#about {
  background-color: #eae7e0;
  color: #0b0f0d;
  padding: 10rem 0;
}
#about .about-frase {
  position: relative;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 100;
  margin: 0 auto;
  max-width: 1200px;
}
#about .about-frase::before {
  content: open-quote;
  position: absolute;
  top: -3rem;
  left: -4.5rem;
  font-size: 200px;
  line-height: 150px;
  font-weight: 600;
  color: #0b0f0d;
  opacity: 0.08;
}
#about .about-frase::after {
  content: close-quote;
  position: absolute;
  bottom: -9rem;
  right: -4.5rem;
  font-size: 200px;
  line-height: 150px;
  font-weight: 600;
  color: #0b0f0d;
  opacity: 0.08;
}
#about .about-frase strong {
  font-weight: 400;
}
#about .about-autor {
  margin-top: 2rem;
  font-size: 21px;
  font-weight: 300;
  color: #393939;
}
@media (max-width: 768px) {
  #about {
    padding: 6rem 0;
  }
  #about .about-frase {
    font-size: 28px;
    line-height: 1.35;
  }
  #about .about-frase::before {
    font-size: 200px;
    line-height: 120px;
    left: -3rem;
    top: -1rem;
  }
  #about .about-frase::after {
    font-size: 200px;
    line-height: 120px;
    right: -3rem;
    bottom: -7rem;
  }
  #about .about-autor {
    font-size: 20px;
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  #about {
    padding: 4rem 0;
  }
  #about .about-frase {
    font-size: 22px;
    line-height: 1.4;
  }
  #about .about-frase::before, #about .about-frase::after {
    display: none;
  }
  #about .about-autor {
    font-size: 18px;
    max-width: 215px;
    margin: 0 auto;
  }
}

#about-sdi {
  background-color: #ffffff;
  color: #0b0f0d;
  padding: 6rem 0;
}
#about-sdi h2 {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
#about-sdi .about-sdi-parrafo {
  font-size: 1rem;
  line-height: 1.75;
}
#about-sdi .about-sdi-parrafo p {
  margin-bottom: 1.5rem;
  font-weight: 200;
}
#about-sdi .about-sdi-parrafo strong {
  font-weight: 400;
}
#about-sdi .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #about-sdi {
    padding: 4rem 0;
  }
  #about-sdi h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  #about-sdi .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about-sdi .about-sdi-parrafo {
    max-width: 90%;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  #about-sdi .img-fluid {
    width: 80%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  #about-sdi {
    padding: 2rem 0;
  }
  #about-sdi h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  #about-sdi .about-sdi-parrafo {
    max-width: 100%;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  #about-sdi .img-fluid {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

#programas {
  background-color: #eae7e0;
  color: #0b0f0d;
  padding: 6rem 0;
}
#programas .accordion-item:first-of-type {
  border-top: 1px solid #595552;
}
#programas .accordion-item {
  border: none;
  border-bottom: 1px solid #595552;
  background-color: transparent;
  border-radius: 0;
}
#programas .accordion-item .accordion-header button {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  color: #595552;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
#programas .accordion-item .accordion-header button::after {
  content: "+";
  font-size: 2.25rem;
  margin-left: auto;
  transform: none;
  background-image: none;
  font-weight: 200;
  line-height: 20px;
}
#programas .accordion-item .accordion-header button[aria-expanded=true]::after {
  content: "–";
}
#programas .accordion-item .accordion-collapse .accordion-body {
  padding: 1rem 0 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #0b0f0d;
}
#programas .accordion-item .accordion-collapse .accordion-body i {
  font-style: normal;
}
#programas .accordion-item .accordion-collapse .accordion-body strong {
  font-weight: 400;
}
#programas .accordion-item .accordion-collapse .accordion-body p, #programas .accordion-item .accordion-collapse .accordion-body span {
  font-weight: 200;
}
#programas .programas-img-collage {
  display: flex;
  align-items: center;
  height: 100%;
}
#programas .programas-img-collage .img-1 {
  position: absolute;
  top: 5%;
  left: 0;
}
#programas .programas-img-collage .img-2 {
  position: absolute;
  bottom: 5%;
  left: 15%;
}
#programas .programas-img-collage .img-3 {
  position: absolute;
  top: 10%;
  right: -10%;
}
@media (max-width: 768px) {
  #programas {
    padding: 4rem 0;
  }
  #programas .row {
    display: flex;
    flex-direction: column;
  }
  #programas .programas-img-collage {
    display: block;
    position: relative;
    height: auto;
    margin-top: 2rem;
  }
  #programas .programas-img-collage .img-1,
  #programas .programas-img-collage .img-2,
  #programas .programas-img-collage .img-3 {
    display: none;
  }
}
@media (max-width: 576px) {
  #programas {
    padding: 2rem 0;
  }
  #programas .accordion-item .accordion-header button {
    padding: 20px 20px 20px 0;
    font-size: 18px;
    line-height: 1.4;
  }
  #programas .accordion-collapse .accordion-body {
    line-height: 1.6;
  }
}

#mapa {
  background-color: #ffffff;
  color: #0b0f0d;
  padding: 6rem 0 4rem;
}
#mapa .accordion-body {
  max-height: 300px;
  overflow-y: scroll;
}
#mapa .logo {
  max-width: 260px;
  padding-left: 20px;
  padding-top: 10px;
  opacity: 0.85;
}
#mapa p {
  font-size: 1rem;
  line-height: 1.6;
}
#mapa .accordion-item {
  border-radius: 0;
  margin: 20px 0;
  border: 1px solid #eaeaea;
  background-color: #fff;
  outline: none;
}
#mapa .accordion-item ul li {
  margin-bottom: 20px;
}
#mapa .accordion-button {
  outline: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #0b0f0d;
  border-radius: 0;
  background-color: #fff;
}
#mapa .map-holder img.mapa {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  #mapa {
    padding: 4rem 0 2rem;
  }
  #mapa .row.mb-5 {
    flex-direction: column;
  }
  #mapa .row.mb-5 .col-12.col-md-4,
  #mapa .row.mb-5 .col-12.col-md-6 {
    max-width: 100%;
  }
  #mapa .mapa-tabs .row {
    flex-direction: column;
  }
  #mapa .mapa-tabs .accordion {
    width: 100%;
    margin-bottom: 2rem;
  }
  #mapa .mapa-tabs .map-holder {
    min-height: 300px;
  }
}
@media (max-width: 576px) {
  #mapa {
    padding: 2rem 0;
  }
  #mapa .logo {
    padding-left: 0;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 50%;
  }
  #mapa h2 {
    font-size: 1.75rem;
    line-height: 1.8rem;
    text-align: left;
  }
  #mapa p {
    text-align: left;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
  }
  #mapa .accordion-button {
    font-size: 16px;
    padding: 0.75rem 1rem;
  }
  #mapa .accordion-body {
    line-height: 1.5;
  }
  #mapa .map-holder {
    min-height: 200px !important;
  }
}

#impacto {
  padding: 0 0 4rem 0;
  background-color: #fff;
}
#impacto .container {
  background-color: #eae7e0;
}
#impacto .row {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
#impacto .col-12.col-md-4 {
  padding: 2rem;
  position: relative;
}
#impacto .col-12.col-md-4:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
#impacto .icon {
  margin-bottom: 0;
  max-height: 50px;
  width: auto;
  margin-right: 5px;
}
#impacto h3 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #0b0f0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
#impacto h3 span {
  font-weight: 300;
  font-size: 0.7em;
}
#impacto p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  max-width: 260px;
  margin: 0 auto;
  color: #0b0f0d;
}
@media (max-width: 768px) {
  #impacto {
    padding: 0 0 3rem;
  }
  #impacto .row {
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
  }
  #impacto .col-12.col-md-4 {
    padding: 1rem 0;
  }
  #impacto .col-12.col-md-4:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 576px) {
  #impacto {
    padding: 0 0 2rem;
  }
  #impacto .container {
    width: 90%;
    padding: 2rem 2rem 1rem;
  }
  #impacto h3 {
    font-size: 32px;
  }
  #impacto p {
    font-size: 0.7rem;
    line-height: 1.3;
    max-width: 260px;
    padding: 0 20px;
  }
}

#casos {
  background-color: #F5F5F5;
  padding: 6rem 0;
}
#casos .casos-holder {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#casos .caso-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
#casos .caso-img {
  height: 100%;
  min-height: 578px;
  max-width: 386px;
  overflow: hidden;
}
#casos .caso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#casos .caso-content {
  padding: 2rem;
  position: relative;
}
#casos .caso-content h4 {
  font-size: 32px;
}
#casos .caso-content p {
  margin-bottom: 0.5rem;
}
#casos .caso-content p:last-child {
  margin-bottom: 0;
}
#casos .swiper {
  max-width: 1240px;
}
#casos .swiper-button-prev,
#casos .swiper-button-next {
  background: #000;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}
#casos .swiper-button-prev::after,
#casos .swiper-button-next::after {
  font-size: 14px;
}
#casos .swiper-button-prev {
  left: 0;
}
#casos .swiper-button-next {
  right: 0;
}
#casos .swiper-pagination-bullets {
  text-align: center;
  bottom: -50px;
}
#casos .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
#casos .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
}
#casos .casos-nav {
  display: flex;
  width: 100%;
  height: 100px;
  position: absolute;
  z-index: 5;
}
@media (max-width: 768px) {
  #casos {
    padding: 4rem 0;
  }
  #casos .casos-holder {
    flex-direction: column;
  }
  #casos .caso-card {
    width: 100%;
    padding: 20px;
  }
  #casos .caso-card .row {
    flex-direction: column;
  }
  #casos .caso-img {
    display: none;
  }
  #casos .caso-content {
    padding: 1rem;
  }
  #casos .caso-content .quote {
    display: none;
  }
  #casos .caso-content h4 {
    font-size: 28px;
  }
  #casos .caso-content p {
    line-height: 1.5;
  }
  #casos .casos-nav {
    width: 120%;
  }
  #casos .swiper-pagination-bullets {
    bottom: -29px;
  }
  #casos .swiper {
    width: 100%;
  }
}
@media (max-width: 576px) {
  #casos {
    padding: 2rem 0;
  }
  #casos .caso-card {
    padding: 15px;
  }
  #casos .caso-content h4 {
    font-size: 24px;
  }
  #casos .swiper-button-prev,
  #casos .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

#clientes {
  padding: 6rem 0 0 0;
  background-color: #ffffff;
}
#clientes .container {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 6rem;
}
#clientes h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: #111;
}
#clientes .cliente-logo {
  max-height: 70px;
}
#clientes .cliente-logo img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-height: 70px;
  max-width: 100px;
}
#clientes .cliente-logo:hover {
  opacity: 1;
}
#clientes .cliente-logo:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  #clientes h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

#ceo {
  background-color: #ffffff;
  color: #0b0f0d;
  padding: 6rem 0;
}
#ceo a.btn.btn-outline-dark {
  border-radius: 0;
  padding: 15px 30px;
}
#ceo h2 {
  font-weight: 400;
  margin-bottom: 30px;
}
#ceo .parrafo {
  font-size: 16px;
  line-height: 28px;
}
#ceo .parrafo p {
  margin-bottom: 1.3rem;
}
#ceo .parrafo strong {
  font-weight: 400;
}
#ceo .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #ceo {
    padding: 4rem 0;
  }
  #ceo .row {
    display: flex;
    flex-direction: column;
  }
  #ceo .col-12.col-md-6 {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  #ceo .col-12.col-md-5.offset-md-1 {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 576px) {
  #ceo {
    padding: 2rem 0;
  }
  #ceo h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  #ceo .parrafo {
    line-height: 1.5;
  }
  #ceo a.btn.btn-outline-dark {
    padding: 10px 20px;
  }
}

#guias {
  padding: 9rem 0;
  overflow: hidden;
}
#guias .container-fluid {
  background-color: rgba(234, 234, 234, 0.9647058824);
}
#guias .container-fluid .container {
  padding: 6rem 0 4rem;
}
#guias .guias-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
#guias .card {
  border-radius: 0;
  transition: transform 0.3s ease;
}
#guias .card .card-body {
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#guias .card .card-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}
@media (max-width: 1440px) {
  #guias .card .card-meta {
    min-height: 220px;
  }
}
@media (max-width: 1366px) {
  #guias .card .card-meta {
    min-height: 275px;
  }
}
@media (max-width: 768px) {
  #guias .card .card-meta {
    min-height: auto;
  }
}
#guias .card:hover {
  transform: translateY(-3px);
}
#guias .card.bg-dark {
  background-color: #020910 !important;
}
#guias .card.bg-dark h5, #guias .card.bg-dark p, #guias .card.bg-dark small {
  color: #fff;
}
#guias .card.bg-dark .btn {
  border-radius: 0;
  background-color: #a99a61;
  width: 100%;
  border-color: #a99a61;
  color: #fff !important;
}
#guias .card small {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0px;
  display: inline;
  white-space: nowrap;
}
#guias .card p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
#guias .card p.big {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
#guias .card .card-title {
  font-weight: 200;
  font-size: 21px;
  line-height: 24px;
  min-height: 100px;
}
@media (max-width: 1366px) {
  #guias .card .card-title {
    min-height: 130px;
    font-size: 18px;
  }
}
#guias .card .card-title strong {
  font-weight: 400;
}
#guias .card .btn {
  font-weight: 400;
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  width: 100%;
}
@media (max-width: 768px) {
  #guias {
    padding: 6rem 0;
  }
  #guias .container-fluid .container {
    padding: 60px 2rem;
  }
  #guias .row {
    display: flex;
    flex-direction: column;
  }
  #guias .col-12 {
    margin-bottom: 1.5rem;
  }
  #guias .card .card-body {
    padding: 30px 30px;
  }
}
@media (max-width: 576px) {
  #guias {
    padding: 6rem 0;
  }
  #guias .container-fluid {
    padding: 0;
  }
  #guias .container-fluid .container {
    padding: 40px 2rem;
  }
  #guias h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  #guias .card .card-body {
    padding: 25px 20px;
  }
  #guias .card .card-title {
    min-height: auto;
  }
  #guias .card .btn {
    padding: 0.5rem 1rem;
  }
}

#social {
  background-color: #000000;
  padding: 6rem 0;
}

#womenx {
  position: relative;
  color: #fff;
  padding: 6rem 0;
}
#womenx .womenx-logo img {
  max-width: 100%;
  height: auto;
}
#womenx .womenx-img img {
  display: block;
  max-width: 100%;
  height: auto;
}
#womenx .womenx-title {
  color: #C1F7C1;
  font-size: 42px;
  font-weight: 200;
  line-height: 1.1;
}
#womenx .womenx-bajada {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
}
#womenx .womenx-bajada strong {
  font-weight: 400;
}
#womenx .womenx-cta {
  background-color: #C1F7C1;
  color: #000;
  border: none;
  padding: 15px 56px;
  font-weight: 500;
  border-radius: 0;
  transition: background-color 0.2s ease;
}
#womenx .womenx-cta:hover {
  background-color: #a3e5a3;
  color: #000;
}
#womenx .col-womenx-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  justify-content: center;
}
@media (max-width: 768px) {
  #womenx {
    padding: 4rem 0;
  }
  #womenx .womenx-logo,
  #womenx .womenx-img,
  #womenx .womenx-title,
  #womenx .womenx-bajada,
  #womenx .womenx-cta {
    text-align: center;
  }
  #womenx .womenx-title {
    font-size: 32px;
    margin-bottom: 1.5rem;
  }
  #womenx .womenx-bajada {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }
  #womenx .womenx-cta {
    padding: 12px 40px;
  }
  #womenx .col-womenx-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 576px) {
  #womenx {
    padding: 2rem 0;
  }
  #womenx .womenx-title {
    font-size: 28px;
  }
  #womenx .womenx-bajada {
    font-size: 18px;
  }
  #womenx .womenx-cta {
    padding: 10px 30px;
  }
}

#contacto {
  position: relative;
  background-color: #d5d2c9;
  overflow: hidden;
  padding: 6rem 0;
}
#contacto .form-col {
  padding-left: 40px;
}
#contacto h5 {
  font-size: 32px;
  font-weight: 300;
  color: #0b0f0d;
}
#contacto .contacto-info {
  color: rgba(0, 0, 0, 0.3) !important;
}
#contacto .contacto-info a {
  color: #0b0f0d;
  text-decoration: none;
  font-weight: 300;
}
#contacto .contacto-info a:hover {
  text-decoration: underline;
}
#contacto .contacto-info small {
  font-size: 1rem;
  letter-spacing: 1px;
}
#contacto .contacto-info .ubicacion {
  margin-top: 0.5rem;
  font-weight: 300;
  color: #0b0f0d;
}
#contacto .contacto-form form input,
#contacto .contacto-form form textarea,
#contacto .contacto-form form select {
  border: none;
  border-bottom: 1px solid rgba(92, 89, 86, 0.3098039216);
  border-radius: 0;
  background-color: transparent;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  width: 100%;
}
#contacto .contacto-form form .forminator-label {
  font-size: 16px !important;
  font-family: inherit !important;
  font-weight: 300 !important;
  color: rgba(0, 0, 0, 0.3) !important;
}
#contacto .contacto-form form button[type=submit],
#contacto .contacto-form form .forminator-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#contacto .contacto-form form button[type=submit]:hover,
#contacto .contacto-form form .forminator-button:hover {
  opacity: 0.9;
}
#contacto .contacto-img {
  width: 47vw;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
#contacto .contacto-img img {
  object-fit: cover;
}
#contacto .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #contacto {
    padding: 4rem 0;
  }
  #contacto .row {
    display: flex;
    flex-direction: column;
  }
  #contacto .form-col {
    padding-left: 0;
    margin-top: 2rem;
  }
  #contacto .contacto-info,
  #contacto .contacto-form {
    padding: 0 1rem;
  }
  #contacto .contacto-img {
    display: none;
  }
}
@media (max-width: 576px) {
  #contacto {
    padding: 2rem 0;
  }
  #contacto h5 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  #contacto .contacto-info {
    text-align: center;
  }
  #contacto .contacto-form {
    padding: 0 1rem;
  }
}

.footer {
  background-color: #0b0f0d;
  padding-top: 6rem;
}

.footer-bottom {
  margin-top: 6rem;
}

.map-region {
  fill: #d4d1c8;
  transition: fill 0.3s ease;
}

.map-region.clickable {
  cursor: pointer;
}
.map-region.clickable:hover {
  fill: #6b6055;
}

.map-region.active {
  fill: #4d463f;
}

.map-region.no-info {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 576px) {
  .container {
    padding: 0 2rem;
  }
}
.programas-slider {
  padding-bottom: 60px !important;
}
.programas-slider .swiper-slide {
  height: auto;
}
.programas-slider .swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}
.programas-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.programas-slider .swiper-pagination-horizontal {
  width: max-content !important;
  background-color: #cfcfcf;
  padding: 0 10px;
  border-radius: 100px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.nav-guias {
  width: 110%;
  top: 0;
  bottom: 0;
  position: absolute;
  left: -5%;
}
.nav-guias .swiper-button-prev,
.nav-guias .swiper-button-next {
  color: #000;
}
.nav-guias .swiper-button-next:after, .nav-guias .swiper-button-prev:after {
  font-size: 26px;
}
@media (max-width: 768px) {
  .nav-guias {
    display: none;
  }
}
