*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* INICIO*/
/* barra menu */ 
.menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 63px;
    background: #E8F0EF;
    position: fixed;
    width: 100%;
    z-index: 100;
    font-family: 'Montserrat', sans-serif;
    
}
.navbar{
    display: flex;
    margin-right: 70px;
    
}
.brand img{
    width: 25px;
    height: 25px;
}
/* logo de menu */
.logo{
    margin-left: 30px;
}

.logo a{
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 30px;
}
.navbar a{
    display: block;
    padding: 23px 20px;
    color: #004563;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;

}
.navbar a:hover {
    background: #F99B2B;
}
/* FIN*/

/* CUADRO AZUL contacto*/
footer{
    background: #004563;
    padding-bottom: 0.1px;
    font-family: 'Kanit', sans-serif;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 10px;
}
.contact-us{
    width: 45%;
    color: #fff;
}
.brand{
   
    font-weight: 500;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
}
/* ICONOS */
.social-media{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.social-media-icon{
    display: inline-block;
    margin-left: 30px;
    width: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}
.social-media-icon:hover{
    background: #fff;
    color: #E66A06;
}
.social-media-icon i{
    font-size: 45px;
    line-height: 60px;
}

.line{
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    height: 2px;
    background: #fff;
    margin-bottom: 60px;
}

@media screen and (max-width: 425px) {
    /* barra menu */ 
    .menu{
       width: 100%;
       display: flex;
       align-items: center;
       justify-content: space-between;
       height: 60px;
       background: #E8F0EF;
       position: fixed;
       z-index: 10;
       font-family: 'Montserrat', sans-serif;
   }
   .navbar{
    display: flex;
    margin-left: 20px;
   }
   .navbar a{
    display: block;
    padding: 20px 8px;
    color: #004563;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    
   }
    /*IMAGEN DEL MUÑECO */ 
   .navbar a img{
       margin-right: 15px;
     
       height: 14px;
     }

     .logo img{  
       margin-left: 1px;
       height: 30px;
       width: 100px;
   }
   .logo{
    margin-left: 13px;
}
.navbar a:hover {
    background: #F99B2B;;
}
}