#header {
    box-shadow: 0 3px 6px #00000019;
}

#header .top_header {
    padding-bottom: 20px;
    padding-top: 20px;
}

#header .menu_row {
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

#header .header_col {
    width: 25%;
}

#header .search_col {
    align-items: center;
    width: 50%;
}

#header .header_logo {
    max-width: 165px;
}

#header .header_link {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

#header .header_link a {
    align-items: center;
    display: flex;
    gap: 4px;
}

#header .header_link img {
    max-width: 30px;
}

#header .header_link label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

#header .navigation {
    border-top: 1px solid #F1F2F2;
}

#header .header_menu {
    padding: 15px 0;
}

#header .header_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .header_menu .main_menu {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
}

#header .header_menu .dropdown {
    position: relative;
}

#header .header_menu a {
    align-items: center;
    display: flex;
    font-weight: 500;
    gap: 5px;
}

#header .main_menu > li > a:hover,
#header .main_menu > li > a.active,
#header .main_menu > li > a.current {
    color: #FF8200;
}

#header .header_menu a i {
    color: #FF8200;
    font-size: 14px;
}

#header .header_menu a img {
    display: block;
    max-width: 20px;
}

#header .dropdown .dropdown_menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 7px 16px #00000029;
    display: none;
    left: 0;
    position: absolute;
    top: calc(100% + 30px);
    white-space: nowrap;
    z-index: 1;
}

#header .dropdown_menu li a {
    font-weight: 600;
    gap: 10px;
    position: relative;
    padding: 15px;
}

#header .dropdown_menu li a img {
    max-width: 35px;
}

#header .dropdown_menu li a:before {
    background: #F1F2F2;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 15px;
    position: absolute;
    right: 15px;
}

#header .dropdown_menu li:last-child a:before {
    display: none;
}

#header .dropdown_menu li a:hover,
#header .dropdown_menu li a.current_child {
    background: #F1F2F2;
    color: #FF8200;
}

.mega_menu {
    position: relative;
    z-index: 999999;
}

.mega_menu .close_mega_menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    left: 30px;
    position: absolute;
    top: 20px;
    z-index: 10;
}

.mega_menu .mega_menu_overlay {
    background: rgba(0, 0, 0, .35);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.mega_menu .menu_list {
    background: #FAF9F7;
    height: 100%;
    left: 0;
    max-width: 350px;
    padding: 50px 30px;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.mega_menu .level_1 {
    z-index: 9;
}

.mega_menu .level_1.show_menu {
    transform: none;
}

.mega_menu .level_2 {
    background: #fff;
    z-index: 8;
}

.mega_menu .level_2.show_menu {
    transform: translateX(100%);
}

.mega_menu .menu_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega_menu .menu_list a,
.mega_menu .menu_list .label {
    display: block;
    font-weight: 600;
}

.mega_menu .level_1 a,
.mega_menu .menu_list .label {
    color: #000;
    font-size: 18px;
    letter-spacing: .9px;
    padding: 20px 0;
    text-transform: uppercase;
}

.mega_menu .menu_list a {
    align-items: center;
    display: flex;
}

.mega_menu .menu_list a:hover,
.mega_menu .menu_list a.current,
.mega_menu .menu_list a.active_link,
.mega_menu .menu_list a i {
    color: #FF8200;
}

.mega_menu .level_1 li:not(:last-child) {
    border-bottom: 1px solid #C1C6C8;
} 

.mega_menu .level_1 a {
    gap: 15px;
}

.mega_menu .menu_list:not(.level_1) ul {
    height: calc(100% - 50px);
    overflow-y: auto;
}

.mega_menu .menu_list:not(.level_1) li:not(:last-child) {
    border-bottom: 1px solid #F1F2F2;
}

.mega_menu .menu_list:not(.level_1) a {
    font-size: 19px;
    gap: 10px;
    letter-spacing: -.19px;
    padding: 15px 0;
}

.mega_menu .menu_list:not(.level_1) a img {
    max-width: 50px;
}

@media (max-width: 1024px) {
    #header .menu_row {
        gap: 10px;
    }

    #header .header_col {
        order: 2;
    }

    #header .logo_col {
        align-items: center;
        order: 1;
        width: 50%;
    }

    #header .search_col {
        align-items: flex-start;
        order: 0;
        width: 25%;
    }

    #header .header_link {
        gap: 15px;
    }

    #header .header_link img {
        max-width: 25px;
    }

    #header .mobile_menu_btn svg {
        color: #000;
        height: 25px;
        width: 25px;
    }
    .mobile_menu {
        position: relative;
        z-index: 999999;
    }
    .mobile_menu .mob_menu_overlay {
        background: rgba(0, 0, 0, .35);
        display: none;
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        transition: all 0.3s ease-in-out;
        width: 100%;
    }
    .mobile_menu .mob_menu_list {
        background: #FAF9F7;
        height: 100%;
        left: 0;
        max-width: 250px;
        padding: 80px 20px 50px;
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
        width: 100%;
    }
    .mobile_menu .mob_menu_list.show_menu {
        transform: none;
    }
    .mobile_menu .mob_menu_close {
        color: #707070;
        font-size: 25px;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .mobile_menu .back_button {
        align-items: center;
        color: #000;
        display: flex;
        font-size: 13px;
        font-weight: 600;
        gap: 5px;
        left: 20px;
        position: absolute;
        text-transform: uppercase;
        top: 30px;
    }
    .mobile_menu .back_button i {
        color: #F6871E;
    }
    .mob_menu_list ul {
        list-style: none;
        margin: 0;
        max-height: 100%;
        overflow-y: auto;
        padding: 0;
    }
    .mob_menu_list li:not(:last-child) {
        margin-bottom: 10px;
    }
    .mob_menu_list li a {
        align-items: center;
        border-bottom: 1px solid #C1C6C8;
        color: #000;
        display: flex;
        font-size: 16px;
        font-weight: 600;
        padding: 10px 0;
        text-transform: uppercase;
    }
    .mob_menu_list li a.current,
    .mob_menu_list li a.active_link {
        color: #FF8200;
    }
    .mob_menu_list li a i {
        color: #FF8200;
        margin-left: auto;
    }
    .mobile_menu .icon_menu_list {
        background: #fff;
    }
    .icon_menu_list li:not(:last-child) {
        margin-bottom: 0;
    }
    .icon_menu_list li a {
        border-bottom-color: #F1F2F2;
        color: #53565A;
        font-size: 15px;
        gap: 10px;
        letter-spacing: -.15px;
        text-transform: none;
    }
    .icon_menu_list li a img {
        max-width: 35px;
    }
}