@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

/* -=-=-=-=-=-=-=- NUEVA LANDING REXT -=-=-=-=-=-=-=-*/
body {
    font-family: 'Montserrat', sans-serif;
    color: #514f62;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.75rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.h1, h1, .h2, h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Montserrat', sans-serif;
}

.h1, h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letterspacing: -2px;
}

.h2, h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
}

.h3, h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  letter-spacing: 0px;
  font-weight: 500;
}

b, strong {
    font-weight: 600;
}

@media (max-width: 768px) {
p {
    line-height: 1.5rem;
    font-size: 1rem;
}
  
.h1, h1 {
    font-size: 36px;
    letter-spacing: -1px!important;
}
  
.h2, h2 {
    font-size: 24px;
    line-height: 24px;
}
}


/* -=-=-=-=-=-=-=- MOBILE MENU -=-==-=-=-=-=-=-=-*/
.animated-hamburger {
    width: 30px !important;
    height: 20px !important;
    position: relative !important;
    margin: 0px !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .5s ease-in-out !important;
    -moz-transition: .5s ease-in-out !important;
    -o-transition: .5s ease-in-out !important;
    transition: .5s ease-in-out !important;
    cursor: pointer !important;
    top: -4px;
}
    
.animated-hamburger span {
    display: block !important;
    position: absolute !important;
    height: 1px !important;
    width: 100% !important;
    border-radius: 9px !important;
    opacity: 1 !important;
    left: 0 !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .25s ease-in-out !important;
    -moz-transition: .25s ease-in-out !important;
    -o-transition: .25s ease-in-out !important;
    transition: .25s ease-in-out !important;
}

.animated-hamburger span {
    background: #fff !important;
}

.xca-header.scrolled .xca_navbar .animated-hamburger span {
    background: #514f63 !important;
}
    
.animated-hamburger span:nth-child(1) {
    top: 0px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
    width: 100%!important;
}
    
.animated-hamburger span:nth-child(2) {
    top: 10px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}
    
.animated-hamburger span:nth-child(3) {
    top: 20px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left bottom !important;
    width: 100%!important;
    margin-left: 0%;
}
    
.animated-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 0px !important;
    left: 0px !important;
    width: 100%!important;
}
    
.animated-hamburger.open span:nth-child(2) {
    width: 100% !important;
    opacity: 0 !important;
    transform: translateX(30px)!important;
}
    
.animated-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    top: 21px !important;
    left: 0px !important;
    width: 100%!important;
    margin-left: 0px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}





/* -=-=-=-=-=-=-=- HEADER -=-=-=-=-=-=-=-*/
.xca-header {
    width: 100vw;
    height: 90px;
    position: fixed;
    z-index: 1040;
    background-color: rgba(255,255,255,0);
    transition: 0.4s;
}

.xca-header.scrolled {
    background-color: rgba(255,255,255,0.8);
    opacity: 1;
    transition: 0.4s;
    backdrop-filter: blur(6px);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.25);
    height: 70px;
}

.xca-header nav#navbar-xca a.navbar-brand {
    background-image: url("../img/logoWhite.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 340px;
    height: 110px;
    background-position: center;
    transition: 0.4s;
}

.xca-header.scrolled nav#navbar-xca a.navbar-brand {
    background-image: url("../img/logo.svg");
    transition: 0.4s;
    width: 300px;
    height: 70px;
}

.xca_navbar {
    background-color: transparent!important;
    border-top: none!important;
    position: fixed;
    width: 100vw;
    z-index: 1!important;
    height: 90px!important;
    transition: 0.4s;
}

.xca-header.scrolled .xca_navbar {
    height: 70px!important;
    transition: 0.4s;
}

.navbar-nav_xca {
    display: flex;
    flex-direction: row!important;
    align-items: center;
    justify-content: space-evenly;
    width: fit-content;
    margin-left: auto;
}

.navbar-nav_xca li.nav-item a.nav-link {
    text-transform: none;
    font-weight: 500;
    font-size: 13px!important;
    margin-top: 0px!important;
    color: white;
}

.xca-header.scrolled .navbar-collapse .navbar-nav_xca .nav-item a.nav-link {
    color: #455c67;
}

.navbar-nav_xca li.nav-item a.nav-link.show {
    background-color: #455c67;
    color: white!important;
    border-radius: 50rem;
}

li.nav-item.has-megamenu.dropdown.show a {
    background-color: #455c67;
    color: white !important;
    border-radius: 50rem;
}

.dropdown-toggle::after {
    display: none!important;
}

.navbar .navbar-nav_xca .nav-item a.nav-link.btn-link {
    font-weight: 500!important;
    padding: 8px 15px!important;
    text-align: center;
    line-height: 15px;
}

.navbar-nav_xca .nav-item a.nav-link.btn-link.fill {
    font-weight: 500!important;
}

.navbar-nav_xca .nav-item a.nav-link.btn-link.fill {
    font-weight: 500!important;
    background-color: white;
    border-radius: 50rem;
    color: #455c67;
    border: 1px solid white;
}

.navbar-nav_xca .nav-item a.nav-link.btn-link.fill:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    opacity: 1;
    border: 1px solid white;
}

.xca-header.scrolled .navbar-collapse .navbar-nav_xca .nav-item a.nav-link.btn-link.fill {
    background-color: #455c67;
    border: 1px solid #455c67;
    color: white;
}

.xca-header.scrolled .navbar-collapse .navbar-nav_xca .nav-item a.nav-link.btn-link.fill:hover {
    background-color: rgb(28 70 147 / 10%);
    color: #455c67;
}

.navbar-toggler.navbar-toggler-button.menu-btn {
    border: none;
}

@media (max-width: 1200px) {
.navbar .navbar-nav_xca .nav-item a.nav-link.btn-link {
    padding: 8px 10px!important;
}
}

@media (max-width: 991px) {
.xca-header.scrolled nav#navbar-xca a.navbar-brand {
    width: 260px;
    height: 60px;
    padding-top: 0px!important;
    margin-top: -5px;
}
}

@media (max-width: 768px) {
.xca-header nav#navbar-xca a.navbar-brand {
    width: 220px!important;
    height: 50px!important;
    margin-left: 0px;
    margin-top: -10px;
}
  
.navbar .navbar-nav_xca .nav-item a.nav-link.btn-link {
    font-weight: 300!important;
    padding: 8px 31px!important;
}
  
.xca-header.scrolled {
    height: 60px;
}
  
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    margin-top: 0px;
}

.navbar-nav {
    display: flex;
    flex-direction: column!important;
    list-style: none;
    height: calc(100vh - 85px);
    background: rgb(255 255 255 / 95%);
    justify-content: space-between;
    padding: 40px 0px 80px 0px;
    align-items: center;
    margin-top: 85px;
    margin-left: 0px;
    width: 100%;
    transition: 0.4s;
}
  
  
.xca-header.scrolled .navbar-collapse .navbar-nav {
    margin-top: 60px;
    transition: 0.4s;
}
  
.navbar-nav_xca li.nav-item a.nav-link {
    font-size: 20px!important;
}
  
.navbar-nav_xca li.nav-item a.nav-link {
    font-size: 20px!important;
    color: #465d67;
}
  
.xca-header.login nav#navbar-xca {
    background: rgb(0, 20, 39);
    background: linear-gradient(45deg, rgb(21 51 85) 0%, rgb(19 12 51) 100%);
}
}

.mobileBtnContainer.appMainLink .animated-hamburger.dark.xca-burger span {
    height: 1px!important;
}

.mobileBtnContainer.appMainLink .animated-hamburger.dark.xca-burger.open span:nth-child(1) {
    top: 0px !important;
    left: 3px !important;
}

.mobileBtnContainer.appMainLink .animated-hamburger.dark.xca-burger.open span:nth-child(3) {
    top: 18px !important;
    left: 3px!important;
}


/* -=- SECTION CAROUSEL -=-*/
section#home {
    height: 100vh;
    background-color: #f7f7f7;
    overflow: hidden;
}

.carousel-control-next, .carousel-control-prev {
    width: 5%;
}

.carousel-xca .carousel-inner {
    height: 100vh;
    width: 100%;
}

.carouselOverlay {
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0.6) 100%);
    mix-blend-mode: multiply;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.carousel-xca .carousel-inner {
    height: 100vh;
    min-height: 740px;
    width: 100%;
}

.carousel-xca .carousel-indicators {
    width: 100px;
    margin: 0px;
    left: 9%;
    bottom: 80px;
}

.carousel-xca .carousel-indicators button {
    min-width: 15px;
    height: 5px;
    border-radius: 50rem;
    border: none;
    transition: 0.4s;
    margin-left: 6px;
    margin-right: 6px;
}

.carousel-xca .carousel-indicators button.active {
    min-width: 60px;
    transition: 0.4s;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.carousel-indicators .progress {
    width: 100%;
    height: 5px;
    position: relative;
    border-radius: 50rem;
    top: 0px;
    z-index: 1;
    background-color: #465d67;
}

.progress-bar.carousel {
    background-color: rgba(255,255,255,0.75);
    border-radius: 50rem;
    min-width: 15px;
}

.carousel-indicators .progress-bar {
    height: 100%;
    transition: width 0.6s ease;
  }

.bkg_img {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.img_1 {
    background-image: url("../img/slider_bkg-1.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-attachment: fixed; /* key for parallax */
}

.img_2 {
    background-image: url("../img/slider_bkg-2.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-attachment: fixed; /* key for parallax */
}

.img_4 {
    background-image: url("../img/slider_bkg-4.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    background-attachment: fixed; /* key for parallax */
}

.bkg_img.carousel-video {
  position: relative;
  width: 100%;
  height: 100vh;         /* slide height */
  overflow: hidden;
}

.bkg_img.carousel-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;          /* make taller for parallax shift */
  object-fit: cover;     /* cover like background-size: cover */
  will-change: transform;
}

.carousel-caption.cc-LRN h1 {
    color: #f7f7f7!important;
    font-size: 62px;
    line-height: 62px;
    font-weight: 600;
}

.carousel-caption.cc-LRN h2 {
    color: #f7f7f7!important;
    font-size: 32px;
    line-height: 34px;
    font-weight: 300;
    letter-spacing: 0px;
}

.carousel-caption.cc-LRN.left {
    left: 8%;
    text-align: left;
    top: 18vh;
    bottom: auto;
    width: 40vw;
}

.carousel-caption.cc-LRN.center {
    left: 15%;
    text-align: center;
    top: 22vh;
    bottom: auto;
}

.btn_xca {
    width: auto;
    padding: 12px 24px 12px 24px;
    border: 1px solid white;
    border-radius: 50rem;
    font-weight: 500;
    font-size: 16px;
}

.btn-outline-esmerilado {
    background-color: rgba(255,255,255,0.1)!important;
    color: white;
    backdrop-filter: blur(15px);
}

.btn-outline-esmerilado:hover {
    background-color: rgba(255,255,255,1)!important;
    color: #455c67;
}

.btn-white {
    background-color: white;
    color: #455c67;
}

.btn-white:hover {
    background-color: rgba(255,255,255,0.2)!important;
    color: white;
    backdrop-filter: blur(15px);
}

.btn_xca.btn-darker {
    color: #fff;
    background-color: rgba(0,0,0,0.1);
    border: 1px solid #fff;
    transition: 0.4s;
}

.btn_xca.btn-darker:hover {
    color: #455c67;
    background-color: rgba(255,255,255,1);
    border: 1px solid #fff;
    transition: 0.4s;
}

.carousel-image {
    position: absolute;
    right: 15%;
    height: auto;
    width: auto;
    bottom: 0px;
    top: auto;
}

.ci-container.ci-slide-1 {
    width: 42vw;
    justify-content: center;
}

.ci-container.ci-slide-2 {
    width: 50vw;
}

.ci-container.ci-slide-3 {
    width: 35vw;
}

.ci-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 8%;
    margin-left: auto;
    height: 100vh;
    width: 45vw;
    top: 30px;
    z-index: 2;
}

.carousel-caption {
    z-index: 1;
}

.chat-container {
    position: relative;
    width: 100%;
    height: 220px;
    bottom: -125px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}


.ci-img-1 {
    position: absolute;
}

.ci-img-2 {
    position: absolute;
    width: 230px;
    margin-top: 0%;
    text-align: right;
    margin-right: 0px;
    bottom: 15%;
}

.ci-img-2 p {
    font-size: 18px;
    color: white;
    font-weight: 600;
    line-height: 20px;
}


.ci-img-3 {
    position: absolute;
}

.ci-img-4 {
    position: absolute;
}

.animate__delay-12s {
  animation-delay: 1.2s; /* don't forget to set a duration! */
}

.animate__delay-14s {
  animation-delay: 1.4s; /* don't forget to set a duration! */
}

/* Smooth, subtle movement */
.carousel .ci-img-1,
.carousel .ci-img-1 img {
  will-change: transform;
  transition: transform .12s ease-out;
}

/* If you have an overlay, let pointer events pass through */
.carouselOverlay { pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .carousel .ci-img-1,
  .carousel .ci-img-1 img { transition: none !important; }
}


.numberCounter {
    display: flex;
    align-items: center;
    background: transparent;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 120px;
    line-height: 120px;
    letter-spacing: -5px;
    font-weight: 700;
}

.value {
  display: block;
}


@media (max-width: 1200px) {
.carousel-caption.cc-LRN.left {

  }
  
.carousel-caption.cc-LRN h1 {
    color: #f7f7f7!important;
    font-size: 48px;
    line-height: 46px;
}
}

@media (max-width: 768px) {
section#home {
    max-height: 100vh;
    overflow: hidden;
    height: 100vh;
}
  
.carousel-xca {
    height: 100vh;
}
  
.carouselOverlay {
    pointer-events: none;
    height: 100vh;
}
  
.carousel-xca .carousel-inner {
    height: 100vh;
}
  
.carousel-item {
    height: 100vh;
}
  
.bkg_img {
    height: 100vh;
}

.xca-header.scrolled {
    top: 0px;
}
  
.btn_xca-carousel {
    margin-right: 100%;
    width: 100%;
}
  
.btn_xca {
    padding: 8px 24px 8px 24px;
    font-size: 16px!important;
}
  
.ci-container {
    right: 0%;
    height: 100vh;
    width: 45vw;
    top: 0px;
}
  
.ci-container.ci-slide-1 {
    width: 100%;
    right: 0%;
    left: 0%;
    bottom: -60px;
    z-index: 0;
    top: 120px;
}
  
.ci-img-2 {
    position: absolute;
    width: 230px;
    margin-top: -40%;
    text-align: right;
    margin-right: -50px;
    bottom: 25%;
    top: auto;
}

.ci-container.ci-slide-2 {
    width: 100%;
    right: 0%;
    left: 0%;
    bottom: -60px;
    z-index: 0;
}
  
.ci-container.ci-slide-2 .ci-img-1 img {
    height: 600px;
    width: auto;
}
  
.ci-container.ci-slide-2 .ci-img-2 {
    position: absolute;
    width: 230px;
    margin-top: -40%;
    text-align: right;
    margin-right: -50px;
    bottom: 10%;
    top: auto;
}
  
.ci-container.ci-slide-3 {
    width: 110%;
    right: auto;
    left: 10%;
    bottom: -40px;
    z-index: 0;
}
  
.carousel-caption.cc-LRN.left {
    left: 5%;
    top: 8vh;
    right: 5%;
    width: 90%;
}
  
.numberCounter {
    font-size: 80px;
    letter-spacing: -1px;
    line-height: 80px;
}
  
section#home h1 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px!important;
    margin-bottom: 0px;
}
  
section#home h2 {
    font-size: 16px;
    line-height: 24px;
}

.carousel-xca .carousel-indicators {
    left: 60px;
    bottom: 30px;
}
  
.bkg_img.carousel-video {
    background-color: #000000;
}
}


/* -=- SECTION SIGN UP -=-*/
section#lrn_signup {
    margin-top: 0px;
    margin-bottom: -55px;
    overflow: hidden;
    padding: 10px;
    z-index: 1;
    position: relative;
}

.input-mail-container {
    background-color: white;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.5);
    width: fit-content;
    border-radius: 50rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 60px 6px 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border: 1px solid #fff;
    text-decoration: none;
    color: #606060;
}

.input-mail-container:hover {
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
    background-color: #3b4861;
    color: #f7f7f7;
    border: 1px solid transparent;
    transform: scale(1.05);
}

.input-mail-container:hover::after {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    transition: 0.4s;
}

.input-mail-container h1 {
    font-size: 24px;
    letter-spacing: 0px;
    font-weight: 500;
    margin-bottom: 0px;
}

.input-mail-container h1 {
    font-size: 22px;
}


@media (max-width: 768px) {
section#lrn_signup {
    margin-top: 0px;
    margin-bottom: 0px;
    min-width: 100vw;
    left: 0px;
    padding: 0px;
}
  
section#lrn_signup .container {
    padding: 0px;
}
  
.input-mail-container {
    background-color: #F6F9FF;
    box-shadow: none;
    border-radius: 0px;
    margin: 0px;
    width: 100vw;
    padding: 20px;
}
  
.input-mail-container h1 {
    line-height: 28px;
    text-align: center;
    letter-spacing: 0px!important;
}
  
.btn_check_signup {
    min-width: 35px;
    min-height: 35px;
}
  
.btn_check_signup img {
    width: 15px;
    height: 15px;
}
  
.fc-email-signup {
    font-size: 12px!important;
    height: 38px;
    font-weight: 600;
}
}

/* -=- SECTION QUIENES SOMOS -=-*/
section#quieneSomos {
    min-height: 100vh;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    color: white;
}

.bkg-qs-container {
    position: relative;
    height: 50vh;
    margin: 0;
}

.bkg-qs-img {
    position: relative;
    width: 100vw;
    height: 100%;
    background: url("../img/bkg_qs.png");
    transform-origin: bottom center;
    transition: transform 0.1s linear;
    background-size: cover;
}

@keyframes clouds-loop-1 {
  to {
    background-position: -1000px 0;
  }
}
.clouds-1 {
  background-image: url("../img/clouds_2.png");
  animation: clouds-loop-1 50s infinite linear;
}

@keyframes clouds-loop-2 {
  to {
    background-position: -1000px 0;
  }
}
.clouds-2 {
  background-image: url("../img/clouds_1.png");
  animation: clouds-loop-2 75s infinite linear;
}

@keyframes clouds-loop-3 {
  to {
    background-position: -1579px 0;
  }
}
.clouds-3 {
  background-image: url("../img/clouds_3.png");
  animation: clouds-loop-3 37s infinite linear;
}


.clouds {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.2;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.clouds-1,
.clouds-2,
.clouds-3 {
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 500px;
}


@media (max-width: 768px) {
section#quieneSomos {
    padding-top: 40px;
}
  
.bkg-qs-container {
    position: relative;
    height: 70vh;
    margin: 0;
}
  
.bkg-qs-img {
    width: 100%;
    height: 100%;
}
}



/* -=- SECTION VALORES -=-*/
section#valores {
    padding: 80px 0px;
    overflow: hidden;
}

.row.oc_card-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.card.card-lrn {
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
    padding: 0px;
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    border: none;
}

.card.card-lrn .card-header {
    padding: 0px;
}

.card_img {
    width: 100%;
    height: 263px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(82,95,116);
background: linear-gradient(0deg, rgba(82,95,116,1) 0%, rgba(255,255,255,1) 41%);
}

.ci_1 {
    background-image: url("../img/card_img_1.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.ci_2 {
    background-image: url("../img/card_img_2.jpg");  
    background-size: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.ci_3 {
    background-image: url("../img/card_img_3.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.card_text {
    position: absolute;
    height: 263px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    top: 0px;
    padding: 20px;
}

.title_xca h1 {
    font-size: 34px!important;
    font-weight: 600!important;
    line-height: 34px!important;
    letter-spacing: -1px!important;
    text-align: left;
    color: #f7f7f7!important;
    margin-bottom: 0px!important;
}

.ci-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ci-percentage-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ci-arrow {
    font-size: 40px;
}

.ci-percentage {
    color: #455c67;
    font-size: 40px;
    font-weight: 500;
    line-height: 44px;
    letterspacing: -2px;
    text-align: left;
}

span.percentage {
    font-size: 22px;
    margin-top: -7px;
    position: relative;
    float: right;
    margin-left: 4px;
}

.ci-text {
    color: #455c67;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.001em;
    width: 80%;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.ci-text.hasta {
    margin-top: 4px;
}

.iconoRespaldado {
    background-image: url(icons/icon_respaldado.svg);
    width: 70px;
    height: 70px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.card.card-lrn .card-footer {
    background-color: #F6F9FF;
    border: none;
}

.card.card-lrn .card-footer .ci-footer-container .row .col-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card.card-lrn .card-footer h4 {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: center;
}

.card.card-lrn .card-footer p {
    margin-bottom: 15px;
    font-size: 8px;
    font-weight: 400;
    line-height: 9.6px;
    letter-spacing: 0.002em;
    text-align: center;
    color: #455c67;
}

.ci-location {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #455c67;
    margin-bottom: 20px;
}

.icon.map-pin {
    background-image: url("icons/home_pin.svg");
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.ci-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.ci-arrow.lg {
    width: 45px;
    height: 45px;
}

.icon.arrow-upward {
    background-image: url("icons/arrow_upward-blue.svg");
    background-repeat: no-repeat;
    width: 75%;
    height: 75%;
    position: relative;
    background-position: center center;
    background-size: contain;
}

.icon.arrow-upward-pink {
    background-image: url("icons/arrow_upward-pink.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center center;
    background-size: contain;
}

.icon.food-bank {
    background-image: url("icons/food_bank.svg");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.ci-btn {
  display: none;
}


@media (max-width: 1133px) {
section#valores .container {
    min-width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.oportunidades-card-container {
    height: 540px;
    position: relative;
    top: 0px;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    left: -20px;
    margin-right: -40px;
}
  
.oportunidades-card-container::-webkit-scrollbar {
  display: none;
}
  
.oportunidades-card-container .oc_card-row {
    display: flex;
    flex-direction: row!important;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 480px;
    flex-wrap: nowrap;
    margin-left: 20px;
}
  
.oportunidades-card-container .oc_card-col {
    width: 40vw;
    height: 100%;
}
  
.oc_card-col {
		/*CSS transitions*/
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  /*CSS transforms*/
  -o-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  /*CSS animations*/
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
}
  
.title_xca h1 {
    margin: 0px!important;
}
}

@media (max-width: 768px) {
section#valores {
    padding: 40px 0px;
    overflow: hidden;
}
  
section#valores h1 {
    font-size: 32px;
    line-height: 34px;
}
  
section#valores h2 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 10px;
}
  
.oportunidades-card-container {
    height: 560px;
    position: relative;
    top: 0px;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 20px;
}
  
.oportunidades-card-container.sm {
    height: 460px;
}
  
.oportunidades-card-container::-webkit-scrollbar {
  display: none;
}
  
.oportunidades-card-container .oc_card-row {
    display: flex;
    flex-direction: row!important;
    align-items: center;
    position: absolute;
    width: auto;
    height: 520px;
    flex-wrap: nowrap;
    padding-right: 20px;
    padding-bottom: 50px;
}
  
.oportunidades-card-container .oc_card-col {
    width: 85vw;
    height: 100%;
    position: relative;
}
  
.oc_card-col {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}
  
  
.card.card-lrn {
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    padding: 0px;
    overflow: hidden;
    height: 100%;
    border-radius: 20px;
}
  
.ci-btn {
    display: block;
    background-color: #f6f9ff;
    padding: 0px 10px 20px 10px;
}
  
.ci-btn .btn.btn_xca.btn-grey.w-100 {
    border: 1px solid #455c67;
}
  
.card_text {
    height: auto;
    top: 197px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
}
  
.card_text .label_xca.pink {
    margin-bottom: 10px;
}
  
.label_xca.pink {
    background-color: transparent;
    text-transform: uppercase;
}
  
.label_xca.pink p {
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1px;
}
  
.card.card-lrn.sold-out .card-header .card_text .label_xca.pink p {
    color: #7d879d !important;
}
  
.card.card-lrn.sold-out .card-header .card_text .title_xca h1 {
  color: white!important;
}
  
span.iconHotel {
    opacity: 0.8;
    width: 15px;
    height: 15px;
}
  
.title_xca h1 {
    font-size: 24px!important;
    font-weight: 500!important;
    line-height: 24px!important;
    letter-spacing: -0.02em!important;
    text-align: left!important;
    color: #455c67;
    text-shadow: none;
}
  
.ci-text-container.rentContainer {
    background-color: #F6F9FF;
    padding: 20px;
    margin-top: 10px;
    width: 100%;
}
  
.ci-text-container.rentContainer {
    background-color: #F6F9FF;
    padding: 20px;
    margin-top: 10px!important;
}
.ci-percentage-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
  
.ci-percentage {
    font-size: 24px;
    line-height: 22px;
}
  
.ci-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.002em;
    text-align: center;
    margin-left: 0px;
    width: 100%;
}
  
.ci-arrow {
    float: left;
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -90px;
}
  
.card.card-lrn .card-footer {
    background-color: #F6F9FF;
    border: none;
    padding-bottom: 40px;
}
}



/* -=- SECTION EQUIPO -=-*/
section#equipo {
    padding: 175px 0px 135px 0px;
    overflow: hidden;
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgb(247 251 255) 70%, rgba(225, 230, 239, 1) 100%);
    min-height: 65vh;
}

@media (max-width: 768px) {
section#equipo {
    padding: 40px 0px 105px 0px;
}
  
section#equipo h3 {
    font-size: 18px;
    line-height: 28px;
}
  
section#equipo .storeLogos .appLogos {
    display: flex;
    flex-direction: column;
}
  
section#equipo .storeLogos .appLogos .mediosLogos {
    width: 100%;
}
}



/* -=- SECTION IMPACTO -=-*/
section#impacto {
    background: linear-gradient(90deg, #f5f6ff 0%, #9bc0ca 100%);
    background-size: 120% 120%;
    animation: gradient 5s ease infinite;
    min-height: 100vh;
    padding: 100px 0px 100px 0px;
    overflow: hidden;
    color: #606060;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.card.card-impacto {
    overflow: hidden;
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    border-color: white;
    transition: 0.5s;
    height: 560px;
    transform: scale(0.9);
}

.owl-item.active:hover .card.card-impacto {
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0px 0px 30px 0px rgba(255,255,255,0.5);
    transition: 0.5s;
    color: black;
    transform: scale(1);
}

.owl-item.active .card.card-impacto {
    background-color: rgba(255,255,255,1);
    transform: scale(1);
}

.card.card-impacto .card-body p {
    line-height: 24px;
}

#carouselTestimonios .carousel-indicators {
    position: absolute;
    width: 100%;
    right: 0px;
    margin-left: auto;
    margin-right: 0px;
    bottom: -50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 15px;
}

#carouselTestimonios .carousel-indicators button {
    border: none;
    width: 15px;
    height: 5px;
    border-radius: 50rem;
    background-color: #acbad7;
    opacity: 1;
    transition: 0.4s;
}

#carouselTestimonios .carousel-indicators button.active {
    width: 40px;
    opacity: 0.5;
    transition: 0.4s;
}



.test_img-container {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.test_img-container img {
    height: auto;
    width: 100%;
}

ul.techSolutions {
    padding-left: 0px;
    font-size: 17px;
    line-height: 24px;
}

ul.techSolutions li {
    margin-left: 20px;
    line-height: 24px;
    font-weight: 300;
}


@media (max-width: 768px) {
section#lrn_testimonios {
    padding: 60px 0px 40px 0px;
    overflow: hidden;
}
  
section#impacto .col-md-8.col-12 {
    padding: 0px 25px;
}
  
ul.techSolutions {
    font-size: 15px;
}
}




/* -=- SECTION ELEGIRNOS -=-*/
section#elegirnos {
    padding: 175px 0px 0px 0px;
    overflow: hidden;
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgb(247 251 255) 70%, rgba(225, 230, 239, 1) 100%);
}

.nav-pills_xca {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav-link_xca {
    border-radius: 50rem!important;
    padding: 12px 24px 12px 24px;
    color: #7d879d;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    margin-right: 20px;
    transition: 0.4s;
    border: 1px solid #f5f9fd!important;
}

.nav-link_xca.active {
    background-color: #ffffff !important;
    color: #7d879d!important;
    box-shadow: inset 0px 0px 5px rgb(125, 135, 157, 0.6);
    transition: 0.4s;
    border: 1px solid #fff;
}

.nav-link_xca:hover {
    background-color: #f7fbfe !important;
    color: #7d879d!important;
    box-shadow: inset 0px 0px 5px rgb(125, 135, 157, 0.6);
    transition: 0.4s;
    border: 1px solid #fff;
}

.tab-pane_xca {
    background-color: #514f63;
    box-shadow: 0px 20px 30px 0px rgba(0,0,0,0.25);
    color: white!important;
    border-bottom: 1px solid #0b0a0e;
    border-top: 1px solid #fff;
    margin-top: 25px;
    width: 100%;
}

.tab-pane_xca .row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tab-pane_xca .imgContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 420px;
    overflow: hidden;
}

.imgContainer img {
    width: auto;
    height: 100%;
}

.tab-pane_xca p {
    font-size: 15px;
    color: #f7f7f7;
    font-weight: 300;
    line-height: 22px;
}

.lrnRangeResultsContainer.rentaFija p {
    font-size: 16px;
}

@media (max-width: 1133px) {  
.nav-pills_xca {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    bottom: -60px;
    width: 100%;
}
  
.nav-pills_xca .nav-item {
    width: calc(33% - 20px);
    margin: 10px;
}
  
.nav-link_xca.active {
    background-color: #455c67!important;
    color: #fff!important;
}
  
.nav-link_xca {
    width: 100%;
    background-color: #455c6717 !important;
    border: 1px solid #455c67!important;
}
  
.tab-pane_xca {
    width: 100%;
    text-align: center;
}
}

@media (max-width: 768px) {
section#elegirnos {
    padding: 45px 0px 0px 0px;
}
  
.nav-pills_xca {
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    left: 20px;
    position: RELATIVE;
}

.nav-pills_xca .nav-item {
    margin: auto;
    width: 100%;
    margin-bottom: 15px;
}
  
.nav-pills_xca .nav-item .nav-link_xca {
    padding: 8px 14px 8px 14px;
}
  
div#pills-tabContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
  
.tab-pane_xca {
    margin-top: 15px;
    width: 100%;
}
  
.tab-pane_xca p {
    font-size: 14px;
    line-height: 20px;
}
  
.tab-pane_xca .imgContainer {
    height: 240px;
}
  
}



/* -=- SECTION SOLUCIONES -=-*/
section#soluciones {
    background-image: url("../img/bkg_soluciones.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px;
    overflow: hidden;
    min-height: 65vh;
    transition: 0.4s;
    background-position: center top;
}

#soluciones h2 {
  color: #f7f7f7!important;
}

#soluciones p {
  color: #f7f7f7!important;
}

/* Hide until it's time to animate */
  #collapseTecnologia .js-anim { opacity: 0; }
  #collapseTecnologia .js-anim.is-visible { opacity: 1; }
.btn-tech.collapsed i::before {
    transform: rotate(0deg);
    transition: 0.3s;
}

.btn-tech i::before {
    transform: rotate(90deg);
    transition: 0.3s;
}

div#collapseTecnologia .row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div#collapseTecnologia {
    margin-top: 0px;
}

#collapseTecnologia h1 {
    text-align: left!important;
}


@media (max-width: 743px) {
section#soluciones {
    padding: 65px 0px 65px 0px;
    margin-top: 0px;
    overflow: hidden;
}

}



/* -=- SECTION CONTACTO -=-*/
section#contacto {
    padding: 100px 0px 100px 0px;
    background-color: black;
    position: relative;
    z-index: 0;
    height: 100%;
    color: #fff;
}

.xca_prueba-bkgImg {
    background-image: url("../img/img_contacto.jpg");
    background-size: cover;
    position: absolute;
    width: 100vw;
    height: 100%;
    margin-top: 0px;
    padding-bottom: 50px;
    z-index: -1;
    opacity: 0.8;
    top: 0px;
}

.card {
    border-radius: 16px;
    background-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    border: 1px solid #fff;
}

.card-body {
    padding: 30px;
}

.card.card-soluciones {
    perspective: 500px;
    width: 100%;
    height: 360px;
    transform: perspective(150px) rotateY(6deg);
    transform-origin: left;
    min-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(140 211 203 / 20%);
}

.card.card-soluciones.right {
    transform: perspective(150px) rotateY(-6deg);
    transform-origin: right;
    right: 135px;
}

.card.card-soluciones .card-body {
    padding: 0px;
    top: 4px;
    position: absolute;
}

.card.card-soluciones img {
    height: 350px;
    filter: drop-shadow(0px 0px 2px white);
}

.form-control {
    border-radius: 12px;
    height: 46px;
    background-color: rgba(255,255,255,0.5);
    border: 1px solid #e2e6f0;
}

.form-message {
    height: auto;
}

.form-label {
    margin-bottom: .25rem;
    text-align: left;
    float: left;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

button.btn.btn-secondary {
    border-radius: 50rem;
    padding: 10px 25px;
}

@media (max-width: 768px) {
section#contacto {
    padding: 40px 0px 40px 0px;
}
  
.card.card-soluciones {
    height: 280px;
    min-width: 440px;
    margin-left: 15px;
    margin-right: auto;
    position: relative;
}
  
.card.card-soluciones img {
    height: 270px;
}
  
.card.card-soluciones.right {
    right: 105px;
}
}

/* -=- SECTION FOOTER -=-*/
footer.footer.footer_xca {
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgba(225,230,239,1) 100%);
    padding: 30px 0px 0px 0px!important;
}

footer.footer.footer_xca p {
    color: #455c67;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 10px;
}

footer.footer.footer_xca h6 {
    font-size: 24px;
    font-weight: 500!important;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #455c67!important;
}

footer.footer.footer_xca ul li {
    min-width: 230px;
    margin-left: -30px;
}

footer.footer.footer_xca ul li a {
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    color: #455c67;
    padding: 8px 8px 8px 0px;
    margin-left: 0px;
    transition: 0.4s;
}

footer.footer.footer_xca ul li a:hover {
    margin-left: 15px;
    transition: 0.4s;
}

ul.footerUl li::marker {
    list-style: none;
    color: transparent;
    margin-left: -30px;
}

footer a {
    color: #455c67;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.legales {
    background-color: #465d67;
    padding: 20px;
    margin-top: 40px;
}

.legales p {
    color: white!important;
    margin-bottom: 0px!important;
    font-size: 12px!important;
    letter-spacing: 2px;
}

.storeLogos {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 13px;
    justify-content: center;
    width: 100%;
}

.storeLogos a {
    margin-right: 10px;
    opacity: 1;
    transition: 0.4s;
}

.storeLogos a:hover {
    opacity: 0.4;
    transition: 0.4s;
}

.appLogos {
    display: flex;
    padding: 0px;
    justify-content: space-between;
    margin-top: 20px;
}
  
.storeLogos.certificaciones .appLogos {
    display: flex;
    padding: 0px;
    justify-content: space-evenly;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.storeLogos.certificaciones .appLogos .mediosLogos {
    margin-bottom: 60px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.socialLogos {
    display: flex;
    padding: 0px;
    margin-top: 0px;
    justify-content: space-between;
    width: 200px;
    margin-left: 15px;
}

.si-container.si-cont_xca {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
    width: 300px;
}

.si-container.si-cont_xca a .si-icon {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    margin-right: 10px;
}

.socialLogos .si-icon {
    width: 32px;
    height: 32px;
    filter: brightness(1.2);
}

.si-facebook.circle {background-image: url("icons/si-facebook-blue-circle.svg");}
.si-ig.circle {background-image: url("icons/si-ig-blue-circle.svg");}
.si-linkedin.circle {background-image: url("icons/si-linkedin-blue-circle.svg");}
.si-yt.circle {background-image: url("icons/si-yt-blue-circle.svg");}


.suscribe-container {
    display: flex;
    margin-top: 50px;
}

.suscribe-title {
    margin-right: 40px;
    width: 40%;
}

.suscribe-form {
    width: 60%;
}

.input-group.lrn_input-subscribe .form-control::-ms-input-placeholder {
  color: #455c6785!important;
  font-size: 12px;
  font-weight: 500;
}

.input-group.lrn_input-subscribe .form-control::placeholder {
  color: #455c6785!important;
  font-size: 12px;
  font-weight: 500;
}


@media (min-width: 1199px) {
.col-xl-6-footer {
    width: 50%;
}
}

@media (max-width: 1199px) {
.storeLogos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -30px;
    justify-content: flex-end;
}
  
.socialLogos {
    margin-top: 20px;
}
  
ul.footerUl {
    display: flex!important;
    flex-wrap: wrap;
}
  
footer.footer.footer_xca ul li {
    min-width: auto;
}
}

@media (max-width: 1133px) {
footer.footer.footer_xca .container {
    min-width: 100%;
    padding: 0px 40px;
}
  
.suscribe-container {
    margin-top: 20px;
    width: 70%;
}
}


@media (max-width: 768px) {
ul.footerUl {
    display: flex!important;
    flex-direction: column;
}
  
footer.footer.footer_xca {
    padding: 30px 0px 0px 0px!important;
}
  
footer.footer.footer_xca ul li a {
    padding: 8px 8px 8px 0px;
    font-size: 12px;
}
  
footer.footer.footer_xca h6 {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -1px;
}
  
.legales p {
    font-size: 10px!important;
}
  
.storeLogos.certificaciones .appLogos .mediosLogos img {
    height: 100%;
    width: auto;
}
  
.storeLogos {
    margin-top: 20px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
  
.storeLogos a {
    margin-right: 0px;
}
  
.mediosLogos {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 24px;
}
  
.appLogos {
    display: flex;
    padding: 0px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    flex-wrap: wrap;
}
  
.modalQR .modal-content .modal-body .appLogos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
}
  
.socialLogos {
    display: flex;
    padding: 0px;
    margin-top: 20px;
    justify-content: space-between;
    width: 100vw;
    margin-left: 0px;
}
  
footer.footer.footer_xca p.xsmall {
    margin-top: 0px;
}
  
.si-container.si-cont_xca {
    justify-content: space-between;
}
  
.suscribe-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
  
.suscribe-title {
    width: 100%;
}
  
.suscribe-form {
    width: 100%;
}
  
}

/* -=- SECTION CONTACTO -=-*/
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding: 50px;
}

button.owl-prev {
    background-color: transparent;
    margin: 0px!important;
    border-radius: 0px!important;
    left: 0px!important;
    position: absolute;
    top: calc(50% - 50px);
}

button.owl-prev:hover {
    background-color: transparent!important;
}

button.owl-prev span {
    width: 50px;
    height: 50px;
}

.owlPrev {
    width: 2rem;
    height: 2rem;
    margin: 10px;
    background-image: url("../img/chevron-prev.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

button.owl-next {
    background-color: transparent;
    margin: 0px!important;
    border-radius: 0px!important;
    right: 0px!important;
    position: absolute;
    top: calc(50% - 50px);
}

button.owl-next:hover {
    background-color: transparent!important;
}

button.owl-next span {
    width: 50px;
    height: 50px;
}

.owlNext {
    width: 2rem;
    height: 2rem;
    margin: 10px;
    background-image: url("../img/chevron-next.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}


.owl-theme .owl-dots .owl-dot span {
    width: 15px!important;
    height: 5px!important;
    background: rgba(255,255,255,0.5)!important;
    transition: 0.4s!important;
    margin: 5px 5px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    width: 60px!important;
    transition: 0.4s!important;
    background: rgba(255,255,255,1)!important;
}

.owl-dots {
    margin-top: 25px!important;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}



@media (max-width: 768px) {
.owl-carousel .owl-stage {
    display: flex;
    flex-direction: row;
}
  
.owl-carousel .owl-stage-outer {
    padding: 40px 0px;
}

  
.card.card-impacto .card-body p {
    font-size: 15px;
    line-height: 18px;
}
  
.card.card-impacto .card-body h3 {
    font-size: 18px;
    line-height: 22px;
}

.card.card-impacto {
    height: 920px;
    transform: scale(1);
    padding: 20px;
    margin: 10px;
}
  
.owlPrev {
    width: 1.35rem;
    height: 1.35rem;
}
  
.owlNext {
    width: 1.35rem;
    height: 1.35rem;
}
}

/* -=- SECTION CERTIFICACIONES -=-*/
section#certificaciones {
    min-height: 100%;
    padding: 80px 0px;
}

/* -=- LOGO ANIMATION -=-*/ 
.bg {
    width: 100vw;
    overflow: hidden;
}

.loaderContainer {
    position: absolute;
    left: 0%;
    top: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 1501;
    background-color: #231f20;
    overflow: hidden;
    animation: loaderContainerAnimation 1s ease-out;
    animation-duration: 0.4s;
    animation-delay: 2.15s;
}

@keyframes loaderContainerAnimation {
  0% {opacity: 1; }
  90% {opacity: 0;}
  100% {opacity: 0; z-index: -1;}
}
  
.logoBuild {
    position: absolute;
}
  
.isoContainer {
    position: absolute;
    width: 670px;
    height: 240px;
    
}
  
.iso {
    animation: isoAnimation 1.75s forwards;
    animation-duration: 1.75s;
}
  
@keyframes isoAnimation {
  0% {transform: scale(100%); opacity: 0;}
  50% {transform: scale(100%); opacity: 0;}
  100% {transform: scale(100%); opacity: 1;}
}
  
.isoGlow {
    animation: isoGlowAnimation 0s ease-out;
    animation-duration: 0.4s;
    animation-delay: 1.25s;
    filter: blur(10px);
    opacity: 0;
}
  
@keyframes isoGlowAnimation {
  0% {transform: scale(100%); opacity: 1; filter: blur(10px);}
  100% {transform: scale(300%); opacity: 0; filter: blur(10px);}
}

.pathLong {
  animation: draw 3.5s forwards;
}
  
.pathShort {
  animation: draw 7s forwards;
}
 
 @keyframes draw {
  59% {stroke-dashoffset: 0; opacity: 1;}
  60% {opacity: 0;}
  }
  
.isoGlowTwo {
    animation: isoGlowAnimationTwo 0s ease-out;
    animation-duration: 0.5s;
    animation-delay: 1.25s;
    filter: blur(5px) brightness(2);
    opacity: 0;
    z-index: 5;
}

@keyframes isoGlowAnimationTwo {
  0% {transform: scale(100%); opacity: 0; filter: blur(10px);}
  10% {transform: scale(100%); opacity: 1; filter: blur(10px);}
  100% {transform: scale(300%); opacity: 0; filter: blur(0px);}
}
  
.logoAnimation {
    animation: logoGrowAnimation 3s forwards;
    animation-delay: 0.75s;
    position: relative;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes logoGrowAnimation {
    0% {transform: scale(100%);}
  16% {transform: scale(90%);}
  100% {transform: scale(300%); filter: blur(10px); opacity: 0;}
}
  
.logoContainer {
    position: absolute;
    width: 100%;
    left: 0%;
    top: 60%;
}
  
.logoText {
    position: absolute;
    width: 30%;
    left: 35%;
    top: 60%;
}  

@media (max-width: 768px) {
.logoText {
    position: absolute;
    width: 60%;
    left: 20%;
    top: 60%;
}  
}
