.header {
    padding: 33.5px 0;
}

.header .wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.header__logo {
    font-size: 48px;
    font-weight: 700;
    line-height: 52.8px;
    letter-spacing: 0.02em;
    text-align: left;
}

.select-menu {
    width: 100%;
    max-width: 200px;
    font-size: 26px;
    font-weight: 700;
    line-height: 39px;
}

.select-menu .select-btn {
    padding: 20px 25px;
    display: flex;
    height: 79px;
    background: #fff;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    border: 1px solid #05070F1A;
    border-radius: 25px;
}
.select-menu .options {
    position: absolute;
    width: 100%;
    max-width: 200px;
    overflow-y: auto;
    max-height: 295px;
    background: #fff;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.select-menu .options .option {
    display: flex;
    height: 79px;
    cursor: pointer;
    align-items: center;
    background: #fff;
    border: 1px solid #05070F1A;
    border-top-width: 0;
    padding: 20px 25px;
}

.select-menu .options .option:last-child {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.select-menu .options .option:hover {
    background: #f2f2f2;
}

.select-menu.active .select-btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-menu.active .options {
    display: block;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}

@media (max-width: 700px) {

    .header {
        padding: 45.5px 0;
    }

    .header__logo {
        font-size: 26px;
        font-weight: 700;
        line-height: 28.6px;
        letter-spacing: 0.02em;
    }

    .select-menu {
        display: none;
    }
}
