.form1-block__container {
    background-color: var(--background-secondary);
    border-radius: 40px;
	border: 2px solid #ffffff;
}
.form1-block__content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.form1-block__right {
    max-width: 960px;
    width: 100%;
}
/* .form1-block-from__wrapper {
    padding: 60px 80px;
    border-radius: 20px; 
} */
.form1-block-list {
    list-style: none;
}
.form1-block-item {
    position: relative;
    padding-left: 40px;
    font-family: 'Roboto';
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 130%;
    color: var(--head-secondary);
    margin-bottom: 15px;
    font-family: 'Roboto';
}
.form1-block-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('../../../assets/images/star.svg');
    background-repeat: no-repeat;
    left: 0;
    top: 0;    
}
.form1-block-item:last-child {
    margin-bottom: 0;
}
.form1-block-from__wrapper {
    padding: 60px 80px;
    border-radius: 20px; 
    overflow: hidden;
    position: relative;
    width: 100%;
}
.form1-block-from__wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 32, 42, 0.9), rgba(28, 32, 42, 0.4));
    position: absolute;
    left: 0;
    top: 0;
}
.form1-block-item::after{
    content: '';
    width: 15px;
    height: 15px;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../../../assets/images/star.svg);
}
.form1-block-from__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form1-block-from__text {
    color: var(--main-text-secondary);
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    font-family: 'Roboto';
    margin-bottom: 40px;
}
#form1-block .form {
    max-width: 490px;
    width: 100%;
    position: relative;
    z-index: 2;
}
#form1-block .input__wrapper {
    margin-bottom: 10px;
}
.form1-block__left {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
.form1-block-contactdata {
    max-width: 370px;
    width: 100%;
}
.form1-block-contactdata__text {
    color: var(--secondary-text);
    font-size: var(--font-size-16-20);
    line-height: 130%;
    font-weight: 400;
    font-family: 'Roboto';
    margin-bottom: 15px;
}
.form1-block-contactdata__phone {
    display: block;
    color: var(--head-secondary);
    font-size: var(--font-size-16-20);
    line-height: 130%;
    font-weight: 800;
    font-family: 'Roboto';
    margin-bottom: 10px;
    transition: all .3s;
}
.form1-block-contactdata__phone:hover {
    color: var(--primary);
}
.form1-block-contactdata__phone:last-child {
    margin-bottom: 0;
}
.form1-block-contactdata__phones {
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .form1-block__container {
        border-radius: 20px;
    }
    .form1-block__left {
        padding-top: 0;
    }
    .form1-block__container {
        padding-top: 20px;
        padding-bottom: 20px;
    }    
    .form1-block-from__wrapper {
        padding: 20px;
    }
    .form1-block__content {
        gap: 20px;
    }
    .form1-block-contactdata__phones {
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .form1-block__content {
        flex-direction: column;
    }
    #form1-block .form {
        width: 100%;
        max-width: 100%;
    }
    .form-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .form1-block-from__wrapper::after {
        background: linear-gradient(to right, rgba(28, 32, 42, 0.9), rgba(28, 32, 42, 0.6));
    }
    .form1-block__content .btn {
        max-width: 100%;
        width: 100%;
    }
}