.menu_slider{
    width: 100%;
    min-height: 100vh;
    border-right: unset;
    height: 100%;
    transition: transform .5s ease-in-out;
}
#mega_menu{
    position: relative;
    height: 100%;
    background-color: #ffffff;
    overflow: auto;
}

#mega_menu > .container{height: 100%;}
.megamenu_outer_wrapper{
    display: flex;
    position: relative;
    height: 100%;
}
.megamenu_left_wrapper{
    width: 100%;

    padding: 70px 30px;
    padding-right: 0;
}

.menu_close{
    position: absolute;
    z-index: 11;
    top: 20px;
    left: 40px;
    transform: scale(1.3);
    transition: all .2s;
}
.menu_close:hover{
    transform: scale(1.1);
}
.menu_slider .menu_close:focus {
    box-shadow: unset;
    transform: scale(.9);
}

.megamenu_lefticon img:nth-child(1){
    width: 105px;
}
.megamenu_lefticon img:nth-child(2){
    width: 90px;
}
.megamenu_left_menu{
    padding: 0;
    list-style: none;
    line-height: 35px;
    text-transform: uppercase;
    padding-top: 20px;
    font-size: 15px;
}
.megamenu_left_menu .menu_link{
    color: #000000;
    text-decoration: none;
    position: relative;
}
.menu_item.active .menu_link,
.menu_item:hover .menu_link{
    font-weight: 700;
}
.menu_item .menu_link::before{
    position: absolute;
    content: '';
    height: 2px;
    background-color: tomato;
    width: 0%;
    bottom: -10px;
    transition: all .25s ease-in;
}
.menu_item.active .menu_link::before,
.menu_item:hover .menu_link::before{
    width: 100%;
}
/* .dropdwown_menu {
    height: 0;
    transition: all .25s ease;
    overflow: hidden;
}
.menu_item:hover .dropdwown_menu{
    height: auto;
} */

.dropdwown_menu ul{
    list-style: none;
    padding-left: 0;
}
.dropdwown_menu ul li{
    font-size: 14px;
    line-height: 30px;
    position: relative;
}
.accordion-item button{
    padding: 0;
    border: unset;
    background: unset;
    text-transform: uppercase;
    line-height: 18px;
}
.accordion-item{
    background-color: unset; 
    border: unset;
}
.accordion-body {
    padding: 10px 0;
}
.accordion-item button::after{
    position: absolute;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: 10px;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform .2s ease-in-out;
    transform: rotate(180deg);
}
button.collapsed::after{
    transform: rotate(0deg);
}