.promo-form {
    max-width: 1440px;
    margin: 0 auto;
    height: 706px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.promo-form__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.promo-form__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 652px;
    margin: 0 auto;
    padding-top: 17px;
}

.promo-form__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #F4F4F4;
    margin-bottom: 25px;
    margin-top: 0;
}

.promo-form__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #F4F4F4;
    margin-bottom: 44px;
}

.promo-form__btn {
    width: 590px;
    height: 48px;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #923FFF;
    border: 2px solid #923FFF;
    color: #F4F4F4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.promo-form__btn:hover {
    background: transparent;
    color: #F4F4F4;
    text-decoration: none;
}

.promo-form__btn:active,
.promo-form__btn:focus,
.promo-form__btn:visited {
    text-decoration: none;
    outline: none;
}

.promo-form__btn:active {
    opacity: 0.5;
    text-decoration: none;
}

@media (max-width: 1280px) {
    .promo-form {
        height: 706px;
    }

    .promo-form__btn {
        width: 500px;
    }
}

@media (max-width: 1024px) {
    .promo-form {
        height: 706px;
    }

    .promo-form__title {
        font-size: 36px;
    }

    .promo-form__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .promo-form__btn {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .promo-form {
        height: 658px;
    }

    .promo-form__container {
        max-width: 335px;
        margin: 0 auto;
    }

    .promo-form__title {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .promo-form__subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .promo-form__btn {
        width: 335px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .promo-form {
        height: 658px;
        background-size: auto 90%;
        background-position: 63% center;
        background-position-y: 70px;
    }
    .promo-form__container{
        padding: 0;
    }
    .promo-form__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .promo-form__subtitle {
        font-size: 14px;
        margin-bottom: 64px;
    }

    .promo-form__btn {
        width: 280px;
        height: 44px;
        font-size: 14px;
    }
}