/* Общие стили */
html {
  scroll-behavior: smooth;
}
:root {
    --main-black: #000;
    --main-white: #fff;
    --font-lighter: #666;
    --font-darker: #333;
    --accent-1: #f29015;
    --accent-2: #393186;
    --additional-neutral: #E5E5E5;
}
h1 {
	display: none !important;
}
body > .body:not(.index) > .main {
    background-color: #F8F8F8;
}
.services-container {
    max-width: 1232px;
    margin: auto;
}
.services-section {
    margin-top: 80px;
}
.services-title {
    font-size: 64px;
    text-align: center;
    text-transform: uppercase;
    color: var(--accent-2);
}
.services-button {
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.43;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: .3s;
    font-family: inherit;
}
.services-button.services-button--accent-1 {
    color: var(--main-white);
    background-color: var(--accent-1);
}
.services-button.services-button--accent-2 {
    color: var(--main-white);
    background-color: var(--accent-2);
}
.services-button.services-button--additional-neutral {
    color: var(--accent-2);
    background-color: rgba(229, 229, 229, .5);
}

.services-button.services-button--accent-1:active, .services-button.services-button--accent-1:focus-visible {
    background-color: var(--accent-2);
}
.services-button.services-button--accent-2:active, .services-button.services-button--accent-2:focus-visible {
    background-color: var(--accent-1);
}
.services-button.services-button--additional-neutral:active, .services-button.services-button--additional-neutral:focus-visible {
    color: rgba(229, 229, 229, .5);
    background-color: var(--accent-2);
}
@media (hover: hover) {
    .services-button.services-button--accent-1:hover {
        background-color: var(--accent-2);
    }
    .services-button.services-button--accent-2:hover {
        background-color: var(--accent-1);
    }
    .services-button.services-button--additional-neutral:hover {
        color: var(--main-white);
        background-color: var(--accent-2);
    }
}

@media (max-width: 991px) {
    .services-section {
        margin-top: 40px;
    }
    .services-button {
        padding: 10px 20px;
        line-height: 1.67;
        border-radius: 12px;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
    }
    .services-padding {
        padding-inline: 16px;
    }
}
@media (max-width: 340px) {
    .services-padding {
        padding-inline: 0;
    }
}

.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
}
.banner-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
}
.banner-block--main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.banner-title {
    font-size: 64px;
    color: var(--accent-2);
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;
}
.banner-title span {
    color: var(--accent-1);
}
.banner-advantages {
    display: flex;
    gap: 33px;
    color: var(--accent-2);
}
.banner-advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 12px;
    background-color: rgba(229, 229, 229, .5);
}
.banner-text {
    font-size: 20px;
    line-height: 1.3;
    color: var(--font-lighter);
}
.banner-buttons {
    display: flex;
    gap: 40px;
}
.banner-video {
    position: relative;
    cursor: pointer;
    width: fit-content;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}
.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}
.banner-video button {
    position: absolute;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
}
.banner-video button svg {
    transition: .3s;
    width: 100%;
    height: 100%;
}
.banner-video--mobile {
    display: none;
}

.banner-video:active button svg, .banner-video:focus-visible button svg {
    scale: 1.1;
}
@media (hover: hover) {
    .banner-video:hover button svg {
        scale: 1.1;
    }
}

@media (max-width: 991px) {
    .banner {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .banner-block, .banner-block--main, .banner-buttons {
        gap: 20px;
    }
    .banner-block, .banner-block--main {
        align-items: center;
    }
    .banner-video--mobile {
        display: block;
        width: 90%;
    }
    .banner-video--desktop {
        display: none;
    }
    .banner-title {
        line-height: 1.1;
        font-size: 26px;
        text-align: center;
    }
    .banner-advantages {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .banner-advantage {
        gap: 5px;
        padding: 10px 15px;
        background-color: rgba(229, 229, 229, .4);
    }
    .banner-advantages .banner-advantage:nth-child(1) {
        order: 2;
    }
    .banner-advantages .banner-advantage:nth-child(2) {
        order: 3;
    }
    .banner-advantages .banner-advantage:nth-child(3) {
        order: 1;
    }
    .banner-text {
        font-size: 12px;
        font-weight: 500;
    }
    .banner-block .services-button.services-button--additional-neutral {
        font-weight: 500;
    }
    .banner-buttons {
        flex-direction: column;
        width: fit-content;
    }
    .banner-buttons button {
        font-size: 12px;
    }
    .banner-video button {
        width: 40px;
        height: 40px;
    }
}

.simplify-title {
    margin-bottom: 80px;
    font-size: 40px;
    line-height: 1.1;
    color: var(--accent-2);
    text-align: center;
    max-width: 70%;
    margin-inline: auto;
}
.simplify-title b {
    color: var(--accent-1);
}
.simplify-block {
    display: grid;
    grid-template-columns: 43% 57%;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--accent-2);
}
.simplify-form {
    display: flex;
    flex-direction: column;
    gap: 102px;
    padding: 40px;
}
.simplify-form__title {
    color: var(--main-white);
    font-size: 27px;
    line-height: 1.15;
    font-weight: 700;
}
.simplify-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.simplify-img--mobile {
    display: none;
}

@media (max-width:991px) {
    .simplify-title {
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.3;
        max-width: 100%;
    }
    .simplify-block {
        grid-template-columns: 1fr;
        border-radius: 25px;
    }
    .simplify-form {
        gap: 0;
        padding: 0;
    }
    .simplify-form__title {
        font-size: 20px;
        line-height: 1.55;
        padding: 20px 20px 18px;
    }
    .simplify-form form {
        padding: 28px 20px 20px;
    }
    .simplify-img img {
        max-height: 187px;
    }
    .simplify-img--desktop {
        display: none;
    }
    .simplify-img--mobile {
        display: block;
    }
}

.start {
    display: flex;
    flex-direction: column;
}
.start-title {
    margin-bottom: 20px;
    line-height: 1.3;
}
.start-subtitle {
    font-size: 40px;
    line-height: 1.1;
    color: var(--accent-2);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}
.start-subtitle span {
    color: var(--accent-1);
}
.start-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.start-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 15px 23px 15px;
    gap: 0;
    background: rgba(229, 229, 229, 0.3);
    border-radius: 25px;
}
.start-item__num {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--main-white);
    text-align: right;
}
.start-item__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--accent-2);
}
.start-button {
    margin: auto;
    padding-inline: 28px;
}

@media (max-width: 1100px) {
    .start-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .start-title {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .start-subtitle {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    .start-subtitle span {
        display: block;
    }
    .start-list {
        gap: 20px;
        margin-bottom: 25px;
    }
    .start-item {
        padding: 0 12px 17px 12px;
    }
    .start-item__text {
        font-size: 14px;
    }
    .start-button {
        padding: 12px 24px;
    }
}
@media (max-width: 768px) {
    .start-list {
        grid-template-columns: 1fr;
    }
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--accent-2);
}
.advantages-title {
    line-height: 1.1;
}
.advantages-subtitle {
    text-align: center;
    font-size: 40px;
    line-height: 1.1;
}
.advantages-subtitle span {
    font-weight: 700;
    color: var(--accent-1);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 37px;
}
.advantages-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    background: rgba(229, 229, 229, 0.3);
    border-radius: 12px;
    font-size: 18px;
}
.advantages-item__title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    line-height: 1.1;
}
.advantages-item__list {
    line-height: 1.6;
    margin: 0;
    padding-left: 1.6em;
    list-style: none;
}
.advantages-item__list li {
    position: relative;
    padding-left: 0 !important;
}
.advantages-item__list li::before {
    content: "" !important;
    position: absolute;
    left: -1em;
    top: .65em;
    width: 3px;
    height: 3px;
    background: var(--accent-2);
    border-radius: 50%;
}
.advantages-item__list.advantages-item__list--special li::before {
    width: 5px;
    height: 5px;
    background: var(--accent-1);
}
.advantages-item__list b {
    color: var(--accent-1);
}

@media (max-width: 1180px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .advantages {
        gap: 20px;
    }
    .advantages-title {
        line-height: 1.3;
        font-size: 24px;
    }
    .advantages-subtitle {
        font-size: 16px;
        line-height: 1.3;
    }
    .advantages-subtitle span {
        font-weight: 400;
    }
    .advantages-grid {
        gap: 20px;
    }
}
@media (max-width: 700px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 20px;
}
.gallery-grid img {
    border-radius: 32px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
}
.gallery-grid .gallery-grid__1-3 {
    grid-column: 1 / 3;
}
.gallery-grid .gallery-grid__2-4 {
    grid-column: 2 / 4;
}
.gallery-button {
    display: block;
    width: fit-content;
    margin-top: 40px;
    padding-inline: 15px;
    margin-inline: auto;
}

@media (min-width: 992px) {
    .gallery {
        padding-inline: 10px;
    }
}
@media (max-width: 991px) {
    .gallery-grid {
        gap: 6px;
    }
    .gallery-grid img {
        border-radius: 12px !important;
        min-height: 113px;
    }
    .gallery-button {
        margin-top: 28px;
        font-size: 12px;
        padding: 12px 25px;
    }
}

.clients-block {
    position: relative;
}
.clients-title {
    margin-bottom: 80px;
    line-height: 1.1;
}
.clients-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 0;
}
.clients-swiper-slide {
    background-color: var(--main-white);
    border-radius: 25px;
    overflow: hidden;
    padding: 15px;
    height: 150px !important;
}
.clients-swiper-slide img {
    width: 100%;
    object-fit: contain;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}
.clients-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background-color: var(--main-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: .3s;
}
.clients-button-prev {
    left: 0;
}
.clients-button-next {
    right: 0;
}
.clients-button:active, .clients-button:focus-visible {
    background-color: var(--accent-2);
}
.clients-button:active svg path, .clients-button:focus-visible svg path {
    stroke: var(--main-white);
}

@media (max-width: 991px) {
    .clients-block {
        padding-inline: 32px;
    }
    .clients-title {
        margin-bottom: 40px;
        line-height: 1.3;
        font-size: 24px;
    }
    .clients-swiper .swiper-wrapper {
        display: flex;
        gap: 0;
    }
}

.faq-title {
    margin-bottom: 80px;
    line-height: 1.1;
}
.faq-title b {
    color: var(--accent-1);
}
.faq-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    font-size: 20px;
    line-height: 30px;
    padding: 23px 40px;
    background: rgba(229, 229, 229, 0.4);
    border: 1px solid #E5E5E5;
    border-radius: 32px;
    cursor: pointer;
}
.faq-item__question {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: baseline;
    transition: .6s;
}
.faq-item__question::after {
    content: '';
    min-width: 8px;
    min-height: 8px;
    border-bottom: 2px solid var(--main-black);
    border-right: 2px solid var(--main-black);
    rotate: 45deg;
    transform: translateX(-50%);
    z-index: 1;
    transition: .3s;
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: .6s;
}
.faq-item.faq-item--open .faq-item__answer {
    max-height: 10em;
}
.faq-item.faq-item--open .faq-item__question {
    font-weight: 600;
    margin-bottom: 8px;
}
.faq-item.faq-item--open .faq-item__question::after {
    rotate: 225deg;
    transform: translateX(50%);
}

.faq-item:active .faq-item__question::after, .faq-item:focus-visible .faq-item__question::after {
    rotate: 135deg;
    transform: translateY(50%);
}
@media (hover: hover) {
    .faq-item:hover .faq-item__question::after {
        rotate: 135deg;
        transform: translateY(50%);
    }
}

@media (max-width: 991px) {
    .faq-title {
        margin-bottom: 40px;
        line-height: 1.3;
        font-size: 24px;
    }
    .faq-item {
        font-size: 14px;
        line-height: 1.2;
        padding: 20px 5px 20px 20px;
        border-radius: 12px;
    }
    .faq-item__question::after {
        min-width: 4px;
        min-height: 4px;
        border-bottom: 1px solid var(--main-black);
        border-right: 1px solid var(--main-black);
    }
    .faq-item.faq-item--open .faq-item__answer {
        max-height: 15em;
    }
    .faq-item.faq-item--open .faq-item__question {
        font-weight: 500;
    }
}

.personal {
    margin-bottom: 80px;
}
.personal-block {
    display: grid;
    grid-template-columns: 52.4% 47.6%;
    border-radius: 32px;
    overflow: hidden;
    background-color: rgba(229, 229, 229, 0.3);
}
.personal-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.1;
    color: var(--accent-1);
}
.personal-title b {
    color: var(--accent-2);
}
.personal-subtitle {
    color: var(--font-lighter);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.personal-form {
    padding: 40px 170px 40px 40px;
}
.personal-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:1285px) {
    .personal-form {
        padding-right: 40px;
    }
}
@media (max-width:991px) {
    .personal {
        margin-bottom: 40px;
    }
    .personal-title {
        gap: 20px;
        margin-bottom: 0;
        font-size: 20px;
        text-align: center;
    }
    .personal-title span {
        max-width: 95%;
        margin: auto;
    }
    .personal-block {
        grid-template-columns: 1fr;
        border-radius: 0;
        background: none;
    }
    .personal-form {
        display: flex;
        gap: 20px;
        flex-direction: column;
        padding: 0;
    }
    .personal-subtitle {
        font-size: 14px;
        margin-bottom: 0;
        text-align: center;
        opacity: .5;
    }
    .personal-img img {
        display: none;
    }
}

.seo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    color: #555;
    line-height: 24px;
}
.seo h3 {
    font-size: 2em;
    line-height: 44px;
    color: var(--font-darker);
}
.seo h3, .seo p {
    margin-block: 20px;
}
.seo a {
    color: var(--accent-1);
    text-decoration: none;
}
.seo .limiter {
    max-height: 15em;
    overflow: hidden;
    position: relative;
}
.seo .limiter .bottom {
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 3rem;
    opacity: 0.3;
    transition: 0.4s;
    background: #F8F9FB;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}
.seo .read-more-checker {
    display: none;
}
.seo .read-more-checker:checked ~ .limiter {
    max-height: none;
}
.seo .read-more-checker:checked ~ .limiter .bottom {
    opacity: 0;
}
.seo .read-more-checker ~ .read-more-button:before {
    content: "Развернуть";
}
.seo .read-more-checker:checked ~ .read-more-button:before {
    content: "Свернуть";
}
.seo .read-more-button {
    width: fit-content;
    cursor: pointer;
    margin: auto;
    padding: 10px 20px;
}
.seo ol {
    padding-left: 20px;
}
.seo ol li, .seo ol {
    margin-block: 20px;
}

.seo a:active, .seo a:focus-visible {
    text-decoration: underline;
}
@media (hover: hover) {
    .seo a:hover {
        text-decoration: underline;
    }
}

@media (max-width: 991px) {
    .seo h3 {
        font-size: 24px;
        line-height: 1.2;
    }
    .seo p {
        margin-block: 10px;
    }
    .seo ol li, .seo ol {
        margin-block: 10px;
    }
}

/* Стили раздела */
.banner-title, .banner-title .title-fulfilment {
    display: flex;
    flex-direction: column;
}
.banner-title .title-fulfilment span:nth-child(1) {
    font-size: 51px;
}
.banner-title .title-fulfilment span:nth-child(2) {
    color: var(--accent-1);
    font-size: 77px;
}
.banner-title .title-fulfilment span:nth-child(1),
.banner-title .title-fulfilment span:nth-child(3) {
    color: inherit;
}
.banner-text {
    max-width: 75%;
}
@media (max-width: 991px) {
    .banner-title .title-fulfilment span:nth-child(1), .banner-title .title-fulfilment span:nth-child(3) {
        font-size: 28px;
    }
    .banner-title .title-fulfilment span:nth-child(2) {
        font-size: 34px;
    }
    .banner-text {
        max-width: 85%;
        color: var(--accent-2);
        text-align: center;
    }
    .banner-text span {
        color: var(--accent-1);
    }
}

.why {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}
.why-title {
    line-height: 1.1;
}
.why-subtitle {
    font-size: 20px;
    line-height: 1.3;
    color: var(--font-lighter);
    text-align: center;
    max-width: 44%;
    margin: auto;
}
.why-swiper {
    width: 100%;
    overflow: hidden;
}
.why-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
}
.why-swiper-slide {
    display: flex !important;
    align-items: center;
    gap: 27px;
    padding: 26.25px 20px 30px;
    border-radius: 32px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--accent-2);
    background-color: var(--main-white);
}
.why-swiper-slide img {
    width: 100%;
    max-width: 80px;
}

@media (max-width: 991px) {
    .why {
        gap: 20px;
    }
    .why-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .why-subtitle {
        font-size: 14px;
        max-width: 100%;
        padding-inline: 16px;
    }
    .why-swiper .swiper-wrapper {
        display: flex;
        gap: 0;
    }
    .why-swiper-slide {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        padding: 10px;
        border-radius: 25px;
        color: var(--font-lighter);
        height: auto !important;
    }
}

.models {
    margin-top: 84px;
}
.models-title {
    line-height: 1.1;
    margin-bottom: 80px;
}
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 31px;
}
.models-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    background: rgba(229, 229, 229, 0.4);
    border-radius: 12px;
    align-self: start;
}
.models-grid .models-item:nth-child(1) {
    grid-column: 1/3
}
.models-item__title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.18;
}
.models-item__subtitle {
    font-size: 18px;
    line-height: 1.52;
    color: rgba(102, 102, 102, 0.5);
}
.models-item__text {
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    color: var(--font-lighter);
    cursor: pointer;
    padding-bottom: 12px;
}
.models-item__text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--accent-2);
    border-right: 2px solid var(--accent-2);
    rotate: 45deg;
    transform: translateX(-50%);
    z-index: 1;
    transition: .3s;
}
.models-item__text div {
    max-height: 8em;
    overflow: hidden;
    transition: .5s;
}
.models-item__text.models-item--open div {
    max-height: 60em;
}
.models-item__text.models-item--open::after {
    rotate: 225deg;
    transform: translateX(50%);
}
.models-item__text ol, .models-item__text ul {
    margin: 0;
    padding-left: 1em;
}
.models-item__text ul li {
  padding: 0 !important;
  list-style-type: disc;
  margin-bottom: 0;
}
.models-item__text ol li {
    padding-left: 0;
    margin-bottom: 0;
}

.models-item__text:active::after, .models-item__text:focus-visible::after {
    rotate: 135deg;
    transform: translateY(50%);
}
@media (hover: hover) {
    .models-item__text:hover::after {
        rotate: 135deg;
        transform: translateY(50%);
    }
}

@media (max-width:991px) {
    .models-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    .models-title b {
        font-size: 26px;
    }
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .models-item {
        border-radius: 25px;
    }
    .models-grid .models-item:nth-child(1) {
        grid-column: 1/2;
    }
    .models-item__title {
        font-size: 22px;
        line-height: 1.5;
    }
    .models-item__subtitle {
        font-size: 14px;
        line-height: 1.95;
    }
    .models-item__text {
        font-size: 16px;
        line-height: 1.6;
    }
    .models-item__text div {
        max-height: 12em;
    }
    .models-item__text.models-item--open div {
        max-height: 90em;
    }
    .models-item__text ol, .models-item__text ul {
        padding: 0;
        list-style: none;
    }
}

.stages-title {
    margin-bottom: 80px;
    line-height: 1.1;
}
.stages-block {
    padding-left: 59px;
    max-width: 1100px;
}
.stages-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 52px;
    --disk-size: 20px;
}
.stages-list::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: calc(100% - var(--disk-size));
    background-color: var(--accent-1);
}
.stages-item {
    line-height: 30px;
}
.stages-item__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.stages-item__title::before {
    content: '';
    position: absolute;
    left: 0;
    width: var(--disk-size);
    height: var(--disk-size);
    background-color: var(--accent-1);
    border-radius: 50%;
    transform: translate(-40%, 25%);
}
.stages-item__text {
    font-size: 20px;
    color: var(--main-black);
}

@media (max-width: 991px) {
    .stages-title {
        margin-bottom: 40px;
        line-height: 1.3;
        font-size: 24px;
    }
    .stages-block {
        padding-left: 5px;
    }
    .stages-list {
        padding-left: 21px;
        --disk-size: 12px;
    }
    .stages-list::before {
        width: 2px;
    }
    .stages-item {
        line-height: 1.2;
    }
    .stages-item__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .stages-item__text {
        font-size: 14px;
    }
}

.questions {
    border-radius: 32px;
    background: rgba(229, 229, 229, 0.3);
    background-image: url('/local/templates/.default/components/bitrix/news/services_custom_new/assets/questions.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.questions-block {
    max-width: 54%;
}
.questions-title {
    font-size: 28px;
    line-height: 1.1;
    color: var(--accent-1);
    margin-bottom: 20px;
}
.questions-title b {
    color: var(--accent-2);
}
.questions-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: var(--font-lighter);
    margin-bottom: 40px;
    max-width: 90%;
}
.questions-button {
    padding: 20px 15px;
}

@media (min-width: 992px) {
    .questions {
        padding: 70px 0 58px 119px;
    }
}
@media (max-width: 991px) {
    .questions {
        background: none;
    }
    .questions-block {
        max-width: 100%;
        text-align: center;
    }
    .questions-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .questions-title b {
        font-size: 24px;
    }
    .questions-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .questions-button {
        padding: 12px 23px;
    }
}

.services-form .form-list.form--SIDE_IMG {
    background: none;
}
.services-form .form-group label {
    display: none;
}
.services-form .form.form--inline .form-group {
    margin-bottom: 20px;
}
.services-form .form--inline .form-footer {
    padding: 0;
}
.services-form .form .licence_block {
    padding: 0;
    margin-bottom: 20px;
}
.services-form .form-inner {
    padding-top: 0;
}
.services-form .form-checkbox__label {
    font-size: 12px !important;
    color: var(--main-white) !important;
}
.services-form .form-checkbox__label span {
    color: inherit !important;
}
.services-form .form-footer label span a {
    text-decoration: underline;
    transition: .3s;
    color: inherit !important;
}
.services-form form button {
    padding: 20px 59px;
    background-color: var(--main-white) !important;
    border-radius: 12px !important;
    color: var(--main-black) !important;
    font-size: 14px !important;
    font-weight: 600;
    width: fit-content;
    border: 1px solid var(--main-white) !important;
    cursor: pointer;
    transition: .3s;
    font-family: inherit;
}
.services-form .form-footer__btn {
    text-align: left !important;
}
.services-form .form-group .input input {
    padding-left: 30px;
}
.personal-form.services-form .form-footer label span {
    color: #B3B3B3 !important;
}

.services-form .form-footer label span a:active,
.services-form .form-footer label span a:focus-visible {
    color: var(--accent-1) !important;
}
@media (hover: hover) {
    .services-form .form-footer label span a:hover {
        color: var(--accent-1) !important;
    }
}

@media (max-width: 991px) {
    .services-form form button {
        padding: 14px;
    }
}

.section .seo ul {
    padding-left: 24px;
}
.section .seo ul li {
    padding-left: 0;
    list-style-type: inherit;
}
.section .seo ol li, .section .seo ol {
    margin-block: 0;
    margin-bottom: 8px;
}