@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap);
@charset "UTF-8";
* {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

html,
body {
  color: #1a1449;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Prevent modern browsers from displaying `audio` without controls.
     * Remove excess height in iOS 5 devices.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Address `[hidden]` styling not present in IE 8/9/10.
     * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
     */
[hidden],
template {
  display: none;
}

/* Links
       ========================================================================== */
/**
     * Remove the gray background color from active links in IE 10.
     */
a {
  background-color: transparent;
}

/**
     * Improve readability of focused elements when they are also in an
     * active/hover state.
     */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
       ========================================================================== */
/**
     * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
     */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
     * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
     */
b,
strong {
  font-weight: bold;
}

/**
     * Address styling not present in Safari and Chrome.
     */
dfn {
  font-style: italic;
}

/**
     * Address variable `h1` font-size and margin within `section` and `article`
     * contexts in Firefox 4+, Safari, and Chrome.
     */
h1 {
  font-size: 2em;
  /*margin: 0.67em 0; */
}

/**
     * Address styling not present in IE 8/9.
     */
mark {
  background: #ff0;
  color: #000;
}

/**
     * Address inconsistent and variable font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` affecting `line-height` in all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
       ========================================================================== */
/**
     * Remove border when inside `a` element in IE 8/9/10.
     */
img {
  border: 0;
}

/**
     * Correct overflow not hidden in IE 9/10/11.
     */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
       ========================================================================== */
/**
     * Address margin not present in IE 8/9 and Safari.
     */
figure {
  margin: 1em 40px;
}

/**
     * Address differences between Firefox and other browsers.
     */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
     * Contain overflow in all browsers.
     */
pre {
  overflow: auto;
}

/**
     * Address odd `em`-unit font size rendering in all browsers.
     */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
       ========================================================================== */
/**
     * Known limitation: by default, Chrome and Safari on OS X allow very limited
     * styling of `select`, unless a `border` property is set.
     */
/**
     * 1. Correct color not being inherited.
     *    Known issue: affects color of disabled elements.
     * 2. Correct font properties not being inherited.
     * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
     */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
     * Address `overflow` set to `hidden` in IE 8/9/10/11.
     */
button {
  overflow: visible;
}

/**
     * Address inconsistent `text-transform` inheritance for `button` and `select`.
     * All other form control elements do not inherit `text-transform` values.
     * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
     * Correct `select` style inheritance in Firefox.
     */
button,
select {
  text-transform: none;
}

/**
     * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
     *    and `video` controls.
     * 2. Correct inability to style clickable `input` types in iOS.
     * 3. Improve usability and consistency of cursor style between image-type
     *    `input` and others.
     */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
     * Re-set default cursor for disabled elements.
     */
button[disabled],
html input[disabled] {
  cursor: not-allowed;
}

/**
     * Remove inner padding and border in Firefox 4+.
     */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
     * Address Firefox 4+ setting `line-height` on `input` using `!important` in
     * the UA stylesheet.
     */
input {
  line-height: normal;
}

/**
     * It's recommended that you don't attempt to style these elements.
     * Firefox's implementation doesn't respect box-sizing, padding, or width.
     *
     * 1. Address box sizing set to `content-box` in IE 8/9/10.
     * 2. Remove excess padding in IE 8/9/10.
     */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Fix the cursor style for Chrome's increment/decrement buttons. For certain
     * `font-size` values of the `input`, it causes the cursor style of the
     * decrement button to change from `default` to `text`.
     */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
     * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
     */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
     * Remove inner padding and search cancel button in Safari and Chrome on OS X.
     * Safari (but not Chrome) clips the cancel button when the search input has
     * padding (and `textfield` appearance).
     */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * Define consistent border, margin, and padding.
     * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
     */
/* fieldset {
      border: 1px solid #c0c0c0;
      margin: 0 2px;
      padding: 0.35em 0.625em 0.75em;
    } */
/**
     * 1. Correct `color` not being inherited in IE 8/9/10/11.
     * 2. Remove padding so people aren't caught out if they zero out fieldsets.
     */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Remove default vertical scrollbar in IE 8/9/10/11.
     */
textarea {
  overflow: auto;
}

/**
     * Don't inherit the `font-weight` (applied by a rule above).
     * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
     */
optgroup {
  font-weight: bold;
}

/* Tables
       ========================================================================== */
/**
     * Remove most spacing between table cells.
     */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

select {
  width: 100%;
  border-radius: 3px;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 3px;
  line-height: 1;
}

[data-whatinput=mouse] button {
  outline: 0;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 1em;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    max-width: 1800px;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

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

button {
  outline: 0;
}

p {
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.subtitle, .red-bcsd-latam h2, .convenios h2, .proyectos-cedes h2 {
  color: #001e61;
  display: table;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto;
  padding-top: 0.7rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.subtitle::before, .red-bcsd-latam h2::before, .convenios h2::before, .proyectos-cedes h2::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 6px;
  background: #009d59;
  display: block;
  top: 0;
}

.paragraph, .red-bcsd-latam p, .proyectos-cedes p {
  color: #127296;
  text-align: justify;
  font-size: 1.15rem;
  width: 40%;
  margin: 2rem auto 3rem;
}
@media screen and (max-width: 1023px) {
  .paragraph, .red-bcsd-latam p, .proyectos-cedes p {
    width: 70%;
  }
}
@media screen and (max-width: 720px) {
  .paragraph, .red-bcsd-latam p, .proyectos-cedes p {
    width: 100%;
  }
}

[data-fancybox] {
  cursor: pointer;
}

header {
  background: #fff;
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .container {
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header svg {
  max-width: 5rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  header svg {
    max-width: 3rem;
  }
}
header .isologo {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .isologo {
    display: block;
  }
}
header .imagotipo {
  display: block;
}
@media screen and (max-width: 1024px) {
  header .imagotipo {
    display: none;
  }
}

nav {
  display: flex;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  nav {
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: column;
    flex-direction: column;
    background: #fff;
    left: 0;
    height: calc(100vh - 89px);
    overflow-y: auto;
    position: absolute;
    top: 100%;
    transform-origin: top;
    transform: scaleY(0);
    transition: 0.4s;
    width: 100%;
    z-index: 5;
  }
  nav.active {
    transform: scaleY(1);
  }
}
nav a {
  display: block;
}
nav .header--main {
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  flex: 1 1 100%;
}
@media screen and (max-width: 1024px) {
  nav .header--main {
    flex: 0 0 auto;
  }
}
nav .main-menu {
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  nav .main-menu {
    -moz-flex-direction: column;
    flex-direction: column;
    padding: 1rem 0;
  }
}
nav .main-menu > li {
  padding: 0 1rem;
  font-weight: 600;
}
nav .main-menu > li:first-child {
  padding-left: 0;
}
nav .main-menu > li:last-child {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  nav .main-menu > li {
    width: 100vw;
    margin: 0.5rem 0;
    padding: 0 1rem 0.5rem !important;
    border-bottom: 2px solid rgba(0, 30, 97, 0.1);
  }
  nav .main-menu > li:last-child {
    border-bottom-color: transparent;
  }
}
nav .contact-btn {
  background: #127296;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}
nav .contact-btn:hover {
  background: #001e61;
}
@media screen and (max-width: 1024px) {
  nav .contact-btn {
    display: inline-block;
  }
}
nav .links {
  margin-right: 8px;
}
nav .links a {
  display: inline-block;
  padding: 0.3rem;
}
nav .button {
  border-radius: 40px;
  border: 2px solid #001e61;
  display: block;
  margin-left: 1rem;
  padding: 0.35rem 1rem;
  text-align: right;
  transition: 0.4s;
  width: 7rem;
}
nav .button:hover {
  background: rgba(0, 30, 97, 0.1);
}
@media screen and (max-width: 1024px) {
  nav .button {
    display: none;
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    display: block;
  }
}
.menu-btn span {
  background: #001e61;
  display: block;
  height: 5px;
  margin-bottom: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 35px;
}
.menu-btn.active span:first-child {
  transform: rotate(45deg);
  margin: 0;
}
.menu-btn.active span:nth-child(2) {
  transform: scale(0);
  opacity: 0;
}
.menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(10px, -10px);
  margin: 0;
}

.header--wrapper {
  position: fixed;
  width: 100%;
  min-height: 0;
  background: rgba(26, 20, 73, 0.85);
  margin-top: 1rem;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.header--wrapper.active {
  min-height: 100vh;
  opacity: 1;
}

.sobre-nosotros-menu {
  position: absolute;
  -moz-flex-direction: column;
  flex-direction: column;
  z-index: 4;
  top: 260%;
}
@media screen and (max-width: 1024px) {
  .sobre-nosotros-menu {
    position: relative;
    top: initial;
  }
}
.sobre-nosotros-menu li {
  background: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
  text-align: center;
  width: 11rem;
}
@media screen and (max-width: 1024px) {
  .sobre-nosotros-menu li {
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
}
.sobre-nosotros-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  border: 2px solid #fff;
}
.sobre-nosotros-menu li a:hover {
  background: #001e61;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .sobre-nosotros-menu li a {
    padding: 0.4rem 1rem;
  }
}

.btn-cedes-menu {
  position: relative;
}

footer {
  background: #127296;
  padding: 2rem 0;
  color: #fff;
  font-weight: 700;
}
footer p {
  font-size: 1.4rem;
  line-height: 1.1;
}
footer p span {
  font-weight: 900;
  font-size: 1.1rem;
}
footer .container {
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 720px) {
  footer .container {
    -moz-flex-direction: column;
    flex-direction: column;
  }
}
footer svg {
  max-width: 5rem;
  margin-right: 1rem;
  border-right: 2px solid #fff;
  padding-right: 1rem;
}
footer svg path {
  fill: #fff;
}
@media screen and (max-width: 720px) {
  footer svg {
    margin-right: 0;
    padding-right: 0;
    border-right-color: transparent;
  }
}

.contact-form {
  background: #001e61;
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
}
.contact-form svg {
  display: block;
  max-width: 5rem;
  margin: 0 auto;
  fill: #fff;
}
.contact-form svg path {
  fill: #fff;
}
.contact-form h2,
.contact-form h3 {
  color: #fff;
  margin: 2rem 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.contact-form h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
.contact-form p,
.contact-form a {
  color: #fff;
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.contact-form .input {
  margin-bottom: 1.5rem;
}
.contact-form [type=text],
.contact-form [type=tel],
.contact-form [type=email],
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.4rem 1rem;
  margin-bottom: 6px;
  resize: none;
  border: 3px solid #fff;
}
.contact-form [type=text]:focus,
.contact-form [type=tel]:focus,
.contact-form [type=email]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #009d59;
}
.contact-form [type=submit] {
  border-radius: 0;
  display: block;
  color: #fff;
  background: #009d59;
  padding: 0.5rem 2rem;
  font-weight: 700;
  margin: 0 0 0 auto;
  transition: all 0.3s ease-in-out;
  transform-origin: right;
}
.contact-form [type=submit]:hover {
  transform: scale(1.1);
}
.contact-form .links {
  display: flex;
  gap: 1.5rem;
}
.contact-form .links img {
  filter: brightness(0) invert(100%);
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
  width: 2rem;
}
.contact-form .links img:hover {
  filter: none;
}
.contact-form .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 720px) {
  .contact-form .container {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.contact-form figure {
  margin: 0;
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  max-width: 550px;
  z-index: 1;
}
.contact-form .information-contact {
  order: 2;
}
@media screen and (max-width: 720px) {
  .contact-form .information-contact {
    order: 1;
  }
}
.contact-form .form {
  order: 1;
}
@media screen and (max-width: 720px) {
  .contact-form .form {
    order: 2;
  }
}

.error-lbl {
  color: red;
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-alert {
  background: #009d59;
  color: #fff;
  font-weight: 700;
  padding: 0;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: 0.4s ease-in-out;
  opacity: 0;
  height: 0;
}
.success-alert.show {
  opacity: 1;
  padding: 1rem;
  height: auto;
  visibility: visible;
}
.success-alert p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.road-to-2050 {
  color: #fff;
  position: relative;
  background: #001e61;
  min-height: 600px;
}
@media screen and (max-width: 720px) {
  .road-to-2050 {
    min-height: 750px;
  }
}
.road-to-2050 figure {
  margin: 0;
  height: 100%;
  width: 100%;
}
.road-to-2050 img {
  display: block;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 720px) {
  .road-to-2050 img {
    min-height: 750px;
  }
}
.road-to-2050 .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.road-to-2050 a {
  display: block;
}
.road-to-2050 p {
  display: block;
  font-size: 1rem;
  margin: 0 auto 1rem;
  max-width: 40%;
  line-height: 1.3;
}
.road-to-2050 p.subtext {
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .road-to-2050 p {
    max-width: 100%;
  }
}
.road-to-2050 h2 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 30px;
  margin-bottom: 2.5rem;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.road-to-2050 h2::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 8px;
  background: #fff;
  display: block;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .road-to-2050 h2 {
    font-size: 3rem;
  }
  .road-to-2050 h2::before {
    width: 1.8rem;
    height: 6px;
  }
}
@media screen and (max-width: 1023px) {
  .road-to-2050 h2 {
    letter-spacing: 15px;
  }
}
@media screen and (max-width: 720px) {
  .road-to-2050 h2::before {
    width: 0;
  }
}
.road-to-2050 .qty-p {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
}
.road-to-2050 a {
  background: #009d59;
  color: #fff;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  transition: 0.4s;
}
.road-to-2050 a:hover {
  transform: scale(1.1);
}

.mySwiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mySwiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  border-radius: 4px;
  height: 6px;
  width: 3rem;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 50% !important;
}
@media screen and (max-width: 1023px) {
  .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
  }
}

.pilares {
  background: #f8f8f8;
  padding-top: 3rem;
  position: relative;
  overflow: hidden;
}
.pilares .circle-1 {
  background: rgba(18, 114, 150, 0.17);
  border-radius: 100%;
  height: 700px;
  position: absolute;
  right: -260px;
  top: -360px;
  width: 700px;
}
@media screen and (max-width: 1024px) {
  .pilares .circle-1 {
    right: -400px;
  }
}
.pilares .circle-2 {
  background: rgba(18, 114, 150, 0.17);
  border-radius: 100%;
  height: 1400px;
  position: absolute;
  left: -960px;
  top: -200px;
  width: 1400px;
}
@media screen and (max-width: 1024px) {
  .pilares .circle-2 {
    left: -1100px;
  }
}
@media screen and (max-width: 720px) {
  .pilares .circle-2 {
    bottom: -350px;
    height: 700px;
    left: -350px;
    top: initial;
    width: 700px;
  }
}
.pilares .container {
  position: relative;
  z-index: 2;
}
.pilares h2,
.pilares h3,
.pilares h4 {
  color: #001e61;
  display: table;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto;
  padding-top: 0.7rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.pilares h2 span,
.pilares h3 span,
.pilares h4 span {
  display: block;
  font-size: 2rem;
}
.pilares h2::before,
.pilares h3::before,
.pilares h4::before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 6px;
  background: #127296;
  display: block;
  margin-left: 5px;
  top: 0;
}
@media screen and (max-width: 720px) {
  .pilares h2,
.pilares h3,
.pilares h4 {
    font-size: 2rem;
  }
}
.pilares h3 {
  font-size: 2.2rem;
}
@media screen and (max-width: 720px) {
  .pilares h3 {
    font-size: 1.8rem;
  }
}
.pilares h4 {
  font-size: 1.8rem;
}
@media screen and (max-width: 720px) {
  .pilares h4 {
    font-size: 1.6rem;
  }
}
.pilares p {
  color: #127296;
  text-align: center;
  width: 40%;
  margin: 2rem auto 3rem;
}
@media screen and (max-width: 1023px) {
  .pilares p {
    width: 70%;
  }
}
@media screen and (max-width: 720px) {
  .pilares p {
    width: 100%;
  }
}
.pilares .items-pilares {
  background: #001e61;
  padding: 4rem 0;
}
.pilares .items-pilares p {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 4px;
  width: 100%;
}
.pilares .items-pilares .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .pilares .items-pilares .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.pilares .figure-article {
  margin: 0;
  display: block;
  position: relative;
  cursor: pointer;
}
.pilares .figure-article img {
  border-radius: 100%;
  display: block;
  height: 150px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 150px;
}
.pilares .figure-article:hover .plus-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.pilares .plus-button {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  height: 3.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  width: 3.5rem;
}
.pilares .plus-button span {
  background: #fff;
  border-radius: 4px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pilares .plus-button span:first-child {
  height: 3px;
  width: 1.5rem;
}
.pilares .plus-button span:last-child {
  height: 1.5rem;
  width: 3px;
}
.pilares article p {
  margin: 1rem auto 0;
}

.proyectos-cedes {
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 720px) {
  .proyectos-cedes {
    padding: 4rem 0;
  }
}
.proyectos-cedes .grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 75%;
}
@media screen and (max-width: 1024px) {
  .proyectos-cedes .grid {
    gap: 3rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 720px) {
  .proyectos-cedes .grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
.proyectos-cedes article {
  position: relative;
  width: 100%;
  height: 375px;
}
@media screen and (max-width: 1600px) {
  .proyectos-cedes article {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .proyectos-cedes article {
    height: 250px;
  }
}
.proyectos-cedes article figure {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.proyectos-cedes article figure::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 97, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
.proyectos-cedes article h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  left: 50%;
  margin: 0;
  max-width: 80%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .proyectos-cedes article h4 {
    font-size: 1.2rem;
  }
}
.proyectos-cedes article img {
  display: block;
  height: 375px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .proyectos-cedes article img {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .proyectos-cedes article img {
    height: 250px;
  }
}
.proyectos-cedes article a {
  background: #009d59;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  left: 50%;
  padding: 0 1rem;
  border: 2px solid #009d59;
  transition: 0.3s;
  letter-spacing: 4px;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  bottom: 2rem;
  transform: translateX(-50%);
}
.proyectos-cedes article a:hover {
  background: white;
  color: #009d59;
}
.proyectos-cedes article:nth-child(3) figure::before, .proyectos-cedes article:nth-child(4) figure::before {
  background: rgba(0, 157, 89, 0.8);
}
.proyectos-cedes article:nth-child(3) a, .proyectos-cedes article:nth-child(4) a {
  background: #001e61;
  border-color: #001e61;
}
.proyectos-cedes article:nth-child(3) a:hover, .proyectos-cedes article:nth-child(4) a:hover {
  background: white;
  color: #001e61;
}
.proyectos-cedes .bg-figure {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 600px;
  width: 100%;
  z-index: -2;
}
@media screen and (max-width: 720px) {
  .proyectos-cedes .bg-figure {
    display: none;
  }
}
.proyectos-cedes .bg-figure img {
  display: block;
  height: 600px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.proyectos-cedes .bg-figure::before, .proyectos-cedes .bg-figure::after {
  background: #001e61;
  content: "";
  display: block;
  height: 200px;
  width: 100px;
  position: absolute;
}
.proyectos-cedes .bg-figure::before {
  left: 0;
  top: -100px;
  border-radius: 0 150px 150px 0;
}
.proyectos-cedes .bg-figure::after {
  right: 0;
  bottom: -100px;
  border-radius: 150px 0 0 150px;
}

.convenios {
  padding: 4rem 0;
}
.convenios .gallery {
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6rem;
}
@media screen and (max-width: 1023px) {
  .convenios .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.convenios figure {
  height: 200px;
  width: 200px;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .convenios figure {
    margin: 0 auto;
  }
}
@media screen and (max-width: 720px) {
  .convenios figure {
    height: 150px;
    width: 150px;
  }
}
.convenios figure img {
  display: block;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.red-bcsd-latam {
  padding: 3rem 0;
}
.red-bcsd-latam p {
  width: 60%;
}
@media screen and (max-width: 1023px) {
  .red-bcsd-latam p {
    width: 70%;
  }
}
@media screen and (max-width: 720px) {
  .red-bcsd-latam p {
    width: 100%;
  }
}
.red-bcsd-latam .gallery-contries {
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .red-bcsd-latam .gallery-contries {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.red-bcsd-latam .gallery-contries figure {
  margin: 0;
  max-width: 4rem;
  width: 100%;
  height: 2.5rem;
}
.red-bcsd-latam .gallery-contries img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.red-bcsd-latam .gallery-red {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .red-bcsd-latam .gallery-red {
    gap: 2rem;
  }
}
.red-bcsd-latam .gallery-red figure {
  margin: 0 auto;
  width: 70%;
}
@media screen and (max-width: 720px) {
  .red-bcsd-latam .gallery-red figure {
    width: 100%;
  }
}
.red-bcsd-latam .gallery-red img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.beneficios {
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
}
.beneficios .grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .beneficios .grid {
    gap: 1rem;
  }
}
@media screen and (max-width: 720px) {
  .beneficios .grid {
    display: block;
    grid-template-columns: none;
    padding-top: 3rem;
  }
}
.beneficios figure {
  border-radius: 100% 100% 0 0;
  height: 100vh;
  left: 50%;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 120%;
  z-index: -1;
}
@media screen and (max-width: 720px) {
  .beneficios figure {
    border-radius: 0;
  }
}
@media screen and (max-width: 475px) {
  .beneficios figure {
    top: initial;
    bottom: 0;
  }
}
.beneficios figure::before {
  content: "";
  display: block;
  width: 120%;
  opacity: 0.7;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.beneficios img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.beneficios h2 {
  background: #127296;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 2rem 2rem 2rem 0;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .beneficios h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 720px) {
  .beneficios h2 {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.beneficios h2::before {
  background: #127296;
  content: "";
  display: block;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 110%;
  z-index: -1;
}
.beneficios ul {
  padding: 2rem 0 0 2rem;
}
@media screen and (max-width: 720px) {
  .beneficios ul {
    padding: 0 0 0 2rem;
  }
}
.beneficios li {
  color: #001e61;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.5rem 0;
  max-width: 70%;
}
@media screen and (max-width: 1023px) {
  .beneficios li {
    max-width: 100%;
  }
}
.beneficios li::before {
  content: "•";
  color: #127296;
  font-weight: bold;
  font-size: 1.5rem;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1em;
}
@media screen and (max-width: 720px) {
  .beneficios li {
    margin: 0 0 1rem;
  }
}

.pilares-wrapper {
  background: #1a1449;
  opacity: 0.8;
  width: 100vw;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
}

.modal-pilares {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 16;
  max-height: 75vh;
  overflow-y: auto !important;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  overflow-x: hidden;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-pilares::-webkit-scrollbar {
  width: 10px;
}
.modal-pilares::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}
.modal-pilares::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}
.modal-pilares::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.modal-pilares .header-modal {
  position: relative;
  padding: 1rem 2rem 0;
  height: 350px;
}
.modal-pilares .header-modal button {
  position: relative;
  display: block;
  margin: 0 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  background: #001e61;
  border-radius: 100%;
  transition: 0.3s;
  transform-origin: top right;
}
.modal-pilares .header-modal button:hover {
  transform: scale(1.05);
}
.modal-pilares .header-modal button span {
  display: block;
  width: 1.5rem;
  height: 3px;
  background: #fff;
  transform: rotate(45deg) translate(7px, -4px);
}
.modal-pilares .header-modal button span:last-child {
  transform: rotate(-45deg) translate(5px, 4px);
}
.modal-pilares .bg-modal {
  margin: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 350px;
  z-index: -1;
}
.modal-pilares .bg-modal img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-pilares h2::before,
.modal-pilares h3::before,
.modal-pilares h4::before {
  width: 0;
  height: 0;
  padding: 2rem 0;
}
.modal-pilares .img-pilar {
  margin: 1rem auto;
  max-width: 12rem;
}
.modal-pilares p {
  font-weight: 500 !important;
  font-size: 1rem !important;
  color: #127296 !important;
  text-align: justify;
  width: 90%;
  margin: 2rem auto !important;
}
.modal-pilares .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 2rem;
}
@media screen and (max-width: 720px) {
  .modal-pilares .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal-pilares .gallery figure {
  margin: 0 auto;
  max-width: 175px;
  height: 175px;
  width: 100%;
}
@media screen and (max-width: 720px) {
  .modal-pilares .gallery figure {
    height: 130px;
    width: 130px;
  }
}
.modal-pilares .gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
