.section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    border-bottom: solid 1px var(--color-header-border-gray);
    background: var(--color-header-gray);
}

/* header menu */

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-logo {
    /* */
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 80px;
}

.menu-item {
    cursor: pointer;
}

.menu-item.menu-item__search, .menu-item.menu-item__burger-menu, #close_side-menu_button {
    box-sizing: content-box;
    cursor: pointer;
}

.menu-item__burger-menu svg path {
    transition: 200ms;
}

.menu-item__burger-menu:hover svg path {
    stroke: var(--color-white);
}

.menu-item__search {
    position: relative;
}

.menu-item__search--form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 200ms;
}

.menu-item__search--form.active {
    display: block;
    align-items: unset;
    justify-content: unset;
    width: 350px;
    height: 40px;
}

.menu-item__search--form label {
    display: none;
}

.menu-item__search--form .menu-item__search--input {
    pointer-events: none;
    width: 100%;
    height: 100%;
    transition: 200ms;
    opacity: 0;
    border: none;
    border-radius: 6px;
    background: #353535;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    padding: 0 60px 0 20px;
}

.menu-item__search--form.active .menu-item__search--input {
    pointer-events: all;
    display: block;
}

.menu-item__search--form.active .menu-item__search--input {
    box-sizing: border-box;
    opacity: 1;
}

.menu-item__search--form svg {
    position: absolute;
    top: 10px;
    right: 0;
    transition: 200ms;
}

.menu-item__search--form svg path {
    transition: 200ms;
}

.menu-item__search--form.active svg {
    top: 10px;
    right: 25px;
}

.menu-item__search:hover form svg path {
    stroke: var(--color-primary);
}

/* side menu */
.side-menu {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(0 0 0/ 0%);
}

.side-menu__content {
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    right: -610px;
    box-sizing: border-box;
    width: 610px;
    height: 100%;
    transition: 250ms;
    color: var(--color-white);
    background: var(--color-side-menu-background);
    z-index: 10;
}

.side-menu.active {
    z-index: 15;
    transition: 250ms;
    pointer-events: all;
    background: rgb(0 0 0 / 50%);
}

.side-menu.active .side-menu__content {
    right: 0;
}

.side-menu__header {
    display: flex;
    flex-direction: row-reverse;
    height: 220px;
    padding: 40px;
}

.side-menu__header .menu-logo {
    display: none;
}

.side-menu__header > * {
    height: fit-content;
}

.side-menu__body {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    gap: 30px;
}

.side-menu__item {
    position: relative;
    margin-left: 95px;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: white;
}

.side-menu__item:after  {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-light);
    transition: 200ms;
}

.side-menu__item:hover:after  {
    width: 30px;
}

.side-menu__item.active:after {
    width: 80px;
}

.side-menu__footer {
    padding-top: 30px;
    border-top: 1px solid var(--color-side-menu-footer-outline);
}
.close-button svg path {
    transition: 200ms;
}
.close-button:hover svg path {
    stroke: var(--color-primary);
}

@media (max-width: 1110px) {
    .section__header {
        padding: 25px;
    }
}


@media (max-width: 600px) {
    .section__header {
        padding: unset;
    }

    .menu-logo img {
        height: 28px;
    }

    .menu-items {
        gap: 30px;
    }

    .menu-item img {
        height: 15px;
    }

    .menu.search-is-active {
        display: block;
    }

    .menu.search-is-active .menu-logo {
        display: none;
    }

    .menu.search-is-active .menu-items .menu-item__burger-menu {
        display: none;
    }

    .menu.search-is-active .menu-items {
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
    }

    .menu.search-is-active .menu-items .menu-item .menu-item__search--form.active {
        width: 100%;
    }


    /* side menu */
    .side-menu__content {
        width: 295px;
    }

    .side-menu__header {
        flex-direction: row;
        justify-content: space-between;
        height: 120px;
    }

    .side-menu__header .menu-logo {
        display: block;
    }

    .side-menu__header .close-button svg {
        height: 25px;
    }

    .side-menu__item {
        font-size: 20px;
        margin-left: 80px;
    }

    .side-menu__item.active {
        height: 30px;
    }
    .side-menu__item.active:nth-of-type(1) {
      height: 50px;
    }

    .side-menu__item.active:after {
        bottom: 0;
        width: 60px;
    }
}
