

header{
    position: relative;
    width: 100vw;
    height: 10vh;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    
}
nav{
    position: relative;
    width: 100%;
    height: 100%;
}

.nav__logo{
    position: relative;
    width: 50%;
    
    
}
.logo{
    position: relative;
    width: 200px;
    top:1px
    
}

.nav__menu{
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        top: 35%;
        right: 0; 
    }  

.nav__menu li {
    display:inline-block;
    padding:5px 10px 5px 10px;
    text-align: center;
}

.nav__menu li a{
    color: #00538B;
    text-decoration: none;
    font-weight: 700;
}
.nav__menu li a:hover{
    text-decoration:underline;
}

.nav__menu img{
    width: 25px;
    height: 25px;
}


/* cuerpooooooooooo0000000000000000000000000000000000000000000000000 */
*{
    font-family: 'Heebo', sans-serif;
}
.contenedor{
    position: relative;
    width: 100vw;
    height: 90vh;

}

.cuerpo1{
    
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

}
video{
    position: absolute;
    z-index: -5;
    width: 100%;
}

h2{
    position: absolute;
    top: 20px;
    left: 2%;
    font-weight: 700;
    color: #25d366;
    font-size: 28px;
    transition: 3;
}

.historia{
    display: flex;
    justify-content: center;
    align-items: start;
    width: 60%;
    height: 20%;
    position: absolute;
    top: 15px;
    left: 30%;
    flex-wrap: wrap;
   
}
p{
    color: #fff;
    background: #000;
    opacity: 0.7;
    width: 1100px;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    transition: 2s;
    text-align: justify;
    animation: nosot 4s ease-in 0s infinite alternate backwards;
}
@keyframes nosot {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        
    }
}
h2{
    font-size: 24px;
}


/* reponsiveeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/

@media only screen and (max-width: 850px){

    video{
        display: none;
    }
    .logo{
        top:0px;
        width: 150px;
        padding-top: 3px;
        
    }
    .contenedor{
        width: 100vw;
        height: 90vh;
        position: relative;
        z-index: 300;
        display: flex;
        background: url(Imagenes/imagen12.jpg);
        justify-content: start;
        align-items: start;
        background-repeat: no-repeat;
        background-size:cover;
        
    }
    .historia{
        position: absolute;
       
        width: 90vw;
        height: 300px;
        top:50px;
        left:20px;
        
    }
   
    p{
        color: #fff;
        width: 100%;
        font-weight: 700;
        font-size: 12px;
        transition: 3s;
        text-align:justify;
        background: none;
        
    }
 
    }
    /* reponsiveeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/
    @media only screen and (max-width: 300px){
        .logo{
            top:0px;
            width: 130px;
            padding-top: 3px;
            
        }
        .nav__menu{
            display: flex;
            flex-wrap: wrap;
            position: absolute;
            top: 55%;
            right: 0; 
        }  
    
    }