
html, body{
    overflow-x: hidden;
    max-width: 100%;
}

/*CARRUSEL GENERALIDADES TAMAÑO*/
.fondoPrins {
    margin-top: 5rem;
    height: 92vh;
    background: transparent;
    position: relative;
    bottom: 0;
}

.carousel-inner{
    background-color: transparent;
    z-index: 2;
}

/*TEXTO DEBAJO DE LOGO*/
.títuloInicio{
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
    font-size: var(--titleSize);
    text-decoration: none;
    color: var(--accentColor);
    background-color: transparent;
}

.textoInicio{
    font-family: 'Dosis', sans-serif;
    font-weight: normal;
    line-height: 40px;
    font-size: var(--titleMediumSize);
    text-decoration: none;
    color: var(--accentColor);
    text-align: left;
}

/*PRIMER FONDO DETRAS DEL LOGO*/
.background-video{
    position: absolute;
    background-color: transparent;
    background-position: center;
    background-size: cover;
    opacity: 1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -100;
    text-align: center;
}

video{
    margin: auto;
    width: auto;
    height: 100vh;
}

/*CONTENEDER DEL LOGO Y EL LEMA*/
div .containerText{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 45vh 55vw 0 5vw;
}

.CTA{
    background-color: var(--mainColor);
    border-radius: 50px;
    padding: 15px;
    width: 225px;
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    font-family: var(--normalFont);
    font-weight: var(--bold);
    font-size: var(--titleSmallSize);
    text-decoration: none;
    transition: 0.25s ease-in-out;
}

.CTA:hover{
    background-color: var(--accentColor);
    color: var(--white);
}

.carousel-indicators{
    z-index: 3;
}

.carousel-indicators button{
    background-color: var(--accentColor);
}
.carousel-indicators [data-bs-target]{
    background-color: var(--accentColor);
}

.fraseInicio{
    background-color: var(--white);
    text-align: center;
    padding: 5px 0;
}

.fraseInicio p{
    color: var(--white);
    font-family: var(--normalFont);
    padding: 40px;
    background-color: var(--mainColor);
    font-size: var(--titleInterSize);
    font-weight: var(--light);
}

/*CONTENEDER DEL LA PATA*/
.franja{
    display: flex;
    justify-content: center;
    position: relative;
    background-color: transparent;
    z-index: 1;
}

.franjaHouse{
    display: block;
    z-index: -2;
    background-color: white;
}

.franja a{
    text-decoration: none;
    color: var(--accentColor);
    margin: 0 20px;
    font-family: var(--normalFont);
    font-weight: bold;
    font-size: var(--titleSize);
    display: flex;
    text-align: center;
}

/*FONDO DE TEXTO FRANJA*/
.lineaDoble{
    background-color: var(--white);
}
/*BARRA DETRÁS DE LA PATA*/
.lineaDoble:after {
    border-bottom: 4px solid var(--accentColor);
    -webkit-box-shadow: 0 1px 0 0 var(--accentColor);
    -moz-box-shadow: 0 1px 0 0 var(--accentColor);
    box-shadow: 0 1px 0 0 var(--accentColor);
    content: "";
    margin: 0 auto; /* this centers the line to the full width specified */
    position: absolute;
    top: 48%; left: 0; right: 0;
    width: 90%;
    z-index: -1;
}

.textoAcercaDe{
    display: flex;
    flex-direction: row;
}

.parrafosAcercaDe{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 40%;
    margin: 3vw 3vw 3vw 10vw;
    font-family: var(--textFont);
    font-size: var(--titleSmallSize);
}

.imagenesAcercaDe{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 40%;
    padding: 0 0 50px 0;
    margin: 0 10vw 0 3vw;
    justify-content: center;

}

.imagenesAcercaDe .SOLID{
    width: 60%;
    height: auto;
    margin: auto;
}

.imagenesAcercaDe .NX{
    width: 60%;
    height: auto;
    margin: auto;
}

.textoMVV{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    margin: 35px 8vw 60px 8vw;
}

.segmentoMVV{
    width: 20%;
    font-family: var(--textFont);
    font-size: var(--titleSmallSize);
    font-weight: normal;
}

.segmentoMVV .titulo{
    font-family:  var(--normalFont);
    font-weight: bold;
    color: var(--accentColor);
    font-size: var(--titleSize);
    margin-bottom: 40px;
}

.vision{
    width: 35%;
    padding: 0 150px;
    border: solid 5px var(--accentColor);
    border-bottom: transparent;
    border-top: transparent;
}

.imagenesClientes{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    margin: 4vw 15vw;
}

.imagenesClientes img{
    width: auto;
    height: 3vw;
}

/*PANTALLAS 4K*/
@media (min-width: 2000px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: fit-content;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        top: 15vh;
        right: 12vw;
        width: 50vw;
        height: auto;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleSize);
        text-align: left;
        background-color: transparent;
        border: transparent;
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 40vh auto 0 auto;
        padding: 0 50vw 0 5vw;
        background-color: transparent;
    }

    .textoInicio{
        line-height: 40px;
        font-size: var(--titleMediumSize);
        text-align: left;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio{
        margin: 120px 0 80px 0;
    }

    .fraseInicio p{
        padding: 50px;
        margin: 70px 0 80px 0;
        font-size: var(--titleInterSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: row;
    }

    .parrafosAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 70%;
        margin: 3vw 3vw 3vw 15vw;
        font-family: var(--textFont);
        font-size: var(--titleMediumSize);
        justify-content: center;
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 50%;
        padding: 50px 0;
        margin: 0 10vw 0 3vw;

    }

    .imagenesAcercaDe .SOLID{
        width: 60%;
        height: auto;
        margin: 0 0 30px 0;
    }

    .imagenesAcercaDe .NX{
        width: 60%;
        height: auto;
        margin: 30px 0;
    }

    .textoMVV {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 3vw 8vw;

    }

    .segmentoMVV{
        width: 25%;
        font-size: var(--titleMediumSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 30%;
        padding: 0 40px;
        border-left: solid 5px var(--accentColor);
        border-right: solid 5px var(--accentColor);
        border-top: transparent;
        border-bottom: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 4vw 15vw;
    }

    .imagenesClientes img{
        height: 3vw;
        width: auto;
        margin: 20px 20px;
    }

}

/*PANTALLAS GRANDES*/
@media (max-width: 1999px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 900px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: 0;
        top: 20px;
        width: 100vw;
        height: auto;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: left;
        background-color: transparent;
        border: transparent;
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 40vh auto 0 auto;
        padding: 0 50vw 0 5vw;
        background-color: transparent;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: left;
        width: 35vw;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }


    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleMediumSize);
        line-height: 35px;

    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: row;
    }

    .parrafosAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 70%;
        margin: 3vw 3vw 3vw 10vw;
        font-family: var(--textFont);
        font-size: var(--titleMiniSize);
        justify-content: center;
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 30%;
        padding: 50px 0;
        margin: 0 10vw 0 3vw;

    }

    .imagenesAcercaDe .SOLID{
        width: 100%;
        height: auto;
        margin: 0 0 30px 0;
    }

    .imagenesAcercaDe .NX{
        width: 100%;
        height: auto;
        margin: 30px 0;
    }

    .textoMVV {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 40px 30px 60px 30px;

    }

    .segmentoMVV{
        width: 25%;
        font-size: var(--titleMiniSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 30%;
        padding: 0 40px;
        border-left: solid 5px var(--accentColor);
        border-right: solid 5px var(--accentColor);
        border-top: transparent;
        border-bottom: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 4vw 15vw;
    }

    .imagenesClientes img{
        height: 3vw;
        width: auto;
        margin: 20px 30px;
    }

}

/*PANTALLAS LAPTOP GRANDES*/
@media (max-width: 1440px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 900px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: 0;
        top: 40px;
        width: 100vw;
        height: auto;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: left;
        background-color: transparent;
        border: transparent;
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 40vh auto 0 auto;
        padding: 0 50vw 0 5vw;
        background-color: transparent;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: left;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleMediumSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
        align-content: center;
        align-items: center;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--titleSmallSize);
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 70vw;
        padding: 0;
        margin: 0 0;
        justify-content: space-evenly;

    }

    .imagenesAcercaDe .SOLID{
        width: 50%;
        height: auto;
        margin: 0 30px;
    }

    .imagenesAcercaDe .NX{
        width: 30%;
        height: auto;
        margin: 0 30px;
    }

    .textoMVV {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 40px 30px 60px 30px;

    }

    .segmentoMVV{
        width: 25%;
        font-size: var(--titleSmallSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 30%;
        padding: 0 40px;
        border-left: solid 5px var(--accentColor);
        border-right: solid 5px var(--accentColor);
        border-top: transparent;
        border-bottom: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 4vw 10vw;
    }

    .imagenesClientes img{
        height: 4vw;
        width: auto;
        margin: 20px 20px;
    }

}

/*IPAD AIR HORIZONTAL*/
@media (max-width: 1200px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 680px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: 0;
        top: 40px;
        width: 100vw;
        height: auto;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: left;
        background-color: transparent;
        border: transparent;
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 40vh auto 0 auto;
        padding: 0 50vw 0 5vw;
        background-color: transparent;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: left;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleMediumSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
        align-content: center;
        align-items: center;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--textSize);
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 70vw;
        padding: 0;
        margin: 0 0;
        justify-content: space-evenly;

    }

    .imagenesAcercaDe .SOLID{
        width: 50%;
        height: auto;
        margin: 0 30px;
    }

    .imagenesAcercaDe .NX{
        width: 30%;
        height: auto;
        margin: 0 30px;
    }

    .textoMVV {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 40px 30px 60px 30px;

    }

    .segmentoMVV{
        width: 25%;
        font-size: var(--textSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 30%;
        padding: 0 40px;
        border-left: solid 5px var(--accentColor);
        border-right: solid 5px var(--accentColor);
        border-top: transparent;
        border-bottom: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 4vw 5vw;
    }

    .imagenesClientes img{
        height: 4vw;
        width: auto;
        margin: 20px 20px;
    }

}

/*PANTALLAS NORMALES Y IPAD MINI HORIZONTAL*/
@media (max-width: 1024px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 680px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: 0;
        top: 40px;
        width: 100vw;
        height: auto;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: left;
        background-color: transparent;
        border: transparent;
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 250px auto 0 auto;
        padding: 0 50vw 0 5vw;
        background-color: transparent;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: left;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleSmallSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
        align-content: center;
        align-items: center;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--titleMiniSize);
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 70vw;
        padding: 0;
        margin: 0 0;
        justify-content: space-evenly;

    }

    .imagenesAcercaDe .SOLID{
        width: 50%;
        height: auto;
        margin: 0 30px;
    }

    .imagenesAcercaDe .NX{
        width: 30%;
        height: auto;
        margin: 0 30px;
    }

    .textoMVV {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        margin: 40px 30px 60px 30px;

    }

    .segmentoMVV{
        width: 25%;
        font-size: var(--titleMiniSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 30%;
        padding: 0 40px;
        border-left: solid 5px var(--accentColor);
        border-right: solid 5px var(--accentColor);
        border-top: transparent;
        border-bottom: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 4vw 5vw;
    }

    .imagenesClientes img{
        height: 4vw;
        width: auto;
        margin: 20px 20px;
    }

}

/*TABLETS GRANDES VERTICAL*/
@media (max-width: 991px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 1080px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: 0;
        top: 30px;
        width: auto;
        height: 90vw;

    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleSize);
        text-align: center;
        background-color: var(--white);
        border: solid 1px var(--white);
        line-height: 50px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 55vh auto 0 auto;
        padding: 0 10vw;
        background-color: white;
    }

    .textoInicio{
        line-height: 40px;
        font-size: var(--titleMediumSize);
        text-align: center;
        width: 85vw;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleMediumSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
        align-content: center;
        align-items: center;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--titleMiniSize);
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 70vw;
        padding: 0;
        margin: 0 0;
        justify-content: space-evenly;

    }

    .imagenesAcercaDe .SOLID{
        width: 60%;
        height: auto;
        margin: 0 30px;
    }

    .imagenesAcercaDe .NX{
        width: 40%;
        height: auto;
        margin: 0 30px;
    }

    .textoMVV {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin: -40px auto 60px auto;

    }

    .segmentoMVV{
        width: 80%;
        font-size: var(--titleMiniSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 80%;
        padding: 40px 0;
        border-bottom: solid 5px var(--accentColor);
        border-top: solid 5px var(--accentColor);
        border-left: transparent;
        border-right: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 2vw 2vw 6vw 2vw;
    }

    .imagenesClientes img{
        height: 5vw;
        width: auto;
        margin: 15px 20px;
    }

}

/*TABLETS NORMALES*/
@media (max-width: 768px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 70px;
        height: 950px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: -10px;
        top: -10px;
        width: auto;
        height: 100vw;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: center;
        background-color: var(--white);
        border: solid 1px var(--white);
        line-height: 40px ;
        font-weight: bolder;
    }

    div .containerText{
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 60vh auto 0 auto;
        padding: 0 10vw;
        background-color: white;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: center;
        width: 80vw;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 70px 0 80px 0;
        font-size: var(--titleSmallSize);
        line-height: 35px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleInterSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
        align-content: center;
        align-items: center;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--titleMiniSize);
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 70vw;
        padding: 0;
        margin: 0 0;
        justify-content: space-evenly;

    }

    .imagenesAcercaDe .SOLID{
        width: 50%;
        height: auto;
        margin: 0 30px;
    }

    .imagenesAcercaDe .NX{
        width: 30%;
        height: auto;
        margin: 0 30px;
    }

    .textoMVV {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin: -40px auto 60px auto;

    }

    .segmentoMVV{
        width: 80%;
        font-size: var(--titleMiniSize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleInterSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 80%;
        padding: 40px 0;
        border-bottom: solid 5px var(--accentColor);
        border-top: solid 5px var(--accentColor);
        border-left: transparent;
        border-right: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 2vw 4vw 4vw 4vw;
    }

    .imagenesClientes img{
        height: 4vw;
        width: auto;
        margin: 15px 20px;
    }

}

/*CELULARES*/
@media (max-width: 480px) {

    html, body{
        overflow-x: hidden;
        max-width: 100%;
    }

    body{
        background-color: white;
    }

    /*CARRUSEL GENERALIDADES TAMAÑO*/
    .fondoPrins {
        padding-bottom: 80px;
        height: 800px;
        background: transparent;
        position: relative;
        bottom: 0;
    }

    video{
        position: absolute;
        right: -10px;
        top: 50px;
        width: auto;
        height: 100vw;
    }

    /*TEXTO DEBAJO DE LOGO*/
    .títuloInicio{
        font-size: var(--titleInterSize);
        text-align: center;
        background-color: var(--white);
        border: solid 1px var(--white);
        line-height: 40px ;
        font-weight: bolder;
    }

    div .containerText {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 42vh auto 0 auto;
    }

    .textoInicio{
        line-height: 30px;
        font-size: var(--titleSmallSize);
        text-align: center;
        width: 85vw;
    }

    .CTA{
        padding: 12px;
        width: 175px;
        margin-top: 10px;
        color: var(--white);
        font-size: var(--titleMiniSize);
    }

    .fraseInicio p{
        padding: 23px;
        margin: 40px 0 50px 0;
        font-size: var(--titleSmallSize);
        line-height: 25px;
    }

    .franja a{
        margin: 0;
        font-size: var(--titleInterSize);
        display: flex;
        padding: 0 20px;

    }

    /*FONDO DE TEXTO FRANJA*/
    .lineaDoble{
        text-align: center;
    }


    .textoAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 10vh;
    }

    .parrafosAcercaDe{
        width: 82vw;
        margin: 5vw 10vw ;
        font-family: var(--textFont);
        font-size: var(--titleTinySize);
        text-align: center;
    }

    .imagenesAcercaDe{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100vw;
        padding: 0;
        margin: 0 auto;

    }

    .imagenesAcercaDe .SOLID{
        width: 60%;
        height: auto;
        margin: auto auto 20px auto;
    }

    .imagenesAcercaDe .NX{
        width: 60%;
        height: auto;
        margin: auto;
    }

    .textoMVV {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin: -40px auto 40px auto;

    }

    .segmentoMVV{
        width: 80%;
        font-size: var(--titleTinySize);
        margin: 20px auto;
    }

    .segmentoMVV .titulo{
        font-family:  var(--normalFont);
        font-weight: bold;
        color: var(--accentColor);
        font-size: var(--titleInterSize);
        margin-bottom: 15px;
    }

    .vision{
        width: 80%;
        padding: 40px 0;
        border-bottom: solid 5px var(--accentColor);
        border-top: solid 5px var(--accentColor);
        border-left: transparent;
        border-right: transparent;
    }


    .imagenesClientes{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 4vw;
    }

    .imagenesClientes img{
        width: 65%;
        height: auto;
        margin: 20px 0;
    }

}