.header{

    background:white;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo img{

    height:80px;

    width:auto;

    display:block;

}


.menu{

    display:flex;

    gap:40px;

}

.menu a{

    text-decoration:none;

    color:#1d3557;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:#f39c12;

}