.header {
    box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 2px 8px rgba(91, 104, 113, 0.15);
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}
.header.header-transparent{
    box-shadow: none;
}
.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}
.header__logo {
    display: flex;
}
.header__btns {
    display: flex;
    align-items: center;
}
.header__btns .btn {
    margin-left: 10px;
}
.header__nav {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 42px;
}
.header__nav-link {
    font-family: var(--fotnFamilyRaleway);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #2A2831;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.header__nav-link-icon {
    display: flex;
    margin-left: 11px;
}
.header__mob-menu {
    display: flex;
    align-items: center;
    gap: 57px;
}
.header__menu-icon {
    display: none;
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: relative;
}
.header__menu-icon span {
    background-color: rgba(124, 77, 255, 1);
    height: 3px;
    border-radius: 3px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
}
.header__menu-icon span:first-child {
    top: 0;
}
.header__menu-icon span:nth-child(2) {
    top: 50%;
}
.header__menu-icon span:last-child {
    top: 100%;
    width: 70%;
}
.menu-open .header__menu-icon span:first-child,
.menu-open .header__menu-icon span:last-child {
    top: 50%;
}
.menu-open .header__menu-icon span:nth-child(2) {
    opacity: 0;
 }
.menu-open .header__menu-icon span:first-child {
    transform: rotate(45deg);
}
.menu-open .header__menu-icon span:last-child {
    transform: rotate(-45deg);
    width: 100%;
}
.header__wrap-btns {
    display: flex;
    align-items: center;
}