@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@media only screen and (max-width:768px) {
    
}

.header-container {
    max-width: 90%;
    width: 100%;
    height: auto;
    margin: 0 auto;
}


.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    color: #e91e63;
    border: none;
    outline: none;
    text-transform: uppercase;
    text-rendering: optimizeLegibility
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #fafafa;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    border-bottom: 3px solid #ff7f00;
    height: 76px;

}

.header.sticky{
    position: fixed;
    display: block;
    top: 0;
    left: 0;
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header button{
    outline: 0;
    border: 0;
    background: inherit;
}
.header ul{
    list-style: none;
}

.brand-area {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%*/
    width: 160px;
    padding: 5px 0;
    box-sizing: border-box;
}
.menu-area{
    width: calc(100% - 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.brand-area img{
    width: 100%;
}


.left-menu {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%*/
    width: 70%;
    padding-left: 30px;
}

.right-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 30%;
}
.header.style2 .brand-area{
    width: 240px;
    display: flex;
}


.header.style2 .brand-area .brand-logo{
    width: 170px;
}
.header.style2 .brand-area .brand-extra{
    width: calc(100% - 170px);
}

.header.style2 .menu-area{
    width: calc(100% - 240px);
}
.header.style2 .left-menu{
    width: 70%;
}
.header.style2 .right-menu{
    width: 30%;
}
.header .brand-extra{
    font-size: 12px;
    font-weight: 900;
    background: black;
    color: #fff;
    border-radius: 7px;
    padding: 2px 12px;
    margin: 5px;
    margin-top: 25px;
    margin-left: 10px;
    height: 22px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, .1);
}
.right-menu ul{
    padding: 0;
    margin: 0;
}
.right-menu ul li{
    display: inline-block;
    line-height: 18px;
    margin-right: 10px;
}

.right-menu ul li.search-button a{
}
.right-menu ul li:last-child{
/*    margin-right: 0;*/
}
.right-menu ul li a{
    display: block;
    white-space: nowrap;
    color: #121212;
}

.right-menu ul li a .menu-text{
    display: inline-block;
    padding-left: 5px;
}
.right-menu ul li a .menu-icon{
    display: inline-block;
    color: #121212;
    
}
.right-menu ul li a .menu-icon i{
    font-size: 18px;
}

.right-menu .menu-icon {
    font-size: 1.35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*gap: 1rem;
    margin-left: 1rem;*/
    border: none;
    outline: none;
    color: #121212;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.header .menu>ul{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
/*    padding-top: 25px;*/
}
.header .menu>ul>li {
    display: inline-block;
/*    line-height: 3.125rem;*/
    margin-left: 3px;
}

.header .menu>ul>li>a {
    position: relative;
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    padding: 26px 10px;
    box-sizing: border-box;
    text-decoration: none;
}


.header .menu>ul>li:hover {
    background: #ff7f00;
}
.header .menu>ul>li:hover a{
    color: #fff;
}

.header .menu>ul>li .menu-subs {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    border: none;
    outline: none;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #ff7f00;
    background: #fafafa;
    color: #000;
    -webkit-box-shadow: 0 4px 10px -1px rgba(0, 0, 0, .2), 0 2px 4px -1px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 10px -1px rgba(0, 0, 0, .2), 0 2px 4px -1px rgba(0, 0, 0, .06);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.header .menu>ul>li .menu-subs>ul>li {
    line-height: 1
}

.header .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .75rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header .menu>ul>li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem
}

.header .menu>ul>li .menu-subs.menu-mega {
    /*left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);*/
    width: 100%;
    margin: 0 auto;
    padding: 30px 10%;
    display: inline-block;
}
.header .menu>ul>li .menu-subs.menu-mega .mega-close{
    position: absolute;
    top: 20px;
    right: 20px;
    background: red;
    padding: 10px;
    color: #fff;
}
.header .menu>ul>li .menu-subs.menu-mega .mega-close button{
    color: #fff;
}

.header .menu>ul>li .menu-subs.menu-mega .content-box {

}
.header .menu>ul>li .menu-subs.menu-mega .content-box .section-title{
    

}

.header .menu>ul>li .menu-subs.menu-mega .content-box ul{
    padding: 0;
    margin: 0;
    padding-left: 5px;
}


.header .menu>ul>li .menu-subs.menu-mega .content-box ul li{
    margin-top: 15px;
}

.header .menu>ul>li .menu-subs.menu-mega .content-box ul li a{
    color: #000;
}



.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: block;
    line-height: 1
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .5rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out
}

.header .menu>ul>li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 68rem;
    width: 100%;
    padding: 1.25rem 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 0 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: .75rem 0;
    border: none;
    outline: none;
    color: #e91e63;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: .75rem;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
    color: #e91e63;
}

@media only screen and (max-width:1199.98px) {
    .header-container {
        margin: 0 auto;
        max-width: 99%;
        padding: 0 15px;
    }

    .right-menu ul li a .menu-text{
        display: none;
    }
    .right-menu ul li a .menu-icon{
        
    }

    .header .menu>ul>li{

    }

    .header .menu>ul>li a{
        padding: 0 0;
    }

}

@media only screen and (min-width:992px) {
    .header{
        /*position: fixed;
        display: block;
        top: 0;
        left: 0;*/
    }
    
    .header .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: .5rem;
        opacity: 1;
        visibility: visible
    }
}

.menu-mobile-header,
.menu-mobile-trigger {
    display: none
}

@media only screen and (max-width:991.98px) {

    .brand-area {
        width: 150px;
    }

    .menu-area{
        width: calc(100% - 150px);
    }

    .header.style2 .brand-area{
        width: 200px;
        display: flex;
    }


    .header.style2 .brand-area .brand-logo{
        width: 150px;
    }
    .header.style2 .brand-area .brand-extra{
        width: calc(100% - 150px);
        margin-top: 25px;
        padding: 2px 6px;
        font-size: 70%;
    }

    .header.style2 .menu-area{
        width: calc(100% - 200px);
    }

    .left-menu {
        background: yellow;
    }
    .right-menu{
        width: 100%;
        padding-top: 15px;

    }
    .header.style2 .left-menu{
        width: 0;
    }
    .header.style2 .right-menu{
        width: 100%;
    }

    .right-menu ul li.search-button a{
        display: block;
        padding: 6px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        box-sizing: border-box;

    }

    /*    */
    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .header .menu-mobile-trigger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 10px;
        margin-bottom: 10px;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }
    .header .menu-mobile-trigger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: .25rem;
        background: #121212;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out
    }
    .header .menu-mobile-trigger span:nth-child(1) {
        top: 0
    }
    .header .menu-mobile-trigger span:nth-child(2),
    .header .menu-mobile-trigger span:nth-child(3) {
        top: .5rem
    }
    .header .menu-mobile-trigger span:nth-child(4) {
        top: 1rem
    }
    .right-menu {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #fafafa;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }
    .header .menu.active {
        -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
        transform: translate(0%)
    }
    .header .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0
    }
    .header .menu>ul>li>a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }
    .header .menu>ul>li>a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
    .header .menu .menu-mobile-header {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 501;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        background: #fafafa
    }
    .header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        border-right: 1px solid rgba(0, 0, 0, .1);
        color: #121212;
        text-align: center
    }
    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block
    }
    .header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility
    }
    .header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        border-left: 1px solid rgba(0, 0, 0, .1);
        color: #121212;
        text-align: center
    }
    .header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden
    }
    .header .menu>ul>li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .header .menu>ul>li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header .menu>ul>li .menu-subs.menu-mega .mega-close{
        display: none;
    }
    .header .menu>ul>li .menu-subs.active {
        display: block
    }
    .header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0
    }
    .header .menu>ul>li .menu-subs.menu-column-4>.list-item img.responsive {
        margin-top: 0
    }
    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem
    }
    .header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0
    }
    .header .menu>ul>li .menu-subs>ul>li>a {
        display: block
    }
    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem
    }
    .header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
        display: block
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, .55);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }
    .overlay.active {
        opacity: 1;
        visibility: visible
    }
}



@media only screen and (max-width: 479.98px) {
    .header-container{
        max-width: 100%;
        margin: 0!important;
    }

    .brand-area {

    }
    .brand-area img{

    }
    .left-menu {
        width: 0%;
        padding-left: 0;

    }
    .right-menu{


    }
    .right-menu ul li{


    }
    .right-menu ul li a{
        text-align: center;

    }
    .right-menu ul li a .menu-text{

    }
    .right-menu ul li a .menu-icon{

    }

    .right-menu ul li a .menu-icon i{
        font-size: 100%;
    }
}


@media only screen and (max-width: 319.98px) {
    .header-container{
        padding: 0 5px;
    }
    .brand-area {
        width: 100px;
    }

    .menu-area{
        width: calc(100% - 100px);
    }
    .header.style2 .brand-area{
        width: 140px;
        display: flex;
    }


    .header.style2 .brand-area .brand-logo{
        width: 100px;
    }
    .header.style2 .brand-area .brand-logo{
        max-width: 100px;
    }
    .header.style2 .brand-area .brand-extra{
        width: calc(100% - 100px);
        margin-left: 3px;
        margin-top: 20px;
        padding: 2px 2px;
        font-size: 60%;
        height: 18px;
    }

    .header.style2 .menu-area{
        width: calc(100% - 140px);
    }

    .right-menu ul li.search-button a{

    }
    .right-menu ul li a .menu-icon i{
        font-size: 80%;
    }

}