
html,
body{
    overflow-x:hidden !important;
    max-width:100%;
}

img{
    max-width:100%;
    height:auto;
}

.container,
.row{
    max-width:100%;
}

html,body{
    overflow-x:hidden;
    width:100%;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/*==============================
    HEADER
==============================*/

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    transition:.35s;
    box-shadow:0 3px 20px rgba(0,0,0,.20);
}

.header-inner{
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.site-logo img{
    height:54px;
    width:auto;
    transition:.3s;
}

.desktop-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.desktop-menu>ul{
    display:flex;
    align-items:center;
}

.desktop-menu>ul>li{
    position:relative;
    margin:0 18px;
}

.desktop-menu > ul > li > a{
    color:#222;
    font-size:15px;
    font-weight:600;
    padding:26px 0;
    display:block;
    position:relative;
    transition:color .3s;
}

.desktop-menu > ul > li > a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:14px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:width .35s;
}

/* Hover + Active ek hi rule */
.desktop-menu > ul > li:hover > a,
.desktop-menu > ul > li.active > a{
    color:#7B1734;
}

.desktop-menu > ul > li:hover > a::after,
.desktop-menu > ul > li.active > a::after{
    width:100%;
}


/*==============================
    DROPDOWN
==============================*/

.sub-menu{
    position:absolute;
    top:calc(100% - 2px);
    left:0;
    width:250px;
    background:#fff;

    border-radius:0 0 8px 8px;
    border-top:3px solid #7B1734;
    box-shadow:0 12px 30px rgba(0,0,0,.10);

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.30s;
}

.has-dropdown:hover>.sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.sub-menu li{
    border-bottom:1px solid #f2f2f2;
    opacity:0;
    transform:translateY(10px);
    transition:.25s;
}

.has-dropdown:hover .sub-menu li{
    opacity:1;
    transform:translateY(0);
}

.sub-menu li:last-child{
    border:none;
}

.sub-menu li a{
    display:block;
    padding:13px 20px;
    color:#444;
    transition:.25s;
}

.sub-menu li a:hover{
    background:#7B1734;
    color:#fff;
    padding-left:24px;
}

.mobile-toggle{
    width:34px;
    display:none;
     cursor:pointer;
}

.mobile-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:#222;
    margin:6px 0;
    border-radius:20px;
    transition:.3s;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;

    width:300px;
    height:100vh;

    background:#fff;
    z-index:99999;
    transition:.4s;
    box-shadow:-5px 0 20px rgba(0,0,0,.12);
    overflow-y:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-header{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    border-bottom:1px solid #eee;
}

.mobile-header img{
    height:55px;
}

.close-menu{
    font-size:24px;
    cursor:pointer;
}

.mobile-menu ul{
    padding:20px;
}

.mobile-menu ul li{
    border-bottom:1px solid #eee;
}

.mobile-menu ul li a{
    display:block;
    color:#222;
    padding:16px 0;
    font-size:15px;
    font-weight:600;
}

.mobile-menu ul li a:hover{
    color:#7B1734;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9990;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/*==============================
    STICKY
==============================*/

.site-header.sticky{
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.site-header.sticky .header-inner{
    height:64px;
}

.site-header.sticky .site-logo img{
    height:48px;
}


@media(max-width:991px){

.desktop-menu{
display:none;
}

.mobile-toggle{
display:block;
}

.header-inner{
height:70px;
}

.site-logo img{
height:52px;
}

}

@media(max-width:576px){

.site-logo img{
height:46px;
}

.mobile-menu{
width:280px;
}

}

.mobile-sub-menu{
    display:none;
    padding-left:15px;
}

.mobile-sub-menu li a{
    font-size:14px;
    font-weight:500;
    padding:12px 0;
}

.mobile-dropdown.active .mobile-sub-menu{
    display:block;
}

.mobile-dropdown>a{
    display:flex!important;
    justify-content:space-between;
    align-items:center;
}

