* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.logo-class {
    width: 250px;
}

/* ***********************************************************
.leer-mas:hover {
    background: rgba(235, 70, 66, 0.5);
}
*********************************************************** */


.header {
   z-index: 999;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 200px;
   transition: 0.5s ease;    
}

/*  el elemento sig. es para texto en lugar del logo de la web */
.header .brand {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
/* FIN estructura del logo cuando usamos texto*/


.header .navigation {
    position: relative;
}

.header .navigation .navigation-items a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

.header .navigation .navigation-items a:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: -5px; /* distancia del subrayado de cada menu */
    left: 0;
    transition: 0.3s ease;
}

.header .navigation .navigation-items a:hover:before {
    width: 100%;
}

section {
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(235, 70, 66, 0.95); /* COLOR ANTERIOR DE FONDO: #2696e9 */
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.35); /* COLOR ANTERIOR: rgba(3, 96, 251, 0.5) */
    width: 100%; 
    height: 100%;
    top: 0;
    left: 0;    
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 60%;
    margin-top: 30px;
    display: none;
}

.home .content.active {
    display: block;
}

/* TITULOS Y TEXTOS DESCRIPTIVOS EN EL CARRUSEL */
.home .content h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5em;
    font-weight: 800;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    line-height: 50px;
    padding-top: 220px;
    margin-bottom: 30px;
}

.home .content h1 span { /* **************************************** */
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 800;
    /* text-transform: uppercase; */
}

.home .content p {
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 20px;
}

.home .content a {
    background: rgba(255, 255, 255, 0.55);
    padding: 7px 30px;
    color: rgba(235, 70, 66, 1.0);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
}

.home .content a:hover {
    background: rgba(235, 70, 66, 0.65);
    padding: 7px 30px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
}


.home .media-icons {
    z-index: 888; /* Z-INDEX ---- POSICIONA ARRIB. TRAE AL FRENTE*/
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.65s ease; /* VER EN QUE SE APLICA ESTA TRANSICIÓN */
}

.home .media-icons a {
    color: #fff;
    font-size: 1.2em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 15px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}



.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover /*PARA OCUPAR ANCHO DE PANTALLA*/;
}

.slider-navigation {
    z-index: 888; /* ESTA FUNCION TRAE AL FRENTE UN ELEMENTO */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {  
    background: #EB4642;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px; /* SEPARA UN BOTON DE NAVEGACION DEL SIG */
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.3);
}

.video-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0 at 0 50%);
}

.video-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}




/* FUNCION RESPONSIVA PANTALLAS HASTA 1040 PX ANCHO */

@media (max-width: 1040px) {

    .home .content {
        z-index: 888;
        color: #fff;
        width: 90%;
        margin-top: 40px;
        display: none;
    }
    
    .header {
        padding: 12px 20px;
        }

    section {
        padding: 100px 20px;
        z-index: 100;
    }

    .home .media-icons {
       right: 15px;
       }

    .header .navigation {
        display: none;
    }

    .header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 31, 0.5);
    }

    .header .navigation .navigation-items a {
        font-family: 'Open Sans';
        font-weight: 300;
        color: #ffffff;
        font-size: 1.2em;
        margin: 20px;

        z-index: 999;

    }

    .header .navigation .navigation-items a:before {
        background: #ffffff;
        height: 5px;
        color: #fff;

        z-index: 999;

    }

    .header .navigation.active .navigation-items {
        background: rgba(1, 1, 31, 0.75);
        width: 600px;
        max-width: 600px;
        height: 100%;
        margin-top: 0px;
        padding-top: 80px;
        display: flex;
        font-size: 130%;
        flex-direction: column;
        align-items: center;
        border-radius: 0px;
        box-shadow: 0 5px 25px rgba(1 1 1 / 20%);

        z-index: 999;
    }

    .menu-btn {
        background: url(img/menu.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
        
        z-index: 999;



    }

    .menu-btn.active {
        z-index: 999;
        background: url(img/close.png)no-repeat; 
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }

    

}