
.menu-toggle{
    display:none;
}

/* NAVBAR */

nav{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    position:sticky;
    top:0;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    z-index:999;

}

.logo img{

    width:80px;

}

nav ul{

    display:flex;
    gap:50px;

    list-style:none;

}

nav a{

    color:#0B2A5B;
    text-decoration:none;
    font-weight:500;

}



/* ENQUIRE NOW BUTTON */

.btnenq{
    background: #0B2A5B;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btnenq:hover{
    background: #b89541;
    color: #fff !important;
}




