.v-section {
    display: flex;
	max-width: var(--section-max-width); 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    max-height: 496px;
    box-sizing: content-box;
    gap: 0 4px;
    padding: 42px 0;
}

.curtain-modal .v-section {
    margin-bottom: 0;
}

._below-fixed-banner .v-section {
    margin: 0 auto;
}

.v-section_reverse {
    flex-direction: row-reverse;
}

.v-section>div {
    flex: calc(50% - 2px);
}

.v-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.v-section__image_top img {
    object-position: top;
}

.v-section__image_center img {
    object-position: center;
}

.v-section__image_bottom img {
    object-position: bottom;
}

.v-section__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 24px;
    padding: 48px;
    transition: var(--transition-cond);
}

.v-section__title,
.v-section__foorm-footer,
.v-section__link {
    text-align: left;
}

.v-section__title h2 {
    font-family: Mulish;
    font-size: 48px ;
    font-weight: 400;
    line-height: 1em;
    margin: 0;
}

.v-section__title h2 .accent {
    color: #DC0000;
}

.v-section__foorm-footer {
    max-width: 400px;
}

.v-section__foorm-footer span {
    font-size: 12px;
    line-height: 14px;
    color: rgba(0, 0, 0, 0.5);
    /* text-transform: uppercase; */
    opacity: .5;
    font-weight: 300;
}

.v-section__foorm-footer a {
    font-size: 12px;
    line-height: 14px;
    color: rgba(0, 0, 0, 1);
    /* text-transform: uppercase; */
    transition: opacity 300ms ease-in-out;
    font-weight: 300;
}

.v-section__foorm-footer a:hover {
    opacity: .8;
}

.v-section__foorm-footer a,
.v-section__link a {
    /* text-transform: uppercase; */
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition-cond);
}

.v-section__link a {
    font-size: 14px;
    line-height: 18px;
}

.v-section__form,
.v-section__form form {
    width: 100%;
}

.v-section__form form {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.v-section__form .form-group {
    flex: 1 1 180px;
}

.v-section__form .form-group.error {
    margin-bottom: 20px;
}

.v-section__form .form-group input[type="text"] {
    text-transform: unset;
}

.v-section__form .form-group input[type="text"]::placeholder {
	color: rgba(0,0,0,.5);
}

.v-section__form .form-group input[type=text],
.v-section__form button.btn {
    height: 48px;
}

.v-section__form button {
    font-family: Mulish;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.v-section__form button.btn._trsnp._animated {
    flex: 1 1 150px;
    max-width: 200px;
    cursor: pointer;
}

@media (max-width: 1576px) {
    .v-section {
        max-width: 100%;
        padding: 0 48px;
    }
    ._below-fixed-banner .v-section {
        margin: 0;
        padding: 42px 48px;
    }
}

@media (max-width: 1199px) {
    .v-section {
        padding: 0 25px;
    }
    ._below-fixed-banner .v-section {
        margin: 0;
        padding: 24px 24px;
    }
    .v-section__form button {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    
    .v-section {
        padding: 0;
        flex-direction: column;
        margin-bottom: 24px !important;
        max-height: 100%;
    }
    .v-section__title h2{
        font-size: 24px !important;
        line-height: 24px !important;
    }
    ._below-fixed-banner .v-section {
        margin: 0;
        padding: 24px 0;
    }

    .v-section_reverse {
        flex-direction: column-reverse;
    }

    .v-section__body {
        padding: 24px 12px 0 12px;
        gap: 16px;
        align-items: center;
    }

    .v-section_reverse .v-section__body {
        padding: 0 12px 24px 12px;
    }

    .v-section__title,
    .v-section__foorm-footer,
    .v-section__link {
        text-align: center;
    }
    
    .v-section__form button.btn {
        max-width: 100%;
    }
    .v-section__image,
    .v-section__image img {
        max-height: 420px;
    }
}
@media (max-width: 640px) {
    .v-section__image,
    .v-section__image img {
        max-height: 320px;
    }
}
@media (max-width: 414px) {
    .v-section__form button {
        flex: 1;
        min-width: 0;
    }
    
    .v-section__image,
    .v-section__image img {
        max-height: 220px;
        object-position: center;
    }
}

@media (hover:hover) {
    .v-section__link a:hover {
        opacity: .5;
    }

    .v-section__foorm-footer a:hover {
        opacity: 1;
    }
}

.v-section__image {
    flex: 1 0 45% !important;
}

.v-section__body {
    flex: 1 0 55% !important;
}

.v-section__form form {
    flex-wrap: nowrap !important;
}