header.site-header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    z-index: 105;
    width: 100%;
    top: 0;
    left: 0;
}

/* #menu-main {
    display: flex;
    list-style: none;
    gap: 30px;
} */

#site-navigation {
    font-size: 14px;
    display: flex;
    gap: 1em;
    align-items: center;
}

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

.site-branding {
    width: 100px;
    height: 35px;
}

.site-branding a.custom-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.site-branding a.custom-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.site-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header-top__right {
    width: calc(100% - 120px);
    display: flex;
    justify-content: flex-end;
    gap: 10%;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 1em;
}


.header-contacts a {
    color: var(--theme-color-black);
    text-decoration: underline;
    font-weight: 600;
}

.header-contacts>a:first-child {
    margin-right: 20px;
}

.header-menu__inner .header-menu {
    position: fixed;
    display: block;
    background: rgba(0, 0, 0, .75);
    width: 35%;
    height: 100%;
    backdrop-filter: blur(10px);
    padding: 100px 20px 50px 20px;
    transform: translateX(100%);
    transition: all .5s linear;
    top: 0;
    color: #fff;
    box-sizing: border-box;
    right: 0;
    max-width: 420px;
}

.header-menu .close-menu {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.header-menu .close-menu svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header-menu ul {
    list-style: none;
}

.header-menu ul li a {
    position: relative;
    padding-bottom: 10px;
    display: block;
}

.header-menu ul li a:hover {
    transform: translateX(5px);
}

.header-menu ul li {
    margin-bottom: 10px;
}

.header-menu ul li a {
    font-size: 20px;
    text-decoration: none;
}

.header-menu .close-menu svg path {
    transition: all .5s linear;
}

.header-menu .close-menu:hover svg path {
    fill: var(--theme-color-accent);
}

.header-menu.active {
    transform: none;
}

.header-contacts .contacts-list {
    display: flex;
    gap: 1em;
    list-style: none;
}

.contacts-list__item .contact-link {
    width: 30px;
    height: 30px;
    display: flex;
}

.contacts-list__item .contact-link img {
    width: 100%;
    height: 100%;
    filter: brightness(0);
    transition: all .5s linear;
}

.contacts-list__item .contact-link:hover img {
    filter: none;

}

#menu-main>li {
    position: relative;
}

#menu-main>li.menu-item-has-children {
    display: flex;
    gap: 5px;
    align-items: center;
}

#menu-main>li.menu-item-has-children:after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: url(../../img/svg/arrow-down.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.menu-item>ul.dropdown-menu {
    position: absolute;
    left: 0;
    top: 20px;
}

#menu-main>a {
    line-height: 2;
}

.menu-item>ul.dropdown-menu {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    list-style: none;
    opacity: 0;
    min-width: 200px;
    height: 0;
    overflow: hidden;
    transition: all .5s linear;
    background: var(--theme-color-secondary);
}

.dropdown-menu li.menu-item {
    padding: 10px;
    border-bottom: 1ps dotted var(--theme-color-background);
}

.dropdown-menu li.menu-item a {
    display: block;
}


.menu-item>ul.dropdown-menu.show {
    height: max-content;
    opacity: 1;
}

.menu-toggle {
    display: none;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

button.menu-toggle .bar {
    background: var(--theme-color-black);
    border-radius: 3px;
    width: 26px;
    height: 2px;
}

button.menu-toggle .bar {
    transition: transform cubic-bezier(.89, 0, .08, 1) 1.5s, width cubic-bezier(.89, 0, .08, 1) 1.5s, background .3s;
}

button.menu-toggle.active .bar {
    background: var(--theme-color-accent);
}

button.menu-toggle.active .bar:nth-child(1) {
    transform: translate(0, 6px) rotate(135deg);
}

button.menu-toggle.active .bar:nth-child(2) {
    transform: translate(15px, 0px) rotate(90deg);
    width: 0;
}

button.menu-toggle.active .bar:nth-child(3) {
    transform: translate(0, -7px) rotate(225deg);
}

button.menu-toggle div:not(:first-child) {
    margin-top: 5px;
}

.menu-item ul.sub-menu {
    margin-top: 10px;
}

.sub-menu li a {
    /* padding-left: 10px; */
    font-size: 14px;
}

.mobile-menu ul li a::after {
    content: none;
}

.header-menu ul li ul li a {
    font-size: 16px;
}

.menu-item ul.sub-menu li a {
    padding-bottom: 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.menu-item ul.sub-menu li a:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background: #fff;
    display: block;
    transition: all .5s linear;
}

.menu-item ul.sub-menu li a:hover:before {
    background: var(--theme-color-accent);
    filter: drop-shadow(0 0 3px var(--theme-color-accent));
}

.menu-item ul.sub-menu li a:hover {
    transform: none;
}

.header-menu ul li ul li {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .site-header-top {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-contacts {
        display: flex;
        align-items: center;
        gap: 1em;
        width: calc(100% - 100px);
        justify-content: center;
    }

    /* .site-header-top .container {
        width: calc(100% - 55px);
    } */

    .menu-toggle {
        display: block;
    }

    /* #menu-main {
        display: none;
    } */

    #site-navigation {
        display: none;
    }

    .mobile-menu ul li ul li a {
        font-size: 16px;
        padding-left: 0;
    }
}


@media (max-width: 768px) {
    .header-contacts>a {
        display: none;
    }

    .site-header-top__right {
        gap: 30px;
    }

    .header-contacts>a:first-child {
        margin-right: 0;
    }


}