body {
    padding-top: 100px;
}

.main_header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0 100px;
    min-height: 100px;
    box-sizing: border-box;
    background: #010341;
}

body.logged-in header.site-header {
    top: 32px;
}

.main_header .header_wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100px;
    align-items: center;
}

.main_header .logo_section {
    width: 166px;
    display: flex;
    flex-wrap: wrap;
}

.main_header .menu_section {
    width: calc(100% - 166px);
    display: flex;
    flex-wrap: wrap;
    padding-right: 30px;
}

.main_header .menu_section>* {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main_header .menu_section>.menu_left {
    text-align: left;
}

.main_header .menu_section>.menu_right {
    justify-content: end;
}

.main_header .menu_section>.menu_right #menu-right-side-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.main_header .menu_section>.menu_right>*:last-child {
    padding-right: 0;
}

.main_header .menu-item {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    padding: 0 20px;
}

.main_header .menu-item a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}

.main_header .menu-item.drop_down a {
    background: #fff;
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #000;
}

/* header style chnages-new  */
#simple-banner~div header,
#simple-banner~main.site-main {
    margin-top: 34px;
}

.home .site-header,
.home .main_header .responsive-header_wrapper .logo-outter-wrap {
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 30, .25);
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

/* header style chnages-new  */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main_header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 991px) {

    #simple-banner~div header,
    #simple-banner~main.site-main {
        margin-top: 24px;
    }


    body {
        overflow-x: hidden;
        padding-top: 75px
    }

    body.admin-bar {
        padding-top: 0;
    }

    .main_header {
        padding: 0;
        background: transparent;
        height: 75px;
    }

    .main_header .responsive-header_wrapper .logo-outter-wrap {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px 15px;
        background: #010341;
        align-items: center;
    }

    .main_header .logo_section {
        display: block;
    }

    .responsive-header_wrapper~.menu_section {
        transition: all 0.3s ease-in-out;
        width: 100%;
        transform: translateX(100%);
        padding: 20px;
        background: #010341;
        height: 100vh;
        border-top: 1px solid #fff;
        display: block;
    }

    .main_header .menu_section>* {
        width: 100%;
    }

    .main_header .menu-item {
        padding: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 0.5px solid #fff;
        width: 100%;
    }


    .hamburger {
        display: inline-block;
    }

    /******* hamburger-style *******/
    .hamburger div {
        position: relative;
        width: 3em;
        height: 3px;
        border-radius: 3px;
        background-color: #fff;
        margin-top: 8px;
        transition: all 0.3s ease-in-out;
    }


    .responsive-header_wrapper.show-menu .hamburger .top-bun {
        transform: rotate(-45deg);
        margin-top: 20px;
    }

    .responsive-header_wrapper.show-menu .hamburger .bottom-bun {
        opacity: 0;
        transform: rotate(45deg);
    }

    .responsive-header_wrapper.show-menu .hamburger .meat {
        transform: rotate(45deg);
        margin-top: -4px;
    }

    .responsive-header_wrapper.show-menu .hamburger+.nav {
        top: 0;
        transform: scale(1);
    }

    .responsive-header_wrapper.show-menu+.menu_section {
        transform: translateX(0);
    }

    .main-navigation ul {
        display: block;
    }

    .main_header .menu_section>.menu_right {
        display: block;
    }

    .main_header .menu_section>.menu_right .nav-menu {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
}

@media only screen and (max-width: 767px) {
    .main_header {
        padding: 0;
    }
}