*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --colorTextos:#7e7e7e;
    --colorBotones:#002379;
    --colorFondo:#002379;
    --paddingSecciones:60px 0;
    --marginElementos:40px;
}

body{
    font-family: 'Lato', sans-serif;
}

.contenedor{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: var(--paddingSecciones);
}
.logoimg{
    height: 50%;
    width: 30%;

}
/**MENU*/
.menu-navegacion{
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    float: none;
    font-size: 18px;
}

.menu{
    color: #002379;    
}

.areas{
    color: #002379;
    font-weight: 600;
    font-size: 18px;
    
}

.area{
    color: #002379;
    font-weight: 600;
    font-size: 30px;
    transform: rotate(360deg);
}

.area i:hover{
    transform: rotate(360deg);
}

.logo{
    height: 250px;
     
}

.logo img{
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    transition: 3s;

}

.enlaces li{
    list-style: none;
    display: inline-block;
    
}

.enlaces a{
    color: var(--colorFondo);
    text-decoration: none;
    margin-right: 10px;
    text-align: center;
    font-weight: 700;
}

.Fondo{
    color: #002379;
}

.fondos{
color: #fff;
font-size: 15px;
background:#B80000;
text-align: center;
margin: 15px 80px 15px; 
padding: 5px;
}

.enlaces a:hover{
    text-decoration: underline;
}
/**HERO*/

.hero{
    height: 650px;
    background-image: url("../img/fondo01.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contenedor-textos{
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1{
    font-size: 60px;
    font-weight: 700;
}

.hero p{
    font-weight: 300;
    font-size: 25px;
    margin: 15px 0;    
}

.boton{
    width: 150px;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    background: var(--colorBotones);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

/**MAIN**/

.titulo-seccion{
    text-align: center;
    font-size: 35px;
    color: var(--colorFondo);
    text-transform: uppercase;
    }

.copy{
    text-align: center;
    color:#002379;
    font-size: 20px;
    margin: 20px 0;
}

.copi{
    color:#002379;
    font-size: 20px;
}


.beneficios{
    padding-top: var(--marginElementos);
    display: flex;
    justify-content:space-evenly;
    flex-wrap: wrap;   
}

.beneficio{
    font-size: 20px;
    width: 10em;
    height: 10em;
    background-image: url(../img/imagen-flexbox-min.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content:center;
    border-radius: 5%; 
}
.projects{
    background: #f2f2f2;
}

.contenedor-imagenes {
   display: flex;
   justify-content: space-evenly;
   flex-wrap: wrap; 
}

.contenedor-imagenes img{
    display: block;
    object-fit: cover;
    width: 30%;
    height: 220px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
    margin-bottom: var(--marginElementos);
}

.peopel{
    width: 180px;
    height: 150px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.person{
    font-size: 22px;
    text-align: center;
    margin-top: 5px;
    font-weight: 300;
}

footer{
    background-image: url(../img/ATENCION01.png);
    background-position: center;
    background-size: cover;
  
}

footer .titulo-seccion, 
footer .copy{
    color: #fff;
}

.redes-sociales{
    padding-top: var(--marginElementos);
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: space-evenly;
}

.redes-sociales i{
    font-size: 60px;
    color: #F5E8C7;
    transition: 3s;
    
}
.redes-sociales i:hover{
   transform: rotate(360deg);
}

.direccion{
color: #fff;
text-align: center;
font-size: 20px;
font-weight: 800;
padding: 12px;
margin: auto;
}

.btnWhats{
    bottom: 20px;
    right: 20px;
    width: 70px;
    position: fixed;
}

.video-container{
    position: relative;
    z-index: -100;
    top:0;
    left: 0;
    width: 50%;
    height: calc(100vw * 1.77777);
    overflow: hidden;
}

.video-container video{
    position: absolute;
    top:0;
    left:0;
    width: 100vw;
}

/**MEDIAS QUIERY PARA PAGINA RESPONSIVE**/

@media screen and (max-width:800px){
    .menu-navegacion{
        flex-direction: column;
        height: 180px;
       justify-content: space-evenly;
}

.hero h1{
    font-size: 38px;
}

.beneficio{
    margin-bottom: var(--marginElementos);
}
.contenedor-imagenes img{
    width: 90%;
}
.redes-sociales{
    flex-direction: column;
    align-items: center;
}
.redes-sociales i{
    margin-bottom: 20px;
}
.container video{
    width: 300px;
    position: relative;
 }
}     














