.form1__wrapper {
    position: relative;
    background-color: var(--bg-dark);
    padding: 70px 60px;
}
#form1-block .title-block {
    font-size: var(--font-size-26-42);
    font-weight: 700;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 690px;
}
.form1-container {
    max-width: 795px;
    width: 100%;
    z-index: 2;
    position: relative;
}
.form1-subtitle {
    font-weight: 500;
    font-size: var(--font-size-16-20);
    color: var(--white);
    line-height: 125%;
    margin-bottom: 40px;
}
.form1__text {
    margin-bottom: 40px;
}
.form1__text p,
.form1__text li {
    font-size: var(--font-size-14-16);
    font-weight: 500;
    line-height: 150%;
    color: var(--stoke);
}
.form1__text p {
    margin-bottom: 15px;
}
.form1__text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}
.form1__text li::after {
    content: '';
    width: 10px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
}
#form1-block .form {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.form1__form-wrapper .input__wrapper {
    max-width: 300px;
    width: 100%;
}
.form1__form-wrapper .btn {
    flex: 1;
}
.form1__wrapper::after {
    content: '';
    max-width: 400px;
    width: 100%;
    background-color: var(--primary);
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.form1__image {
    max-width: 641px;
    max-height: 636px;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 1270px) {
    .form1__image {
        display: none;
    }
    .form1__wrapper::after {
        display: none;
    }
    .form1-container {
        max-width: 100%;
    }
    #form1-block .form {
        flex-direction: column;
    }
    .form1__form-wrapper .input__wrapper {
        max-width: 100%;
    }
    .form1__form-wrapper .btn {
        flex: none;
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    .form1__wrapper {
        padding: 20px;
    }
}