/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-black);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-primary-color);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(0deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}




.mobile-nav-search-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.mobile-nav-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-nav-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: #ffffff;
    font-size: 15px;
    background: rgba(var(--thm-primary-color-rgb), 0.80);
    text-align: center;
    border: 0px solid #e7e7e8;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.mobile-nav-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.mobile-nav-search-box .search-form input[type="text"]:focus+button,
.mobile-nav-search-box .search-form button:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

.mobile-nav-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input::-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-ms-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}




.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    font-size: 15px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--thm-primary-color);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background: rgba(var(--thm-primary-color-rgb), 0.3);
    border: none;
    outline: none;
    color: #fff;
    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;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: var(--thm-primary-color);
}

.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}



/* 
////////////////////////////
Mobile Nav Megamenu Css 
///////////////////////////
*/
.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box__inner::before {
    display: none;
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box .row ul {
    margin-left: 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li {
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    height: 46px;
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    color: var(--thm-white);
    padding: 0 0px;
    border-top: 0px solid var(--thm-border-color);
    font-family: var(--thm-font);
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.mobile-nav__wrapper .megamenu-box__inner .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}





.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary-color);
}

.mobile-nav__contact li>i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
}


.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-primary-color);
    background-color: #ffffff;
}


/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
}





/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}



.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 27px;
    padding-bottom: 27px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 50px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-primary-color);
}

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
    padding-right: 18px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
    position: absolute;
    right: -2px;
    font-family: 'icomoon' !important;
    content: "\e907" !important;
    color: var(--thm-white);
    font-size: 12px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .main-menu__list>li.current.dropdown>a:after,
.main-menu .main-menu__list>li:hover.dropdown>a:after,
.stricky-header .main-menu__list>li.current.dropdown>a:after,
.stricky-header .main-menu__list>li:hover.dropdown>a:after {
    color: var(--thm-primary-color);
}


.main-menu .main-menu__list>li.dropdown>a::before {
    position: absolute;
    right: -5px;
    font-family: 'icomoon' !important;
    content: "\e904" !important;
    color: #a5b1ad;
    font-size: 10px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 1;
    display: none;
}

.main-menu .main-menu__list>li.current.dropdown>a:before,
.main-menu .main-menu__list>li:hover.dropdown>a:before,
.stricky-header .main-menu__list>li.current.dropdown>a:before,
.stricky-header .main-menu__list>li:hover.dropdown>a:before {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}




.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: 8px 0px 8px;
    background-color: var(--thm-white);
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    z-index: 99;
}

.main-menu .main-menu__list>li>ul {}

.main-menu .main-menu__list>li>ul:before,
.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 0px solid #ffffff;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    letter-spacing: 0;
    font-weight: 700;
    font-style: normal;
    padding: 11px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:first-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:first-child>a {
    border-top: none;
}

.main-menu .main-menu__list>li>ul>li>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li>a:after {
    font-family: 'icomoon' !important;
    content: "\e910";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    display: flex;
    align-items: center;
    color: var(--thm-primary-color);
    font-size: 18px;
    font-weight: 500;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 2;
}

.main-menu .main-menu__list>li>ul>li:hover>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a:after {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}


.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: var(--thm-primary-color);
    padding-left: 25px;
}

.main-menu .main-menu__list>li>ul>li.dropdown:before {
    font-family: 'icomoon' !important;
    content: "\e907" !important;
    position: absolute;
    top: 0px;
    right: 30px;
    bottom: 0px;
    display: block;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 54px;
    opacity: 1;
    font-weight: 100;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>ul>li.dropdown:hover::before {
    color: var(--thm-primary-color);
}



.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
    border-left: 10px solid transparent;
    background-color: transparent;
    min-width: 270px;
}

.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
}

.main-menu .main-menu__list li ul.right-align {
    left: auto;
    right: 0;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
}




/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 150px !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    max-width: 570px;
    width: 100%;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.megamenu-content-box {
    position: relative;
    display: block;
}

.megamenu-content-box>.container {
    max-width: 1290px !important;
    padding: 0 !important;
}

.megamenu-content-box__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 10px 0px 10px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border-radius: var(--thm-border-radius);
}

.megamenu-content-box__inner::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    bottom: 30px;
    width: 1px;
    background-color: var(--thm-border-color);
}

.megamenu-content-box .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

.megamenu-content-box .row ul li {
    position: relative;
    width: 100%;
    padding: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-body-font-color);
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
    padding: 11px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: capitalize;
    z-index: 1;
}

.megamenu-content-box .row ul li:first-child a {
    border-top: none;
}

.megamenu-content-box .row ul li.current>a,
.megamenu-content-box .row ul li:hover>a {
    color: var(--thm-primary-color);
}




.home-showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(var(--thm-base-rgb), .80);
    z-index: 1;
}

.home-showcase__image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.home-showcase__item:hover .home-showcase__image:before {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.home-showcase__image>img {
    width: 100%;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.home-showcase__image:hover>img {
    opacity: 1.0;
}

.home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    z-index: 3;
}

.home-showcase__buttons a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .4s ease-in-out .1s;
}

.home-showcase__image:hover .home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 1;
    transform: translateY(0px);
    transition: all .4s ease-in-out .2s;
}

.home-showcase__buttons__item {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    transition: color 0.5s ease;
    transition: all 0.5s ease;
}

.home-showcase__buttons__item:hover {
    color: var(--thm-base) !important;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 0px;
}

.home-showcase__title {
    position: relative;
    display: block;
    background-color: rgba(var(--thm-base-rgb), .01);
    padding: 8px 0 7px;
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    text-transform: uppercase;
    margin-top: 5px;
    border-radius: 10px;
}

.mobile-nav__wrapper .home-showcase__title {
    color: #ffffff;
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}



/** Megamenu style2**/
.megamenu-box {
    position: relative;
    display: block;
}

.megamenu-box .container {
    max-width: 900px !important;
}

.megamenu-box__inner {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 10px 20px 10px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.megamenu-box ul {
    position: relative;
}

.megamenu-box ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.megamenu-box ul li:last-child {
    border-bottom: none;
}

.megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 20px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 50px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: normal;
    font-family: var(--thm-font-2);
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    z-index: 1;
}

.megamenu-box ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.megamenu-box ul li:hover a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.megamenu-box ul li:hover a {
    color: #ffffff;
}





/*-------------------------------------
    Stricky Header Css
--------------------------------------*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}


/***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--thm-base);
  }
  **/

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 30px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: #000000;
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}



.stricky-header.main-menu {
    background-color: #ffffff;
}

.stricky-header .main-menu-box {
    display: block;
    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;
}

.stricky-header .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header .main-menu__wrapper .main-menu__list>.megamenu>ul {
    left: auto !important;
    right: 0;
}





/*----------------------------------------
    Main Header Style1
  ---------------------------------------*/
.main-header-style1 {
    position: absolute;
}

.main-header-style1__scrolling {
    position: relative;
    display: block;
    padding: 12px 0 13px;
    z-index: 10;
}

.main-header-style1__scrolling-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.main-header-style1__scrolling-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: var(--thm-primary-color);
    opacity: 0.70;
}



.main-header-style1__scrolling .inner {
    position: relative;
    display: block;
}

.main-header-style1__scrolling .inner ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
}

.main-header-style1__scrolling .inner ul li {
    position: relative;
    display: block;
    white-space: nowrap;
    float: left;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    margin-left: 65px;
    transition: all .4s ease;
    opacity: 1.0;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.main-header-style1__scrolling .inner ul li:hover {
    opacity: 0.9;
}

.main-header-style1__scrolling .inner ul li:before {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 0;
    color: var(--thm-white);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.main-header-style1__scrolling .inner ul li:hover:before {
    width: 100%;
}



.main-header-style1__top {
    position: relative;
    display: block;
    z-index: 100;
}

.main-header-style1__top .container {
    max-width: 1850px;
}

.main-header-style1__top-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(25, 26, 28, 0.85);
    border: 1px solid #323537;
    border-top: none;
    padding: 12px 40px 10px;
}

.main-header-style1__top-left {
    position: relative;
    display: block;
}

.header-contact-info-style1 {
    position: relative;
    display: block;
}

.header-contact-info-style1 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-style1 ul li {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 17px;
    line-height: 27px;
    font-family: var(--thm-font);
    font-weight: 400;
}

.header-contact-info-style1 ul li span {
    position: relative;
    top: 3px;
    font-size: 20px;
    margin-right: 8px;
}

.header-contact-info-style1 ul li a {
    color: #aeb0b4;
    margin-left: 3px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info-style1 ul li a:hover {
    color: var(--thm-primary-color);
}

.header-contact-info-style1 ul li+li {
    margin-left: 40px;
}



.main-header-style1__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-social-links-style1 {
    position: relative;
    display: block;
}

.header-social-links-style1 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-social-links-style1 ul li {
    position: relative;
    display: block;
}

.header-social-links-style1 ul li+li {
    margin-left: 25px;
}

.header-social-links-style1 ul li a {
    position: relative;
    display: inline-block;
    color: #a1a3a7;
    font-size: 18px;
    line-height: 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-links-style1 ul li a:hover {
    color: var(--thm-primary-color);
}



.box-search-style1 {
    position: relative;
    display: block;
    padding-left: 40px;
}

.box-search-style1 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #aeb0b4;
    font-size: 17px;
    line-height: 27px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.box-search-style1 a:hover {
    color: var(--thm-primary-color);
}

.box-search-style1 a span {
    position: relative;
    display: inline-block;
    color: #aeb0b4;
    font-size: 18px;
    margin-left: 10px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.box-search-style1 a:hover span {
    color: var(--thm-primary-color);
}



.main-header-style1__bottom {
    position: relative;
    display: block;
}

.main-header-style1__bottom .container {
    max-width: 1850px;
}

.main-header-style1__bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(25, 26, 28, 0.85);
    border: 1px solid #323537;
    border-top: none;
    padding: 0px 40px 0px;
}

.main-header-style1__bottom-left {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-box-style1 {
    position: relative;
    display: block;
}

.logo-box-style1 a {
    position: relative;
    display: inline-block;
}

.logo-box-style1 a img {
    width: auto;
}




/** Main Menu Style1 Css**/
.main-menu-style1 {
    position: relative;
    display: block;
    z-index: 10;
}

.main-menu-style1 .main-menu__wrapper {
    position: relative;
}

.main-menu-style1 .main-menu__wrapper-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
}

.main-menu-style1__left {
    position: static;
    display: flex;
}

.main-menu-style1__left .main-menu-box {
    position: static;
    display: block;
    margin-left: 140px;
    float: left;
}



.main-header-style1__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart-box-style1 {
    position: relative;
    display: block;
    padding-right: 40px;
}

.header-cart-box-style1 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-cart-box-style1 a:hover {
    color: var(--thm-primary-color);
}

.header-cart-box-style1 a i {
    position: relative;
    top: -5px;
    color: var(--thm-primary-color);
    font-size: 24px;
    margin-right: 8px;
}




.header-button-style1 {
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 3px;
    padding-right: 3px;
}

.header-button-style1::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    bottom: -2px;
    width: 1px;
    background-color: rgb(255, 255, 255, 0.2);
}

.header-button-style1::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    bottom: -2px;
    width: 1px;
    background-color: rgb(255, 255, 255, 0.2);
}

.header-button-style1 .btn-one {
    line-height: 56px;
    padding-left: 40px;
    padding-right: 40px;
}

.header-button-style1 .btn-one::before {
    background: var(--thm-primary-color);
}

.header-button-style1 .btn-one::after {
    background: rgb(255, 255, 255, 0.1);
}



.login-box-style1 {
    position: relative;
    margin-left: 40px;
    display: flex;
    align-items: flex-start;
}

.login-box-style1 span {
    position: relative;
    top: 2px;
    color: var(--thm-primary-color);
    font-size: 30px;
    margin-right: 10px;
}

.login-box-style1 a {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
}




.stricky-header--style1.main-menu {
    background-color: var(--thm-black-bg);
    z-index: 999999;
}

.stricky-header--style1 .main-menu__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    background-color: var(--thm-black-bg);
}

.stricky-header--style1 .main-menu__wrapper-inner {
    background-color: var(--thm-black-bg);
}

.stricky-header--style1 .main-menu__list>li {
    position: relative;
    padding-top: 31px;
    padding-bottom: 31px;
}


.sticky-logo-box-style1 {
    position: relative;
    display: none;
}

.sticky-logo-box-style1 a {
    position: relative;
    display: inline-block;
}

.stricky-header .main-menu__wrapper-inner .sticky-logo-box-style1 {
    display: block;
}




/*----------------------------------------
    Main Header Style2
  ---------------------------------------*/
.main-header-style2 {
    position: relative;
}

.main-header-style2__top {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #232420;
    padding: 19px 0px 19px;
    z-index: 100;
}

.main-header-style2__top::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 57%;
    height: 32px;
    background-color: var(--thm-black-bg);
    clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.main-header-style2__top-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.main-header-style2__top .container {
    max-width: 100%;
    padding: 0 40px;
}

.main-header-style2__top-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-style2__top-left {
    position: relative;
    display: block;
    top: -16px;
}

.main-header-style2__top-left p {
    position: relative;
    display: flex;
    align-items: center;
    color: #a4a5a0;
}

.main-header-style2__top-left p span {
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 16px;
    margin-right: 8px;
}

.main-header-style2__top-left p a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-style2__top-left p a:hover {
    color: var(--thm-primary-color);
}

.main-header-style2__top-left p a i {
    font-size: 20px;
    margin-right: 8px;
}



.main-header-style2__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-style2 {
    position: relative;
    display: block;
}

.header-contact-info-style2 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-style2 ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-right: 40px;
}

.header-contact-info-style2 ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 35px;
    background-color: rgb(255, 255, 255, 0.15);
}

.header-contact-info-style2 ul li:last-child::before {
    display: none;
}

.header-contact-info-style2 ul li+li {
    margin-left: 40px;
}

.header-contact-info-style2 ul li:last-child {
    padding-right: 0px;
}

.header-contact-info-style2 ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 28px;
    line-height: 0;
    top: 7px;
    margin-right: 14px;
}

.header-contact-info-style2 ul li .title {
    position: relative;
    display: block;
}

.header-contact-info-style2 ul li .title p {
    color: #a4a5a0;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.header-contact-info-style2 ul li .title h5 {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}



.header-btn-style2 {
    position: relative;
    display: block;
    margin-left: 68px;
    padding-left: 40px;
}

.header-btn-style2::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 110px;
    background-color: rgb(255, 255, 255, 0.15);
}

.header-btn-style2 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-duration: 0.1s;
}

.header-btn-style2 a span {
    font-size: 20px;
    margin-right: 10px;
}

.header-btn-style2 a:hover {
    color: var(--thm-primary-color);
}



.main-header-style2__bottom {
    position: relative;
    display: block;
    background-color: #1c1d19;
    z-index: 111;
}

.main-header-style2__bottom .container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 0;
}

.main-header-style2__bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.main-header-style2__bottom-left {
    position: relative;
    display: flex;
    align-items: center;
    top: -16px;
}

.logo-box-style2 {
    position: relative;
    display: block;
}

.logo-box-style2 a {
    position: relative;
    display: inline-block;
    z-index: 1;
}



.main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
    margin-left: 180px;
}

.main-header-style2__bottom-left .main-menu-style1__left .main-menu__list>li {
    padding-top: 17px;
    padding-bottom: 17px;
}



.main-header-style2__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.language-switcher-style1 {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.language-switcher-style1 .icon {
    position: relative;
    display: block;
    width: 30px;
    margin-right: 6px;
    line-height: 0;
}

.language-switcher-style1 .icon img {
    width: auto;
}

.language-switcher-style1 .select-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.language-switcher-style1 .nice-select {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: 0;
    border: none;
    width: 100%;
    height: 40px;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 40px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    outline: none;
    padding-left: 0px;
    padding-right: 15px;
    transition: all 0.2s ease-in-out;
}

.language-switcher-style1 .nice-select:after {
    position: absolute;
    content: "\e924" !important;
    font-family: 'icomoon' !important;
    color: #a3a49f;
    font-size: 10px;
    top: 1px;
    right: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    height: 100%;
    width: 15px;
}

.language-switcher-style1 .nice-select .list {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 120px;
    right: 0 !important;
    left: auto !important;
}

.language-switcher-style1 .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.language-switcher-style1 .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.language-switcher-style1 .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.language-switcher-style1 .nice-select .option:hover,
.language-switcher-style1 .nice-select .option.focus,
.language-switcher-style1 .nice-select .option.selected.focus {
    color: var(--thm-black) !important;
    background-color: var(--thm-primary-color);
}



.search-box-style2 {
    position: relative;
    display: block;
}

.search-box-style2 form {
    position: relative;
    display: block;
}

.search-box-style2 form input[type="text"] {
    position: relative;
    display: block;
    max-width: 310px;
    width: 100%;
    height: 30px;
    border-radius: 0;
    background-color: transparent;
    border: 0px solid #e3e3e3;
    border-left: 1px solid rgb(255, 255, 255, 0.12);
    color: #5d5e59;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    padding-left: 40px;
    padding-right: 65px;
    transition: all 500ms ease 0s;
}

.search-box-style2 form input::-webkit-input-placeholder {
    color: #5d5e59;
}

.search-box-style2 form input:-moz-placeholder {
    color: #5d5e59;
}

.search-box-style2 form input::-moz-placeholder {
    color: #5d5e59;
}

.search-box-style2 form input:-ms-input-placeholder {
    color: #5d5e59;
}

.search-box-style2 form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    bottom: 0px;
    color: #a4a5a0;
    font-size: 18px;
    line-height: 0;
    transition: all 500ms ease 0s;
}



.side-content-button {
    position: relative;
    display: block;
}

.side-content-button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 25px;
}




/*----------------------------------------
    Main Header Style3
  ---------------------------------------*/
.main-header-style3__bottom {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
}

.main-header-style3__bottom .container {
    max-width: 100%;
    padding: 0px 50px 0px;
}

.main-header-style3__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-style3__bottom-left {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-box-style3 {
    position: relative;
    display: block;
}

.logo-box-style3 a {
    position: relative;
    display: inline-block;
}


.main-header-style3__bottom-left .box-search-style1 {
    margin-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 7px;
    padding-bottom: 7px;
}




.main-header-style3__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.member-login-style3 {
    position: relative;
    display: block;
}

.member-login-style3 .shape1 {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
}

.member-login-style3 .shape2 {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 1;
}

.member-login-style3 a {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    width: 90px;
    height: 90px;
    background-color: #242222;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.member-login-style3 a:hover {
    color: var(--thm-primary-color);
}

.header-btn-style3 {
    position: relative;
    display: block;
    margin-left: 40px;
}

.header-btn-style3 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-btn-style3 a i {
    font-size: 20px;
    margin-right: 10px;
}

.header-btn-style3 a:hover {
    color: var(--thm-primary-color);
}


.header-social-links-style3 {
    position: relative;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 25px;
    padding-left: 21px;
}

.header-social-links-style3 ul {
    position: relative;
    display: block;
    padding: 7px 0px 7px;
}

.header-social-links-style3 ul li {
    position: relative;
    display: block;
    float: left;
}

.header-social-links-style3 ul li+li {
    margin-left: 25px;
}

.header-social-links-style3 ul li a {
    position: relative;
    display: inline-block;
    color: #efefef;
    font-size: 18px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-links-style3 ul li a:hover {
    color: var(--thm-primary-color);
}



/*
----------------------------------------
    Main Header Style4
----------------------------------------
*/
.main-header-style4 {
    position: absolute;
}

.main-header-style4__bottom {
    position: relative;
    display: block;
    background-color: transparent;
}

.main-header-style4__bottom .container {
    max-width: 1750px;
}

.main-header-style4__bottom-inner {
    position: relative;
    display: block;
    padding-left: 275px;
    padding-right: 275px;
    background-color: var(--thm-white);
}

.main-header-style4__bottom-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 130px;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.logo-box-style4 {
    position: relative;
    display: block;
}

.logo-box-style4 a {
    position: relative;
    display: inline-block;
}



.main-header-style4__bottom-middle {
    position: relative;
    display: block;
}

.main-header-style4__bottom-middle__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #483f2f;
    padding: 0px 40px 0px;
    padding-right: 0;
}

.main-header-style4__bottom-middle__top::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: var(--thm-white);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.main-header-style4__bottom-middle__top::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 20px;
    height: 20px;
    background-color: var(--thm-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 10;
}

.main-header-style4__bottom-middle__top-left {
    position: relative;
    display: block;
}


.header-menu-style4 {
    position: relative;
    display: block;
}

.header-menu-style4 ul {
    position: relative;
    display: block;
}

.header-menu-style4 ul li {
    position: relative;
    display: block;
    float: left;
}

.header-menu-style4 ul li+li {
    margin-left: 30px;
}

.header-menu-style4 ul li a {
    color: #bfbdb9;
    font-size: 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-menu-style4 ul li a:hover {
    color: var(--thm-primary-color);
}



.main-header-style4__bottom-middle__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-open-hours-style4 {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 60px;
}

.header-open-hours-style4 .icon {
    position: relative;
    display: block;
    color: #c0beb9;
    font-size: 16px;
    line-height: 0;
    margin-right: 10px;
}

.header-open-hours-style4 p {
    color: #c0beb9;
}

.header-open-hours-style4 p span {
    color: var(--thm-white);
}

.header-btn-style4 {
    position: relative;
    display: block;
    line-height: 0;
}

.header-btn-style4 .btn-one {
    line-height: 30px;
}



.main-header-style4__bottom-middle__bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-style4__bottom-middle__bottom-left {
    position: relative;
    display: block;
}

.main-header-style4__bottom-middle__bottom-left .main-menu-box {
    margin-left: 40px;
}



.main-header-style4__bottom-middle__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.header-cart-btn-style1 {
    position: relative;
    display: block;
    margin-right: 30px;
}



.header-cart-btn-style1 .cart-icon {
    position: relative;
    display: block;
    line-height: 0;
    cursor: pointer;
    padding-right: 18px;
}

.header-cart-btn-style1 .cart-icon span {
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
}

.header-cart-btn-style1 .cart-icon span.item-count {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 12px;
}



.side-content-button-style4 {
    position: relative;
    display: block;
    border-left: 1px solid #dfdcd6;
    padding: 8px 24px 7px;
    padding-right: 0;
    line-height: 0;
}

.side-content-button-style4 a {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 25px;
    line-height: 0;
}



.main-header-style4__bottom-right {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: 0;
    right: 0;
    width: 275px;
    height: 130px;
}

.hedaer-phone-number-box-style4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding-right: 50px;
}

.hedaer-phone-number-box-style4 .text {
    position: relative;
    display: block;
    padding-right: 20px;
}

.hedaer-phone-number-box-style4 .text h6 {
    color: #adaca8;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.hedaer-phone-number-box-style4 .text a {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 25px;
    font-family: var(--thm-font-2);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.hedaer-phone-number-box-style4 .text a:hover {
    color: var(--thm-primary-color);
}

.hedaer-phone-number-box-style4 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f6f2eb;
    color: var(--thm-primary-color);
    font-size: 30px;
}

.main-menu.black .main-menu__list>li>a {
    color: var(--thm-black);
}




/*
----------------------------------------
    Main Header Style5
----------------------------------------
*/
.main-header-style5 {
    position: absolute;
}

.main-header-style5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 290px;
    right: 0px;
    height: 50px;
    background-color: #2b2b24;
    clip-path: polygon(1% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.main-header-style5::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 685px;
    width: 100%;
    height: 50px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.main-header-style5__bottom {
    position: relative;
    display: block;
    background-color: transparent;
}

.main-header-style5__bottom .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-header-style5__bottom-inner {
    position: relative;
    display: block;
    padding-left: 375px;
    padding-right: 60px;
}

.main-header-style5__bottom-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 375px;
    height: 130px;
    display: flex;
    align-items: center;
    padding-left: 60px;
    z-index: 99;
}

.logo-box-style5 {
    position: relative;
    display: block;
}

.logo-box-style5 a {
    position: relative;
    display: inline-block;
}



.main-header-style5__bottom-right {
    position: relative;
    display: block;
}

.main-header-style5__bottom-right__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 11px 0 12px;
    z-index: 1;
}

.main-header-style5__bottom-right__top-left {
    position: relative;
    display: flex;
    align-items: center;
}


.header-phn-number-box-style5 {
    position: relative;
    display: block;
    padding-left: 30px;
}

.header-phn-number-box-style5 .icon {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 0;
}

.header-phn-number-box-style5 .text {
    position: relative;
    display: block;
}

.header-phn-number-box-style5 .text p {
    color: #a6a69d;
}

.header-phn-number-box-style5 .text p a {
    color: var(--thm-white);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-left: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-phn-number-box-style5 .text p a:hover {
    color: var(--thm-primary-color);
}



.header-social-links-style5 {
    position: relative;
    display: block;
    margin-left: 220px;
}

.header-social-links-style5 ul {
    position: relative;
    display: block;
}

.header-social-links-style5 ul li {
    position: relative;
    display: block;
    float: left;
}

.header-social-links-style5 ul li+li {
    margin-left: 25px;
}

.header-social-links-style5 ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-links-style5 ul li a:hover {
    color: var(--thm-primary-color);
}



.main-header-style5__bottom-right__top-right {
    position: relative;
    display: block;
}

.header-menu-style5 {
    position: relative;
    display: block;
}

.header-menu-style5 ul {
    position: relative;
    display: block;
}

.header-menu-style5 ul li {
    position: relative;
    display: block;
    float: left;
}

.header-menu-style5 ul li+li {
    margin-left: 30px;
}

.header-menu-style5 ul li a {
    color: var(--thm-white);
    font-size: 17px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-menu-style5 ul li a:hover {
    color: var(--thm-black);
}



.main-header-style5__bottom-right__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-style5__bottom-right__bottom-left {
    position: relative;
    display: block;
}

.main-header-style5__bottom-right__bottom-left .main-menu-box {
    margin-left: 0;
}



.main-header-style5__bottom-right__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
}

.box-search-style2 {
    position: relative;
    display: block;
    padding-right: 25px;
}

.box-search-style2 a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 17px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.box-search-style2 a span {
    color: var(--thm-white);
    font-size: 20px;
    margin-right: 10px;
}



.side-content-button-style5 {
    position: relative;
    display: block;
    border-left: 1px solid rgb(255, 255, 255, 0.5);
    padding: 12px 25px 13px;
    padding-right: 0;
    line-height: 0;
}

.side-content-button-style5 a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 25px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.side-content-button-style5 a:hover {
    color: var(--thm-primary-color);
}


.header-btn-box-style5 {
    position: relative;
    display: block;
    margin-left: 40px;
}

.header-btn-box-style5 .btn-one {
    color: var(--thm-black);
    line-height: 30px;
}

.header-btn-box-style5 .btn-one:hover {
    color: var(--thm-white);
}

.header-btn-box-style5 .btn-one i {
    color: var(--thm-primary-color);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.header-btn-box-style5 .btn-one:hover i {
    color: var(--thm-white);
}

.header-btn-box-style5 .btn-one:before {
    background: var(--thm-primary-color);
}

.header-btn-box-style5 .btn-one::after {
    background: var(--thm-white);
}

























/*--------------------------------------
    End Css
---------------------------------------*/