@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #000;
}
.background{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(0.025) brightness(1.9);
}

.mainheader{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em;
    transition: 0.5s ease;  
    background: linear-gradient(180deg,#000 0%, transparent 100%);
}
#headeestandarización{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em;
    transition: 0.5s ease;  
    background: transparent
}

.mainheader .h-background{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}
.mainheader .h-background img{
    width: 100%;
    filter:opacity(0.15);
    object-fit: cover;
}
.mainheader .brand{
    z-index: 998;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: left;
    margin-left: 2.5vw;
}
.mainheader .brand .logo{
    width: 7vw;
    margin: 0 1vw;
    transition: 0.5s ease-in-out;
}
.mainheader .brand .logo:hover{
    filter: drop-shadow(0 0 0.3vw black);
}
.mainheader .text{
    z-index: 998;
    outline: none;
    font-size: 2.5vw;
    font-weight: 650;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ECC440 0%, #FFE884 25%, #DDAC17 50%, #FFE884 75%, #ECC440 100%);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    animation: animate 5s linear infinite;
}
@keyframes animate {
    100%{
        background-position: 400%;
    }
}
.mainheader .nav-items{
    text-align: left;
    justify-content: space-between;
}
.mainheader .nav-items a{
    margin-left: 1vw;
    margin-right: 1vw;
    text-decoration: none;
    padding: 0.5vw;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;

}
.mainheader .nav-items .menubar:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 0.1vw solid #fff;
    border-bottom: 0.1vw solid #fff;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}
.mainheader .nav-items .menubar:hover:before{
    transform: scaleY(1);
    opacity: 1;
}
.mainheader .nav-items .menubar:hover{
    color: #000;
}
.mainheader .nav-items .menubar:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-top: 0.1vw solid #fff;
    border-bottom: 0.1vw solid #fff;
    transform: scale(0);
    transition: 0.5s;
    z-index: -1;
}
.mainheader .nav-items .menubar:hover:after{
    transform: scale(1);
    opacity: 1;
}

.mainheader .nav-items .dropdown {
    position: relative;
    display: inline-block;
}
.mainheader .nav-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 25vw;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0; 
    top: 100%; 
}
.mainheader .nav-items .dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.mainheader .nav-items .dropdown-content a:hover {
    background-color: #f1f1f1;
}
.mainheader .nav-items .dropdown:hover .dropdown-content {
    display: block;
}


.pageheader{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em;
    transition: 0.5s ease;  
    background: transparent
}
.pageheader .h-background{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}
.pageheader .h-background img{
    width: 100%;
    filter:opacity(0.15);
    object-fit: cover;
}
.pageheader .brand{
    z-index: 998;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: left;
    margin-left: 2.5vw;
}
.pageheader .brand .logo{
    width: 7vw;
    margin: 0 1vw;
    transition: 0.5s ease-in-out;
}
.pageheader .brand .logo:hover{
    filter: drop-shadow(0 0 0.3vw black);
}
.pageheader .text{
    z-index: 998;
    outline: none;
    font-size: 2.5vw;
    font-weight: 650;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ECC440 0%, #FFE884 25%, #DDAC17 50%, #FFE884 75%, #ECC440 100%);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    animation: animate 5s linear infinite;
}
.pageheader .nav-items{
    text-align: left;
    justify-content: space-between;
}
.pageheader .nav-items a{
    margin-left: 1vw;
    margin-right: 1vw;
    text-decoration: none;
    padding: 0.5vw;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;

}
.pageheader .nav-items .menubar:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 0.1vw solid #fff;
    border-bottom: 0.1vw solid #fff;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}
.pageheader .nav-items .menubar:hover:before{
    transform: scaleY(1);
    opacity: 1;
}
.pageheader .nav-items .menubar:hover{
    color: #000;
    font-weight: 700;
}
.pageheader .nav-items .menubar:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-top: 0.1vw solid #fff;
    border-bottom: 0.1vw solid #fff;
    transform: scale(0);
    transition: 0.5s;
    z-index: -1;
}
.pageheader .nav-items .menubar:hover:after{
    transform: scale(1);
    opacity: 1;
}
.pageheader .nav-items .dropdown {
    position: relative;
    display: inline-block;
}
.pageheader .nav-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 25vw;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0; 
    top: 100%; 
}
.pageheader .nav-items .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.pageheader .nav-items a i{
    font-size: 1vw;
}
.pageheader .nav-items .dropdown-content a:hover {
    background-color: #f1f1f1;
}
.pageheader .nav-items .dropdown:hover .dropdown-content {
    display: block;
}

.marquee-container {
    overflow: hidden;
    margin: 0.5vw 0; /* Ajusta el margen si es necesario */
    white-space: nowrap;
    width: 50%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 6s linear infinite;
}

.marquee-text {
    font-size: 1vw;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.estandarizacion{
    margin: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-i{
    width: 25%;
    margin-left: 20vw;
    display: flex;
    flex-direction: column;
}
.box-i h1{
    margin: 1vw 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 2vw;
}
.box-i h1 i{
    color: var(--clr);
    font-size: 3vw;
    margin-right: 1vw;
}
.box-i p{
    font-size: 1vw;
}
.box-i a{
    margin-top: 2vw;
    background: #000;
    font-size: 1vw;
    text-decoration: none;
    color: #000;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 1vw;
    width: fit-content;
    transition: 0.5s;
    left: 1vw;
}
.box-i a:hover{
    background: var(--clr);
    color: var(--clr);
    transform: scale(1.1);
    letter-spacing: 0.25em;
    box-shadow: 0 0 2vw var(--clr);
    font-weight: 600;
}
.box-i a:before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
}
.box-i a span{
    position: relative;
    z-index: 1;
}

.estandarizacion img{
    height: 25vw;
    margin-right: 10vw;
}

.capacitacion{
    margin: 2vw;
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.capacitacion img{
    height: 25vw;
    margin-left: 10vw;
}

.box-d{
    width: 25%;
    margin-right: 20vw;
    display: flex;
    flex-direction: column;
}
.box-d h1{
    margin: 1vw 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 2vw;
}
.box-d h1 i{
    color: var(--clr);
    font-size: 3vw;
    margin-right: 1vw;
}
.box-d p{
    font-size: 1vw;
}
.box-d a{
    margin-top: 2vw;
    background: #000;
    font-size: 1vw;
    text-decoration: none;
    color: #000;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 1vw;
    width: fit-content;
    transition: 0.5s;
    left: 1vw;
}
.box-d a:hover{
    background: var(--clr);
    color: var(--clr);
    transform: scale(1.1);
    letter-spacing: 0.25em;
    box-shadow: 0 0 2vw var(--clr);
    font-weight: 600;
}
.box-d a:before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
}
.box-d a span{
    position: relative;
    z-index: 1;
}



.consultoria{
    margin: 2vw;
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.consultoria img{
    height: 25vw;
    margin-right: 10vw;
}

.experiencia{
    margin: 2vw;
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.experiencia img{
    height: 25vw;
    margin-left: 10vw;
}

.head{
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5vw;
    font-weight: 600;
    color: #001556
}
.redes{
    margin-left: 30vw;
}
.foot{
    z-index: 111;   
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5vw;
    flex-direction: column;
    align-items: center;
}
.info-f{
    display: flex;
    align-items: center;
}
.foot .column{
    flex: 1;
    margin: 1vw 5vw;
    font-size: 0.7vw;
}



footer{
    position: relative;
    bottom: 0;
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 10vh;
    padding-left: 10vh;
    transition: 0.5s ease;
    background-color: transparent;
    color: #fff;
    font-size: 1.5vh;
}
footer i{
    color: red;
}
.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}
@media(prefers-reduced-motion){
    .hidden{
        transition: none;
    }
}
.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden2{
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 1s;
}
@media(prefers-reduced-motion){
    .hidden2{
        transition: none;
    }
}
.show2{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/** NOSOTROS **/

.n-info{
    display: flex;
    align-items: center;
    justify-content: center;
}
.eslogan{
    z-index: 111;   
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5vw;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(2px 4px 6px black);
}
.eslogan h1{
    font-size: 2.5vw;
    color: #f1f1f1;
}
.eslogan p{
    font-size: 1vw;
    color: #f1f1f1;
    text-align: center;
    width: 40%;
}
.imgcontainer{
    display: flex;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.imgcontainer video{
    width: 100%;
    height: 100%;
    position: absolute;
    filter: brightness(0.6);
    object-fit: cover;
}

.eslogan span{
    font-weight: 700;
    color: #f1f1f1;
}
.nosotrosinf{
    background-color: #000;
    display: flex;
    height: 25vw;
    overflow: hidden;
}
.flexbox{
    flex: 1;
    width: 25vw;
    position: relative;
    font-size: 0.8vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flexbox h1{
    color: #fff;
    padding: 2vw 2vw 0 2vw;
}
.flexbox p{
    padding: 1vw 2vw 2vw 2vw;
}
.flexbox span{
    color: #fff;
    font-weight: 800;
    margin-right: 0.25vw;
}
.flexbox img{
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
}
.flexbox #presidente-title{
    color: #fff;
    font-size: 2vw;
    padding: 2vw;
}
#nosotros-presidente{
    height: auto;
}
#presi{
    align-items: center;
}
.flexbox #director{
    clip-path: none;
    padding: 2vw;
    width: 55%;
}
.nosotrosinf-w{
    display: flex;
    height: 25vw;
    overflow: hidden;
}
.flexbox2{
    flex: 1;
    width: 25vw;
    position: relative;
    font-size: 0.8vw;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vw;   
}
.flexbox2 h1{
    color: #000;
    padding: 2vw 2vw 0 2vw;
}
.flexbox2 p{
    padding: 2vw 8vw 2vw 2vw;
}

.flexbox2 img{
    height: 100%;
}
.myv{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.myv-background{
    width: 100%;
    height: 100%;
    position: absolute;
}
.myv-background video{
    width: 100%;
    height: 100%;
    position: absolute;
    filter: brightness(0.4);
    object-fit: cover;
}
.mision-descrip{
    position: relative;
    color: #f1f1f1;
    width: 30%;
}
.mision-descrip h1{
    font-size: 5vw;
    letter-spacing: 0.5vw;
}
.mision-descrip p{
    font-size: 1vw;
}
.myv-buttons{
    display: flex;
    position: relative;
    flex-direction: column;
}
.myv-buttons button{
    text-decoration: none;
    margin: 2vw;
    background-color: #eceaed;
    padding: 0.5vw 1vw;
    color: #404457;
    font-size: 1vw;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    transition: 0.3s ease-in-out;
}
.myv-buttons button:hover{
    transform: scale(1.2);
}


.mission-vission{
    display: flex;
    align-items: center;
    justify-content: center;
}
.card{
    position: relative;
    width: 18vw;
    height: 25.5vw;
    margin: 2vw;
}
.card .face{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

.card .front{
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}
.card .front img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .front h3{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5vw;
    line-height: 2.5vw;
    color: #fff;
    text-align: center;
    font-size: 1.25vw;
    background: linear-gradient(0deg,#000 0%, transparent 100%);
}
.card .back{
    transform: perspective(600px) rotateY(180deg);
    background-color: #ACCDED;
    padding: 15px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 5px 10px #000;
}
.card .back h3{
    font-size: 1.25vw;
}
.card .back i{
    font-size: 5vw;
}
.card .back p{
    font-size: 0.8vw;
}
.back-cards{
    position: absolute;
    z-index: -1;
    object-fit: cover;
    height: 100%;
    left: 0;
    top: 0;
    filter: opacity(0.06) contrast(2.5);
}
.card:hover .front{
    transform: perspective(600px) rotateY(180deg);
}
.card:hover .back{
    transform: perspective(600px) rotateY(360deg);
}

.valores{
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-tittle{
    display: flex;
    justify-content: center;
    margin: 4vw 0 0 0;
}
.v-tittle h1{
    color: #001556;
    font-size: 2.5vw;
    text-transform: uppercase;
}



.slider-container{
    width: 100%;
    height: 100vh;
    background-image: url('Images/bg-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slider-images{
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
}
.slider-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: 0.5s;
}
.slider-img{
    width: 20vw;
    border-radius: 6px;
    position: relative;
    transition: all 0.7s ease;
    filter: grayscale(1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
    height: 100vh;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
    height: 100vh;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
    height: 100vh;
}
.slider-img h1{
    font-size: 2vw;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    transform: rotate(270deg);
    transition: 0.7s ease;
    text-align: center;
    width: 25vw;
}
.slider-img .details a{
    margin-top: 2vw;
    background: #000;
    font-size: 1vw;
    text-decoration: none;
    color: #000;
    position: fixed;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding: 1vw;
    width: fit-content;
    transition: 0.5s;
    display: none;
    right: -15vw;
    bottom: 1vw;
}
.slider-img a:hover{
    background: var(--clr);
    color: var(--clr);
    transform: scale(1.1);
    letter-spacing: 0.25em;
    box-shadow: 0 0 2vw var(--clr);
    font-weight: 600;
}
.slider-img a:before{
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
}
.slider-img a span{
    position: relative;
    z-index: 1;
}
.details{
    position: absolute;
    bottom: 4vw;
    width: 20vw;
    display: flex;
    flex-direction: column;
    left: 2vw;
}
.details h2{
    font-size: 1.5vw;
    font-weight: 600;
    line-height: 1.5vw;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    transition: 0.7s ease;
    display: none;
    margin-bottom: 1vw;
}
.details p{
    font-size: 1vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.3vw;
    color: #fff;
    transition: 0.7s ease;
    display: none;
}
/* Por defecto, cuando un apartado tiene la clase active */
.slider-img.active {
    width: 70vw !important;
    filter: grayscale(0);
}

.slider-img.active img {
    filter: brightness(0.8);
}

.slider-img.active h1 {
    display: none;
}

.slider-img.active .details p,
.slider-img.active .details h2,
.slider-img.active a {
    display: block;
}
.estandar-t{
    z-index: 111;   
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5vw;
    flex-direction: column;
    align-items: center;
}
.estandar-t h1{
    font-size: 2.5vw;
    color: #001556;
}

/*CAPACITACION*/
#capacitacion-info{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*CAPACITACIONES v2*/
.cap-container input{
    display: none;
}

.cap-container{
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    flex-direction: column;
    margin-bottom: 100px;
}
.cap-container .cards{
    position: relative;
    height: 500px;
    width: 430px;
    margin-bottom: 20px;
    perspective: 1000px;
    transform-style: preserve-3d;
}
.cap-container .cards label{
    position: absolute;
    width: 430px;
    height: 30vw;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.55s ease;
}
.cap-container .cards .cardd{
    position: relative;
    height: 30vw;
    border-radius: 10px;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.cap-container .cards .image{
    display: flex;
    justify-content: center;
}
.cap-container .cards .image img{
    border-radius: 5px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 50%);
    margin-top: 23px;
    width: 86%;
    height: 220px;
    object-fit: cover;
    transition: all .7s;
}
.cap-container .cards .image img:hover{
    transform: scale(1.05);
}
.cap-container .cards .cardd .infos{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cap-container .cards .cardd .infos .name{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2vw;
    margin: 1vw 0 0;
    color: #fff;
}
.cap-container .cards .cardd .infos .lorem{
    margin: 0.5vw 0;
    text-align: center;
    color: #fff;
}
.cap-container .cards .cardd .infos a{
    margin: 1vw 0;
    text-decoration: none;
    border: #fff 0.2vw solid;
    padding: 0.5vw 2vw;
    color: #fff;
    border-radius: 1vw;
    transition: 0.5s;
    font-size: 0.8vw;
    font-weight: 700;
}
.cap-container .cards .cardd .infos a:hover{
    transform: scale(1.1);
    background-color: #fff;
    color: #000;
}

#s1:checked~.cards #slide6,
#s2:checked~.cards #slide7,
#s3:checked~.cards #slide1,
#s4:checked~.cards #slide2,
#s5:checked~.cards #slide3,
#s6:checked~.cards #slide4,
#s7:checked~.cards #slide5{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 45%);
    transform: translate3d(-115%, 0, -220px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}

#s1:checked~.cards #slide7,
#s2:checked~.cards #slide1,
#s3:checked~.cards #slide2,
#s4:checked~.cards #slide3,
#s5:checked~.cards #slide4,
#s6:checked~.cards #slide5,
#s7:checked~.cards #slide6{
    box-shadow: 0 20px 40px rgba(0, 0, 0, 45%);
    transform: translate3d(-60%, 0, -120px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}


#s1:checked~.cards #slide1,
#s2:checked~.cards #slide2,
#s3:checked~.cards #slide3,
#s4:checked~.cards #slide4,
#s5:checked~.cards #slide5,
#s6:checked~.cards #slide6,
#s7:checked~.cards #slide7{
    box-shadow: 0 25px 50px rgba(0, 0, 0, 50%);
    transform: translate3d(0, 0, 0);
    --current-color1: #eceaed;
    --current-color2: #404457;
}

#s1:checked~.cards #slide2,
#s2:checked~.cards #slide3,
#s3:checked~.cards #slide4,
#s4:checked~.cards #slide5,
#s5:checked~.cards #slide6,
#s6:checked~.cards #slide7,
#s7:checked~.cards #slide1{
    box-shadow: 0 20px 40px rgba(0, 0, 0, 45%);
    transform: translate3d(60%, 0, -120px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}

#s1:checked~.cards #slide3,
#s2:checked~.cards #slide4,
#s3:checked~.cards #slide5,
#s4:checked~.cards #slide6,
#s5:checked~.cards #slide7,
#s6:checked~.cards #slide1,
#s7:checked~.cards #slide2{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 45%);
    transform: translate3d(115%, 0, -220px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}

#s1:checked~.cards #slide4,
#s2:checked~.cards #slide5,
#s3:checked~.cards #slide6,
#s4:checked~.cards #slide7,
#s5:checked~.cards #slide1,
#s6:checked~.cards #slide2,
#s7:checked~.cards #slide3{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 45%);
    transform: translate3d(160%, 0, -240px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}

#s1:checked~.cards #slide5,
#s2:checked~.cards #slide6,
#s3:checked~.cards #slide7,
#s4:checked~.cards #slide1,
#s5:checked~.cards #slide2,
#s6:checked~.cards #slide3,
#s7:checked~.cards #slide4{
    box-shadow: 0 15px 30px rgba(0, 0, 0, 45%);
    transform: translate3d(-160%, 0, -240px);
    --current-color1: #eceaed;
    --current-color2: #404457;
}
.glass{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

#left-element1, #right-element1, #left-element2 {
    transition: transform 0.2s ease-out;
}
#left-element1 {
    left: -50vw;
}

#right-element1 {
    right: -50vw;
}

/* ESTANDARIZACION no

#main{
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    overflow: hidden;
}
#box1{
    width: 530px;
    height: 625px;
    background-image: url('../resources/2.png');
    position: absolute;
    bottom: -100%;
    left: 30%;
    animation: anim 2s forwards, anim2 3s forwards 3s;
}
#box1::after{
    content: '';
    position: absolute;
    width: 530px;
    height: 625px;
    background-image: url('../resources/1.png');
    left: 0px;
    z-index: -1;
}
@keyframes anim{
    from{
        bottom: -100%;
    }
    to{
        bottom: 0%;
    }
}
@keyframes anim2{
    from{
        left: 30%;
        width: 530px;
    }
    to{
        width: 0px;
        left: 50%;
    }
}
#box2{

    width: 100vw;
    height: auto;
    color: white;
    font-weight: 500;
    position: absolute;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 10vh;
}
#text{
    position: relative;
    left: 300%;
    animation: anim3 2s forwards 3s;
}
@keyframes anim3{
    from{
        left: -100%;
        visibility: hidden;
    }
    to{
        left: 0%;
        visibility: visible;
    }
}
@keyframes anim4{
    from{
        top: -500%;
    }
    to{
        top:0%;
    }
}
#box2 h1{
    font-size: 2.5vw;
}

.box-cont{
    position: absolute;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
    gap: 20px;
    width: 45vw;
    height: 40vw;
    padding: 20px;
    left: 9vw;
    top: 15vh;
    align-items: center;
    justify-items: center;
    overflow: hidden;
}
.box-cont h1{
    color: rgba(252,190,6,255);
    font-size: 3.5vw;
}
.box-cont p{
    color: #f1f1f1;
    font-size: 1vw;
    text-transform: uppercase;
    font-weight: 600;
}
.box-cont #box{
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.box-cont #box p{
    text-align: center;
}
.box-cont #boxc1{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.2s;
    position: relative;
    align-items: center;
}
.box-cont #boxc2{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.3s;
    position: relative;
    align-items: center;
}
.box-cont #boxc3{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.4s;
    position: relative;
    align-items: center;
}
.box-cont #boxc4{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.5s;
    position: relative;
    align-items: center;
}
.box-cont #boxc5{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.6s;
    position: relative;
    align-items: center;
}
.box-cont #boxc6{
    display: flex;
    top: -1000%;
    animation: anim4 2s forwards 3.7s;
    position: relative;
    align-items: center;
}
*/

/* ESTANDARIZACIÓN */
.backgroundest{
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1) brightness(0.8) opacity(1);
}
.estandarhome{
    width: 100%;
    height: 100vh;
    display: flex;
    background: #1E242A;
    overflow: hidden;
}
.estandarhome .estandartitle{
    height: 100%;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 7vw;
}
.estandarhome .estandartitle h1{
    color: #f1f1f1;
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 3vw;
}
.estandarhome .estandartitle p{
    color: #f1f1f1;
    font-size: 1vw;
    text-align: center;
}
.estandarhome .estandarmodules{
    height: 100%;
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: flex-end;
    align-content: flex-end;
}
.estandarhome .estandarmodules .modul{
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 45%;
    padding: 1vw;
}

.estandarhome .estandarmodules .modul a h2{
    font-size: 1.5vw;
    text-align: center;
    padding: 1vw 2vw;
    position: absolute;
    z-index: 999;
    color: #fff;
    bottom: 0;
}
.modul a{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    text-decoration: none;
}
.modul a img{
    height: 60%;
    width: 60%;
    object-fit: cover;
    filter: blur(0.25vw) grayscale(1) brightness(1.2) opacity(0.8);
    transition: 0.5s;
    z-index: 998;
    position: absolute;
    opacity: 1;
}
.modul a:hover img{
    filter: blur(0) grayscale(0) brightness(1.2) opacity(0.8);
    transform: scale(1.05);
}
.estandarhome .estandarmodules .modul a:hover img{
    opacity: 1;
}
.estandarhome .estandarmodules .modul a:hover h1{
    opacity: 1;
}


.estandarsections{
    width: 100%;
    height: auto;
    background: #1E242A;
    display: flex;
    justify-content: flex-end;
}
.estandarsections .sectionssearch{
    height: 100vh;
    width: 25%;
    display: flex;
    flex-direction: column;
    position: sticky;
    left: 0;
}

.sectionssearch.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 25%; /* Mantén el ancho del menú fijo */
}

.sectionssearch .modulsearch{
    flex: 1;
    display: flex;
    height: 25%;
    width: 100%;
    overflow: hidden;
    border: #000 0.2vw solid;
    background-color: #f1f1f1;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-decoration: none;
}
.modulsearch img{
    width: 100%;
    object-fit: cover;
    filter: brightness(1.25) opacity(0.75);
    transition: 0.5s;
    z-index: 998;
    position: absolute;
}
.modulsearch h1{
    font-size: 5vw;
    position: relative;
    z-index: 999;
    color: transparent; /* Color del texto transparente */
    -webkit-text-stroke: 0.25vw black; /* Borde del texto */
    background-color: transparent; /* Fondo transparente */
    display: inline-block; /* Asegura que las dimensiones se adapten */
    right: 2vw;
}

.estandarsections .estandarcontent{
    width: 100%;
    height: 100%;
}
.estandarcontent .presentacion{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.estandarcontenttitle{
    display: flex;
    justify-content: center;
    padding-top: 2vw;
}
.estandarcontenttitle h1{
    font-size: 2.5vw;
    color: #f1f1f1;
}
.presentacioncontent{
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.presentacioncontent .presentacioninf{
    height: 50%;
    width: 90%;
    display: flex;
    padding: 2vw;
    align-items: center;
    justify-content: space-evenly;
}
.presentacioninf p{
    color: #fff;
    font-size: 1vw;
    width: 30%;
    text-align: center;
    padding: 1vw;
}
.presentacioninf video{
    height: 80%;
    filter: drop-shadow(2px 4px 6px black) saturate(0.8);
}

.estandarcontent .propuesta{
    width: 100%;
    height: auto;
    position: relative;
}
.propuesta .propuestacontenttitle{
    display: flex;
    justify-content: center;
    padding-top: 1vw;
    height: 20%;
}
.propuestacontenttitle h1{
    font-size: 2.5vw;
    color: #f1f1f1;
}
.propuesta .tablapropuesta{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0 0 2vw 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.tablapropuesta .propline{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
}
#proplineleft{
    align-items: flex-end;
}
#proplineright{
    align-items: flex-start;
}

.propline .proplineson{
    width: 78%;
    color: #f1f1f1;
    display: flex;
    padding: 1vw 2vw 1vw 2vw;
    margin: 0.2vw;
}
#propline1, #propline4{
    height: 14vw;
}
#propline2, #propline5{
    height: 12vw;
}
#propline3, #propline6{
    height: 15vw;
}
.proplineson .number{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1vw;
}
.proplineson .number h1{
    color: transparent;
    -webkit-text-stroke: 0.2vw gold;
    background-color: transparent;
    display: inline-block;
    font-size: 6vw;
}
.proplineson .number h2{
    font-size: 1.2vw;
    color: gold;
    text-transform: uppercase;
}
.proplinesoncontent{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.proplinesoncontentup h1{
    font-size: 1.2vw;
    text-align: center;
    margin-bottom: 1vw;
}
.proplinesoncontentup p{
    font-size: 0.8vw;
}
.proplinesoncontentdown h4{
    margin-top: 1vw;
    font-size: 0.8vw;
    text-align: end;
}

.propuesta .elementospropuesta{
    width: 100%;
    height: auto;
    padding: 0px 3vw;
    color: rgb(241, 241, 241);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.elementospropuesta .elementospropuestatitle h1{
    font-size: 2vw;
    text-transform: uppercase;
    margin-bottom: 2vw;
    margin-left: 10vw;
}
.elementospropuestacontent{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.elementospropuesta .elementospropuestacontent p{
    font-size: 1vw;
    text-align: center;
}
.elementospropuestacontent .elementossecciones{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 3vw 0 0 0;
    align-items: center;
    position: relative;
}
.elementospropuestacontent img{
    position: absolute;
    height: 100%;
}
.elementosseccionesline{
    width: 60%;
    display: flex;
    flex-direction: column;
}
#leftelements{
    align-items: flex-end;
}
#rightelements{
    align-items: flex-start;
}

.elementosseccionesline .elementosseccionescolumn{
    width: 50%;
    height: 10vw;
    display: flex;
    flex-direction: column;
    margin: 1vw 2vw;
    padding: 1vw;
    justify-content: center;
}
.elementosseccionesline .elementosseccionescolumn h1{
    font-size: 1vw;
    margin-bottom: 1vw;
}
.elementosseccionesline .elementosseccionescolumn h5{
    font-size: 0.8vw;
    text-align: center;
}
.elementosseccionesline #elementosseccionescolumnleft{
    text-align: center;
}
#elementosseccionescolumnright p{
    font-size: 0.8vw;
    text-align: left;
}

.logrospropuesta{
    width: 100%;
    height: auto;
    padding: 3vw 3vw 6vw 3vw;
    color: #f1f1f1;
}
.logrospropuesta .logrospropuestatitle h1{
    font-size: 2vw;
    text-transform: uppercase;
    margin-bottom: 2vw;
    margin-left: 10vw;
}
.logrospropuestacontent{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.logrospropuestacontent video{
    width: 23%;
    filter: drop-shadow(2px 4px 6px black);
}
.logrospropuesta .logrospropuestacontent p{
    font-size: 0.8vw;
    text-align: left;
    width: 80%;
}
.logrospropuestacontent .logrospropuestadiv{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1vw;
}

.factorespropuesta{
    width: 100%;
    height: auto;
    padding: 0 3vw 0vw 3vw;
    color: #f1f1f1;
}
.factorespropuesta .factorespropuestatitle h1{
    font-size: 2vw;
    text-transform: uppercase;
    margin-bottom: 2vw;
    margin-left: 10vw;
}
.factorespropuestacontent{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.factorespropuestacontent video{
    width: 23%;
    filter: drop-shadow(2px 4px 6px black);
}
.factorespropuestacontent p{
    font-size: 0.8vw;
    text-align: left;
    width: 80%;
}
.factorespropuestacontent .factorespropuestadiv{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1vw;
}

.estandarcontent .equipo{
    padding: 4vw 0;
    width: 100%;
    height: auto;
    position: relative;
}
.equipocontenttitle{
    display: flex;
    justify-content: center;
    padding-top: 1vw;
    height: 20%;
}
.equipocontenttitle h1{
    font-size: 2.5vw;
    color: #f1f1f1;
}
.equipocontent{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 3vw 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.equipocontent p{
    font-size: 0.8vw;
    color: #f1f1f1;
}
.equipocontent .equipocards{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 3vw;
}
.equipocards .cardsimg{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cardsimg img{
    border: 0.5vw gold solid;
    border-radius: 1vw;
    margin: 1vw;
    
}
.cardsimg:hover img{
    filter: drop-shadow(2px 4px 6px black);
}
.cardsimg h2{
    margin: 1.5vw 0 0 0;
    font-size: 1vw;
    color: #f1f1f1;
    text-align: center;
}

.estandarcontent .metodologia{
    width: 100%;
    height: auto;
    position: relative;
}
.estandarcontent .metodologia .metodologiacontenttitle{
    display: flex;
    justify-content: center;
    padding-top: 1vw;
    height: 20%;
}
.metodologiacontenttitle h1{
    font-size: 2.5vw;
    color: #f1f1f1;
}
.metodologiacontent{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2vw 3vw;
}
.metodologiacontent h2{
    color: #f1f1f1;
    font-size: 1vw;
    text-transform: uppercase;
    margin-left: 10vw;
}
.metodologiacontent .metodologiaicons{
    display: flex;
    margin: 4vw 0;
    justify-content: space-evenly;
}
.metodologiaicons .metodologiaiconsmodel{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10vw;
    height: 14vw;
}
.metodologiaiconsmodel video{
    width: 10vw;
    position: absolute;
    transform: translateY(-2vw);
    filter: saturate(0.8);
}
.metodologiaicons .metodologiaiconsmodel h3{
    font-size: 1vw;
    color: #f1f1f1;
    margin-top: 1vw;
}
.metodologiaprocesos{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.metodologiaprocesos p{
    font-size: 0.8vw;
    color: #f1f1f1;
    width: 70%;
}
.metodologiaprocesoscontent{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 1vw;
}
.metodologiacontentdiv{
    padding: 1vw;
}
.glass2{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(1vw);
    -webkit-backdrop-filter: blur(10);
    border-radius: 1vw;
    border: 0.15vw solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.37);
}

.cover {
    display: inline-block;
    height: 50vh;
    width: 22vw;
    margin: 15px;
}

@media screen and (max-width: 700px) {
.container {
    width : 100%;
    position: relative;
    transform: translate(0%, 0%);
    top: 0;
    left: 0;
}
.cover {
    display: block;
    height: 50vw;
    width: 33vw;
}
}

.atvImg {
    border-radius: 8px;
    transform-style: preserve-3d;
    -webkit-tap-highlight-color: rgba(#000,0);
}

.atvImg img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(14,21,47,0.25);
}

.atvImg-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: all 0.2s ease-out;
    padding: 1vw;
}

.atvImg-container.over .atvImg-shadow {
    box-shadow: 0 45px 100px rgba(14,21,47,0.4), 0 16px 40px rgba(14,21,47,0.4);
}
.atvImg-layers {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.atvImg-rendered-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%; 
    left: 0%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: cover;
    transition: all 0.1s ease-out;
    overflow: hidden;
    border-radius: 8px;
}

.atvImg-shadow {
    position: absolute;
    top: 5%; 
    left: 5%;
    width: 90%;
    height: 90%;
    transition: all 0.2s ease-out;
    box-shadow: 0 8px 30px rgba(14,21,47,0.6);
}

.atvImg-shine {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,.25) 0%,rgba(255,255,255,0) 60%);
}
.estandarcontent .sectionstotop{
    position: fixed;
    font-size: 1vw;
    padding: 0.5vw 1vw;
    margin: 1vw;
}
.sectionstotop a{
    text-decoration: none;
    font-weight: 700;
    color: #fff;
}
.fixed{
    display: flex;
    position: fixed;
    left: 0;
    top: 7vw;
    z-index: 999;
}
.downpropuesta{
    position: absolute;
    height: 1vw;
    width: 50%;
    display: flex;
    justify-content: center;
    transition: 0.3s;
    transform: translateY(0.8vw);
}
.downpropuesta i{
    font-size: 3vw;
    transform: translateY(-15px);
    position: absolute;
    color: dimgray;
}
.downpropuesta:hover{
    transform: scale(1.2);
}


/** MESH CATERING **/

.introMesh{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.introMesh video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infoMesh{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vw;
}
.infoMesh .backgroundInfoMesh{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.backgroundInfoMesh video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.logoMesh{
    width: 15%;
}
.logoMesh img{
    width: 100%;
}
.textMesh{
    color: #fff;
    width: 30%;
}
.textMesh p{
    font-size: 0.8vw;
    text-align: center;
}
.funcionesMesh{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 90%;
    height: 50%;
    grid-gap: 1vw;
}
.gridFuncionesMesh{
    padding: 1.5vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    text-decoration: none;
}
.gridFuncionesMesh::-webkit-scrollbar{
    width: 0;
}
.frontGrid{
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    flex-direction: column;
    gap: 1vw;
}
.frontGrid h2{
    font-size: 1.2vw;
    text-align: center;
}
.frontGrid img{
    width: 3vw;
}
.backGrid{
    display: flex;
    opacity: 0;
    position: relative;
    transition: 0.3s;
    color: #fff;
    width: 100%;
    height: 100%;
    align-items: center;
}

.backGrid p{
    font-size: 0.8vw;
}
/** POP-UP **/
#popup {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 1000;
    display: flex;
    overflow: hidden;
}
#popup.active {
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
#popup .close{
    position: fixed;
    right: 0;
    top: -1vw;
    font-size: 4vw;
    color: #e6dfd9;
    transition: 0.5s;
}
#popup .close:hover{
    transform: scale(1.2);
}
#popup .close-r{
    position: fixed;
    right: 0;
    top: -1vw;
    font-size: 4vw;
    color: #e6dfd9;
    transition: 0.5s;
    z-index: 999;
}
#popup .close-r:hover{
    transform: scale(1.2);
}
.capacitacionbody.active{
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}
.capacitacionbody{
    height: 100vh;
}

.popupflex1{
    flex: 1;
    width: 50%;
    color: #e6dfd9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(2px 4px 6px black);
}
.popupflex1 h1{
    font-size: 3vw;
    font-weight: 800;
    padding: 3vw 3vw 1vw 3vw;
    text-transform: uppercase;
}
.popupflex1 p{
    font-size: 1vw;
    padding: 0vw 3vw;
}
.popupflex1 img{
    width: 100%;
}
.popupflex1 h2{
    padding: 3vw 2vw 1vw 3vw;
    font-size: 2vw;
    font-weight: 700;
    text-transform: uppercase;
}
.popupflex1 h4{
    font-weight: 700;
    text-transform: uppercase;
    padding: 0vw 2vw 1vw 3vw;
    font-size: 1vw;
}
#popup .popup-btn-l{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1vw;
    margin: 3vw;
    font-size: 1vw;
    text-decoration: none;
    border: #e6dfd9 0.2vw solid;
    color: #e6dfd9;
    transition: 0.5s;
    font-weight: 700;
}
#popup .popup-btn-r{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1vw;
    margin: 3vw;
    font-size: 1vw;
    text-decoration: none;
    border: #e6dfd9 0.2vw solid;
    color: #e6dfd9;
    transition: 0.5s;
    font-weight: 700;
}
#popup .popup-btn-l:hover{
    transform: scale(1.1);
    background-color: #e6dfd9;
    color: #e6dfd9;
}
#popup .popup-btn-r:hover{
    transform: scale(1.1);
    background-color: #e6dfd9;
    color: #e6dfd9;
}
.popupflex2{
    flex: 1;
    width: 50%;
    color: #e6dfd9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(2px 4px 6px black);
}
.popupflex2 h1{
    font-size: 3vw;
    font-weight: 800;
    padding: 3vw 3vw 1vw 3vw;
    text-transform: uppercase;

}
.popupflex2 p{
    font-size: 1vw;
    padding: 0vw 3vw;
}
.popupflex2 img{
    width: 100%;
}
.popupflex2 video{
    height: 100%;
    object-fit: cover;
}
.popupflex2 h2{
    padding: 3vw 2vw 1vw 3vw;
    font-size: 2vw;
    font-weight: 700;
    text-transform: uppercase;
}
.popupflex2 h4{
    font-weight: 700;
    text-transform: uppercase;
    padding: 0vw 2vw 1vw 3vw;
    font-size: 1vw;
}
.popupflex2 a{
    text-decoration: none;
    color: #e6dfd9;
    cursor: pointer;
}
.popupflex2 button  {
    text-decoration: none;
    color: #e6dfd9;
    background: center;
}
.popupflex2 a span{
    position: relative;
    display: inline-block;
}
.popupflex2 a span::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 0.1vw;
    top: 100%;
    left: 0;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
    background-color: #e6dfd9;
}
.popupflex2 a:hover span::after{
    transform: scaleX(1);
    transform-origin: left;

}
#button9{
    position: absolute;
    right: 5%;
    top: 10%;   
}
.popupflex3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    padding: 3vw;
    color: #fff;
    width: 100%;
    height: 100%;
}
.popupflex3 h1{
    font-size: 3vw  ;
}
.popupflex3 video{
    height: 80%;
    width: auto;
    object-fit: contain;
}
.gridFuncionesMesh:hover .frontGrid{
    transform: scale(1.1);
}
.introMesh a{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
}
.introMesh a svg{
    height: 3vw;
    width: 3vw;
    color: #fff;
    opacity: 0.4;
}
.degradation{
    width: 100%;
    position: absolute;
    height: 9%;
    bottom: 0;
    background: linear-gradient(0deg, black, transparent);
}

/** PLAN DE CARRERA **/

.introPlanCarrera{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.introPlanCarrera video{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.introPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
}
.introPlanCarrera p{
    font-size: 0.8vw;
    text-align: center;
    padding: 1vw;
    max-width: 40%;
    filter: drop-shadow(2px 4px 6px black);
}
#buttonDown{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
}
#buttonDown svg{
    height: 3vw;
    width: 3vw;
    color: #fff;
    opacity: 0.4;
}
.categoriasBotones{
    width: 80%;
    gap: 2vw;
    display: flex;
    justify-content: center;
    margin-top: 2vw;
}
.categoriasBotones a{
    font-size: 1vw;
    padding: 1vw;
    text-align: center;
    width: 9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    
}
.categoriasBotones a:hover{
    transform: scale(1.2);
}

.elaboracionPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 5vw;
    position: relative;
}
.elaboracionPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
}
.elaboracionPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.elaboracionPlanCarrera .sectionstotop{
    position: fixed;
    font-size: 0.8vw;
    padding: 0.5vw 0.5vw;
    margin: 0.5vw;
}
.elaboracionPlanCarrera .sectionstotop #sectiontotop{
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    position: relative;
}
.elaboracionPlanCarrera .graficoElaboracionPlanCarrera{
    max-width: 60%;
    margin-right: 7vw;
}

.graficoElaboracionPlanCarrera img{
    width: 100%;
}
.graficoContainer{
    position: absolute;
    width: 15vw;
    height: 6vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;;
}
.graficoContainer h5{
    font-size: 1vw;
}
.graficoContainer p{
    font-size: 0.8vw;
}
.objetivosPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 5vw;
    position: relative;
}
.objetivosPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.objetivosPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
}

/* --- slider ---*/

#sslider {
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
    text-align: center;
 }
 #sslider input[type=radio] {
    display: none;
 }
 #sslider label {
    cursor:pointer;
    text-decoration: none;
 }
 #sslides {
    position: relative;
    z-index: 1;
 }
 #overflow {
    width: 100%;
    overflow: hidden;
 }
 #sslide1:checked ~ #sslides .inner {
    margin-left: 0;
 }
 #sslide2:checked ~ #sslides .inner {
    margin-left: -100%;
 }
 #sslide3:checked ~ #sslides .inner {
    margin-left: -200%;
 }
 #sslide4:checked ~ #sslides .inner {
    margin-left: -300%;
 }
 #sslide5:checked ~ #sslides .inner {
    margin-left: -400%;
 }
 #sslide6:checked ~ #sslides .inner {
    margin-left: -500%;
 }
 #sslide7:checked ~ #sslides .inner {
    margin-left: -600%;
 }
 #sslides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 700%;
    height: 300px;
 }
 #sslides .sslide {
    width: 14.285%;
    float:left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    padding: 3vw;
 }
 #controls {
    margin: -180px 0 0 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: relative;
 }
 #controls label {
    transition: opacity 0.2s ease-out;
    display: none;
    width: 50px;
    height: 50px;
    opacity: .4;
 }
 #controls label:hover {
    opacity: 1;
 }
 #sslide1:checked ~ #controls label:nth-child(2),
 #sslide2:checked ~ #controls label:nth-child(3),
 #sslide3:checked ~ #controls label:nth-child(4),
 #sslide4:checked ~ #controls label:nth-child(5),
 #sslide5:checked ~ #controls label:nth-child(6),
 #sslide6:checked ~ #controls label:nth-child(7),
 #sslide7:checked ~ #controls label:nth-child(1) {
    background: url("https://www.svgrepo.com/show/510166/right-chevron.svg") no-repeat;
    float:right;
    margin: 0 -50px 0 0;
    display: block;
 }
 #sslide1:checked ~ #controls label:nth-child(7),
 #sslide2:checked ~ #controls label:nth-child(1),
 #sslide3:checked ~ #controls label:nth-child(2),
 #sslide4:checked ~ #controls label:nth-child(3),
 #sslide5:checked ~ #controls label:nth-child(4),
 #sslide6:checked ~ #controls label:nth-child(5),
 #sslide7:checked ~ #controls label:nth-child(6) {
    background: url("https://www.svgrepo.com/show/510166/right-chevron.svg") no-repeat;
    float:left;
    margin: 0 0 0 -50px;
    display: block;
 }
 #bullets {
    margin: 150px 0 0;
    text-align: center;
 }
 #bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius:100%;
    background: #ccc;
    margin: 0 10px;
 }
 #sslide1:checked ~ #bullets label:nth-child(1),
 #sslide2:checked ~ #bullets label:nth-child(2),
 #sslide3:checked ~ #bullets label:nth-child(3),
 #sslide4:checked ~ #bullets label:nth-child(4),
 #sslide5:checked ~ #bullets label:nth-child(5),
 #sslide6:checked ~ #bullets label:nth-child(6),
 #sslide7:checked ~ #bullets label:nth-child(7) {
    background: #444;
 }
 @media screen and (max-width: 900px) {
    #sslides {
       max-width: calc(100% - 140px);
       margin: 0 auto;
    }
 }

 /*--- slider ---*/

.planCarreraArea{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 1vw;
    position: relative;
}
.planCarreraArea video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.planCarreraArea h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
}
.graficoPlanCarreraArea{
    width: 25%;
    margin: 7vw 0;
}
.graficoPlanCarreraArea img{
    width: 100%;
}
.graficoAreaContainer{
    position: absolute;
    width: 15vw;
    height: 6vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.graficoAreaContainer h5{
    font-size: 1vw;
}
.graficoAreaContainer p{
    font-size: 0.8vw;
    text-align: center;
}
.herramientasPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 2vw;
    position: relative;
}
.herramientasPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.herramientasPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
    width: 60%;
}
.graficoHerramientasPlanCarrera{
    width: 60%;
    margin-right: 4vw;
}
.graficoHerramientasPlanCarrera img{
    width: 100%;
}
.graficoHerramientasContainer{
    position: absolute;
    width: 12vw;
    height: 4vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.graficoHerramientasContainer p{
    font-size: 0.8vw;
    text-align: center;
}

.beneficiosPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 5vw;
    position: relative;
}
.beneficiosPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.beneficiosPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
    width: 60%;
}
.graficoBeneficiosPlanCarrera{
    width: 60%;
}
.graficoBeneficiosPlanCarrera img{
    width: 100%;
}
.graficoBeneficiosContainer{
    position: absolute;
    width: 10vw;
    height: 4vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.graficoBeneficiosContainer p{
    font-size: 0.8vw;
    text-align: center;
}

.tiposPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 2vw;
    position: relative;
}
.tiposPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.tiposPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
    width: 60%;
}
.graficoTiposPlanCarrera{
    width: 30%;
    margin-right: 51vw  ;
}
.graficoTiposPlanCarrera img{
    width: 100%;
}
.graficoTiposContainer{
    position: absolute;
    width: 50vw;
    height: 5vw;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.graficoTiposContainer p{
    font-size: 0.8vw;
}
.graficoTiposContainer p span{
    font-weight: 800;
    margin-right: 0.4vw;
}

.capacitacionPlanCarrera{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    gap: 5vw;
    position: relative;
}
.capacitacionPlanCarrera video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    position: absolute;
    z-index: -1;
}
.capacitacionPlanCarrera h1{
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 1vw;
    position: relative;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
    width: 60%;
}
#textCapacitacionPlanCarrera{
    padding: 1vw;
    width: 50%;
    text-align: center;
}

/** MOBILE **/
@media (width <= 640px) { 
    .mainheader .nav-items .menubar{
        font-size: 2.5vw;
    }
    .mainheader .brand .logo{
        width: 15vw;
    }
    .slider-images{
        flex-direction: column;
    }
    .slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
        width: 100vw;
        height: 12vh;
    }
    .slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
        width: 100vw;
        height: 12vh;
    }
    .slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
        width: 100vw;
        height: 12vh;
    }
    .slider-img.active {
        width: 100vw !important;
        height: 40vh !important;
        filter: grayscale(0);
    }
    .slider-img h1{
        transform: rotate(0deg);
        font-size: 4vw;
        width: 50vw;
    }
    .details{
        width: 50vw;
        justify-content: center;
    }
    .details h2{
        line-height: normal;
        font-size: 5vw;
        margin-bottom: 1vw;
    }
    .details p{
        font-size: 2.5vw;
        line-height: 3vw;
        text-wrap: pretty;
    }
    .slider-images .details a{
        font-size: 3vw;
        bottom: auto;
        right: -40vw;
        padding: 3vw;
    }
    .slider-images a:before{
        inset: 1px;
    }
    .estandarhome{
        flex-direction: column;
    }
    .estandarhome .estandartitle{
        width: 100%;
        height: 60%;
    }
    .estandarhome .estandartitle h1{
        font-size: 6.5vw;
    }
    .estandarhome .estandartitle p{
        font-size: 3vw;
    }
    .estandarhome .estandarmodules{
        width: 100%;
        padding: 2vw;
        align-items: normal;
        align-content: normal;
    }
    .estandarhome .estandarmodules .modul a h2{
        font-size: 3vw;
        padding: 2vw;
    }
    .modul a img{
        height: 70%;
        width: 70%;
    }
    .estandarcontenttitle{
        padding-top: 12vw;
    }
    .estandarcontenttitle h1{
        font-size: 6.5vw;
    }
    .presentacioncontent{
        padding-top: 6vw;
    }
    .presentacioninf{
        flex-direction: column;
    }
    .presentacioninf p{
        font-size: 3vw;
        width: 80%;
        padding: 3vw;
    }
    .presentacioninf video{
        height: 50%;
    }
    .presentacioninf:nth-child(1) p {
        order: 1;
    }
    .presentacioninf:nth-child(1) video {
        order: 2;
    }
    .presentacioninf:nth-child(2) video {
        order: 4;
    }
    .presentacioninf:nth-child(2) p {
        order: 3;
    }
    .propuestacontenttitle h1{
        font-size: 6.5vw;
        padding-bottom: 2vw;
    }
    .propuesta .tablapropuesta{
        flex-direction: column;
        align-items: center;
    }
    #proplineleft, #proplineright{
        align-items: center;
    }
    .propline .proplineson{
        width: 95%;
        margin: 1vw;
    }
    .downpropuesta{
        display: none;
    }
    .propline .proplinesoncontentup h1{
        font-size: 2.5vw;
    }
    .proplinesoncontentup p{
        font-size: 2vw;
    }
    .proplinesoncontentdown h4{
        padding-top: 1vw;
        font-size: 1.5vw;
    }
    #propline1, #propline2, #propline3, #propline4, #propline5, #propline6{
        height: auto;
    }
    .elementospropuesta .elementospropuestatitle h1{
        margin-left: 0;
        font-size: 4vw;
    }
    .elementospropuesta .elementospropuestacontent p{
        font-size: 2vw;
    }
    .elementosseccionesline .elementosseccionescolumn h1{
        font-size: 2vw;
    }
    .elementosseccionesline .elementosseccionescolumn h5{
        font-size: 1.5vw;
    }
    #elementosseccionescolumnright p{
        font-size: 1.5vw;
    }
    .elementosseccionesline .elementosseccionescolumn{
        width: 77%;
        height: 19vw;
    }
    .logrospropuesta .logrospropuestatitle h1, .factorespropuesta .factorespropuestatitle h1{
        font-size: 4vw;
    }
    .logrospropuestacontent, .factorespropuestacontent{
        flex-direction: column;
        gap: 1vw;
    }
    .logrospropuestacontent .logrospropuestadiv, .factorespropuestacontent .factorespropuestadiv{
        width: 80%;
        padding: 3vw;
    }
    .logrospropuesta .logrospropuestacontent p, .factorespropuesta .factorespropuestacontent p{
        font-size: 2vw;
        width: auto;
    }
    .logrospropuestacontent video, .factorespropuestacontent video{
        width: 40%;
    }
    .equipocontenttitle h1{
        font-size: 6.5vw;
    }
    .equipocontent p{
        font-size: 2vw;
        text-align: center;
        width: 70%;
    }
    .cardsimg h2{
        font-size: 3vw;
    }
    .metodologiacontenttitle h1{
        font-size: 6.5vw;
    }
    .metodologiacontent h2{
        font-size: 2vw;
    }
    .metodologiaicons .metodologiaiconsmodel h3 {
        font-size: 2.5vw;
    }
    .metodologiaiconsmodel video {
        width: 20vw;
    }
    .metodologiaicons .metodologiaiconsmodel{
        width: 20vw;
        height: 30vw;
    }
    .metodologiaprocesos p {
        font-size: 2vw;
    }
    .metodologiacontentdiv {
        padding: 4vw;
    }
    footer{
        padding-left: 0;
        padding-right: 0;
        font-size: 2vw;
    }
    .pageheader .nav-items a, .pageheader .nav-items a i {
        font-size: 2.5vw;
    }
    .pageheader .brand .logo {
        width: 15vw;
    }
    .introPlanCarrera h1{
        font-size: 6.5vw;
    }
    .introPlanCarrera p{
        font-size: 2vw;
        max-width: 60%;
    }
    .categoriasBotones a{
        font-size: 2vw;
        width: 20vw;
        height: 13vw;
    }
    .categoriasBotones{
        flex-wrap: wrap;
    }
    .elaboracionPlanCarrera h1{
        font-size: 5.5vw;
    }
    .elaboracionPlanCarrera .graficoElaboracionPlanCarrera{
        transform: scale(1.4);
    }
    .objetivosPlanCarrera h1{
        font-size: 5.5vw;
        padding: 0 5vw;
    }
    .planCarreraArea h1{
        font-size: 5.5vw;
    }
    .graficoPlanCarreraArea{
        transform: scale(1.6);
        margin: 20vw 0;
    }
    .herramientasPlanCarrera h1{
        font-size: 5.5vw;
        width: 90%;
    }
    .graficoHerramientasPlanCarrera{
        transform: scale(1.5);
        margin-top: 5vw;
    }
    .beneficiosPlanCarrera h1{
        font-size: 5.5vw;
    }
    .graficoBeneficiosPlanCarrera{
        transform: scale(1.4) translateX(-3vw);
    }
    .tiposPlanCarrera h1{
        font-size: 5.5vw;
        width: 70vw;
        margin-bottom: 5vw;
    }
    .graficoTiposPlanCarrera{
        margin-right: 62vw;
        transform: scale(1.2);
    }
    .capacitacionPlanCarrera h1{
        font-size: 5.5vw;
    }
    #textCapacitacionPlanCarrera{
        padding: 3vw;
        width: 75%;
        text-align: center;
        font-size: 3vw;
    }
    footer#footerplancarrera{
        padding-left: 0;
        padding-right: 0;
        font-size: 2vw;
    }
    .logoMesh{
        width: 50%;
    }
    .textMesh{
        width: 60%;
    }
    .textMesh p{
        font-size: 2vw;
    }
    .funcionesMesh{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .frontGrid img{
        width: 8vw;
    }
    .frontGrid h2{
        font-size: 2.5vw;
    }
    #button9{
        top: 7%;
    }
    #popup{
        flex-direction: column;
    }
    .popupflex2, .popupflex1{
        width: 100%;
    }
    .popupflex2 h1, .popupflex1 h1{
        font-size: 6vw;
    }
    .popupflex2 p, .popupflex1 p{
        font-size: 3vw;
    }
    #popup .close-r, #popup .close{
        font-size: 10vw;
    }
    .popupflex3 h1{
        font-size: 6vw;
        text-align: center;
        margin-top: 8vw;
    }
    .popupflex3 video{
        height: 47%;
    }
    #popup.popup8.glass2{
        height: 50vh;
        width: 90vw;
    }
    #popup{
        height: 65vh;
    }

}


#footerplancarrera{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 10vh;
    padding-left: 10vh;
    transition: 0.5s ease;
    background-color: transparent;
    color: #fff;
    font-size: 1.5vh;
}
#footerplancarrera i{
    color: red;
}