*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
:root{
    --color_fondo_1: #5FC3FA;
    --color_fondo_2: #3EF3FA;
    --color_fondo_3: #C7F4FA;
    --color_fuente_1: #6420FA;
    --color_fuente_2: #6B6EFA;
    --color_fuente_3: #82AAFA;
    --color_fuente_4: #BBD0FA;
}
.section_hero, .section_servicios, .section_con{
    padding-top: 170px;
}
.divisor_sec{
    margin: 100px auto 100px auto;
    height: 5px;
    width: 70%;
    border-radius: 10px;
    background-color: var(--color_fuente_2);
    border: none;
}
.divisor_div{
    margin: 0 auto 0 auto;
    height: 5px;
    width: 200px;
    border-radius: 10px;
    background-color: var(--color_fuente_4);
    border: none;
}

/*-------------------------------------------------------*/

/* Section: "menu", Menú */

.section_menu{
    width: 100%;
    height: 170px;
    background-color: var(--color_fondo_2);
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: fixed;
    overflow: hidden;
}

/* --Parte superior del Menú: Imagen de logo-- */

.logo_div{
    display: flex;
    flex-wrap: 1 0 100%;
    align-items: center;
    justify-content: center;
}
.logo_div > img{
    width: 150px;
}

/* --Parte inferior del Menú: Hipervínculos-- */

.barra_menu{
    display: flex;
    flex: 1 0 100%;
    justify-content: center;
}
.barra_menu > ul{
    display: flex;
    flex: 0 0 50%;
    flex-direction: row;
    list-style: none;
    justify-content: space-around;
}
.li_menu{
    display: flex;
    flex-direction: column;
}
/*Texto hipervínculos*/
.li_menu > a{
    text-decoration: none;
    color: var(--color_fuente_2);
    font-size: 20px;
    z-index: 11;
    transition: .25s;
}
/*Subrayado del menú*/
.subrayado_menu{
    height: 3px;
    width: 0%;
    border: none;
    border-radius: 3px;
    background-color: var(--color_fuente_1);
    transition: .25s;
}
.li_menu > a:hover{
    color: var(--color_fuente_1);
}
.li_menu > a:hover ~.subrayado_menu{
    width: 100%;
}
/*Subrayado por secciones*/
.subrayado > a{
    color: var(--color_fuente_1);
}
.subrayado > .subrayado_menu{
    width: 100%;
}


/*-------------------------------------------------------*/

/* Footer */

.footer{
    height: 60px;
    background-color: #000;
    margin: 0;
    padding: 0 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer > div > p{
    color: #fff;
}
.div_ver_footer{
    width: 2px;
    height: 20px;
    margin: 0 20px;
    background-color: #fff;
    border: none;
}


/*-------------------------------------------------------*/

/* Section: "hero", Inicio */

.section_hero{
    width: 100%;
    padding: 170px 0 100px 0;
    background-color: var(--color_fondo_3);
}

/* --Div que contiene el texto-- */

.hero_div{
    width: 100%;
    height: 70vh;
    background-color: var(--color_fondo_3);
    position: relative;
}
/* --Texto-- */
.hero_div > h1{
    width: 35%;
    font-size: 75px;
    color: var(--color_fuente_2);
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 2;
}
.hr_hero_1{
    animation-name: animacion_texto_1;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
.hr_hero_2{
    animation-name: animacion_texto_2;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
.hr_hero_3{
    animation-name: animacion_texto_3;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
.hr_hero_4{
    animation-name: animacion_texto_4;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
/*Imágenes*/
.sub_div_hero{
    display: flex;
    width: 50%;
    left: 50%;
    position: absolute;
    object-fit: contain;
    z-index: 5;
}
.img_hero{
    width: 100%;
    height: 100%;
    z-index: 1;
}
.img_hero_1{
    animation-name: animacion_img_1;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
.img_hero_2{
    animation-name: animacion_img_2;
    animation-duration: 30s;
    animation-iteration-count: infinite;  
}
.img_hero_3{
    animation-name: animacion_img_3;
    animation-duration: 30s;
    animation-iteration-count: infinite;  
}
.img_hero_4{
    animation-name: animacion_img_4;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}
.div_color{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgb(199,244,250);
    background: linear-gradient(97deg, rgba(199,244,250,1) 0%, rgba(0,0,0,0) 100%);
}

/*Animaciones del texto*/
@keyframes animacion_texto_1 {
    0%{
        opacity: 0;
        transform: scale(0.75);
    }
    5%{
        opacity: 1;
        transform: scale(1);
        transform: translateX(25%);
    }
    20%{
        opacity: 1;
        transform: translateX(40%);
    }
    25%{
        opacity: 0;
        transform: scale(0.75);
        transform: translateX(75%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_texto_2 {
    0%{
        opacity: 0;
    }
    25%{
        opacity: 0;
        transform: scale(0.75);
    }
    30%{
        opacity: 1;
        transform: scale(1);
        transform: translateX(25%);
    }
    45%{
        opacity: 1;
        transform: translateX(40%);
    }
    50%{
        opacity: 0;
        transform: scale(0.75);
        transform: translateX(75%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_texto_3 {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
        transform: scale(0.75);
    }
    55%{
        opacity: 1;
        transform: scale(1);
        transform: translateX(25%);
    }
    70%{
        opacity: 1;
        transform: translateX(40%);
    }
    75%{
        opacity: 0;
        transform: scale(0.75);
        transform: translateX(75%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_texto_4 {
    0%{
        opacity: 0;
    }
    75%{
        opacity: 0;
        transform: scale(0.75);
    }
    80%{
        opacity: 1;
        transform: scale(1);
        transform: translateX(25%);
    }
    95%{
        opacity: 1;
        transform: translateX(40%);
    }
    100%{
        opacity: 0;
        transform: scale(0.75);
        transform: translateX(75%);
    }
}

/*Animaciones de la imagen*/
@keyframes animacion_img_1 {
    0%{
        opacity: 0;
    }
    5%{
        opacity: 0.25;
    }
    20%{
        opacity: 0.25;
        transform: translateX(-10%);
    }
    25%{
        opacity: 0;
        transform: translateX(-50%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_img_2 {
    0%{
        opacity: 0;
    }
    25%{
        opacity: 0;
    }
    30%{
        opacity: 0.25;
    }
    45%{
        opacity: 0.25;
        transform: translateX(-10%);
    }
    50%{
        opacity: 0;
        transform: translateX(-50%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_img_3 {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    55%{
        opacity: 0.25;
    }
    70%{
        opacity: 0.25;
        transform: translateX(-10%);
    }
    75%{
        opacity: 0;
        transform: translateX(-50%);
    }
    100%{
        opacity: 0;
    }
}

@keyframes animacion_img_4 {
    0%{
        opacity: 0;
    }
    75%{
        opacity: 0;
    }
    80%{
        opacity: 0.25;
    }
    95%{
        opacity: 0.25;
        transform: translateX(-10%);
    }
    100%{
        opacity: 0;
        transform: translateX(-50%);
    }
}


/*-------------------------------------------------------*/

/* Section: "presentación", Introducción a la empresa */

.section_pres{
    padding: 100px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.div_pres{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
    justify-content: center;
}
.texto_pres{
    text-align: center;
    margin: 50px 0 50px 0;
    color: var(--color_fuente_3);
    font-size: 24px;
}

/*-------------------------------------------------------*/

/* Section: "xp", nuestra experiencia */

.section_xp{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.div_xp{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
    justify-content: center;
}

/*-------------------------------------------------------*/

/* Section: "nosotros", Sobre Nosotros */

.section_nos{
    z-index: 5;
}
.title{
    text-align: center;
    font-size: 45px;
    color: var(--color_fuente_2);
}
.div_nos{
    display: flex;
    flex-direction: column;
}
.div_img_nos{
    display: flex;
    width: 200px;
    height: 200px;
    margin: 0 50px 0 50px;
    border-radius: 50%;
}
.sub_div_nos{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 50px 0;
}
.sub_div_nos > div > img{
    border-radius: 50%;
}
.texto_izq > h1, .texto_izq > p, .texto_izq > p > span{
    text-align: right;
}
.sub_div_nos > div > h1{
    color: var(--color_fuente_2);
}
.sub_div_nos > div > p > span{
    color: var(--color_fuente_3);
    font-size: 20px;
}

/*-------------------------------------------------------*/

/* Section: "servicios", Nuestros Servicios */

.section_servicios{
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 220px;
}
.div_servicios > .title{
    margin: 100px 0 0 0;
}
.div_servicios{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
    justify-content: center;
}
.sub_div_ser{
    margin: 50px 0 50px 0;
    text-align: center;
}
.title_servicios{
    color: var(--color_fuente_2);
    font-size: 34px;
}
.sub_title_servicios{
    font-size: 28px;
    color: var(--color_fuente_2);
}
.detalle_servicios{
    font-size: 24px;
    color: var(--color_fuente_3);
}
.sub_div_ser > div{
    margin: 50px 0 50px;
}
.section_servicios > .title{
    margin-bottom: 50px;
}

/*-------------------------------------------------------*/

/* Section: "con", contacto */

.section_con{
    padding: 220px 0 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.div_con{
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
}
.sub_div_con{
    width: 40%;
    margin: 100px 0;
    display: flex;
    flex-direction: column;
}
.texto_con{
    font-size: 34px;
    color: var(--color_fuente_3);
}
.texto_con_2{
    font-size: 24px;
    color: var(--color_fuente_3);
}
.divisor_div_ver{
    margin: auto 0 auto 0;
    height: 200px;
    width: 5px;
    border-radius: 10px;
    background-color: var(--color_fuente_4);
    border: none;
}
.link_con{
    margin: 5px 0 50px 0;
    font-size: 18px;
    color: var(--color_fuente_2);
}



/*________________________________________________________________*/
/*________________________________________________________________*/

/* RESPONSIVE */



/* Función de ancho de pantalla */
@media (max-width: 1281px){
    .section_menu, .section_hero, .section_pres, .section_xp, .section_nos, .section_con, .divisor_sec{
        display: none;
    }
    .section_servicios{
        display: none;
    }
}
@media (min-width: 1281px){
    .responsive{
        display: none;
    }
}

/*Menu responsive*/
.menu_responsive{
    height: 100%;
    width: 100%;
}
.menu_closed{
    background-color: var(--color_fondo_2);
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    position: fixed;
    justify-content: space-evenly;
    align-items: center;
    z-index: 30;
}
.menu_closed > img{
    height: 50%;
}

/*Botón menú*/
.menu_abrir, .menu_cerrar{
    font-size: 40px;
    color: var(--color_fuente_1);
}
.boton_menu_res{
    border: none;
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
}

/*Menú abierto*/
.menu_open{
    width: 100%;
    background-color: var(--color_fondo_2);
    margin-top: 100px;
    position: fixed;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1000px rgba(0, 0 ,0 , 0.25);
    transition: .25s;
}
.menu_open > nav > ul{
    list-style: none;
    margin: 0 0 50px 20px;
}
.menu_open > nav > ul > li{
    margin: 10px 0 10px 0;
}
.menu_open > nav > ul > li > a{
    font-size: 24px;
    color: var(--color_fuente_2);
    text-decoration: none;
}
.divisor_menu_res{
    width: 20%;
    height: 2px;
    border-radius: 10px;
    border: none;
    background-color: var(--color_fuente_3);
    margin: 25px 0 25px;
}
.boton_menu_res:hover .item_menu_res{
    color: var(--color_fuente_1);
}
.item_menu_res{
    color: var(--color_fuente_2);
}
.menu_res_resal{
    color: var(--color_fuente_1);
}


/*----FUNCIÓN DEL BOTÓN----*/

.hidden{
    display: none;
}

/*secciones responsive*/
.section_res{
    padding: 100px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;  
}
.section_res > p{
    margin: 50px auto 50px;
    width: 70%;
    text-align: center;
    font-size: 24px;
    color: var(--color_fuente_3);
}
/*--presentación responsive / section_pres_res--*/
.section_pres_res{
    background-color: #fff;
}

.divisor_res{
    width: 50%;
    height: 5px;
    border-radius: 5px;
    border: none;
    background-color: var(--color_fuente_4);
    margin: 0 auto;
}
/*--experiencia responsive / section_xp_res--*/
.section_xp_res{
    background-color: var(--color_fondo_3);
    padding: 50px 0;
}
.div_nos_res{
    width: 80%;
    background-color: var(--color_fondo_3);
    border-radius: 20px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
}
.div_nos_res > img{
    border-radius: 50%;
    height: 200px;
    margin: 20px;
}
.sub_div_nos_res{
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
    justify-content: space-around;
}
.sub_div_nos_res > h1{
    color: var(--color_fuente_1);
    font-size: 28px;
}
.sub_div_nos_res > p{
    color: var(--color_fuente_2);
    font-size: 24px;
}
.sub_div_nos_res > p > span{
    color: var(--color_fuente_3);
    font-size: 18px;
}
@media(max-width: 900px){
    .div_nos_res{
        flex-direction: column;
        justify-content: center;
    }
    .div_nos_res > img{
        height: 200px;
        margin: 20px auto;
    }
    .sub_div_nos_res > h1{
        text-align: center;
    }
    .sub_div_nos_res{
        justify-content: center;
    }
    .sub_div_nos_res > p{
        text-align: center;
    }
}


/*--SERVICIOS RESPONSIVE / section_servicios_res--*/

.section_servicios_res{
    padding: 100px 0 0 0;
}
.div_servicios_res{
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub_div_ser_res > h1, .boton_menu_res >{
    text-align: center;
}
.sub_div_ser_res_1 > h1{
    font-size: 34px;
    color: var(--color_fuente_1);
}
.boton_ser_res > h1{
    font-size: 28px;
    color: var(--color_fuente_2);
}
.detalle_servicios_res{
    background-color: var(--color_fondo_2);
    padding: 20px;
    margin: 10px auto;
    border-radius: 20px;
    overflow: hidden;
}
.boton_ser_res{
    background-color: var(--color_fondo_2);
    width: 100%;
    margin: 0 0 20px;
}
.contenido_ser_res{
    background-color: var(--color_fondo_3);
    border-radius: 20px;
    overflow: hidden;
}
.oculto_res{
    height: 0px;
}
.contenido_ser_res > p{
    font-size: 18px;
    color: var(--color_fuente_3);
    padding: 20px;
}


/*--CONTACTO RESPONSIVE--*/

.section_con_res{
    padding: 150px 0 0 0;
}
.section_con_res > .div_con{
    flex-direction: column;
}
.section_con_res > .div_con > .sub_div_con{
    width: 80%;
}
.divisor_con_res{
    height: 5px;
    border-radius: 5px;
    width: 50%;
    background-color: var(--color_fuente_4);
}
.section_con_res > .div_con > .sub_div_con > p{
    text-align: center;
}
.section_con_res > .div_con > .sub_div_con > a{
    text-align: center;
    font-size: 24px;
}