/*CODED BY José Miguel "JMIDEV" Pérez*/
/*CODED BY José Miguel "JMIDEV" Pérez*/
/*CODED BY José Miguel "JMIDEV" Pérez*/
/*CODED BY José Miguel "JMIDEV" Pérez*/
/*CODED BY José Miguel "JMIDEV" Pérez*/
/*CODED BY José Miguel "JMIDEV" Pérez*/

/*CAROUSEL ######################################################################################################*/

body{

    overflow-x: hidden;
    /*background: linear-gradient(324deg, #000000 0%, #242424 100%);*/
    /*background: black;
    background-attachment: fixed;*/
    /*background: url("../imgs/quiensoy/BG.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;*/

}

body::before{

    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url("../imgs/quiensoy/BG.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;

}

.home_bg{

    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.9;

}

.home_carousel{

    width: 100%;
    height: 514px;
    background: linear-gradient(324deg, #0a0a0a 0%, #242424 100%);
    position: relative;
    overflow: hidden;
    transition: 0.3s;

}

@keyframes home_carousel_videobg_appear {

    from {opacity: 0;}
    to {opacity: 1;}

}

.home_carousel_videobg{

    display: none;
    z-index: 0;
    animation-name: home_carousel_videobg_appear;
    animation-duration: 1s;

}

.home_carousel_shadinggradientbg{

    z-index: 1;
    background: linear-gradient(270deg, #000000 0%, #00000044 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

}

.home_carousel_activepart{

    z-index: 2;
    position: absolute;
    top: 70px;
    bottom: 0px;
    width: 100%;

}

@keyframes carousel_loadinganim{

    from {transform: rotateZ(0deg) scale(70%);}
    to {transform: rotateZ(360deg) scale(70%);}

}

.carousel_loading{

    pointer-events: none;
    user-select: none;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: calc(100% - 70px);
    top: 70px;
    left: 0px;
    object-fit: contain;
    animation-name: carousel_loadinganim;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.5;

}

.carousel_nav{

    width: 48px;
    height: 48px;
    outline: none;
    background: url("../imgs/icons/arrow.svg");
    background-size: 100%;
    background-position: center;
    border: 2px solid white;
    border-radius: 48px;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    z-index: 3;

}

.carousel_nav:hover{

    opacity: 0.5;

}

.carousel_nav_left{

    top: 50%;
    left: 30px;
    transform: translateY(-50%);

}

.carousel_nav_right{

    top: 50%;
    right: 30px;
    transform: translateY(-50%) scaleX(-100%);

}

.carousel_left{

    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 108px;
    margin-left: 3%;
    margin-right: 5%;
    right: 50%;
    z-index: 2;

}

@keyframes carousel_image_appear {

    from {opacity: 0; transform: scale(0%);}
    to {opacity: 1; transform: scale(100%);}

}

.carousel_image{

    display: none;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    animation-name: carousel_image_appear;
    animation-duration: 1s;
    
}

@keyframes carousel_right_appear {

    from {opacity: 0; transform: translateX(100%) translateY(-50%);}
    to {opacity: 1; transform: translateX(0%) translateY(-50%);}

}

.carousel_right{

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 108px;
    left: 50%;
    margin-right: 2.5%;
    animation-name: carousel_right_appear;
    animation-duration: 1s;
    z-index: 2;

}

.carousel_title{

    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 4.5vmin;
    width: 100%;
    font-weight: 700;
    text-shadow: 0px 4px 16px #0000007e;
    margin-top: 0px;
    margin-bottom: 24px;

}

.carousel_desc{

    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.7vmin;
    /*font-size: 1.7vh;*/
    font-weight: 500;
    width: 100%;
    text-shadow: 0px 4px 16px #0000007c;
    text-align: justify;

}

.carousel_button{

    display: none;
    height: 42px;
    padding-left: 25px;
    padding-right: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: white;
    background: none;
    border: 2px solid rgb(255, 61, 61);
    border-radius: 38px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.2);
    margin-top: 24px;

}

.carousel_button:hover{

    background: rgb(255, 61, 61);

}

@keyframes carousel_autopass{

    from {width: 100%;}
    to {width: 0%;}

}

.carousel_autopass{

    z-index: 2;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 8px;
    background: white;
    opacity: 0.2;
    animation-name: carousel_autopass;

    animation-duration: 22s; /* ------ DURACIÓN AUTOPASS ------ */

    animation-iteration-count: infinite;
    animation-timing-function: linear;
    pointer-events: none;
    user-select: none;

}

.carousel_progress{

    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

}

.carousel_progress_btn{

    width: 13px;
    height: 13px;
    padding: 0px;
    margin: 0px;
    border-radius: 15px;
    border: 2px solid white;
    background: none;
    margin-left: 3px;
    margin-right: 3px;
    cursor: pointer;
    transition: 0.2s;

}

.carousel_progress_btn:hover{

    opacity: 0.5;

}

/*YOUTUBE VIDEO ######################################################################################################*/

.home_ytvideo{

    width: 100%;
    height: 360px;
    background: linear-gradient(324deg, #050505 0%, #1a1a1a 100%);
    position: relative;
    border-top: 2px solid white;

}

.yt_leftside{

    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: white;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.yt_logo{

    display: block;
    width: 300px;
    cursor: pointer;
    transition: 0.3s;

}

.yt_logo:hover{

    opacity: 0.3;
    transform: scale(120%);

}

.yt_video{

    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;

}

.yt_video iframe{

    width: 100%;
    height: 100%;

}

/*QUICK ACCESS ######################################################################################################*/

.home_quickaccess{

    width: 100%;
    background: linear-gradient(324deg, rgb(5, 5, 5) 0%, rgb(47, 47, 47) 100%);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.377);
    
}

.quickaccesstitle{

    color: white;
    font-size: 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    
}

.quickaccessbutton{

    display: inline-block;
    text-decoration: none;
    width: 140px;
    margin-top: 30px;

}

.quickaccessbutton div{

    outline: 0px solid transparent;
    transition: 0.3s;

}

.quickaccessbutton:hover div{

    outline: 15px solid rgba(255, 255, 255, 0.199);

}

.quickaccessimg{

    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;

}

.quickaccessimg img{

    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

}

.quickaccesstext{

    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;

}

/*QUIEN SOY ######################################################################################################*/
/*
@keyframes quiensoytitle {
    from {transform: perspective(400px) rotateY(270deg);}
    to {transform: perspective(400px) rotateY(450deg);}
}*/

.quiensoy_title{

    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: white;
    width: 100%;
    text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);/*
    animation-name: quiensoytitle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    overflow: hidden;*/

}

.home_quiensoy{

    position: relative;
    height: 600px;
    border-radius: 40px;
    background: linear-gradient(324deg, #1B1B1B 0%, #313131 100%);
    margin-top: 10px;
    margin-bottom: 50px;
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;

}

.quiensoy_img{

    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 55%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.349);

}

.quiensoy_txt{

    margin-left: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 20px;
    text-align: justify;

}

/*CAPACIDADES ######################################################################################################*/

/*SELECTOR #######################################################################################################################################*/

.home_capacidades{

    position: relative;
    border-radius: 40px;
    margin-top: 10px;
    margin-bottom: 50px;
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.5);
    background: linear-gradient(324deg, #1B1B1B 0%, #313131 100%);
    background-attachment: fixed;
    overflow: hidden;

}

.capacidades_selector{

    width: 100%;
    height: 140px;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.589);
    overflow: hidden;
    border-radius: 0px 0px 40px 40px;
    background: linear-gradient(324deg, #222222 0%, #383838 100%);

}

.capacidades_selector button{

    position: relative;
    flex-grow: 1;
    margin: 10px;
    border-radius: 30px;
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.226);
    border: 0px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    box-sizing: border-box;

}

.capacidades_selector button img{

    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    transition: 0.3s;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    
}

.capacidades_selector button span{

    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0%);
    transition: 0.3s;
    pointer-events: none;
    
}

.capacidades_selector button:hover img{

    width: 200px;
    opacity: 0.2;
    
}

.capacidades_selector button:hover span{

    transform: translateX(-50%) translateY(-50%) scale(100%);
    opacity: 1;
    
}

.capacidades_selector .sel_no#programming_selector{

    background: linear-gradient(315deg, #ff0000 0%, #ff4800 100%);
    border: 0px solid transparent;

}

.capacidades_selector .sel_no#music_selector{

    background: linear-gradient(315deg, #003cff 0%, #00a2ff 100%);
    border: 0px solid transparent;

}


.capacidades_selector .sel_no#art_selector{

    background: linear-gradient(315deg, #11be28 0%, #00ff62 100%);
    border: 0px solid transparent;

}

.capacidades_selector .sel_yes#programming_selector{

    outline: 4px solid #ff1e00;

}

.capacidades_selector .sel_yes#music_selector{

    outline: 4px solid #00a2ff;

}


.capacidades_selector .sel_yes#art_selector{

    outline: 4px solid #00ff4c;

}

.sel_yes{

    /*background: linear-gradient(135deg, #222222 0%, #383838 100%);*/
    background: linear-gradient(135deg, #0e0e0e 0%, #242424 100%);

}

/*CONTENT ####################################################################################################################*/

.capacidades_secciones{

    margin: 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;

}

.cap_title{

    font-size: 8vmin;
    text-shadow: 0px 10px 30px rgba(0,0,0, 0.5);
    
}

.cap_subtitle{

    font-size: 6vmin;
    text-shadow: 0px 10px 30px rgba(0,0,0, 0.5);
    
}

.cap_txt{

    font-size: 20px;
    margin-bottom: 60px;

}

.cap_division{

    font-size: 20px;
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 60px;

}

.cap_division_imgL{
    
    flex-direction: row;

}

.cap_division_imgR{
    
    flex-direction: row-reverse;

}

.divis_img{

    position: relative;
    flex: 1 1 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, 0.226);

}

.cap_division_imgL .divis_img{

    margin-left: 0px;

}

.cap_division_imgR .divis_img{

    margin-right: 0px;

}

.divis_cont{

    position: relative;
    flex: 1 1 0;
    text-align: left;/*
    margin-top: 15px;
    margin-bottom: 15px;*/

}

.divis_cont .cap_subtitle{

    text-align: left;

}

.cap_fullwidth{

    width: 100%;
    height: 500px;
    background: rgb(0, 0, 0);
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 40px;
    padding: 0px;
    position: relative;
    box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, 0.226);

}

.cap_art_logo{

    width: 70vmin;

}

.cap_art_gallery{

    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;

}

.cap_art_img{

    background: linear-gradient(135deg, #000000 0%, #181818 100%);;
    aspect-ratio: 16/9;
    border-radius: 40px;
    box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, 0.226);
    position: relative;
    overflow: hidden;
    cursor: pointer;

}

.cap_art_img img{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;

}

.cap_art_img:hover img{

    transform: scale(150%);

}

/*PROCESO ######################################################################################################*/

.proceso_title{

    font-family: 'Poppins', sans-serif;
    font-size: 18vmin;
    color: white;
    text-align: center;
    text-shadow: 0px 16px 25px rgba(0, 0, 0, 0.527);

}

.home_proceso{

    position: relative;
    width: 100%;
    /*background: rgb(0, 0, 0);*/
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    /*background: url("../imgs/proceso/BG.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;*/
    padding-bottom: 50px;

}

.home_proceso::before{

    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url("../imgs/proceso/BG.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;

}

.proceso_division{

    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;

}

.proces_div_imgL{

    flex-direction: row;

}

.proces_div_imgR{

    flex-direction: row-reverse;

}

.proces_div_img{

    flex: 1 1 0;
    aspect-ratio: 16/9;
    box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, 0.527);
    overflow: hidden;

}

.img_tiltedright{

    transform: rotateZ(-5deg);

}

.img_tiltedleft{

    transform: rotateZ(5deg);

}

.proces_div_cont{

    flex: 1 1 0;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: white;
    background: rgba(255, 255, 255, 0.253);
    border: 2px solid #ffffff2e;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);

}

.proceso_nums{

    color: rgb(0, 183, 255);

}

/*PROYECTOS DESTACADOS ######################################################################################################*/

.home_destacados{

    /*background: url("../imgs/proyectosdestacados/BG.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;*/
    text-align: center;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    position: relative;

}

.home_destacados::before{
    
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url("../imgs/proyectosdestacados/BG.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;

}

.destacados_title{

    font-family: 'Poppins', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 13vmin;
    text-shadow: 0px 16px 25px rgba(0, 0, 0, 0.527);

}

.destacados_proj{

    min-height: 400px;
    background: linear-gradient(324deg, #1B1B1B 0%, #313131 100%);
    margin-bottom: 40px;
    border-radius: 40px;
    box-shadow: 0px 10px 20px #0000006c;
    overflow: hidden;
    position: relative;
    border: 2px solid white;

}

.destacados_img{

    position: absolute;
    height: 100%;
    width: 40%;
    min-height: 100%;
    overflow: hidden;

}

.destacados_txt{

    margin-left: 40%;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: left;
    padding: 40px;

}

.destacados_txt h1{

    font-size: 50px;
    text-decoration: underline;

}

.destacados_txt p{

    font-size: 20px;
    margin-bottom: 34px;
    text-align: justify;

}

/*RESPONSIVITY ######################################################################################################*/

@media only screen and (max-width: 800px){

    /*CAROUSEL ######################################################################################################*/

    .home_carousel{

        height: auto;
        text-align: center;

    }

    .carousel_nav_left{

        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    
    }
    
    .carousel_nav_right{
    
        top: 50%;
        right: 10px;
        transform: translateY(-50%) scaleX(-100%);
    
    }
    
    .home_carousel_activepart{

        z-index: 2;
        position: relative;
        top: 0px;
        margin-top: 70px;
        bottom: 0px;
        width: 100%;
        text-align: center;
    
    }

    .carousel_left{

        display: inline-block;
        position: relative;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        padding-left: 0px;
        padding-right: 0px;
        z-index: 2;
        width: 100%;
        height: 120px;
        margin-top: 20px;
        margin-left: 0px;
        margin-right: 0px;
        text-align: center;
    
    }

    .carousel_image{

        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 80%;
        height: 100%;
        animation-name: carousel_image_appear;
        animation-duration: 1s;
        
    }

    @keyframes carousel_right_appear {

        from {opacity: 0;}
        to {opacity: 1;}
    
    }

    .carousel_right{

        margin-right: 0px;
        position: relative;
        top: 0px;
        transform: translateY(0%);
        right: 0px;
        left: 0px;
        animation-name: carousel_right_appear;
        animation-duration: 1s;
        z-index: 2;
        text-align: center;
        padding-left: 68px;
        padding-right: 68px;
        padding-top: 20px;
        padding-bottom: 40px;
    
    }

    .carousel_title{

       font-size: 24px;

    }

    .carousel_desc{

        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-shadow: 0px 4px 16px #0000007c;
        text-align: center;
        width: 100%;

    }

    .carousel_button{

        display: none;
        height: 42px;
        padding-left: 25px;
        padding-right: 25px;
        font-family: 'Poppins', sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: white;
        background: none;
        border: 2px solid rgb(255, 61, 61);
        border-radius: 38px;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.2);
        margin-top: 24px;
    
    }

    .carousel_autopass{

        animation: none;
        display: none;

    }

    /*YOUTUBE VIDEO ######################################################################################################*/

    .home_ytvideo{

        height: auto;
    
    }

    .yt_leftside{

        position: relative;
        width: 100%;
        height: 240px;
        font-size: 6vmin;

    }

    .yt_video{

        position: relative;
        width: 100%;
        height: 360px;
        right: 0px;
        top: 0px;
        transform: translateY(0%);

    }

    /*QUIEN SOY ######################################################################################################*/

    .home_quiensoy{

        position: relative;
        height: auto;
        border-radius: 40px;
        background: linear-gradient(324deg, #1B1B1B 0%, #313131 100%);
        margin-top: 10px;
        margin-bottom: 50px;
        box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.226);
        overflow: hidden;
    
    }
    
    .quiensoy_img{
    
        position: relative;
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
        width: 100%;
        height: 555px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.349);
    
    }
    
    .quiensoy_img img{
    
        position: relative;
    
    }
    
    .quiensoy_txt{
    
        margin-left: 0px;
        height: auto;
        display: flex;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    
    }

    /*CAPACIDADES ######################################################################################################*/

    .capacidades_selector button:hover span{

        opacity: 0;
        transform: scale(0%);
        
    }

    .capacidades_selector button:hover img{

        width: 60px;
        opacity: 1;
        
    }

    .cap_division_imgL{
        
        flex-direction: column;

    }

    .cap_division_imgR{
        
        flex-direction: column;

    }

    .divis_img{

        position: relative;
        flex: 0 1 auto;
        border-radius: 20px;
        overflow: hidden;
        height: 350px;
        margin-bottom: 20px;

    }

    .divis_cont{

        position: relative;
        flex: 1 1 0;
        text-align: justify;/*
        margin-top: 0px;
        margin-bottom: 0px;*/
        text-align: center;

    }

    .cap_division_imgL .divis_cont{

        margin-left: 0px;

    }

    .cap_division_imgR .divis_cont{

        margin-right: 0px;

    }

    .cap_division_imgR .divis_img{

        margin-right: 0px;

    }

    .divis_cont .cap_subtitle{

        text-align: center;
        
    }

    .cap_art_gallery{

        width: 100%;
        height: auto;
        display: flex;
        grid-template-columns: unset unset;
        flex-direction: column;

    }

    /*PROCESO ######################################################################################################*/

    .proceso_division{

        align-items: stretch;
        margin-bottom: 78px;
        gap: 30px;

    }

    .proces_div_imgL{

        flex-direction: column;

    }

    .proces_div_imgR{

        flex-direction: column;

    }

    .proces_div_img{

        width: 100%;
        aspect-ratio: 16/9;
        flex: 0 1 auto;

    }

    .proces_div_cont{

        text-align: center;

    }

    /*PROYECTOS DESTACADOS ######################################################################################################*/

    .destacados_img{

        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        min-height: 0;
        overflow: hidden;
    
    }
    
    .destacados_txt{
    
        margin-left: 0%;
        font-family: 'Poppins', sans-serif;
        color: white;
        text-align: center;
        padding: 40px;
    
    }

    .destacados_txt p{

        text-align: center;
    
    }

}