:root{
    --slide-transform: 0;
    --transition: transform .6s;
}
.nosotros__container{
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}
body{
    background-color: transparent;
}
.nosotros__text{
    width: 80vh;
    position: absolute;
    color: #fff;
    z-index: 100;
    margin-top: 30vh;
    left: 10vh;
    z-index: 1000;
    margin-top: 30vh;
}
.nosotros__text h2{
    font-size: 36px;
    color: #fff;
}
.nosotros__text p{
    font-size: 18px;
    color: #ddd;
}
.nosotros__left{
    flex-basis: 60%;
    padding: 5vh;
    padding-left: 8vh;
}
.nosotros__right{
    flex-basis: 40%;
    display: flex;
    justify-content: center;
}
.nosotros{
    display: flex;
    color: #000;
}
.nosotros h3{
    font-size: 30px;
    text-align: center;
    color: #091779;
    text-shadow: 8px 8px 12px #ddd;
    margin-bottom: 15px;
}
.nosotros p{
    font-size: 18px;
    text-align: left;
    margin: 0;
    margin-top: 5px;
}
/*Carousel*/
.background__change{
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}
.background__change-container{
    min-height: 100vh;
    flex-direction: row;
    position: relative;
    display: flex;
}
.background__element{
    min-width: 100vw;
    height: 100%;
}
.background__element:nth-child(1){
    background: linear-gradient(#0008, #0008), url('../img/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% top;
}
.background__element:nth-child(2){
    background: linear-gradient(#0008, #0008), url('../img/bg2.webp');
    background-repeat: no-repeat;
    background-size: cover;
}
.background__element:nth-child(3){
    background: linear-gradient(#0008, #0008), url('../img/bg3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 65% top;
}
/*Seccion de clientes*/
.clientes{
    margin-top: 5vh;
    height: 45vh;
    background: #06147a;
    background-size: cover;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.clientes__container{
    position: relative;
    width: 140vh;
    height: inherit;
    text-align: center;
}
.carousel__right{
    width: 100%;
    height: inherit;
}
.clientes__container-container{
    display: flex;
    flex-wrap: nowrap;
    height: auto;
    transform: translateX(var(--slide-transform));
    transition: var(--transition);
}
.clientes__container i{
    font-size: 40px;
    position: absolute;
    z-index: 10000000;
    color: #fff;
    user-select: none;
    bottom: 5vh;
    z-index: 1000;
}
.clientes__container i:hover{
    cursor: pointer;
}
.clientes__container .right{
    right: 1vh;
}
.clientes__container .left{
    left: 1vh;
}
.carousel__wall{
    height: 150%;
    margin-top: -10vh;
    width: 150%;
    border-left: 15px solid #fff;
    z-index: 100000;
    transform: rotate(11deg);
    margin-left: 5vh;
    background-color: #0E22AF;
}
.clientes h3{
    color: #fff;
    font-size: 30px;
    padding-top: 2vh;
    display: inline-block;
}
.clientes h3:hover{
    color: #ddd;
}
/*Clientes individuales*/
.cliente__item{
    height: 80%;

    min-width: 100%;
    color: #eee;
    padding: 4vh;
    z-index: 1000;

}
.cliente__item-container{
    width: 800px;
    height: 30vh;
    background-color: #0005;
    margin: auto;
    padding: 5vh;
}
.cliente__item-container p{
    margin-top: 10vh;
    color: #ddd;
}
@media(max-width: 1500px){
    .clientes__container{
        width: 120vh;
    }
    .cliente__item-container{
        max-width: 80%;
    }

}
@media(max-width: 1200px){

    .clientes__container{
        width: 100%;
        height: auto;
    }
    .clientes{
        min-height: 45vh;
    }
    .clientes__container i{
        bottom: 10vh;
    }
    .clientes h3{
        font-size: 24px;
    }
    .carousel__right{
        display: none;
    }
    .carousel__right *{
        display: none;
    }
    .cliente__item-container{
        width: 80%;
        padding: 2vh;
        min-height: 30vh;
    }
}
@media(max-width: 80vh){
    .cliente__item-container p{
        margin-top: 0;
    }
}
@media(max-width: 1100px){
    .nosotros__container{
        padding-top: 100px;
    }
}
@media(max-width: 1000px){
    .nosotros{
        flex-direction: column;
    }
    .nosotros video{
        margin: auto;
    }
    .nosotros__left{
        flex-basis: 100%;
    }
    .nosotros__right{
        flex-basis: 100%;
    }
}
@media(max-width: 900px){
    .nosotros__text{
        width: 80%;
        left: 20px;
    }
}
@media(max-width: 700px){
    .nosotros__text {
        margin-top: 12vh;
    }
    .nosotros h3{
        font-size: 26px;
    }
    .nosotros p{
        font-size: 16px;
    }
    .nosotros__text h2{
        font-size: 26px;
    }
    .nosotros__text p{
        font-size: 16px;
    }
    .nosotros__container{
        min-height: 60vh;
        max-height: 65vh;
    }
    .background__change-container{
        min-height: 60vh;
    }
    .nosotros__left{
        padding-left: 2vh;
    }
}
@media(max-width: 500px){
    video{
        width: 80%;
        height: 50vw;
    }
}
/*Animaciones*/
@keyframes introAnimation{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}