.main-index-content {
    display: none;
}

header a {
    display: inline-flex;
}

/* Header */
.main-header {
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    background: var(--white);
}
.header.header-fixed {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header.header-fixed.header-hidden {
  transform: translateY(-100%);
}

.header.header-fixed.header-show {
  transform: translateY(0);
}

/* Logo */
.header-logo {
    max-width: 109.24px;
    width: 100%;
    display: inline-flex;
}

.header-logo a {
    display: inline-flex;
    height: 100%;
    width: 100%;
}
.header-logo a img{
    width: 100%;
    height: auto;
}

/* NAV WRAPPER */
.header-nav-menu {
    max-width: calc(100% - 229.24px);
    width: 100%;
    padding: 0 135px;
}

.main-nav {
    overflow: visible;
    /* position: relative; */
    z-index: 100;
}

.menu {
    justify-content: center;
}

.main-menu-item a {
    display: flex;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-monda);
    padding: 39px 17px;
}

/* Submenu */
li.main-menu-item.has-submenu {
    position: relative;
}

li.main-menu-item.has-submenu .mega-menu {
    width: 200px;
}

li.main-menu-item.has-submenu .mega-column {
    max-width: 100%;
}

/* MEGA MENU DROPDOWN */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    /* full width like screenshot */
    background: #fff;
    padding: 15px;
    display: flex;
    gap: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.25s ease;
}

.main-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
}

/* ====== Mega Menu ========*/
.main-menu-item.has-mega-menu .mega-menu .mega-column {
    width: 100%;
    padding-bottom: 20px !important;
    padding: 10px 45px;
}

.mega-menu .mega-column.mega-col-3 {
    max-width: 33.33%;
}

.mega-menu .mega-column.mega-col-4 {
    max-width: 25%;
}

.mega-menu .mega-column.mega-col-3:first-child {
    max-width: 25%;
}

.mega-menu .mega-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
    font-family: var(--font-monda);
}

.mega-menu .mega-column a {
    display: block;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 14px;
    padding: 8px 0;
    font-weight: 400;
    text-transform: capitalize;
}

.mega-menu .main-shap-part .shap-column li a {
    display: flex;
}

.mega-menu .mega-column a:hover {
    color: var(--primary);
    /* pink hover color */
}

.mega-menu .main-shap-part .shap-column li a img {
    width: 30px;
    margin-right: 5px;
}

.mega-menu .main-shap-part .shap-column li span {
    display: flex;
    align-items: center;
}

.mega-menu .mega-column:nth-child(2) {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.mega-column.mega-col-4:last-child {
    border-left: 1px solid #e6e6e6;
}

.mega-menu .main-shap-part.shape-box .shap-column li a img {
    width: 20px !IMPORTANT;
    height: 20px;
}

/* ======= header right icon ===========*/
.header-right-icon {
    max-width: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icons {
    display: flex;
    gap: 30px;
    height: 20px;
}


/* =====================================
            Header Responsive START
==============================================*/

@media(max-width:1500px) {
    .header-nav-menu {
        padding: 0 100px;
    }

    .main-menu-item a {
        padding: 25px 17px;
    }
}

@media(max-width:1440px) {
    .header-nav-menu {
        padding: 0 70px;
    }
}

@media(max-width:1366px) {
    .main-menu-item a {
        padding: 25px 14px;
    }

    .header-nav-menu {
        padding: 0 20px;
    }

    .main-menu-item.has-mega-menu .mega-menu .mega-column {
        padding: 10px 25px;
    }
}

@media(max-width:1199.98px) {

    .header-logo,
    .header-right-icon {
        max-width: 100px;
    }

    .header-logo img {
        width: 100% !important;
    }

    .header-nav-menu {
        max-width: calc(100% - 200px);
    }

    .header-icons {
        gap: 20px;
    }

    .main-menu-item a {
        padding: 25px 9px;
        font-size: 12px;
    }

    .mega-menu .mega-column:nth-child(2) {
        max-width: 40% !important;
    }

    .main-menu-item.has-mega-menu .mega-menu .mega-column {
        padding: 10px 20px;
    }
}

@media(max-width:1023px) {

    .header-logo,
    .header-right-icon {
        max-width: 90px;
    }

    .header-nav-menu {
        max-width: calc(100% - 180px);
        padding: 0px 10px;
    }

    .header-icons {
        gap: 15px;
    }
}

@media(max-width:991.98px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block !important;
    }
}

/* =====================================
           Mobile Header START
==============================================*/
body.menu-drawer-open{
    overflow: hidden;
}
.toggle {
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    max-width: 22px;
    width: 100%;
    height: 22px;
}

.toggle svg {
    height: 100%;
    width: 100%;
}

/* overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mob-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.mob-header-main .menu-toggle {
    max-width: 33.33%;
    width: 100%;
}

.mob-header-main .header-right-icon {
    max-width: 33.33%;
    width: 100%;
}

/* drawer */
.mobile-menu {
    position: fixed;
    inset: 0 15% 0 0;
    background: #fff;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

/* active drawer */
.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* pages */
.mobile-menu .menu-page {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
	overflow: auto;
    transition: all 0.5s ease-in-out;
}

.mobile-menu .menu-page.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu .menu-page[data-main] .menu-header {
    align-items: center;
    flex-direction: row;
}
.mobile-menu .menu-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e6e6e6;
}

.mobile-menu .menu-header h3 {
    font-size: 22px;
    font-family: var(--font-Cormorant-Garamond);
}

.mobile-menu .menu-header .menu-close {
    display: inline-flex;
}
.mobile-menu .menu-header .back {
    margin-bottom: 0;
}

/* menu list */
.mobile-menu .menu-page ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu .menu-drawer-icons {
    padding: 0 20px;
}

.mobile-menu .menu-page li {
    border-bottom: 1px solid #eee;
    font-size: 16px;
    padding: 15px 0;
    display: inline-flex;
    width: 100%;
}

/* menu item structure */
.mobile-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu .main-menu-item a {
    display: inline-flex;
    width: fit-content;
    padding: 0;
    align-items: center;
}
.mobile-menu .main-menu-item .menu-icon-main{
    gap: 10px;
}
.mobile-menu .main-menu-item .menu-icon-main img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mobile-menu .menu-item span {
    cursor: pointer;
}

.menu-arrow {
    width: 6px;
    height: 10px;
    display: inline-flex;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.menu-arrow svg {
    width: 100%;
    height: 100%;
}

.mobile-menu .menu-item span img {
    width: 12px;
    height: 12px;
}

/* back button */
.mobile-menu .back {
    border: none;
    background: none;
    font-size: 15px;
    margin-bottom: 19px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* micro interaction */
.mobile-menu .menu-page li a:active,
.menu-item span:active {
    background: #f8f8f8;
}

/* icon css */
.menu-drawer-icons .header-icon {
    display: flex;
    align-items: center;
    display: flex;
    gap: 10px;
    padding: 15px 0;
}
.menu-drawer-icons .header-icon a{
    font-family: var(--font-monda);
    color: var(--black) !important;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.menu-drawer-icons .header-icon a {
	gap: 10px;
    display: flex;
    align-items: center;
}