/* USER VARIABLES SECTION */

:root {
    --lineheight: 1.5;
    --regular-text: 16px;
    --white: #fff;
    --body: #c4c4c4;
    --header: #030018;
    --body: #353346;
    --blue: #492e87;
    --red: #b1051b;
    --orange: #f29c02;
    --green: #a4c61a;
    --purple: #61166f;
    --red-2: #ff2525;
    --inputs: #6547ac;
    --black: #1a1a1a;
    --input-text: #58575e;
    --font-family: "Roboto", sans-serif;
    --second-family: "Hind", sans-serif;
    --third-family: "Inter", sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0.938rem;
}

.row,
.row>* {
    --bs-gutter-x: 1.875rem;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    z-index: 1;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

/* GENERAL CSS SETTINGS */

.svg-block {
    position: absolute;
    bottom: -9999px;
    left: -9999px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.img-right {
    float: right;
    margin-left: 50px;
}

.img-left {
    float: left;
    margin-right: 50px;
}

.animate__animated {
    /* Анимация будет длиться 1 секунду */
    animation-duration: 2s;
    /* Запуск анимации один раз */
    animation-iteration-count: 1;
}

@media (max-width: 767px) {

    .img-right,
    .img-left {
        float: none;
        width: 100%;
        display: block;
        margin: 0 0 10px 0;
    }
}

::placeholder {
    color: #000;
    opacity: 1;
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--black);
    font-weight: 400;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: var(--white);
}

/* common */
.btn {
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    width: 100%;
    height: 52px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
    margin: 0;
    padding: 0;
    background: #ff4d8f;
}

.btn:hover {
    background: #ff6ba2;
    color: var(--white);
}

.title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    color: var(--header);
    margin: 0;
    padding: 0;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0 10px;
    text-decoration: none;
}

.phone svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.phone span {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
}

.lang {
    position: relative;
}

.lang__current {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0 9px;
}

.lang__current svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
}

.lang__popup {
    position: absolute;
    left: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-in-out;
}

.lang__popup.show {
    opacity: 1;
    visibility: visible;
}

.lang__popup li {
    list-style-type: none;
}

.lang__popup li a {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

.social {
    display: flex;
    align-items: center;
    gap: 0 16px;
    margin: 0;
    padding: 0;
}

.social li {
    list-style-type: none;
}

.social li a {
    display: block;
}

.social li a svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

@media(max-width: 991px) {
    .phone span {
        display: none;
    }

    .title {
        font-size: 24px;
        line-height: 30px;
    }
}

/* end common */

/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
    z-index: 2;
}

.header__info {
    display: flex;
    justify-content: end;
    gap: 0 40px;
}

@media(max-width: 991px) {
    .header__info {
        gap: 0 20px;
    }

    .header__logo {
        width: 100%;
        max-width: 120px;
        display: block;
    }

    .header__logo img {
        object-fit: contain;
        width: 100%;
    }
}

/* end header */

/* first screen */
.first-screen {
    background: linear-gradient(90deg, rgba(73, 46, 135, 0.8) 0%, #492e87 100%), url("../images/bg-first-block.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    overflow: hidden;
}

.first-screen .container {
    position: relative;
}

.first-screen__info {
    padding: 237px 0 0 0;
}

.first-screen__info h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 55px;
    color: var(--white);
    margin: 0 0 24px 0;
}

.first-screen__info p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.first-screen__btn {
    margin: 60px 0 0 0;
}

.first-screen__img {
    position: absolute;
    right: -17%;
    top: 0;
    max-width: 1050px;
}

.first-screen__img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

img.first-screen-mobile {
    display: none;
}

@media (max-width: 1023px) {
    img.first-screen-mobile {
        display: block;
    }

    img.first-screen-pc {
        display: none;
    }
}

@media(max-width: 991px) {
    .first-screen {
        height: 1014px;
        background-position: center;
    }

    .first-screen__info {
        padding: 132px 0 0 0;
    }

    .first-screen__img {
        max-width: 100%;
        position: absolute;
        right: 0;
        top: unset;
        bottom: 60px;
        height: 500px;
    }

    .first-screen__info h1 {
        font-size: 28px;
        line-height: 37px;
        text-align: center;
        margin: 0 0 20px 0;
    }

    .first-screen__info p {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .first-screen__btn {
        margin: 40px auto 0 auto;
    }

    .first-screen__img img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .first-screen {
        position: relative;
    }

    .first-screen .container {
        position: unset;
    }
}

/* end first screen */

/* services */
.services {
    padding: 128px 0;
}

.services__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.services__info h2 {
    margin: 0 0 20px 0;
}

.services__info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 30px;
    color: var(--body);
    margin: 0;
}

.services__list {
    padding: 0;
    margin: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 28px 0;
}

.services__list li {
    list-style-type: none;
    display: flex;
    align-items: baseline;
    gap: 0 20px;
}

.services-item__info h3 {
    padding: 0;
    margin: 0;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 25px;
    line-height: 25px;
    color: var(--header);
}

.services-item__info p {
    padding: 0;
    margin: 13px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--body);
}

@media(max-width: 991px) {
    .services {
        padding: 60px 0;
    }

    .services__info h2 {
        margin: 0 0 20px 0;
    }

    .services__info p {
        font-size: 18px;
        line-height: 24px;
    }

    .services-item__info h3 {
        font-size: 20px;
        line-height: 20px;
    }

    .services__img {
        margin: 70px 0 0 0;
    }
}

/* end services */

/* get-prize */
.get-prize {
    padding: 0 0 128px 0;
}

.get-prize__head {
    margin: 0 0 50px 0;
}

.get-prize__head h2 {
    margin: 0 0 20px 0;
    color: var(--black);
    text-align: center;
}

.get-prize__head p {
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
    max-width: 660px;
    margin: 0 auto;
}

.get-prize-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
    position: relative;
}

.get-prize-item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.get-prize-item__img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.get-prize-item__info {
    padding: 0 72px;
}

.get-prize-item__info h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--blue);
    margin: 0;
    padding: 0;
    text-align: center;
}

.get-prize-item__info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--body);
    margin: 13px 0 0 0;
}

.get-prize-item--icon-top,
.get-prize-item--icon-down {
    position: relative;
}

.get-prize-item--icon-top::before {
    content: '';
    display: block;
    right: -125px;
    top: 11px;
    width: 248px;
    height: 28px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/icon-prize-top.svg');
    background-size: contain;
}

.get-prize-item--icon-down::before {
    content: '';
    display: block;
    right: -125px;
    top: 90px;
    width: 248px;
    height: 28px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/icon-prize-down.svg');
    background-size: contain;
}

@media(max-width: 991px) {
    .get-prize {
        padding: 0 0 60px 0;
    }

    .get-prize__head {
        margin: 0 0 40px 0;
    }

    .get-prize__head p {
        font-size: 18px;
        line-height: 24px;
    }

    .get-prize-item--icon-top::before,
    .get-prize-item--icon-down::before {
        display: none;
    }

    .get-prize__row {
        gap: 32px 0;
    }

    .get-prize-item__info {
        padding: 0 37px;
    }
}

/* end get-prize */

/* footer */
.footer {
    padding: 40px 0;
    background: var(--header);
}

.footer__copy {
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--white);
}

.footer__social {
    justify-content: end;
}

@media(max-width: 991px) {
    .footer {
        padding: 40px 0 60px 0;
    }

    .footer__logo {
        text-align: center;
        display: block;
        margin: 0 0 40px 0;
    }

    .footer__copy {
        margin: 0 0 40px 0;
    }

    .footer__social {
        justify-content: center;
    }
}

/* end footer */

/* follow-success */
.follow-success__wrapper {
    border-radius: 30px;
    background: var(--blue);
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.follow-success__img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 0 40px;
}

.follow-success__img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.4) 40%,
            rgba(255, 255, 255, 0) 80%);
    filter: blur(20px);
    display: block;
    z-index: 2;
    mix-blend-mode: screen;
}

.follow-success__img img {
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.follow-success__info {
    padding: 0 40px 0 0;
    width: 50%;
    position: relative;
    z-index: 2;
}

.follow-success__info h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--white);
    margin: 0;
    padding: 0;
}

.follow-success__info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
    margin: 24px 0 0 0;
}

.follow-success__btn {
    margin: 60px 0 0 0;
}


@media(max-width: 1024px) {}

@media(max-width: 991px) {
    .follow-success {
        background: var(--blue);
    }

    .follow-success__wrapper {
        height: auto;
        border-radius: 0;
        padding: 40px 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .follow-success__info {
        width: 100%;
        padding: 0 20px;
        margin: 0 0 70px 0;
    }

    .follow-success__img {
        max-width: 100%;
        margin: 0;
    }

    .follow-success__img img {
        width: 100%;
        height: 100%;
    }

    .follow-success__info h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .follow-success__info p {
        font-size: 18px;
        line-height: 26px;
    }

    .follow-success__btn {
        margin: 40px 0 0 0;
    }
}

/* end follow-success */

/* competition-conditions */
.competition-conditions {
    padding: 128px 0;
}

.competition-conditions__head {
    margin: 0 0 60px 0;
}

.competition-conditions__head h2 {
    text-align: center;
    color: var(--black);
    margin: 0 0 20px 0;
}

.competition-conditions__head p {
    max-width: 558px;
    margin: 20px auto 0 auto;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--body);
}

.competition-conditions__list {
    display: flex;
    gap: 0 60px;
    align-items: baseline;
}

.competition-conditions__left,
.competition-conditions__right {
    width: calc(50% - 60px);
    display: flex;
    flex-direction: column;
    gap: 28px 0;
}

.competition-conditions__item {
    display: flex;
    gap: 0 28px;
}

.competition-conditions__item-number {
    font-size: 35px;
    line-height: 35px;
    color: var(--blue);
    font-weight: 700;
}

.competition-conditions__item-info h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: var(--header);
    margin: 0 0 13px 0;
}

.competition-conditions__item-info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
    margin: 0;
}

@media(max-width: 991px) {
    .competition-conditions {
        padding: 60px 0;
    }

    .competition-conditions__list {
        flex-direction: column;
        gap: 28px 0;
    }

    .competition-conditions__left,
    .competition-conditions__right {
        width: 100%;
    }

    .competition-conditions__head p {
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }

    .competition-conditions__head h2 {
        text-align: left;
    }

    .competition-conditions__head {
        margin: 0 0 40px 0;
    }

    .competition-conditions__item-info h3 {
        font-size: 20px;
        line-height: 20px;
    }

    .competition-conditions__item-info p {
        font-size: 18px;
        line-height: 24px;
    }

    .follow-success__img::before {
        width: 329px;
        height: 378px;
    }
}

/* end competition-conditions */

/* faq */
.faq {
    padding: 0 0 128px 0;
}

.faq__head {
    margin: 0 0 40px 0;
}

.faq__head h2 {
    text-align: center;
    color: var(--black);
    margin: 0 0 20px 0;
}

.faq__head p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--body);
    max-width: 601px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    align-items: baseline;
    gap: 24px 30px;
    flex-wrap: wrap;
}

.faq__item {
    width: calc(50% - 30px);
    background: var(--white);
    border: 1px solid var(--blue);
    padding: 20px;
    border-radius: 10px;
}

.faq__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--body);
}

.faq__item-head span {
    width: 24px;
    height: 24px;
    background: linear-gradient(150deg, #FF8FB3 0%, #FF4D8F 47%, #C42673 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq__item-head span::before {
    content: '';
    width: 10px;
    height: 2px;
    background: #d9d9d9;
}

.faq__item-head span::after {
    content: '';
    width: 2px;
    height: 10px;
    background: #d9d9d9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s ease;
}

.faq__item-head.active span::after {
    opacity: 0;
}

.faq__item-body {
    display: none;
    padding: 20px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
    margin: 0;
}

.faq__item-body.show {
    display: block;
}

@media(max-width: 991px) {
    .faq {
        padding: 0 0 60px 0;
    }

    .faq__head h2 {
        text-align: left;
    }

    .faq__head p {
        text-align: left;
        font-size: 18px;
        line-height: 24px;
    }

    .faq__item {
        width: 100%;
    }

    .faq__list {
        gap: 20px 0;
    }

    .faq__item-head {
        font-size: 20px;
        line-height: 20px;
    }

    .faq__item-body {
        font-size: 18px;
        line-height: 27px;
    }
}

/* end faq */

/* our-client */
.our-client {
    padding: 0 0 128px 0;
}

.our-client__head {
    margin: 0 0 60px 0;
}

.our-client__head h2 {
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--black);
}

.our-client__head p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--body);
    max-width: 601px;
    margin: 0 auto;
}

.our-client__btn {
    margin: 60px auto 0 auto;
    max-width: 245px;
}

.our-client__row {
    display: grid;
    grid-template-columns: repeat(6, 200px);
    gap: 16px 30px;
}

.our-client-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.our-client-item a img {
    filter: grayscale(100%);
    transition: .2s ease-in;
}

.our-client-item a:hover img {
    filter: grayscale(0);
}

.our-client__mobile {
    display: none;
}

.client-slider-slide-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px 14px;
}

.client-slider-slide-item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.client-slider-slide-item__link img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: .2s ease-in;
}

.client-slider {
    padding: 0 0 26px 0;
}

.client-slider-pagination {
    position: absolute;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 2px;
}

.client-slider-pagination .swiper-pagination-bullet {
    padding: 0 !important;
    margin: 0 !important;
    width: 30px !important;
    height: 2px !important;
    background: #adadad;
    opacity: 1 !important;
    border-radius: 0 !important;
}

.client-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--blue);

}

@media(max-width: 1024px) {
    .our-client__row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 991px) {
    .our-client {
        padding: 0 0 60px 0;
    }

    .our-client__head {
        margin: 0 0 40px 0;
    }

    .our-client__head p {
        font-size: 18px;
        line-height: 27px;
    }

    .our-client__row {
        display: none;
    }

    .our-client__mobile {
        display: block;
    }
}


/* end our-client */

/* about-us */
.about-us {
    padding: 128px 0;
}

.about-us__row-img {
    display: flex;
    gap: 0 30px;
}

.about-us__row-img-left {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.about-us__row-img-right {
    padding: 60px 0 0 0;
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.about-us__item-img img {
    object-fit: contain;
    width: 100%;
}

.about-us__info-btn {
    margin: 60px 0 0 0;
}

.about-us__info {
    padding: 69px 0 0 0;
}

.about-us__info h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: var(--header);
    margin: 0 0 20px 0;
}

.about-us__info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
    margin: 0 0 20px 0;
}

.about-us__info ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}

.about-us__info ul li {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
}

.about-us__info ul li a {
    text-decoration: none;
    color: var(--black);
}

.about-us__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us-item {
    display: flex;
    flex-direction: column;
    gap: 13px 0;
    margin: 60px 0 0 0;
}

.about-us-item span {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: var(--blue);
    text-align: center;
}

.about-us-item h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--body);
}

@media(max-width: 991px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us .row {
        flex-direction: column-reverse;
        gap: 32px 0;
    }

    .about-us__info {
        padding: 0;
    }

    .about-us__info h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .about-us__info p {
        font-size: 18px;
        line-height: 30px;
    }

    .about-us__info ul {
        display: none;
    }

    .about-us__list {
        display: none;
    }

    .about-us__info-btn {
        margin: 40px 0 0 0;
    }

    .about-us__row-img {
        gap: 0 12px;
    }

    .about-us__row-img-left,
    .about-us__row-img-right {
        gap: 12px 0;
    }

    .about-us__row-img-right {
        padding: 36px 0 0 0;
    }
}

/* end about-us */

/* callback-participation */
.callback-participation {
    background-image: url("../images/bg-form.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.callback-participation::before {
    content: '';
    background: rgba(73, 46, 135, 0.85);
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.callback-participation__head {
    margin: 0 0 60px 0;
    position: relative;
    z-index: 2;
}

.callback-participation__head h2 {
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--white);
}

.callback-participation__head p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: var(--white);
    margin: 0 auto;
    max-width: 601px;
}

.callback-participation__form {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    max-width: 1120px;
    margin: 0 auto;
}

.callback-participation__form-top {
    display: flex;
    gap: 0 20px;
}

.callback-participation__form-top .callback-participation__form-control {
    max-width: calc(50% - 10px);
    width: 100%;
}

.callback-participation__form-control {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.callback-participation__form-control label {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.callback-participation__form-control input {
    border-radius: 6px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 54px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--input-text);
    border: none;
}

.callback-participation__form-control input::placeholder,
.callback-participation__form-control textarea::placeholder {
    color: var(--input-text);
}

.callback-participation__form-control span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.callback-participation__form-control-textarea textarea {
    resize: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--input-text);
    height: 250px;
    border: none;
}

.callback-participation__form-btn {
    border: none;
    margin: 40px auto 0 auto;
}

.callback-participation__form-btn--disabled {
    pointer-events: none;
}

@media(max-width: 991px) {
    .callback-participation {
        padding: 40px 0;
    }

    .callback-participation__form-top {
        flex-wrap: wrap;
    }

    .callback-participation__form-top .callback-participation__form-control {
        width: 100%;
        max-width: 100%;
    }

    .callback-participation__head p {
        font-size: 18px;
        line-height: 24px;
    }

    .callback-participation__head {
        margin: 0 0 40px 0;
    }
}

/* end callback-participation */

/* success */
.success {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success__info {
    margin: 60px 0 0 0;
}

.success__info h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: var(--header);
}

.success__info p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--body);
    margin: 20px 0 0 0;
}

.btn-home {
    margin: 60px auto 0 auto;
}

.success__img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* end success */