header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-logo-mobile {
    display: none;
}

.header-top {
    background: var(--mixed-gradient);
    padding: 0.6rem 0;
}

.header-top-row {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.header-contacts {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: clamp(2rem, 3vw, 3rem);
}

.header-contacts-item {
    display: flex;
    align-items: center;
}

.header-contacts a {
    gap: 0.5rem;
    color: var(--white);
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.header-contacts a:hover {
    opacity: 0.8;
}

.header-icon {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.header-logo {
    height: 5rem;
}

/* Menu */
.menu-nav > ul {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.menu-nav ul {
    padding: 0;
}

.menu-nav ul li {
    position: relative;
}

.menu-nav ul li a {
    display: block;
}

.menu-nav ul li a:hover {
    color: var(--primary-color);
}

.menu-item-has-children > a:first-child {
    cursor: default;
}

.menu-nav .sub-menu {
    position: absolute;
    min-width: 15rem;
    box-shadow: var(--shadow);
    left: 0;
    top: calc(100% + 10px);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    background-color: var(--grey-extra-light);
}

.menu-nav .sub-menu li a {
    padding: 0.5rem 1rem;
}

.menu-nav .menu-item-has-children > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4d4d4' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-size: 1.5rem auto;
    background-repeat: no-repeat;
    background-position: 100% center;
    outline: none;
    padding-right: 1.5rem;
}

.menu-nav .menu-item-has-children > a:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2300CCBD' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.menu-nav ul li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

/*Mobile Menu*/
.burger {
    display: none;
    line-height: 1;
}

.header-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    z-index: 10;
    background-color: var(--secondary-color-extra-dark);
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: 0.5s ease;
}

.header-mobile.is-active {
    transform: none;
}

.header-mobile-wrap {
    position: relative;
}

.header-mobile-close {
    position: absolute;
    top: 0;
    right: 10px;
    width: 24px;
    height: 24px;
}

.menu-mobile-nav {
    margin-top: 1rem;
}

.header-mobile .sub-menu {
    padding-left: 1.5rem;
    display: none;
}

.header-mobile a {
    color: var(--white);
}

.menu-mobile-nav .menu-item-has-children > a {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4d4d4' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-size: 1.5rem auto;
    background-repeat: no-repeat;
    background-position: 100% center;
    outline: none;
    padding-right: 1.5rem;
}

.menu-mobile-nav ul li {
    margin-bottom: 1rem;
}

.menu-mobile-nav .sub-menu {
    margin-top: 1rem;
}

.header-mobile .btn {
    margin: 2rem 0 0 1rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .header-icon {
        height: 24px;
    }

    .header-contacts-text {
        display: none;
    }

    .header-contacts {
        gap: 1.5rem;
    }

    .menu-nav {
        display: none;
    }

    .header-bottom .btn {
        display: none;
    }

    .burger {
        display: block;
    }

    .header-mobile {
        display: block;
    }

    .header-logo {
        display: none;
    }

    .header-logo-mobile {
        display: block;
        height: 2.5rem;
    }

}

@media screen and (max-width: 480px) {
    .header-bottom-row {
        padding: 0.5rem 0;
    }

    .header-mobile {
        width: 100%;
    }
}
@media screen and (max-width: 425px) {

}