
.navigation__inner {
    position: relative;
}

.navigation__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.75rem;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}

.navigation__category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    background-color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.navigation__category-main {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -webkit-calc(100% + 0.5rem);
    top: -moz-calc(100% + 0.5rem);
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}

.navigation__category.clicked .navigation__category-main {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navigation__category-hamburger {
    --clr: var(--clr-brand-primary);
    --clr-active: var(--clr-brand-secondary);
    --h: 2px;
    --w: 20px;
    position: relative;
    width: var(--w);
}

.navigation__category-hamburger:before,
.navigation__category-hamburger:after,
.navigation__category-hamburger>span {
    position: absolute;
    left: -webkit-calc(50% - var(--w)/2);
    left: -moz-calc(50% - var(--w)/2);
    left: calc(50% - var(--w)/2);
    width: var( --w);
    height: var( --h);
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    background-color: var( --clr);
    pointer-events: none;
}

.navigation__category-hamburger:before,
.navigation__category-hamburger:after {
    --inset-y: 5px;
    content: '';
    -webkit-transition: top 0.3s ease-out 0.3s, -webkit-transform 0.3s ease-out;
    transition: top 0.3s ease-out 0.3s, -webkit-transform 0.3s ease-out;
    -o-transition: top 0.3s ease-out 0.3s, -o-transform 0.3s ease-out;
    -moz-transition: top 0.3s ease-out 0.3s, transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: top 0.3s ease-out 0.3s, transform 0.3s ease-out;
    transition: top 0.3s ease-out 0.3s, transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}

.navigation__category-hamburger:before {
    top: -webkit-calc(50% - var(--h)/2 - var(--inset-y));
    top: -moz-calc(50% - var(--h)/2 - var(--inset-y));
    top: calc(50% - var(--h)/2 - var(--inset-y));
}

.navigation__category-hamburger:after {
    top: -webkit-calc(50% - var(--h)/2 + var(--inset-y));
    top: -moz-calc(50% - var(--h)/2 + var(--inset-y));
    top: calc(50% - var(--h)/2 + var(--inset-y));
}

.navigation__category-hamburger>span {
    top: -webkit-calc(50% - var(--h)/2);
    top: -moz-calc(50% - var(--h)/2);
    top: calc(50% - var(--h)/2);
    -webkit-transition: opacity 0.3s ease-out 0.15s;
    -o-transition: opacity 0.3s ease-out 0.15s;
    -moz-transition: opacity 0.3s ease-out 0.15s;
    transition: opacity 0.3s ease-out 0.15s;
}

.navigation__category.clicked .navigation__category-hamburger:before,
.navigation__category.clicked .navigation__category-hamburger:after {
    top: -webkit-calc(50% - var(--h)/2);
    top: -moz-calc(50% - var(--h)/2);
    top: calc(50% - var(--h)/2);
    -webkit-transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out 0.3s;
    transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out 0.3s;
    -o-transition: top 0.3s ease-out, -o-transform 0.3s ease-out 0.3s;
    -moz-transition: top 0.3s ease-out, transform 0.3s ease-out 0.3s, -moz-transform 0.3s ease-out 0.3s;
    transition: top 0.3s ease-out, transform 0.3s ease-out 0.3s;
    transition: top 0.3s ease-out, transform 0.3s ease-out 0.3s, -webkit-transform 0.3s ease-out 0.3s, -moz-transform 0.3s ease-out 0.3s, -o-transform 0.3s ease-out 0.3s;
}

.navigation__category.clicked .navigation__category-hamburger:before {
    -webkit-transform: rotateZ(135deg);
    -moz-transform: rotateZ(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
}

.navigation__category.clicked .navigation__category-hamburger:after {
    -webkit-transform: rotateZ(225deg);
    -moz-transform: rotateZ(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotateZ(225deg);
    transform: rotateZ(225deg);
}

.navigation__category.clicked .navigation__category-hamburger>span {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.navigation__category-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
}

.navigation__search {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
}

.navigation__contact-hotline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: var(--font-special-m);
    font-size: 17px;
    color: var(--clr-text-white);
    border: 1px solid #fff;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    border-radius: 10rem;
    padding: 0.125rem 0.375rem;
    margin-bottom: 0.25rem;
}

.navigation__contact-hotline-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.navigation__contact-hotline a:hover {
    text-decoration: underline;
}

.navigation__contact-work-time {
    font-weight: 500;
    font-size: 12px;
    color: var(--clr-text-white);
    text-align: center;
}

.navigation__route-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

.navigation__route-item span {
    font-weight: 500;
    color: var(--clr-text-white);
}

.navigation__route-item:hover>span {
    text-decoration: underline;
}

.navigation__translator {
    color: var(--clr-text-white);
}

.menu {
    position: relative;
    z-index: 99;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu .wrap-content {
    position: relative;
}

.menu ul.ulmn {
    display: none;
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: 0;
    list-style: none;
}

.menu ul li {
    position: relative;
    z-index: 99;
}

.menu ul.ulmn>li {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -moz-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.menu ul li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.menu ul li .btn-dropdown-menu {
    display: none;
}

.menu ul li a {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    margin: 0px;
    padding: 15px;
    position: relative;
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
    display: block;
}

.menu ul li a img {
    vertical-align: middle;
}

.menu ul li a.active,
.menu ul li:hover>a {
    color: var(--clr-brand-primary);
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    left: 0;
    background: #fff;
    -webkit-box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -moz-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    -moz-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}

.menu ul li ul li {
    text-align: left;
    border-bottom: 1px solid rgb(173 173 173 / 32%);
}

.menu ul li ul li:last-child {
    border-bottom: 0px;
}

.menu ul li ul li a {
    font-size: 14px;
    padding: 10px;
    display: block;
    text-decoration: none !important;
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
}

.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

.menu ul li ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-brand-primary);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

.menu ul li ul li a:hover:before,
.menu ul li ul li>a.active:before {
    left: 0;
    visibility: visible;
    opacity: 1;
    width: 30px;
}

.menu ul li ul li a:hover {
    padding-left: 40px;
}


/* menu mobile*/

.header-left-fixwidth {
    top: 0 !important;
    width: 255px;
    min-height: 100vh;
    position: fixed;
    float: left;
    background: #fff;
    width: 290px;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    -o-transform: translateX(-280px);
    -moz-transform: translateX(-280px);
    transform: translateX(-280px);
}

.header-left-fixwidth .wrap-header {
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    background: var(--clr-brand-primary);
    padding: 0 15px;
    padding-top: 15px;
}

.header-left-fixwidth .wrap-header .logos-menu {
    padding: 10px 0px;
    text-align: center;
    display: block;
}

.header-left-fixwidth .wrap-header .nav-menu ul {
    padding: 0px;
}

.header-left-fixwidth .wrap-header .nav-menu ul li {
    position: relative;
    border-top: 1px solid #F0F0F0;
    list-style: none;
}

.header-left-fixwidth .wrap-header .nav-menu ul a {
    display: block;
    font-size: 15px;
    color: var(--clr-text-white);
    padding: 10px 10px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-transform: capitalize;
    font-weight: 600;
}

.header-left-fixwidth .wrap-header .nav-menu ul li span.btn-dropdown-menu {
    position: absolute;
    right: 0px;
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 43px;
    height: 43px;
    background: transparent;
    top: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--clr-text-white);
    z-index: 1000;
    cursor: pointer;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}

.header-left-fixwidth .wrap-header .nav-menu ul li span.btn-dropdown-menu.active i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu.none {
    display: none;
    padding-left: 10px;
}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu a {
    padding: 12px 20px;
}

.header-left-fixwidth.open-sidebar-menu {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.opacity-menu.open-opacity {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px!important;
    left: 0px;
    z-index: 9999;
}

.no-scroll {
    overflow: hidden;
}

.search-menu {
    position: relative;
}

.search-menu .icon-search-menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #000;
    font-size: 17px;
    margin: 0px;
}

.search-menu .icon-search-menu.active {
    color: #ec2d3f;
    background: #ffffff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.search-menu .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ec2d3f;
    z-index: 2;
    opacity: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    line-height: normal;
}

.search-menu .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: #ec2d3f;
    line-height: 40px;
    text-align: center;
}

.search-menu .search-grid input {
    width: -webkit-calc(100% - 35px);
    width: -moz-calc(100% - 35px);
    width: calc(100% - 35px);
    float: right;
    outline: none;
    border: none;
    color: #ec2d3f;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.search-menu .search-grid input::-webkit-input-placeholder {
    color: #313131;
}

.search-menu .search-grid input:-moz-placeholder {
    color: #313131;
}

.search-menu .search-grid input::-moz-placeholder {
    color: #313131;
}

.search-menu .search-grid input:-ms-input-placeholder {
    color: #313131;
}


/* end */
