/*Common Css For Menu*/
.cmmenu .logo{
    display: none;
}

.cmmenu{
    display: block;
}

.cmmenu ol{
    padding-left: 0;
}

.cmmenu ol,
.cmmenu ol li,
.cmmenu ol li a,
.cmmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cmmenu:after,
.cmmenu > div > ol:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.cmmenu #head-mobile {
    display: none
}



/*.cmmenu .sim-row-edit-hover{
    border: 1px dashed #afafaf;
}

.cmmenu .sim-row-edit-hover i{
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 30px;
    height: 30px;
    z-index: 99;
    background-color: rgba(50,113,157,1);
}

.cmmenu .sim-row-edit-hover i:before{
    content: "\f040";
}*/

.cmmenu span.editrow{
    display: none;
}







/*Menu Element 2 Css*/
.headermenu1{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu1 > div > ol > li {
        float: left;
        position: relative;
    }

    .headermenu1 > div > ol > li > a {
        padding: 18px;
    }

    .headermenu1 ol li a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .headermenu1 ol li a:before{
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        bottom: 0;
        left: 0px;
        width: 0;
        background: var(--menu-hover-bg-color);
        transition: all 0.4s ease-in-out;
    }

    .headermenu1 ol li a:hover{
        color: var(--menu-hover-text-color);
    }

    .headermenu1 ol li a:hover:before{
        width: 100%;
    }

    .headermenu1 ol ol{
        z-index: 99;
        position: absolute;
        left: auto;
        opacity: 0;
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        margin-left: 0px;
        padding: 10px 0;
        box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
        transform-origin: 0 0;
        transform: scaleY(0.001);
        transition: all 0.4s ease-in-out;
        transition-delay: 0.1s;
    }

    .headermenu1 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 10px 0px;
        margin: 5px 20px;
        border-bottom: 1px solid rgba(0,0,0,.09);
    }

    .headermenu1 ol ol li a:hover{
        color: var(--submenu-hover-text-color);
    }

    .headermenu1 ol ol li a:before{
        bottom: -1px;
        background: var(--submenu-hover-bg-color);
    }

    .headermenu1 li:hover > ol{
        left: auto;
        visibility: visible;
        opacity: 1;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    .headermenu1 ol ol li{
        margin-bottom: 10px;
    }

    .headermenu1 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 4px;
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .headermenu1 li li:hover > ol{
        visibility: visible;
        opacity: 1;
        top: 0;
        left: 2px;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .headermenu1 .menuspecclass,
    .headermenu1 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}


/*Menu Element 3 Css*/
.headermenu2{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu2 > div > ol > li {
        float: left;
        position: relative;
        padding: 12px 16px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu2 > div > ol > li > a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .headermenu2 > div > ol > li:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: var(--menu-hover-bg-color);
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu2 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }

    .headermenu2 > div > ol > li:hover:before{
        opacity: 1;
        width: 100%;
    }

    .headermenu2 ol ol{
        z-index: 99;
        position: absolute;
        left: 0;
        top: calc(100% + 2px);
        opacity: 0;
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
        transform-origin: 0 0;
        transition: all 0.4s ease-in-out;
        transition-delay: 0.1s;
    }

    .headermenu2 ol ol li{
        position: relative;
    }

    .headermenu2 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu2 ol ol li:hover > a{
        color: var(--submenu-hover-text-color);
    }

    .headermenu2 ol ol li:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: var(--submenu-hover-bg-color);
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu2 ol ol li:hover:before{
        opacity: 1;
        width: 100%;
    }

    .headermenu2 li:hover > ol{
        visibility: visible;
        opacity: 1;
    }

    .headermenu2 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 2px;
    }

    .headermenu2 .menuspecclass,
    .headermenu2 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}


/*Menu Element 4 Css*/
.headermenu3{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu3 > div > ol > li {
        float: left;
        position: relative;
        padding: 18px 20px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu3 > div > ol > li > a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        transition: all 0.4s ease-in-out;
    }

    .headermenu3 > div > ol > li:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--menu-hover-bg-color);
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu3 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }

    .headermenu3 > div > ol > li:hover:before{
        opacity: 1;
        width: 100%;
    }

    .headermenu3 ol ol{
        z-index: 99;
        position: absolute;
        left: 0;
        top: 100%;
        opacity: 0;
        transform: translateY(30px);
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        border-top: 3px solid var(--submenu-hover-bg-color);
        box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
        transform-origin: 0 0;
        transition: all 0.4s ease-in-out;
        transition-delay: 0.1s;
    }

    .headermenu3 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px;
        transition: all 0.4s ease-in-out;
        border-bottom: 1px solid #e3e3e3;
    }

    .headermenu3 ol ol li:hover > a{
        color: var(--submenu-hover-text-color);
        background: var(--submenu-hover-bg-color);
        padding-left: 20px;
    }

    .headermenu3 li:hover > ol{
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }

    .headermenu3 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 2px;
    }

    .headermenu3 .menuspecclass,
    .headermenu3 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}

.spheadermenu3 ol ol{
    border-top: none !important;
}
.spheadermenu3 > div > ol > li:before{
    top: auto !important;
    bottom: 6px !important;
}
.spheadermenu3 ol ol li:last-child a{
    border-bottom: none !important;
}


/*Menu Element 5 Css*/
.headermenu4{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu4 > div > ol > li {
        float: left;
        position: relative;
        padding: 0 40px 0 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu4 > div > ol > li > a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        padding: 20px 5px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu4 > div > ol > li > a:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        bottom: 8px;
        left: 0;
        right: 0;
        transform: scale(0);
        transform-origin: center;
        height: 2px;
        background-color: var(--menu-hover-bg-color);
        z-index: 0;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    }

    .headermenu4 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }

    .headermenu4 > div > ol > li:hover > a:before{
        opacity: 1;
        transform: scale(1);
    }

    .headermenu4 ol ol{
        z-index: 99;
        position: absolute;
        left: 0;
        top: 100%;
        opacity: 0;
        transform: translateY(30px);
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05), -2px 0px 5px 1px rgba(0,0,0,0.05);
        transition: all 0.1s ease-in-out;
    }

    .headermenu4 li:hover > ol{
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
        transition: all 0.4s ease-in-out;
    }

    .headermenu4 ol ol li{
        padding: 0 15px;
    }

    .headermenu4 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px 0;
        transition: all 0.4s ease-in-out;
        border-bottom: 1px solid #f2f2f2;
        position: relative;
    }

    .headermenu4 ol ol li a:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: 13px 0;
        display: inline-block;
        width: 0;
        background: var(--submenu-hover-bg-color);
        transition: width 0.4s ease-in-out;
    }

    .headermenu4 ol ol li:hover > a{
        color: var(--submenu-hover-text-color);
        padding-left: 15px;
    }

    .headermenu4 ol ol li:hover > a:before{
        width: 5px;
    }

    .headermenu4 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 2px;
    }

    .headermenu4 .menuspecclass,
    .headermenu4 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}


/*Menu Element 6 Css*/
.headermenu5{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu5 .menudata{
        display: flex;
        justify-content: center;
    }

    .headermenu5 > div > ol > li {
        float: left;
        position: relative;
        padding: 0 40px 0 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu5 > div > ol > li > a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        padding: 20px 5px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu5 > div > ol > li > a:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        bottom: 8px;
        left: 0;
        right: 0;
        transform: scale(0);
        transform-origin: center;
        height: 2px;
        background-color: var(--menu-hover-bg-color);
        z-index: 0;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    }

    .headermenu5 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }

    .headermenu5 > div > ol > li:hover > a:before{
        opacity: 1;
        transform: scale(1);
    }

    .headermenu5 ol ol{
        z-index: 999;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(30px);
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        border-top: 2px solid var(--menu-hover-bg-color);
        box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05), -2px 0px 5px 1px rgba(0,0,0,0.05);
        transition: all 0.1s ease-in-out;
    }

    .headermenu5 li:hover > ol{
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
        transition: all 0.4s ease-in-out;
    }

    .headermenu5 ol ol li{
        padding: 0 10px;
    }

    .headermenu5 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px 10px;
        transition: all 0.2s ease-in-out;
        position: relative;
    }

    .headermenu5 ol ol li:hover > a{
        color: var(--submenu-hover-text-color);
        background-color: var(--submenu-hover-bg-color);
        padding-left: 13px;
    }

    .headermenu5 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 1px;
    }

    .headermenu5 .menuspecclass,
    .headermenu5 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}


/*Menu Element 7 Css*/
.headermenu6{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu6 .menudata{
        display: flex;
        justify-content: center;
    }

    .headermenu6 > div > ol > li {
        float: left;
        position: relative;
        padding: 0 15px 0 0;
        transition: all 0.4s ease-in-out;
    }

    .headermenu6 > div > ol > li > a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        padding: 20px 5px;
        transition: all 0.4s ease-in-out;
    }

    .headermenu6 > div > ol > li > a:before{
        content: "";
        display: block;
        position: absolute;
        opacity: 0;
        bottom: 8px;
        left: 0;
        right: 0;
        transform: scale(0);
        transform-origin: center;
        height: 2px;
        background-color: var(--menu-hover-bg-color);
        z-index: 0;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    }

    .headermenu6 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }

    .headermenu6 > div > ol > li:hover > a:before{
        opacity: 1;
        transform: scale(1);
    }

    .headermenu6 ol ol{
        z-index: 99;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(30px);
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        border-top: 2px solid var(--menu-hover-bg-color);
        box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05), -2px 0px 5px 1px rgba(0,0,0,0.05);
        transition: all 0.1s ease-in-out;
    }

    .headermenu6 li:hover > ol{
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
        transition: all 0.4s ease-in-out;
    }

    .headermenu6 ol ol li{
        padding: 0 10px;
    }

    .headermenu6 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px 10px;
        transition: all 0.2s ease-in-out;
        transition-delay: 0.1s;
        position: relative;
        border-bottom: 1px solid #e9e9e9;
    }

    .headermenu6 ol ol li a:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0px;
        bottom: 0;
        margin: 13px 0;
        width: 0px;
        opacity: 0;
        transition: all 0.2s ease-in-out;
        background-color: var(--submenu-hover-bg-color);
    }

    .headermenu6 ol ol li:hover > a{
        color: var(--submenu-hover-text-color);
        padding-left: 13px;
    }

    .headermenu6 ol ol li:hover > a:before{
        width: 5px;
        opacity: 1;
    }

    .headermenu6 ol ol ol{
        margin-left: 100%;
        top: 0;
        left: 1px;
    }

    .headermenu6 .menuspecclass,
    .headermenu6 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}



/*Menu Element 11 Css*/
.headermenu7{
    font-family: var(--menu-font-family);
}

@media screen and (min-width: 992px){
    .headermenu7 > div > ol{
        height: 100%;
    }

    .headermenu7 > div > ol > li {
        float: left;
        position: relative;
        height: 100%;
        transition: all 0.4s ease-in-out;
    }

    .headermenu7 > div > ol > li > a {
        height: 100%;
        display: inline-flex;
        align-items: center;
        padding: 18px;
    }

    .headermenu7 ol li a{
        text-decoration: none;
        white-space: nowrap;
        color: var(--menu-text-color);
        font-size: var(--menu-font-size);
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .headermenu7 ol li:hover>a{
        color: var(--menu-hover-text-color);
        background-color: var(--menu-hover-bg-color);
    }

    .headermenu7 ol ol{
        z-index: 99;
        position: absolute;
        left: 0;
        opacity: 0;
        top: 100%;
        visibility: hidden;
        text-align: left;
        background: var(--submenu-bg-color);
        margin-top: 15px;
        border: 1px solid rgba(0,0,0,.09);
        box-shadow: 0 10px 40px 11px rgba(0,0,0,0.05);
        transition: opacity 0.3s ease,margin 0.25s ease;
    }

    .headermenu7 ol ol li a{
        color: var(--submenu-text-color);
        font-size: var(--submenu-font-size);
        min-width: 200px;
        padding: 15px;
    }

    .headermenu7 ol ol li:hover>a{
        padding-left: 20px;
        color: var(--submenu-hover-text-color);
        background: var(--submenu-hover-bg-color);
    }

    .headermenu7 li:hover > ol{
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }

    .headermenu7 ol ol ol{
        left: 100%;
        top: -1px;
    }

    .headermenu7 ol ol li.has-sub span.submenu-button{
        position: absolute;
        right: 4px;
        z-index: 1;
        line-height: 18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .headermenu7 ol ol li.has-sub span.submenu-button:before{
        font-size: 18px;
        line-height: 18px;
        font-weight: 600;
        font-family: "Material Icons";
        content: '\e5df';
        color: var(--submenu-text-color);
        transition: color 0.3s ease;
    }

    .headermenu7 ol ol li.has-sub:hover>span.submenu-button{
        right: 2px;
    }

    .headermenu7 ol ol li.has-sub:hover>span.submenu-button:before{
        color: var(--submenu-hover-text-color);
    }

    .headermenu7 .menuspecclass,
    .headermenu7 li li:hover > ol.menuspecclass{
        margin-right: auto !important;
        right: calc( 100% + 2px ) !important;
        margin-left: -100% !important;
        left: auto !important;
    }
}



/*------------------------------------*/




/*Common Css For Mobile Menu*/
@media screen and (max-width: 991px) {
    .blmenu .logo
    {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0;
        float: none;
        position: relative;
        display: block;
        text-align: left;
    }
    .blmenu .logo a
    {
        color: #333333;
        padding: 10px;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
    }
    .blmenu {
        width: 100%;
        display: block !important;
        background: #efefef;
        z-index: 9;
    }
    .blmenu ol {
        width: 100%;
        display: none;
        padding: 0;
    }
    .blmenu ol li {
        width: 100%;
        border-top: 1px solid #333333;
        margin: 0;
        padding: 0;
    }
    .blmenu ol ol li,
    .blmenu li:hover > ol > li {
        height: auto;
        margin: 0;
    }
    .blmenu ol li a,
    .blmenu ol ol li a {
        width: 100%;
        border-bottom: 0;
        padding: 14px 10px;
        text-align: left;
        color: #333333;
        margin: 0;
    }
    .blmenu ol li a{
        font-size: 15px;
    }
    .blmenu ol li:hover a
    {
        color: #333333;
    }
    .blmenu > div > ol > li {
        float: none
    }
    .blmenu ol ol li a,.blmenu ol ol li a:hover {
        padding-left: 15px;
        font-size: 14px;
    }
    .blmenu ol ol ol li a,.blmenu ol ol ol li a:hover {
        padding-left: 20px;
    }
    .blmenu ol ol,
    .blmenu ol ol ol {
        position: relative;
        left: 0;
        bottom: 0px;
        top: 0;
        width: 100%;
        transform: translateY(0);
        margin: 0;
        text-align: left;
        opacity: 1;
        z-index: 1;
        visibility: visible;
        border: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transition: all 0s ease-in-out;
        transition-delay: 0s;
    }
    .blmenu li:hover ol
    {
        bottom: 0px;
        left: 0 !important;
        transform: translateY(0px);
        transition: all 0s ease-in-out;
        transition-delay: 0s !important;
    }
    .blmenu > div > ol > li.has-sub > a:after,
    .blmenu > div > ol > li.has-sub > a:before,
    .blmenu ol ol > li.has-sub > a:after,
    .blmenu ol ol > li.has-sub > a:before {
        display: none
    }
    .blmenu #head-mobile {
        display: block;
        padding: 12px;
        color: #333333;
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
    }
    .blmenu .ddmenu-button {
        width: 100%;
        height: 46px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 8;
    }
    .blmenu .ddmenu-button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #333333;
        border-bottom: 2px solid #333333;
        content: ''
    }
    .blmenu .ddmenu-button:before {
        transition: all .4s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #333333;
        content: ''
    }
    .blmenu .ddmenu-button.menu-opened:after {
        transition: all .4s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #333333;
        transform: rotate(45deg)
    }
    .blmenu .ddmenu-button.menu-opened:before {
        top: 23px;
        background: #333333;
        width: 19px;
        transform: rotate(-45deg)
    }
    .blmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #333333;
        height: 43px;
        width: 43px;
        cursor: pointer;
    }
    .blmenu .submenu-button:after {
        position: absolute;
        top: 12px;
        left: 50%;
        font-size: 18px;
        font-weight: 600;
        transform: translateX(-50%);
        font-family: "Material Icons";
        content: '\e5cf';
        color: #333333;
    }
    .blmenu .submenu-button.submenu-opened:after {
        content: '\e5ce';
    }
    .blmenu > ol > li.has-sub > a
    {
        padding-right: 46px;
    }
}

@media screen and (max-width: 991px) {
    .whmenu .logo
    {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0;
        float: none;
        position: relative;
        display: block;
        text-align: left;
    }
    .whmenu .logo a
    {
        color: #fff;
        padding: 10px;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
    }
    .whmenu {
        width: 100%;
        display: block !important;
        background: transparent;
    }
    .whmenu ol {
        width: 100%;
        display: none;
        padding: 0;
    }
    .whmenu ol li {
        width: 100%;
        border-top: 1px solid #fff;
        margin: 0;
        padding: 0;
    }
    .whmenu ol ol li,
    .whmenu li:hover > ol > li {
        height: auto;
        margin: 0;
    }
    .whmenu ol li a,
    .whmenu ol ol li a {
        width: 100%;
        border-bottom: 0;
        padding: 14px 10px;
        text-align: left;
        color: #fff;
        margin: 0;
    }
    .whmenu ol li a{
        font-size: 15px;
    }
    .whmenu ol li:hover a
    {
        color: #fff;
    }
    .whmenu > div > ol > li {
        float: none
    }
    .whmenu ol ol li a,.whmenu ol ol li a:hover {
        padding-left: 15px;
        font-size: 14px;
    }
    .whmenu ol ol ol li a,.whmenu ol ol ol li a:hover {
        padding-left: 20px;
    }
    .whmenu ol ol,
    .whmenu ol ol ol {
        position: relative;
        left: 0;
        bottom: 0px;
        top: 0;
        width: 100%;
        transform: translateY(0);
        margin: 0;
        text-align: left;
        opacity: 1;
        z-index: 1;
        visibility: visible;
        border: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transition: all 0s ease-in-out;
        transition-delay: 0s;
    }
    .whmenu li:hover ol
    {
        bottom: 0px;
        left: 0 !important;
        transform: translateY(0px);
        transition: all 0s ease-in-out;
        transition-delay: 0s !important;
    }
    .whmenu > div > ol > li.has-sub > a:after,
    .whmenu > div > ol > li.has-sub > a:before,
    .whmenu ol ol > li.has-sub > a:after,
    .whmenu ol ol > li.has-sub > a:before {
        display: none
    }
    .whmenu #head-mobile {
        display: block;
        padding: 12px;
        color: #fff;
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
    }
    .whmenu .ddmenu-button {
        width: 100%;
        height: 46px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 8;
    }
    .whmenu .ddmenu-button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        content: ''
    }
    .whmenu .ddmenu-button:before {
        transition: all .4s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #fff;
        content: ''
    }
    .whmenu .ddmenu-button.menu-opened:after {
        transition: all .4s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        transform: rotate(45deg)
    }
    .whmenu .ddmenu-button.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 19px;
        transform: rotate(-45deg)
    }
    .whmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #fff;
        height: 43px;
        width: 43px;
        cursor: pointer;
    }
    .whmenu .submenu-button:after {
        position: absolute;
        top: 12px;
        left: 50%;
        font-size: 18px;
        font-weight: 600;
        transform: translateX(-50%);
        font-family: "Material Icons";
        content: '\e5cf';
        color: #fff;
    }
    .whmenu .submenu-button.submenu-opened:after {
        content: '\e5ce';
    }
    .whmenu > ol > li.has-sub > a
    {
        padding-right: 46px;
    }
}





/*------------------------------------*/




/*Common Css For Menu*/
.headermenu8{
    font-family: var(--menu-font-family);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.headermenu8 ol{
    padding-left: 0;
}

.headermenu8 > div > ol > li {
    float: left;
    position: relative;
    transition: all 0.4s ease-in-out;
    padding: 0;
}

.headermenu8 > div > ol > li > a {
    padding: 18px;
}

.headermenu8 ol li a{
    text-decoration: none;
    white-space: nowrap;
    color: var(--menu-text-color);
    font-size: var(--menu-font-size);
    font-weight: 400;
    position: relative;
    transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 992px){
    .headermenu8 > div > ol > li:hover{
        color: var(--menu-hover-text-color);
    }
    .headermenu8 > div > ol > li:hover > a{
        color: var(--menu-hover-text-color);
    }
    .headermenu8 ol ol li a:before{
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        bottom: -1px;
        left: 0px;
        width: 0;
        background: var(--menu-hover-text-color);
        transition: all 0.4s ease-in-out;
    }

    .headermenu8 ol ol li a:hover:before,
    .headermenu8 ol ol li a:focus:before{
        width: 100%;
    }
}

.headermenu8 ol ol{
    z-index: 9;
    position: absolute;
    left: auto;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border-top: 4px solid var(--menu-hover-text-color);
    margin-left: 0px;
    padding: 10px 0;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
    transform-origin: 0 0;
    transform: scaleY(0.001);
    transition: all 0.4s ease-in-out;
    transition-delay: 0.1s;
    max-height: 80vh;
    overflow-y: auto;
}

.headermenu8 li:hover > ol,
.headermenu8 li:focus > ol,
.headermenu8 li:focus-within > ol{
    left: auto;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}

.headermenu8 ol ol li{
    margin: 0;
    padding: 0;
}

.headermenu8 ol ol li a{
    min-width: 170px;
    padding: 10px 0px;
    margin: 5px 20px;
    color: var(--submenu-text-color);
    font-size: var(--submenu-font-size);
    border-bottom: 1px solid rgba(0,0,0,.09);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.headermenu8 ol ol ol{
    margin-left: 100%;
    top: 0;
    left: 4px;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.headermenu8 li li:hover > ol{
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 4px;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.headermenu8 .menuspecclass,
.headermenu8 li li:hover > ol.menuspecclass{
    margin-right: auto !important;
    right: calc( 100% + 4px ) !important;
    margin-left: -100% !important;
    left: auto !important;
}

@media screen and (max-width: 991px) {
    .headermenu8 {
        display: block !important;
        position: absolute;
        left: 0;
        top: 35px;
        width: auto;
        background: none;
    }
    .headermenu8 .logo
    {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 10px;
        float: none;
        position: relative;
        display: block;
        text-align: center;
    }
    .headermenu8 .logo a
    {
        display: none;
    }
    .headermenu8 ol {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 50px;
        bottom: 0;
        background-color: black;
        width: 80%;
        padding: 10px;
        z-index: 9;
        overflow-y: auto;
    }
    .headermenu8 ol li {
        width: 100%;
        border: none;
    }
    .headermenu8 ol li:before,.headermenu8 ol li:after
    {
        display: none;
    }
    .headermenu8 > div > ol > li > a {
        padding: 15px;
    }
    .headermenu8 ol ol li,
    .headermenu8 li:hover > ol > li {
        height: auto;
        margin: 0;
    }
    .headermenu8 ol li a,
    .headermenu8 ol ol li a {
        width: 100%;
        margin: 0;
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    .headermenu8 ol li a:before
    {
        display: none;
    }
    .headermenu8 > ol > li {
        float: none;
        height: auto;
        display: block;
    }
    .headermenu8 ol ol li a,.headermenu8 ol ol li a:hover {
        padding-left: 25px;
        font-size: 14px;
    }
    .headermenu8 ol ol ol li a,.headermenu8 ol ol ol li a:hover {
        padding-left: 35px
    }
    .headermenu8 ol ol,
    .headermenu8 ol ol ol {
        position: relative;
        left: 0;
        bottom: 0px;
        top: 0;
        width: 100%;
        transform: translateY(0);
        margin: 0;
        text-align: left;
        opacity: 1;
        z-index: 1;
        visibility: visible;
        border: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transition: all 0s ease-in-out;
        transition-delay: 0s;
    }
    .headermenu8 li:hover ol
    {
        bottom: 0px;
        left: 0 !important;
        transform: translateY(0px);
        transition: all 0s ease-in-out;
        transition-delay: 0s !important;
    }
    .headermenu8 > div > ol > li.has-sub > a:after,
    .headermenu8 > div > ol > li.has-sub > a:before,
    .headermenu8 ol ol > li.has-sub > a:after,
    .headermenu8 ol ol > li.has-sub > a:before {
        display: none
    }
    .headermenu8 #head-mobile {
        display: block;
        padding: 12px;
        color: #333333;
        cursor: pointer;
        font-size: 12px;
        font-weight: 400;
    }
    .headermenu8 .ddmenu-button {
        width: 28px;
        height: 20px;
        transform: translateY(0%);
        cursor: pointer;
        border-radius: 4px;
        position: static;
    }
    .headermenu8 .ddmenu-button:after {
        position: absolute;
        top: 0;
        bottom: 0px;
        display: block;
        width: 28px;
        border-top: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
        content: '';
        right: 0;
        height: auto;
    }
    .headermenu8 .ddmenu-button:before {
        transition: all .4s ease;
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        top: 50%;
        margin-top: -2px;
        right: 0;
        background: #fff;
    }
    .headermenu8 .ddmenu-button.menu-opened{
        position: fixed;
        top: 0;
        left: 80%;
        width: 30px;
        height: 30px;
        background-color: var(--menu-hover-text-color);
        transform: translate(0);
        border-radius: 0;
    }
    .headermenu8 .ddmenu-button.menu-opened:after {
        transition: all .4s ease;
        top: 13px;
        border: 0;
        height: 2px;
        left: 4px;
        width: 20px;
        background: #ffffff;
        transform: rotate(45deg);
    }
    .headermenu8 .ddmenu-button.menu-opened:before {
        top: 15px;
        left: 4px;
        height: 2px;
        width: 20px;
        transform: rotate(-45deg);
        background: #ffffff;
    }
    .headermenu8 .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #333333;
        height: 46px;
        width: 43px;
        cursor: pointer;
    }
    .headermenu8 .submenu-button:after {
        position: absolute;
        top: 15px;
        left: 50%;
        font-size: 18px;
        font-weight: 600;
        transform: translate(-50%);
        font-family: "Material Icons";
        content: '\e5cf';
        color: #fff;
    }
    .headermenu8 .submenu-button.submenu-opened:after {
        content: '\e5ce';
    }
    .headermenu8 > div > ol > li.has-sub > a
    {
        padding-right: 46px;
    }
}

@media screen and (max-width: 575.98px) {
    .headermenu8 .logo a img
    {
        display: inline-block;
        max-width: 100px;
    }
}




.yourstyle{
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    width: 100%;
    min-width: 320px;
}

.logo-style{
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    float: none;
    position: relative;
    display: block;
    text-align: left;
}

.fr-menu{
    display: none;
    position: relative;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
    border: 1px solid #efefef;
}