/* Header */
.site-header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.5s ease-in-out;
    padding: 0;
    background-color: var(--color-pri);
    background-image: url('../images/001.svg'), url('../images/002.svg');
    background-size: auto 90%;
    background-position: left top, right bottom;
    background-repeat: no-repeat;
}

.neo-header .site-header {
    position: fixed;
}

.site-header .logo {
    display: block;
    max-width: 200px;
    transition: all 0.5s ease-in-out;
}

.site-header .menu-header {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.site-header .menu-header li {
    padding: calc(var(--section-base) * 0.75) 0;
    position: relative;
}

.site-header .menu-header li a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
    color: var(--color-white);
    font-weight: bold;
    font-size: var(--font-size-small);
    white-space: nowrap;
}

.site-header .menu-header li:hover>a {
    background: #C8A948;
    background: -webkit-linear-gradient(180deg, rgba(200, 169, 72, 1) 0%, rgba(176, 133, 51, 1) 18%, rgba(166, 120, 44, 1) 40%, rgba(191, 160, 71, 1) 61%, rgba(250, 253, 144, 1) 85%, rgba(245, 223, 121, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header .menu-header li.active>a {
    background: #C8A948;
    background: -webkit-linear-gradient(180deg, rgba(200, 169, 72, 1) 0%, rgba(176, 133, 51, 1) 18%, rgba(166, 120, 44, 1) 40%, rgba(191, 160, 71, 1) 61%, rgba(250, 253, 144, 1) 85%, rgba(245, 223, 121, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header .menu-header li.active::before {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(var(--section-base) * 0.2);
    background: #C8A948;
    background: linear-gradient(270deg, rgba(200, 169, 72, 1) 0%, rgba(176, 133, 51, 1) 18%, rgba(166, 120, 44, 1) 40%, rgba(191, 160, 71, 1) 61%, rgba(250, 253, 144, 1) 85%, rgba(245, 223, 121, 1) 100%);
}

.site-header .hamburger {
    cursor: pointer;
    z-index: 2;
}

.site-header .hamburger .line {
    width: 26px;
    height: 1px;
    background-color: var(--color-white);
    display: block;
    margin: 7px 0 7px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.site-header .logo img {
    transition: all 0.4s ease-in-out;
}

.down .site-header .logo img {
    width: 150px;
}

.site-header .menu-header-mobile {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    background-color: var(--color-pri);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    /* -webkit-transform: translateY(-10px);
    transform: translateY(-10px); */
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    padding-right: 40px;
    padding: 30px 15px;
}

.site-header .menu-header-mobile .hamburger {
    margin-top: 23px;
}

.site-header .menu-header-mobile .hamburger .line {
    background-color: #645242;
    width: 30px;
}

.site-header .menu-header-mobile .hamburger .line:nth-child(2) {
    opacity: 0
}

.site-header .menu-header-mobile .hamburger .line:nth-child(1) {
    -webkit-transform: translateY(10.3px) rotate(45deg);
    transform: translateY(10.3px) rotate(45deg)
}

.site-header .menu-header-mobile .hamburger .line:nth-child(3) {
    -webkit-transform: translateY(-10.3px) rotate(-45deg);
    transform: translateY(-10.3px) rotate(-45deg)
}

.site-header .menu-header-mobile.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.site-header .menu-header-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* text-align: center; */
    padding-top: 120px;
}

.site-header .menu-header-mobile li {
    margin-bottom: 10px;
    position: relative;
}

.site-header .menu-header-mobile li a {
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: calc(var(--section-base) * 0.75);
}

.site-header .menu-header-mobile li.active>a {
    background: #C8A948;
    background: -webkit-linear-gradient(180deg, rgba(200, 169, 72, 1) 0%, rgba(176, 133, 51, 1) 18%, rgba(166, 120, 44, 1) 40%, rgba(191, 160, 71, 1) 61%, rgba(250, 253, 144, 1) 85%, rgba(245, 223, 121, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header .menu-header-mobile li.active::before {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--section-base) * 0.15);
    height: 100%;
    background: #FAFD90;
}

.site-header .menu-header-mobile li.has-submenu ul {
    padding-top: 0px;
}

.site-header .menu-header-mobile li.has-submenu ul li a {
    font-size: 30px;
    opacity: 0.65;
}

.btn.header-btn {
    font-size: var(--font-size-h5);
    position: absolute;
    width: 25%;
    right: 0;
    top: 0;
    max-width: 350px;
    height: 100%;
    border-radius: 0;
    border: 0;
}

.btn.header-btn:hover {
    background-color: var(--color-thr);
}

.btn.header-btn img {
    width: var(--font-size-h6);
    height: var(--font-size-h6);
    margin-left: 10px;
}

.btn-header-group select,
.btn-header-group input {
    width: auto;
    max-width: max-content;
}