* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Gilroy", sans-serif;
}

ul {
    list-style: none;
}

.container {
    width: 1260px;
    margin: 0 auto;
}

a {
    color: unset;
}

body {
    background: #181818;
}

.top-bg {
    background-image: url(../img/hero/1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
}

.mid-bg {
    background-image: linear-gradient(to bottom,
            #181818 0%,
            transparent 50%,
            #181818 100%),
        url(../img/quiz/mid-bg.png);
    /* 
        background-image: linear-gradient(
            to bottom,
            #181818 0%,
            transparent 50%,
            #181818 100%
        ); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.btm-bg {
    background-image: linear-gradient(to bottom,
            #181818 0%,
            transparent 50%,
            #181818 100%),
        url(../img/footer/bg-btm.png);

    /* background-image: linear-gradient(
            to bottom,
            #181818 0%,
            transparent 50%,
            #181818 100%
        ); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.mobile-display {
    display: none;
}

.menu {
    width: 238px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #1F1F1F;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding-left: 18px;
    padding-right: 23px;
    padding-top: 16px;
    transform: translateX(-100%);
    transition-duration: .3s;
    z-index: 50;
}

.menu-wrap {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 45;
    top: 0;
    left: 0;
}

.menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.menu__title {
    font-size: 20px;
    line-height: 23px;
    color: #595959;
}

.menu__logo {
    margin-bottom: 55px;
}

.menu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.menu__item:last-child {
    margin-bottom: 0;
}

.menu__item span {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.menu__items {
    margin-bottom: 48px;
}

.menu__phone {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7CA60;
    border-radius: 46px;
    text-decoration: none;
    margin-bottom: 22px;
}

.menu__phone span {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #181818;
    margin-left: 4px;
}

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

.menu__link {
    width: 44px;
    height: 44px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
}

.popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 50;
    display: none;
}

.callback {
    width: 464px;
    height: 630px;
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    border-radius: 10px;
    display: none;
}

.callback__inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 54px;
}

.callback__close {
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer;
}

.callback__title {
    margin: 0 auto;
    font-weight: bold;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    color: #000000;
    margin-bottom: 38px;
    width: 360px;
}

.callback__input {
    width: 317px;
    margin-bottom: 9px;
}

.callback__input:last-of-type {
    margin-bottom: 15px;
}

.callback__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.callback__btn {
    background: linear-gradient(293.89deg, #F6C150 35.44%, #FDED9B 94.34%);
    border-radius: 100px;
    width: 317px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 3px solid #C49028;
    box-shadow: 0px 4px 50px #FFD57A;
    margin-bottom: 39px;
    cursor: pointer;
}

.callback__note {
    text-align: center;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #000000;
}


@media (max-width: 576px) {
    .top-bg {
        background: none;
    }

    .mid-bg {
        background: none;
    }

    .btm-bg {
        background: none;
    }

    .mobile-display {
        display: block;
    }

    .mobile-none {
        display: none;
    }

    .block {
        display: block;
    }

    .callback {
        width: 280px;
        height: 440px;
    }

    .callback__title {
        font-size: 20px;
        line-height: 122%;
        margin-bottom: 30px;
        width: 230px;
    }

    .callback__btn {
        width: 253px;
        height: 62px;
        font-size: 14px;
        line-height: 17px;
    }

    .callback__note {
        font-size: 10px;
        line-height: 140%;
    }

    .callback__btn {
        margin-bottom: 20px;
    }

    .callback__inner {
        padding-top: 44px;
    }
}

.popup-map {
    width: 1200px;
    height: 550px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 100;
}

.popup-map__inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.popup-map__map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.popup-map__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -44px;
    background: rgba(246, 193, 80, .75);
    border-radius: 8px;
    width: 116px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.popup-map__close {
    font-weight: bold;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0.02em;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}