/* ======== BANNER ======== */
.who-are-we{
}
main{
    position: relative;
    overflow-x: hidden;
}

.lights{
    padding-top: 100vh;
    position: absolute;
    overflow: hidden;
    z-index: -10;
    height: 100%;
    width: 100%;
}

.lights-groups{
    position: relative;
    width: 100%;
    height: 100%;
}

.lights-groups img{
    position: absolute;

}


.lights-groups .img-left{
    left: -25%;
    animation: lightLeft 8s infinite .4s ease-in-out;
}

.lights-groups .img-right{
    right: -25%;
    animation: lightRight 8s infinite .4s ease-in-out;
}

@keyframes lightLeft {
    0%{
        scale: 1;
        opacity: 1;
        /* transform: translateX(40rem) translateY(20rem); */

        transform: translateX(0) translateY(0);
    }
    50%{
        scale:.3;
        opacity:.3;
        transform: translateX(22rem) translateY(10rem);
    }
    100%{
        scale: 1;
        opacity: 1;
        transform: translateX(0) translateY(0);
        /* transform: translateX(40rem) translateY(20rem); */
    }
}
@keyframes lightRight {
    0%{
        scale:1;
        opacity:1;
        /* transform: translateX(40rem) translateY(20rem); */

        transform: translateX(0) translateY(0);
    }
    50%{
        scale:.3;
        opacity:.3;
        transform: translateX(-40rem) translateY(-20rem);
    }
    100%{
        scale:1;
        opacity:1;
        transform: translateX(0) translateY(0);
        /* transform: translateX(40rem) translateY(20rem); */
    }
}
.lights-groups .img-left:nth-child(1){
    top: 0;
}

.lights-groups .img-left:nth-child(2){
    top: 200vh;
}

.lights-groups .img-left:nth-child(3){
    top: 400vh;
}

.lights-groups .img-left:nth-child(4){
    top: 600vh;
}

.lights-groups .img-left:nth-child(5){
    top: 800vh;
}

.lights-groups .img-right:nth-child(6){
    top: 130vh;
}

.lights-groups .img-right:nth-child(7){
    top: 300vh;
}

.lights-groups .img-right:nth-child(8){
    top: 500vh;
}

.lights-groups .img-right:nth-child(9){
    top: 700vh;
}

header.banner{
    min-height: 90vh;
    min-height: 90dvh;
    background-image: url(../../img/quienes-somos/banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

header.banner .banner-height{
    /* min-height: 90vh;
    min-height: 90dvh; */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
}

header.banner .banner-description{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 0;
    color: var(--c-white);
}

header.banner .banner-desc{
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-desc img{
    position: absolute;
  left: 50%;
  top: 0;
  height: 100vh;
  transform: translateX(-50%);
}

.banner-description img{
    width: 100%;
    max-width: 24rem;
    margin-bottom: 1rem;
}

header.banner .banner-indicator{
    position: absolute;
    bottom: 5.75rem;
    color: var(--c-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.banner-indicator svg{
    width: 4rem;
    height: 4rem;
    margin-bottom: .6rem;

    animation: iScroll 2s infinite ease-in-out;
}

.banner-indicator span{
    font-size: 1rem;
}

header.banner .banner-dec{
    position: absolute;
    top: 60%;
    right: -6%;
}

.banner-dec svg{
    width: 40rem;
    height: 40rem;
}

@keyframes iScroll {
    0%{
        transform: translateY(-1rem);
    }
    50%{

        transform: translateY(0rem);
    }
    100%{
        transform: translateY(-1rem);
    }
}

header.banner .banner-divider{
    background-color: var(--c-black);
    width: 100%;
    height: 4.75rem;
    margin-top: -4.75rem;
    border-top-left-radius: 4.75rem;
    border-top-right-radius: 4.75rem;
    position: relative;
    z-index: 10;
}

/* ======== BANNER ======== */

/* ======== Texts ======== */

.title-special{
    font-family: 'Ronald';
    color: var(--c-white);
    font-size: 120px;
    line-height: 57%;
    margin-bottom: 2rem;
}

.subtitle{
    border: 1px solid var(--c-purple-02);
    font-size: var(--text-waw-42);
    border-radius: var(--r-pill);
    color: var(--c-white);
    font-weight: 700;
    padding: .4rem 2.2rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.text-waw-42-regular{
    font-size: var(--text-waw-42);
    line-height: 125%;
    color: var(--c-white);
    font-weight: 400;
}

.text-waw-42-bold{
    font-size: var(--text-waw-42);
    line-height: 125%;
    color: var(--c-white);
    font-weight: 700;
}

.text-waw-34-regular{
    font-size: var(--text-waw-34);
    line-height: 125%;
    color: var(--c-white);
    font-weight: 400;
}

.text-waw-34-bold{
    font-size: var(--text-waw-34);
    line-height: 125%;
    color: var(--c-white);
    font-weight: 700;
}

.text-waw-24-regular{
    font-size: var(--text-waw-24);
    line-height: 125%;
    color: var(--c-white);
    font-weight: 400;
}

/* ======== Texts ======== */

/* ======== Colors ======== */

.color-01{
    color: var(--c-green-01);
}

.color-02{
    color: var(--c-orange-01);
}

.color-03{
    color: var(--c-blue-02);
}

.color-04{
    color: var(--c-purple-01);
}

.color-05{
    color: var(--c-purple-02);
}

/* ======== Colors ======== */

/* ======== Images ======== */

.cont-img-ind{
    width: 100%;
    text-align: center;
}

.cont-img-ind img{
    width: 100%;
    max-width: 416px;
    border-radius: var(--r-base);
}

/* ======== Images ======== */

/* ======== Background ======== */

.bg-purple-01{
    background: #6442FF;
    background: linear-gradient(180deg, rgba(100, 66, 255, 1) 0%, rgba(150, 137, 255, 1) 100%);
}

.bg-purple-02{
    background: #6442FF;
    background: linear-gradient(270deg, rgba(150, 137, 255, 1) 0%, rgba(100, 66, 255, 1) 100%);
}

.bg-purple-04{
    background: #6442FF;
    background: linear-gradient(270deg, rgba(100, 66, 255, 1) 0%, rgba(150, 137, 255, 1) 100%);
}

.bg-blue-02{
    background: #5B75FF;
    background: linear-gradient(270deg, rgba(128, 195, 255, 1) 0%, rgba(91, 117, 255, 1) 100%);
    /* rgba(91, 117, 255, 1) 0%, rgba(128, 195, 255, 1) */
}

.bg-blue-04{
    background: #5B75FF;
    background: linear-gradient(270deg, rgba(91, 117, 255, 1) 0%, rgba(128, 195, 255, 1) 100%);
}

.bg-green-04{
    background: #6E84FF;
    background: linear-gradient(270deg, rgba(110, 132, 255, 1) 0%, rgba(152, 255, 182, 1) 100%);
}

.bg-orange-02{
    background: #E99148;
    background: linear-gradient(270deg, rgba(185, 120, 255, 1) 0%, rgba(233, 145, 72, 1) 100%);
}

.bg-orange-04{
    background: #E99148;
    background: linear-gradient(270deg, rgba(233, 145, 72, 1) 0%, rgba(185, 120, 255, 1) 100%);
}

/* ======== Background ======== */

.screen{
    border-radius: var(--r-base);
    padding: 90px;
    text-align: center;
    min-height: 520px;
    margin-bottom: -5rem;
}

.list-anim{
    list-style: none;
    padding-left: 0;
}

.list-anim .list-anim-item{
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    padding-left: 4.5rem;
    position: relative;
    transition: padding-left .3s ease-in-out;
    cursor: pointer;
}

.list-anim-item .list-anim-item__img{
    position: absolute;
    width: 100%;
    max-width: 3.875rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: left .3s ease-in-out;
}

.list-anim-item:hover .list-anim-item__img{
    left: 35px;
}

.list-anim-item .list-anim-item__text{

}
/* 
.list-anim-item .list-anim-item__ih{
    border-radius: .4rem;
    width: 100%;
    max-width: 8rem;
    margin-right: .4rem;
    z-index: 10;
    scale: 0;
    width: 0;
    position: relative;
    transition: width .3s ease-in-out, scale .3s ease-in-out;
}

.list-anim-item:hover .list-anim-item__ih{
    width:8rem;
    scale: 1;
    transition: width .3s ease-in-out, scale .3s ease-in-out;
}
*/

.list-anim .list-anim-item .text-anim >*{
    transition: color .3s ease-in-out;
}

.list-anim-item:hover{
    padding-left: 6.8rem;
}

.list-anim .list-anim-item:hover:nth-child(1n) .text-anim >*{
    color: var(--c-purple-02);
}

.list-anim .list-anim-item:hover:nth-child(2n) .text-anim >*{
    color: var(--c-purple-03);
}

.list-anim .list-anim-item:hover:nth-child(3n) .text-anim >*{
    color: var(--c-blue-02);
}

.list-anim .list-anim-item:hover:nth-child(4n) .text-anim >*{
    color: var(--c-green-01);
}

.list-anim .list-anim-item:hover:nth-child(5n) .text-anim >*{
    color: var(--c-purple-02);
}



.card-type-02{
    border-radius: var(--r-base);
    padding: var(--r-base);
    height: 100%;
    overflow: hidden;
}

.card-type-02 .card-02-img{
    position: relative;
    width: 100%;
    height: 10rem;
}

.card-02-img .card-02-img__icon{
    position: absolute;
    background-image: var(--img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: 15rem;
    top: -5rem;
    left: -4rem;
}

.card-02-img__icon i{
    font-size: 5rem;
}

/* ======== Carrousel Nº 1 ======== */

.content-carrousel{
    overflow: hidden;
    height: 386px;
    border-top-right-radius: var(--r-base);
    border-top-left-radius: var(--r-base);
}

.card-type-01{
    border-radius: var(--r-base);
    height: 100%;
    display: flex;
    padding: var(--r-base);
}

.card-type-01__left i{
    font-size: 8rem;
}

.card-type-01 .card-type-01__left{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-type-01 .card-type-01__right{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-type-01__right p:nth-child(2){
    margin-bottom: 0;
}

.carrousel-nav{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    height: 100%;
}

.swiper.swiperN1 {
    width: 100%;
    height: 340px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.carrousel-nav .swiper-button-next,
.carrousel-nav .swiper-button-prev,
.carrousel-nav .swiper-pagination{
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    bottom: inherit;
    transform: inherit;
    margin: 0;
    color: var(--c-white);
    transition: background-color .3s ease-in-out;
}

.carrousel-nav .swiper-button-next svg,
.carrousel-nav .swiper-button-prev svg{
    fill: none;
}

.carrousel-nav .swiper-button-next:hover,
.carrousel-nav .swiper-button-prev:hover{
    background-color: var(--c-white);
}

.carrousel-nav .swiper-button-next:hover svg,
.carrousel-nav .swiper-button-prev:hover svg{
    color: var(--c-black-02);
    transition: color .3s ease-in-out;
}

.carrousel-nav .swiper-pagination{
    font-size: var(--text-waw-24);
}

.carrousel-nav .swiper-button-next,
.carrousel-nav .swiper-button-prev{
    background-color: var(--c-black-02);
    padding: .6rem;
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-pill);
}

.carrousel-nav .swiperN1Next,
.carrousel-nav .swiperN1Prev{

}

/* ======== Carrousel Nº 1 ======== */

/* ======== Carrousel Nº 2 ======== */

.content-carrousel-02{
    background-color: var(--c-white);
    border-radius: var(--r-base);
    height: 680px;
}

.data-carrousel-02{
    margin: auto 0 auto auto;
    max-width: 90%;
}

.data-carrousel-02 .subtitle,
.data-carrousel-02 p{
    color: var(--c-black-02);
}

.data-carrousel-02  .carrousel-nav{
    color: var(--c-black-02);
    flex-direction: row;
    justify-content: start;
}

/* .swiperN2 .swiper-slide{
    color: var(--c-black);
}
 */

.card-type-03{
    width: 100%;
    height: 100%;
    border-radius: var(--r-base);
    min-height: 482px;
    color: var(--c-white);
    padding: var(--r-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background .4s ease-in-out;
}

.card-type-03 .cont-icon{
    margin-bottom: 1rem;
}

.card-type-03 .cont-icon i{
    font-size: 12rem;
    transition: font-size .4s ease-in-out;
}

.card-type-03 p{
    transition: opacity .4s ease-in-out;
}

.swiper-slide:not(.swiper-slide-active) .card-type-03{
    background: var(--c-black);
}

.swiper-slide:not(.swiper-slide-active) .card-type-03 .cont-icon{
    text-align: center;
}

.swiper-slide:not(.swiper-slide-active) .card-type-03 i{
    color: #222932;
    font-size: 20rem;
}

.swiper-slide:not(.swiper-slide-active) .card-type-03 p{
    opacity: 0;
    visibility: collapse;
    display: none;
    color: #222932;
}

/* ======== Carrousel Nº 2 ======== */

.cont-estatuilla{
    width: 100%;
    overflow: hidden;
    max-height: 52rem;
}

.cont-estatuilla img{
    width: 100%;
}

.mt--3{
    margin-top: -3rem;
}

.bi-light{
    background-image: url(../../img/main.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.ticker-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}  

.ticker-track {
    display: flex;
    width: max-content; 
    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem; 
}

.ticker-item {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: sans-serif;

}

.ticker-item img{
    width: 100%;
    max-width: 150px;
}

.pb-mark{
    padding-bottom: 12rem;
}

.dec-line,
.dec-star{
    position: relative;
    width: 100%;
    height: auto;
}

.dec-line svg{
    position: absolute;
    width: 100%;
    height: auto;
    min-width: auto;
    overflow: visible;
}

.dec-line .svg-line-1{
    top: 10rem;
    right: 30%;
    max-width: 75%;
    z-index: -1;
}
.dec-line .svg-line-2{
    top: -14rem;
    right: -18rem;
    max-width: 40rem;
    z-index: 1;
}
.dec-line .svg-line-3{
    top: 20rem;
    right: -30%;
    max-width:auto;
    min-width:50rem;
    z-index: -1;
}
.dec-line .svg-line-4{
    top: 12rem;
    right: 30%;
    max-width: 40rem;
    z-index: -1;
}
.dec-line .svg-line-5{
    top: 0;
    right: -12%;
    max-width: 90%;
    z-index: -1;
}
.dec-line .svg-line-6{
    top: -15rem;
    right: 65%;
    max-width: 32rem;
    z-index: -1;
}
.dec-line .svg-line-7{
    top: -4rem;
    right: 80%;
    max-width: 40rem;
    z-index: -1;
}
.dec-line .svg-line-8{
    top: -10rem;
    right: -25%;
    max-width: 40rem;
    z-index: 2;
}
.dec-line .svg-line-9{
    top: 2rem;
    right: -40%;
    max-width: 60rem;
    z-index: -1;
}

.dec-star img{
    position: absolute;
    width: 100%;
    max-width: 20rem;
}


.dec-star img.im1_1{
    top: -7rem;
    right: 0;
    max-width: 14rem;
    z-index: -1;
}

.dec-star img.im1_2{
    top: -7rem;
    max-width: 14rem;
    z-index: -1;
}

.dec-star img.im2{
    top: -6rem;
    right: 33%;
    max-width: 25rem;
    z-index: -1;
}

.dec-star img.im3{
    top: -6rem;
    right: 93%;
    max-width: 13rem;
}

.swiperN4 .swiper-slide{
    height: auto;
}

.text-anim.title-special > div{
    font-family: 'Ronald' !important;
}

@media screen and (max-height: 800px){
    /* Decoration */

    .dec-line .svg-line-5{
        top: 8rem;
    }
    /* Decoration */
}

@media screen and (max-height: 700px) {
    .subtitle,
    .text-waw-42-bold{
        font-size: var(--text-waw-34);
    }
    .text-waw-34-regular{
        font-size: var(--text-waw-24);
    }

    .banner-description img{
        max-width: 18rem;
    }

    .banner-description h1{
        font-size: 2rem;
    }

    header.banner .banner-divider{
        height: 3rem;
        margin-top: -3rem;
    }

    header.banner .banner-indicator{
        bottom: 3.75rem;
    }

    .banner-indicator svg{
        width: 3rem;
        height: 3rem;
    }

    .card-type-02{
        padding: 1.2rem;
    }
    .card-type-03{
        min-height:450px
    }
    .card-type-03 .cont-icon i{
        font-size: 10rem;
    }
    .content-carrousel-02{
        height: 560px;
    }

    .list-anim .list-anim-item{
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px){
    header.banner .banner-dec {
        position: absolute;
        top: 68%;
        right: -40%;
    }
    .banner-dec svg{
        width: 22rem;
        height: 22rem;
    }
    main {
        margin-bottom: 0 !important;
    }
    .text-waw-34-regular{
        font-size: 24px;
    }
    .text-waw-24-regular{
        font-size: 18px;
    }

    .cont-estatuilla{
        display: none;
    }
    .subtitle,
    .text-waw-42-bold,
    .text-waw-42-regular{
        font-size: var(--text-waw-24);
    }
    /* .text-waw-42-regular{
        font-size: var(--text-waw-34);
    } */
    .text-waw-34-regular,
    .text-waw-34-bold{
        font-size: 24px;
    }

    .pb-mark{
        padding-bottom: 3rem;
    }

    .screen{
        /* padding: 2rem 1rem 1rem;
        margin-bottom: -2rem;
        min-height: 460px; */
        padding: 2rem 1rem 3rem 1rem;
        margin-bottom: -1rem;
        min-height: auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont-img-ind img{
        max-width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .banner-description img{
        max-width: 18rem;
    }

    .title-special{
        font-size: 84px;
    }
    .card-type-01{
        padding: 1rem;
    }

    .card-type-01__left i{
        font-size: 4rem;
    }

    .data-carrousel-02{
        margin: 2rem auto 0;
    }

    .card-type-02 .card-02-img{
        height: 8rem;
    }

    .card-02-img .card-02-img__icon{
        width: 13rem;
        height: 13rem;
    }

    .carrousel-nav{
        height: auto;
    }

    .card-type-03{
        min-height: auto;
        max-height: 280px
    }
    .card-type-03 .cont-icon i{
        font-size: 6rem;
    }

    .swiper.swiperN1{
        height: 280px;
    }

    .content-carrousel{
        height: 330px;
    }

    header.banner .banner-divider{
        height: 3rem;
        margin-top: -3rem;
    }

    .text-waw-42-regular br{
        display: none;
    }

    .carrousel-nav.cn01{
        display: flex;
        flex-direction: row;
        padding-bottom: 1rem;
    }

    .carrousel-nav.cn01 .swiper-pagination{
        width: auto;
        order: 2;
    }

    .carrousel-nav.cn01 .swiperN1Next{
        order: 3;
        transform: rotate(90deg);
    }

    .carrousel-nav.cn01 .swiperN1Prev{
        order: 1;
        transform: rotate(90deg);
    }

    .swiper-slide:not(.swiper-slide-active) .card-type-03 i{
        font-size: 10rem;
    }

    .content-carrousel-02{
        height: auto;
    }

    .screen p{
        font-size: 18px;
    }

    .list-anim .list-anim-item{
        margin-bottom: 1rem;
    }
}

@media screen and (max-width:500px) {
    .dec-star img.im3 {
        top: -4rem;
        right: 80%;
        max-width: 7rem;
        z-index: 1;
    }

    .dec-line .svg-line-1{
        top: 18rem;
        max-width: inherit;
        min-width: 36rem;
        right: -20%;
    }

    .dec-line .svg-line-2{
        top: -7rem;
        right: -6rem;
        max-width: 16rem;
    }

    .dec-line .svg-line-3{
        top: 10rem;
        min-width: 35rem;
    }

    .dec-line .svg-line-4 {
        top: 8rem;
        right: 16%;
    }

    .dec-line .svg-line-5{
        max-width: auto;
        min-width: 55rem;
        top: 7rem;
    }

    .dec-line .svg-line-7{
        top: 4rem;
        right: 64%;
        max-width: 18rem;
    }

    .dec-line .svg-line-8{
        top: -5rem;
        right: -22%;
        max-width: 18rem;
    }

    .dec-line .svg-line-9{
        max-width: inherit;
        min-width: 32rem;
        top: -2rem;
        right: -80%;
    }

    .dec-line .svg-line-6{
        right: 58%;
        top: -7rem;
        max-width: 14rem;
    }

    .dec-star img.im1_1{
        top: 0;
        right: -3rem;
    }
    .dec-star img.im1_2{
        top: 0;
        left: -3rem;
    }
    header.banner .banner-indicator{
        bottom: 3.75rem;
    }
}