html{
    font-family: 'Montserrat', sans-serif;
}
html header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 600;
}
.header .logo img{
    width: 150px;
    height: 70px;
    object-fit: cover;
    padding: 10px;
}
.menu-icon i{
    font-size: 26px;
}
@media screen and (min-width: 800px){.menu-icon i{display: none;}}
.header .menu{
    width: 100%;
    padding: 8px;
    background: var(--theme);
    color: #fff;
    transition: 1700ms ease-in-out;
    box-shadow: 0px 0px 25px 0px #2b1313;
    position: relative;
}
.header .menu li{
    list-style: none;
    padding: 5px;
    font-size: 19px;
}
.header .menu ul li:hover{
    transition: 500ms ease-in;
    transform: translateY(-4px);
    font-weight: 600;
}
.header .menu .btn{
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 15px;
    width: 130px;
    text-align: center;
}
@media screen and (max-width: 799px){
    .menu ul{display: inline-block;}
    .menu ul li{
        padding: 20px;
        margin: 5px;
    }
}

.sub-menu {
    display: none;
    position: absolute !important;
    top: 100%;
    left: 0;
    background-color: #fff;
    color: var(--theme);
    border-radius: 10px;
    width: 250px;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 3500;
    transform: translate(-40px, -80px);
}

.sub-menu li {
    padding: 10px 20px;
    list-style: none;
    cursor: pointer;
}

.sub-menu li:hover {
    background-color: rgba(95, 21, 25, 0.1);
}

header ul li {
    position: relative;
}


@media screen and (min-width: 700px){
   header ul li:hover .sub-menu{display:  block}
}