/* --------------------
   header
-------------------- */
/*.home #header {
    position: absolute;
    backdrop-filter: blur(6px);
}*/
/*.home #header:before {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    background: red;*/
/*    background: linear-gradient(180deg, var(--black), transparent);*/
/*}*/
.header-menus {
    position: initial;
}
#header {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    z-index: 12;
    transition: 0.4s;
}
/*.home #header:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, #000000b0, transparent);
    top: 0;
    right: 0;
}*/
#header .row {
    position: relative;
    min-height: 101px;
    align-items: center;
    transition: 0.4s;
}
#header .row:after {
    content: "";
    width: calc(100% - 24px);
    height: 2px;
    background: white;
    bottom: 0;
    position: absolute;
    right: 12px;
}
.header-menus {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-menus .header-menu > li {
    min-height: 101px;
    align-items: center;
    display: flex;
    transition: 0.4s;
    /*position: relative;*/
}
.header-menus .header-menu > li:before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
    background-color: var(--white);
    width: 0;
    height: 0;
    border-radius: 10px 10px 0 0;
}
.header-menus .header-menu > li:before {
    background-color: var(--black)  !important;
}
.header-menus .header-menu li:hover:before {
    height: 5px;
    width: 10px;
}
.header-menu {
    display: flex;
    gap: clamp(16px, 2vw, 30px);
}
.header-menu a {
    color: var(--white);
    font-size: 14px;
    font-family: var(--regular);
    transition: 0.4s;
}
.header-search {
    min-width: 24px;
    max-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
}
.header-search i {
    color: var(--white);
    font-size: 18px;
    transition: 0.4s;
}
.header-search:hover i {
    color: var(--color1);
}
.header-logo {
    min-height: 101px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: 0.4s;
}
.header-logo:before {
    content: "";
    width: 100%;
    height: 7px;
    background: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 12px;
}
/* --------------------
    Menu Mobile
-------------------- */
#mask {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    width: 250px;
    background: #fff;
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
    overflow-y: auto;
}
#menumobile img {
    max-width: 130px;
}
#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    background: var(--danger);
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: #fff;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}
.come-menumobile {
    left: 0 !important;
}
.title-mm {
    background: var(--color1);
    padding: 20px 15px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-mm img {
    user-select: none;
}
.btn-mm {
    padding: 0 20px;
    margin-top: 20px;
}
.btn-mm a {
    display: flex;
}
.title-sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-flow: row-reverse;
}
.title-sub-head strong {
    font-family: var(--bold_font);
}
.main-mm {
    padding: 5px 15px;
}
.main-mm ul li a {
    color: #222;
    display: block;
    padding: 8px 0;
    position: relative;
}
.main-mm ul li a:hover {
    color: var(--color1);
}
.main-mm ul li > .sub-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    background: #fff;
    left: -250px;
    transition: 0.3s;
    z-index: 9;
    padding: 20px;
}
.childer i {
    position: absolute;
    cursor: pointer;
    top: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 10px;
}
.childer {
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.come-submenu {
    left: 0 !important;
}
.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color2);
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 2px 0 0;
    transform: rotate(180deg);
}
.sub-closer i {
    cursor: pointer;
    top: -1px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    left: -1px;
}
.title-subcome {
    color: var(--color2);
    font-weight: normal;
    position: relative;
    top: 2px;
}
/* --------------------
  Breadcrumb Style
-------------------- */
#breadcrumbs a:after {
    content: "";
    display: inline-block;
    margin: 0 8.5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3A3A3A;
}
#breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin: 1rem 0 1.5rem;
    font-size: 14px;
}
#breadcrumbs a {
    color: #3A3A3A;
}
#breadcrumbs.no_ab_breadcrumb a:hover,
#breadcrumbs a:hover {
    color: var(--color1);
}
#breadcrumbs:has(+ .abs_breadcrumb) a {
    color: #ffffffc7;
}
.breadcrumb_last {
    color: var(--color1);
}
#header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 0 24px 8px rgb(0 0 0 / 8%);
}
#breadcrumbs:has(+ .abs_breadcrumb) {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}
/****/
.header-mm {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    color: var(--white);
    justify-content: center;
    font-size: 18px;
}
.btn-header {
    margin-right: clamp(0.5rem, 2.5rem, 2.25rem);
    font-size: 14px;
    font-family: var(--demibold);
    color: var(--color1);
    transition: 0.4s;
}
.btn-header:hover {
    color: var(--white);
}
@media only screen and (max-width: 768px) {
    .header-logo,
    #header .row,
    #header {
        min-height: 74px;
    }
}
#header i,
.header-menu a {
    color: rgb(1 13 21 / 80%) !important;
}
#header i:hover,
.header-menu a:hover {
    color: var(--color1) !important;
}
.btn-header {
    color: var(--color1) !important;
}
.btn-header:hover {
    color: var(--color2) !important;
}
.header-logo:before {
    background: var(--color2) !important;
}


.active {
    min-height: 72px !important;
    transition: 0.4s;
    & .row,
    & .head_account,
    & .header-menus .header-menu > li,
    & .header-logo {
        min-height: 72px !important;
        transition: 0.4s;
    }
}
 