* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.open-sans{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}
.dancing-script{
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
}
:root{
    --bordebtn: 25px;
    --color_principal:rgb(88, 163, 218);
    --colorGrey: rgb(75, 75, 75);
    --colorBlanco: rgb(255, 255, 255);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* fondo */
.contBack{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bodySlider{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeriaCarrusel{
    width: 100%;
    height: 100%;
    background-color: var(--colorBlanco);
    overflow: hidden;
    position: relative;
}

.carrucel{
    width: 600%; /* Se aumenta el porcentaje cada que añadimos una foto */
    height: 100%;
    display: flex;
}

.secction{
    width: calc(100% / 6); /* calculo para repartir 100px / 4 */
    height: 100%;
}

.imageContainer{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filterSection{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

.imageContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
}

.imageText h2{
    font-size: 45px;
    color: var(--colorBlanco);
    margin-bottom: 5px;
}

.imageText p{
    width: 60%;
    font-size: 16px;
    font-weight: 550;
    color: var(--colorBlanco);
}

.buttonLeft,
.buttonRight{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    cursor: pointer;
    transform: translate(0, -50%);
    transition: .6s;
    user-select: none;
    z-index: 2;
}

.buttonLeft i,
.buttonRight i{
    font-size: 25px;
    color: var(--colorBlanco);
    transition: .6s;
}

.buttonLeft i:hover,
.buttonRight i:hover{
    transform: translateY(-10px);
}

.buttonLeft{
    left: 10px;
}

.buttonRight{
    right: 10px;
}

@media only screen and (max-width: 950px){
    .imageText p{
        width: 70%;
    }
}

@media only screen and (max-width: 768px){
    .imageText h2{
        font-size: 45px;
    }
    .imageText p{
        width: 80%;
    }
}

@media only screen and (max-width: 700px){
    .imageText h2{
        font-size: 43px;
    }
    .imageText p{
        width: 85%;
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px){
    .imageText h2{
        font-size: 40px;
    }
    .imageText p{
        width: 75%;
        font-size: 14px;
        font-weight: 500;
    }
}

@media only screen and (max-width: 450px){
    .imageText h2{
        font-size: 35px;
    }
    .imageText p{
        font-size: 13px;
        font-weight: 450;
    }
}

@media only screen and (max-width: 375px){
    .imageText h2{
        font-size: 31px;
    }
    .imageText p{
        font-size: 12.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Nosotros xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contWe{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.we{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textWe{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.textWe h2{
    font-size: 43px;
    color: var(--color_principal);
    margin-bottom: 5px;
    font-family: "Bodoni Moda"
}

.textWe p{
    width: 80%;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorGrey);
}

.textWe span{
    font-size: 16px;
    font-weight: 600;
    color: var(--color_principal);
}

.textWe img{
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.estructuraWe,
.comisariatoWe,
.comidaBolsa{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.imgEstructura,
.imgComisariato,
.imgComidaBolsa{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.imgEstructura img,
.imgComisariato img,
.imgComidaBolsa img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textEstructura,
.textComisariato,
.textComidaBolsa{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}

.textEstructura h2,
.textComisariato h2,
.textComidaBolsa h2{
    font-size: 27px;
    color: var(--color_principal);
    margin-bottom: 10px;
}

.textEstructura p,
.textComisariato p,
.textComidaBolsa p{
    width: 90%;
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 15px;
    color: var(--colorGrey);
}

.infraText{
    display: flex;
}

.infraText p{
    width: 90%;
    font-size: 16px;
    font-weight: 350;
    margin-bottom: 15px;
    color: var(--colorGrey);
}

.infraText i{
    font-size: 11px;
    color: var(--color_principal);
    margin-right: 5px;
    margin-top: 6px;
}

.textEstructura a,
.textComisariato a,
.textComidaBolsa a{
    text-decoration: none;
}

.textEstructura a button,
.textComisariato a button,
.textComidaBolsa a button{
    width: 150px;
    height: 35px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-size: 500;
    border-radius: var(--bordebtn);
    background-color: var(--color_principal);
    color: var(--colorBlanco);
}

.textEstructura a button i,
.textComisariato a button i,
.textComidaBolsa a button i{
    font-size: 14px;
    color: var(--colorBlanco);
    margin-left: 3px;
}

/* .cont_boton{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */


@media only screen and (max-width: 1150px){
    .textWe h2{
        font-size: 40px;
    }
    .textWe p{
        width: 90%;
        font-size: 16px;
    }
    .textWe span{
        font-size: 16px;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 25px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 15px;
    }
}

@media only screen and (max-width: 1100px){
    .textWe h2{
        font-size: 38px;
    }
    .textWe p{
        width: 95%;
        font-size: 15px;
    }
    .textWe span{
        font-size: 15px;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 22px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 14.5px;
    }
}

@media only screen and (max-width: 950px){
    .textWe h2{
        font-size: 34px;
    }
    .textWe p{
        width: 95%;
        font-size: 14px;
    }
    .textWe span{
        font-size: 14px;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 20px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        width: 100%;
        font-size: 14px;
    }
    .textEstructura a button,
    .textComisariato a button,
    .textComidaBolsa a button{
        width: 150px;
        height: 33px;
        font-size: 14px;
    }
    .textEstructura a button i,
    .textComisariato a button i,
    .textComidaBolsa a button i{
        font-size: 13px;
    }
}

@media only screen and (max-width: 850px){
    .textWe h2{
        font-size: 32px;
    }
    .textWe p{
        width: 95%;
        font-size: 13px;
    }
    .textWe span{
        font-size: 13px;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 20px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px){
    .textWe h2{
        font-size: 30px;
    }
    .estructuraWe,
    .comisariatoWe,
    .comidaBolsa{
        flex-direction: column;
    }
    .imgEstructura,
    .imgComisariato,
    .imgComidaBolsa{
        width: 90%;
        margin: 10px;
    }
    .imgComisariato{
        order: -1;
    }
    .textEstructura,
    .textComisariato,
    .textComidaBolsa{
        width: 90%;
        margin: 10px;
    }
}

@media only screen and (max-width: 550px){
    .textWe h2{
        font-size: 26px;
    }
    .textWe p{
        width: 100%;
        font-size: 12px;
    }
    .textWe span{
        font-size: 12px;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 18px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 13px;
    }
    .textEstructura a button,
    .textComisariato a button,
    .textComidaBolsa a button{
        width: 145px;
        height: 30px;
        font-size: 13px;
    }
    .textEstructura a button i,
    .textComisariato a button i,
    .textComidaBolsa a button i{
        font-size: 12px;
    }
}

@media only screen and (max-width: 450px){
    .textWe img{
        width: 110px;
        height: 45px;
    }
    .textWe h2{
        font-size: 23px;
    }
    .textWe p{
        font-weight: 450;
    }
    .textWe span{
        font-weight: 450;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 17px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 13px;
    }
    .textEstructura a button,
    .textComisariato a button,
    .textComidaBolsa a button{
        width: 145px;
        height: 30px;
        font-size: 13px;
    }
    .textEstructura a button i,
    .textComisariato a button i,
    .textComidaBolsa a button i{
        font-size: 12px;
    }
}

@media only screen and (max-width: 414px){
    .textWe img{
        width: 105px;
        height: 40px;
    }
    .textWe h2{
        font-size: 22px;
    }
    .textWe p{
        font-weight: 450;
    }
    .textWe span{
        font-weight: 450;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 12px;
    }
}

@media only screen and (max-width: 375px){
    .textWe h2{
        font-size: 20px;
    }
    .textWe p{
        font-weight: 400;
    }
    .textWe span{
        font-weight: 400;
    }
    .textEstructura h2,
    .textComisariato h2,
    .textComidaBolsa h2{
        font-size: 15px;
    }
    .textEstructura p,
    .textComisariato p,
    .textComidaBolsa p{
        font-size: 11.5px;
    }
    .textEstructura a button,
    .textComisariato a button,
    .textComidaBolsa a button{
        width: 140px;
        height: 27px;
        font-size: 12px;
    }
    .textEstructura a button i,
    .textComisariato a button i,
    .textComidaBolsa a button i{
        font-size: 11px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Menu xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contMenu{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(245,245,245);
    padding-top: 80px;
    padding-bottom: 50px;
}
.contMenu h3{
    font-size:30px;
    color: var(--color_principal);
    font-weight: 600;
    transform: skewX(-15deg);
    padding-bottom: 10px;
}

.h3Menu{
    margin-top: 50px;
}

.contMenu h4{
    width: 80%;
    font-size: 20px;
    color: var(--colorGrey);
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px;
}

.menu{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.imgMenu{
    width: 23%;
    height: auto;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .5s ease-out;
    cursor: pointer;
    user-select: none;
}

.imgMenu:hover{
    transform: scale(1.04);
}

.imgMenu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.textImgMenu{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    border-radius: 5px;
    color: var(--colorBlanco);
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.textImgMenu:hover{
    background-color: rgba(0, 0, 0, 0.6);
}

.imgMenu:hover .textImgMenu{
    opacity: 1;
    visibility: visible;
}

.textImgMenu h2{
    width: 95%;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all .6s ease-out;
}

.textImgMenu button{
    width: 100px;
    height: 23px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background-color: var(--colorBlanco);
    color: var(--colorGrey);
    border-radius: var(--bordebtn);
    transition: .6s;
}

.textImgMenu button:hover{
    transform: translateY(-5px);
}

.textImgMenu button i{
    font-size: 13px;
    margin-left: 5px;
    color: var(--colorGrey);
    transition: .6s;
}

.textImgMenu button:hover i{
    transform: rotate(360deg);
}

.imgInfoServ0,
.imgInfoServ1,
.imgInfoServ2,
.imgInfoServ3,
.imgInfoServ4,
.imgInfoServ5{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0; 
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 8;
    display: none;
}

.itemInfoServ{
    width: 70%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: relative;
    border-radius: 10px;
    margin-top: 80px;
    padding: 40px 70px;
}

#pFast{
    font-size: 19px;
    color: var(--color_principal);
}

.gourmetDesc{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pGourmet{
    width: 45%;
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.imgGourmet{
    width: 55%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgGourmet img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itemInfoServ2{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    position: relative;
    border-radius: 10px;
    margin-top: 85px;
    padding: 40px 70px;
}

.pInfoServ2{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
}

.pInfoServ2 i{
    font-size: 12px;
    margin-top: 10px;
    margin-right: 5px;
    color: var(--color_principal);
}

.pInfoServ2 p{
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 21px;
    color: black;
}

.btnServ{
    top: 20px;
    right: 20px;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    color: var(--colorBlanco);
    background-color: #3187c6;
    border-radius: 50%;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: 0.6s;
}

.btnServ:hover{
    background-color: var(--color_principal);
}

.itemInfoServ img,
.itemInfoServ2 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.itemInfoServ a,
.itemInfoServ2 a{
    text-decoration: none;
    margin-top: 10px;
    color: var(--color_principal);
    font-size: 17px;
    font-weight: 600;
    transition: .6s;
}

.itemInfoServ a i,
.itemInfoServ2 a i{
    font-size: 16px;
    margin-left: 5px;
    color: var(--color_principal);
    transition: .6s;
}

.itemInfoServ a:hover,
.itemInfoServ2 a:hover{
    transform: translate(10px);
}

.itemInfoServ a:hover i,
.itemInfoServ2 a:hover i{
    transform: rotate(360deg);
}

.itemInfoServ h2,
.itemInfoServ h3,
.itemInfoServ2 h2,
.itemInfoServ2 h3{
    font-size: 25px;
    color: var(--color_principal);
    margin-bottom: 5px;
    text-align: center;
}

.itemInfoServ p,
.itemInfoServ2 p{
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 21px;
    color: black;
}

/* @media only screen and (max-width: 1950px){
    .imgMenu{
        height: auto;
    }
} */

@media only screen and (max-width: 1280px){
    .imgMenu{
        width: 25%;
    }
    .textImgMenu h2{
        font-size: 15px;
    }
}

@media only screen and (max-width: 1100px){
    .textImgMenu h2{
        font-size: 13.5px;
    }
    #pFast{
        font-size: 17px;
    }
}

@media only screen and (max-width: 1000px){
    .imgMenu{
        width: 43%;
    }
    .textImgMenu h2{
        font-size: 19px;
    }
    #pFast{
        font-size: 15px;
    }
}

@media only screen and (max-width: 850px){
    .textImgMenu h2{
        font-size: 18px;
    }
    .pInfoServ2 i{
        font-size: 8px;
        margin-top: 10px;
    }
    .gourmetDesc{
        flex-direction: column;
    }
    .pGourmet{
        width: 95%;
    }
    .imgGourmet{
        width: 95%;
    }
}

@media only screen and (max-width: 768px){
    .itemInfoServ{
        width: 70%;
        height: 55%;
    }
    .textImgMenu h2{
        font-size: 16px;
    }
    .itemInfoServ h2,
    .itemInfoServ h3{
        font-size: 22px;
    }
}

@media only screen and (max-width: 700px){
    .contMenu h3{
        font-size: 27px;
    }
    .contMenu h4{
        font-size: 17px;
    }
    .imgMenu{
        width: 45%;
    }
    .textImgMenu h2{
        font-size: 15px;
    }
    .itemInfoServ2{
        margin-top: 85px;
        padding: 20px 20px;
    }
}

@media only screen and (max-width: 650px){
    .itemInfoServ2{
        width: 85%;
        height: 85%;
        margin-top: 50px;
    }
    .textImgMenu h2{
        font-size: 13px;
    }
    .itemInfoServ h2,
    .itemInfoServ h3{
        font-size: 21px;
    }
    .itemInfoServ p{
        font-size: 19px;
    }
    #pFast{
        font-size: 14px;
    }
    .imgGourmet{
        width: 90%;
    }
}

@media only screen and (max-width: 600px){
    .itemInfoServ{
        width: 95%;
        height: 75vh;
    }
    .itemInfoServ2{
        width: 75vh;
        height: 90vh;
        margin-top: 55px;
    }
    .itemInfoServ2 p{
        width: 95%;
        font-size: 17px;
    }
    .itemInfoServ2 h2,
    .itemInfoServ2 h3{
        font-size: 22px;
    }
    .btnServ{
        right: 90%;
    }
}

@media only screen and (max-width: 550px){
    .itemInfoServ{
        width: 85%;
        height: 65vh;
    }
    .itemInfoServ2{
        width: 85%;
        height: 80vh;
        margin-top: 55px;
    }
    .contMenu h3{
        font-size: 25px;
    }
    .contMenu h4{
        font-size: 15px;
    }
    .textImgMenu h2{
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px){
    .textImgMenu h2{
        font-size: 11px;
    }
}

@media only screen and (max-width: 450px){
    .itemInfoServ{
        width: 95%;
        height: 65vh;
        padding: 0;
    }
    .itemInfoServ2{
        width: 85%;
        height: 65vh;
        margin-top: 65px;
        padding: 0;
    }
    .itemInfoServ2 p{
        width: 100%;
        font-size: 14px;
    }
    .itemInfoServ2 h2,
    .itemInfoServ2 h3{
        font-size: 18px;
    }
    .btnServ{
        right: 88%;
    }
}

@media only screen and (max-width: 414px){
    .itemInfoServ{
        width: 95%;
        height: 65vh;
        padding: 20px 10px;
    }
    .imgMenu{
        width: 80%;
    }
    .textImgMenu h2{
        font-size: 16px;
    }
    .btnServ{
        top: 12px;
        right: 12px;
        font-size: 12px;
        padding: 5px 10px;
    }
    .itemInfoServ a{
        font-size: 15px;
    }
    .itemInfoServ h2,
    .itemInfoServ h3{
        font-size: 19px;
    }
    .itemInfoServ p{
        font-size: 17px;
    }
}

@media only screen and (max-width: 375px){
    .textImgMenu h2{
        font-size: 14px;
    }
    .itemInfoServ h2,
    .itemInfoServ h3{
        font-size: 17px;
    }
    .itemInfoServ p{
        font-size: 14px;
    }
    .itemInfoServ2{
        width: 85%;
        height: 70vh;
    }
    .itemInfoServ2 p{
        font-size: 12.5px;
    }
    .itemInfoServ2 h2,
    .itemInfoServ2 h3{
        font-size: 16px;
    }
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Informacion xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contInfo{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.titleInfo{
    width: 90%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color_principal);
}

.info{
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cont2TextInfo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.imgInfo{
    width: 50%;
    height: auto;
    margin: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* modificacion */
.imgInfo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Fin de modificacion */

/* .imgInfo video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: height .6s;
}

.imgInfo video.expand {
    height: auto;
} */

.controls{
    position: absolute;
}

.controls button{
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgb(0,0,0,0.8);
    color: white;
    border: none;
    border-radius: 100%;
    transition: .6s;
}

.controls button i{
    font-size: 16px;
    color: var(--colorBlanco);
}

.controls button:hover {
    transform: translateY(-10px);
    background-color: rgb(0,0,0,0.5);
}

.textInfo{
    width: 50%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}

.textInfo h2{
    font-size: 30px;
    color: var(--color_principal);
    margin-bottom: 5px;
}

.textInfo p{
    width: 90%;
    font-size: 18px;
}

/* Modificacion */

.videoInfo0,
.videoInfo1,
.videoInfo2,
.videoInfo3{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0; 
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 8;
    opacity: 0;
}

.videoInfoServ{
    width: 70%;
    height: 85%;
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255, .2);
    backdrop-filter: blur(50px);
    position: relative;
    border-radius: 10px;
    padding: 40px 70px;
}

.btnVideo{
    top: 20px;
    right: 20px;
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    color: var(--colorBlanco);
    background-color: #3187c6;
    border-radius: 50%;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: 0.6s;
}

.btnVideo:hover{
    background-color: var(--color_principal);
}

.videoInfoServ video{
    width: auto;
    height: 100%;
    object-fit: contain;
}


@media only screen and (max-width: 1280px){
    .titleInfo{
        font-size: 17px;
    }
    .textInfo h2{
        font-size: 28px;
    }
    .textInfo p{
        font-size: 17px;
    }
}

@media only screen and (max-width: 1150px){
    .textInfo h2{
        font-size: 26px;
    }
    .textInfo p{
        font-size: 16px;
    }
}

@media only screen and (max-width: 1050px){
    .textInfo h2{
        font-size: 22px;
    }
    .textInfo p{
        font-size: 14.5px;
    }
}

@media only screen and (max-width: 950px){
    .textInfo h2{
        font-size: 20px;
    }
    .textInfo p{
        font-weight: 500;
        font-size: 13.5px;
    }
}

@media only screen and (max-width: 850px){
    .titleInfo{
        font-size: 15px;
    }
    .cont2TextInfo{
        flex-direction: column;
    }
    .textInfo:nth-child(2){
        order: -1;
    }
    .imgInfo{
        width: 95%;
    }
    .textInfo{
        width: 90%;
        text-align: center;
        align-items: center;
    }
    .textInfo h2{
        font-size: 24px;
    }
    .textInfo p{
        font-weight: 400;
        font-size: 16px;
    }
    .videoInfoServ{
        width: 80%;
        height: 80%;
    }
}

@media only screen and (max-width: 700px){
    .textInfo{
        width: 95%;
    }
    .textInfo h2{
        font-size: 23px;
    }
    .textInfo p{
        font-size: 15px;
    }
    .videoInfoServ{
        width: 90%;
        height: 80%;
        padding: 70px 10px;
    }
    .btnVideo{
        top: 15px;
        right: 15px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px){
    .textInfo{
        width: 95%;
    }
    .textInfo h2{
        font-size: 20px;
    }
    .textInfo p{
        font-size: 14.5px;
    }
}

@media only screen and (max-width: 650px){
    .videoInfoServ{
        width: 90%;
        height: 75%;
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 550px){
    .videoInfoServ{
        width: 90%;
        height: 70%;
    }
}

@media only screen and (max-width: 500px){
    .textInfo h2{
        font-size: 18px;
    }
    .textInfo p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 450px){
    .videoInfoServ{
        width: 95%;
        height: 70%;
        padding: 20px 10px;
    }
    .btnVideo{
        top: 10px;
        right: 10px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 414px){
    .videoInfoServ{
        padding: 30px 10px;
    }
}

@media only screen and (max-width: 380px){
    .textInfo h2{
        font-size: 17.5px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Compromisos xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contCompromiso{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    background-color: rgb(245,245,245);
}

.titleOneCompro{
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.titleOneCompro h2{
    font-size: 40px;
    color: var(--color_principal);
}

.compromiso{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textCompromiso{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.titleCompro{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.titleCompro img{
    width: 50px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.titleCompro h2{
    font-size: 25px;
    color: var(--color_principal);
}

.textCompromiso p{
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorGrey);
}

.textCompromiso p:nth-child(2){
    margin-bottom: 5px;
}

.textCompromiso ul{
    list-style: none;
}

.textCompromiso ul li{
    padding: 0 50px;
    font-size: 16px;
    font-weight: 550;
    margin: 5px;
    color: var(--colorGrey);
}

@media only screen and (max-width: 650px){
    .titleOneCompro h2{
        font-size: 35px;
    }
    .titleCompro img{
        width: 40px;
        height: 30px;
    }
    .titleCompro h2{
        font-size: 23px;
    }
    .textCompromiso p{
        font-size: 15px;
        font-weight: 500;
    }
    .textCompromiso ul li{
        font-size: 14px;
        font-weight: 550;
    }
}

@media only screen and (max-width: 550px){
    .titleOneCompro h2{
        font-size: 30px;
    }
    .titleCompro img{
        width: 35px;
        height: 25px;
    }
    .titleCompro h2{
        font-size: 22px;
    }
    .textCompromiso p{
        font-size: 15px;
        font-weight: 500;
    }
    .textCompromiso ul li{
        font-size: 14px;
        font-weight: 550;
    }
}

@media only screen and (max-width: 450px){
    .titleOneCompro h2{
        font-size: 25px;
    }
    .titleCompro img{
        width: 32px;
        height: 22px;
    }
    .titleCompro h2{
        font-size: 21px;
    }
    .textCompromiso p{
        font-size: 14px;
    }
    .textCompromiso ul li{
        font-size: 13px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx CodigosQr xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contCodigosQr{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contCodigosQr h2{
    margin: 10px 0 25px 0;
    font-size: 45px;
    color: var(--color_principal);
}

.codigosQr{
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newTec,
.accesos{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px;
}

.textTec{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

.textAcces{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
}

.textTec h2,
.textAcces h2{
    font-size: 25px;
    color: var(--color_principal);
    margin-bottom: 5px;
}

.textTec p,
.textAcces p{
    width: 90%;
    font-size: 16px;
    color: var(--colorGrey);
}

.imgTec,
.imgAcces{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgTec img,
.imgAcces img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1150px){
    .contCodigosQr h2{
        font-size: 43px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 23px;
    }
    .textTec p,
    .textAcces p{
        font-size: 15px;
    }
}

@media only screen and (max-width: 1000px){
    .textTec h2,
    .textAcces h2{
        font-size: 21px;
    }
    .textTec p,
    .textAcces p{
        font-weight: 350;
    }
}

@media only screen and (max-width: 950px){
    .textTec h2,
    .textAcces h2{
        font-size: 20px;
    }
    .textTec p,
    .textAcces p{
        width: 100%;
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px){
    .contCodigosQr h2{
        font-size: 40px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 18px;
    }
    .textTec p,
    .textAcces p{
        font-size: 13.5px;
    }
}

@media only screen and (max-width: 650px){
    .contCodigosQr h2{
        font-size: 37px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 16px;
    }
    .textTec p,
    .textAcces p{
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px){
    .codigosQr{
        flex-direction: column;
    }
    .newTec,
    .accesos{
        width: 100%;
        margin: 10px;
    }
    .imgAcces{
        order: 1;
    }
    .textAcces{
        margin-bottom: 15px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 18px;
    }
    .textTec p,
    .textAcces p{
        width: 95%;
        font-size: 14px;
    }
}

@media only screen and (max-width: 550px){
    .contCodigosQr h2{
        font-size: 33px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 18px;
    }
    .textTec p,
    .textAcces p{
        width: 95%;
        font-size: 14px;
    }
}

@media only screen and (max-width: 450px){
    .contCodigosQr h2{
        font-size: 30px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 17px;
    }
    .textTec p,
    .textAcces p{
        font-size: 13.5px;
    }
}

@media only screen and (max-width: 414px){
    .contCodigosQr h2{
        font-size: 28px;
    }
    .textTec h2,
    .textAcces h2{
        font-size: 16px;
    }
    .textTec p,
    .textAcces p{
        font-size: 13px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Certificaciones xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contCertifi{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.titleCertifi{
    width: 100%;
    height: auto;
    text-align: center;
}

.titleCertifi h2{
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--color_principal);
    font-family: "Dancing Script", cursive;
}

.titleCertifi p{
    margin: 0 30%;
    font-size: 17px;
    font-weight: 400;
    color: var(--colorGrey);
    transform: skewX(-15deg);
}

.certifi{
    width: 80%;
    display: flex;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}

.targetCertifi{
    width: calc(100% / 4);
    display: flex;
    margin: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.textCertifi{
    width: 70%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    opacity: 0;
    transition: .6s ease-out;
}

.textCertifi a button{
    width: 120px;
    height: 40px;
    font-size: 15px;
    border: none;
    border-radius: var(--bordebtn);
    color: black;
    cursor: pointer;
    background-color: var(--colorBlanco);
}

/* .textCertifi:hover{
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
} */

.imgCertifi{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgCertifi a{
    text-decoration: none;
}

.imgCertifi img{
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.pCertifi{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorGrey);
}

@media only screen and (max-width: 1130px){
    .certifi{
        width: 100%;
    }
}

@media only screen and (max-width: 1000px){
    .certifi{
        flex-wrap: wrap;
    }
    .targetCertifi{
        width: 45%;
    }
}

@media only screen and (max-width: 700px){
    .targetCertifi{
        width: 50%;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Parnerships xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.contParner{
    width: 100%;
    height: auto;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.titleSlider{
    width: 90%;
}

.titleSlider h2{
    color: var(--color_principal);
    font-size: 30px;
    font-weight: 500;
    transform: skewX(-15deg);
}

@media (max-width: 768px) {
    .tittleParner{
        font-size: 25px;
    }
    .imgParnerOne, .imgParnerTwo {
        width: 100%;
        margin: 20px 0;
    }
    .imgParnerTwo > img:first-child{
        width: 100%;
        height: 120px;
    }
    .imgParnerTwo > img:nth-child(2){
        width: 100%;
    }
    .bodySlider .imgSlider{
        width: 100px; 
        margin: 0px 5px; 
    }
}