.form-two-block {
    margin-top: 40px;
}
.form-two-block .content {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    padding: 20px;
    gap: 30px;
    border-radius: 20px;
    background: var(--secondary);
}
.form-two-block .text-side {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 560px;
    margin-left: 40px;
    gap: 20px;
    z-index: 1;
}
.form-two-block .text-side__title {
    margin-bottom: 0;
}
.form-two-block .text-side__btn-holder {
    margin-top: 20px;
    margin-bottom: 10px;
}

.form-two-block .img-side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 730px;
    height: 100%;
    border-radius: 15px;
    z-index: 1;

    background: var(--thirdly);
}

.form-two-block .img-side__bg-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}
.form-two-block .img-side img {
    position: absolute;
    bottom: 0;
    right: 0;
    /* width: 120%; */
    width: auto;
    max-width: 860px;
    height: 140%;
    max-height: 480px;
    object-fit: cover;
    /* object-fit: contain; */
}


@media (max-width: 1560px) {
    .form-two-block {
        margin-top: 0;
    }
    .form-two-block .img-side {
        margin-right: 0;
    }
    .form-two-block .img-side img {
        width: 100%;
        max-width: none;
        height: 110%;
        max-height: none;
    }
}
@media (max-width: 1100px) {
    .form-two-block .content {
        height: 300px;
    }
    .form-two-block .text-side {
        margin: 0;
    }
}
@media (max-width: 768px) {
    .form-two-block .content {
        height: auto;
    }
    .form-two-block .img-side {
        display: none;
    }
    .form-two-block .img-side img {
        width: auto;
    }
}
