@charset "UTF-8";

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    display: block;
}

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

@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/GothamPro_Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/GothamPro_Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gotham Pro";
    src: url("../fonts/GothamPro_Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Euro";
    src: url("../fonts/Euro_Black.woff2") format("woff");
    font-weight: 900;
    font-style: normal;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

:root {
    --font-primary: "Gotham Pro", sans-serif;
    --font-secondary: "Euro", sans-serif;
    --color-text-primary: #636363;
    /* для основного текста */
    --color-bg-light: #fbfbfd;
    /* для светлого фона */
    --color-bg-dark: #181818;
    /* для темного фона */
    --color-bg-dark-alt: #111;
    /* для более глубокого темного оттенка */
    --total-black: #000;
    --color-accent-aqua: #04cfd1;
    /* акцентный цвет, оттенок аквамарина */
    --color-accent-teal: #009085;
    /* акцентный цвет, оттенок зеленовато-синего */
}

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

.scroll-lock {
    overflow: hidden !important;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-reset {
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
}

.btn-reset {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
}

.section {
    scroll-margin-top: -130px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-text-primary);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.main {
    flex-grow: 1;
    padding-bottom: 124px;
}

.container {
    margin-inline: auto;
    padding-inline: 20px;
    max-width: 1430px !important;
    width: 100%;
}

.section {
    padding-top: 130px;
}

.carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #000;
}

.carousel-buttons_theme_white {
    color: #fff;
}

.carousel-buttons__prev,
.carousel-buttons__next {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 58px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-bg-dark-alt);
}

.circle-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #181818;
    color: #181818;
    width: 50px;
    height: 50px;
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
}

.circle-link svg {
    width: 15px;
    height: 15px;
    transition: rotate 150ms ease-in-out;
}

.circle-link:active {
    background-color: #181818;
    color: #fff;
}

.fade-top {
    transform: translate(0, 40px);
    opacity: 0;
}

.fade-bottom {
    transform: translate(0, -40px);
    opacity: 0;
}

.fade-left {
    transform: translate(-40px, 0);
    opacity: 0;
}

.fade-right {
    transform: translate(40px, 0);
    opacity: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 32, 36, 0.8);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: none;
    --offsetTop: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    transform: translateY(calc(var(--offsetTop) + 20px));
    background-color: #181818;
    border-radius: 45px 45px 0 0;
    overflow-y: auto;
    padding-top: 70px;
    padding-right: 25px;
    padding-bottom: calc(50px + var(--offsetTop));
    padding-left: 25px;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out, transform 300ms ease-in-out;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(calc(var(--offsetTop)));
}

.mobile-menu__wrapper {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__socials .socials__link {
    border-color: #5e5e5e;
    color: #7a7a7a;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 24px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-bg-light);
    transition: color 150ms ease-in-out;
}

.mobile-nav__link.active {
    color: var(--color-accent-aqua);
}

.mobile-nav__link:active {
    color: var(--color-accent-aqua);
}

.info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 126%;
    color: #5e5e5e;
}

.contact-form {
    padding: 40px;
    border-radius: 25px;
    background-color: #fbfbfd;
    max-width: 750px;
    width: 100%;
}

.contact-form__top {
    margin-bottom: 50px;
}

.contact-form__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1;
    color: var(--color-bg-dark-alt);
}

.contact-form__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: var(--total-black);
}

.contact-form__body {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form__btn {
    width: 100%;
    padding: 28px 15px;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    color: #fbfbfd;
    border-radius: 36px;
    background-color: #04cfd1;
    transition: background-color 220ms ease-in-out;
}

.contact-form__btn:focus-visible {
    background-color: #0eb0b3;
}

.contact-form__btn:active {
    scale: 0.99;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.field.required .field__label {
    position: relative;
}

.field.required .field__label::after {
    content: "*";
    width: 0;
    height: 0;
    transform: translateX(4px);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fe3b30;
}

.field__textarea {
    padding: 16px;
    border: 1px solid #c5c6cc;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
    color: var(--total-black);
    height: 100px;
    resize: none;
}

.field__textarea::-moz-placeholder {
    color: #8f9098;
}

.field__textarea::placeholder {
    color: #8f9098;
}

.field__label {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-bg-dark-alt);
}

.field__input {
    padding: 12px 16px;
    border: 1px solid #c5c6cc;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
    color: var(--total-black);
}

.field__input::-moz-placeholder {
    color: #8f9098;
}

.field__input::placeholder {
    color: #8f9098;
}

.field__input:user-invalid {
    border-color: #fe3b30;
}

.btn {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #04cfd1;
    border-radius: 18px;
    text-align: center;
    font-weight: 500;
    color: #fbfbfd;
    transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}

.btn svg {
    flex-shrink: 0;
}

.btn:active {
    scale: 0.99;
}

.modal {
    position: fixed;
    z-index: 10;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px 15px;
    background-color: rgba(31, 32, 36, 0.8);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: grid;
    place-items: center;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.steps {
    max-width: 750px;
    width: 100%;
}

.steps__progress-wrapper {
    margin-bottom: 68px;
    display: none;
    gap: 5px;
}

.steps__progress-wrapper.active {
    display: flex;
}

.steps__progress {
    width: 100%;
    height: 10px;
    border: 1px solid #c5c6cc;
    border-radius: 2px;
    transition: background-color 220ms ease-in-out;
}

.steps__progress.active {
    background-color: #33c958;
}

.steps__inner {
    padding: 10px 40px 56px 40px;
    background-color: #fbfbfd;
    border-radius: 25px;
    display: none;
}

.steps__inner.active {
    display: block;
}

.steps__step {
    display: none;
}

.steps__step.active {
    display: block;
}

.steps__form {
    display: none;
}

.steps__form.active {
    display: block;
}

.steps__step-title {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #111;
}

.steps__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steps__option {
    padding: 12px 16px;
    font-family: var(--font-family);
    font-size: 16px;
    color: #111;
    border: 1px solid #c5c6cc;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 220ms ease-in-out, color 220ms ease-in-out;
}

.steps__option:has(input:checked) {
    background-color: #33c958;
    color: #fbfbfd;
}

.steps__option input {
    display: none;
}

.header {
    padding-top: 38px;
}

.header__container {
    max-width: 1920px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 80px;
}

.logo {
    display: block;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.menu__link {
    position: relative;
    display: block;
    padding-bottom: 8px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 18px;
    line-height: 130%;
    color: var(--color-bg-dark-alt);
}

.menu__link.active {
    font-weight: 500;
}

.menu__link.active::before {
    scale: 1;
}

.menu__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    scale: 0;
    transition: scale 150ms ease-in-out;
    background-color: var(--color-accent-aqua);
}

.socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-bg-dark-alt);
    border-radius: 50%;
    color: var(--color-bg-dark-alt);
    transition: border-color 150ms ease-in-out, color 150ms ease-in-out;
}

.burger {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-aqua);
    border-radius: 50%;
    display: none;
    overflow: hidden;
}

.burger.active svg:first-child {
    transform: translateY(-70px);
}

.burger.active svg:last-child {
    transform: translateY(0);
}

.burger svg {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    position: absolute;
    transition: transform 150ms ease-in-out;
}

.burger svg:last-child {
    transform: translateY(70px);
}

.footer {
    padding-bottom: 20px;
}

.footer__inner {
    padding: 70px 80px;
    display: flex;
    border-radius: 20px;
    background-color: #181818;
}

.footer__container {
    max-width: 1920px;
}

.footer__left {
    margin-right: 116px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    margin-bottom: 10px;
}

.footer__copy {
    font-size: 16px;
    line-height: 126%;
    color: #5e5e5e;
}

.footer__links {
    margin-right: 200px;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.footer__link {
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    color: #5e5e5e;
    transition: color 150ms ease-in-out;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 16px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fbfbfd;
}

.footer__contact svg {
    flex-shrink: 0;
}

.footer__item {
    display: flex;
    gap: 20px;
}

.footer__wrapper {
    flex-grow: 1;
    display: flex;
    gap: 20px;
}

.footer__right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__socials .socials__link {
    color: #5e5e5e;
    border-color: #5e5e5e;
}

.footer__designer-copy {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    color: #5e5e5e;
}

.footer__designer-copy span {
    text-decoration: underline;
}

.hero {
    padding-top: 20px;
}

.hero__container {
    max-width: 1920px;
}

.hero__inner {
    overflow: hidden;
    min-height: 950px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    border-radius: 45px;
    background-color: #001920;
    background: url("../img/hero.jpg") no-repeat center/cover;
}

.hero__top {
    display: flex;
    flex-direction: column;
}

.hero__title {
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 54px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: #fbfbfd;
}

.hero__text {
    margin: 0 auto;
    max-width: 582px;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #fbfbfd;
}

.hero__bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hero__info {
    max-width: 324px;
    font-size: 20px;
    line-height: 130%;
    color: #fbfbfd;
}

.hero__info span {
    font-weight: 500;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.hero__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    color: #fbfbfd;
    border: 1px solid #fbfbfd;
    border-radius: 48px;
    transition: color 150ms ease-in-out, border-color 150ms ease-in-out;
}

.hero__btn {
    flex-shrink: 0;
    padding: 40px 54px;
    font-size: 28px;
    line-height: 130%;
    border-radius: 48px;
}

.hero__btn svg {
    display: none;
}

.about__container {
    display: flex;
    gap: 35px;
}

.about__user {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__user-img {
    margin-bottom: 15px;
    width: 240px;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.about__user-name {
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #111;
}

.about__user-type {
    display: block;
}

.about__info {
    padding: 30px 25px;
    border-radius: 15px 45px 45px 45px;
    background-color: #f3f3f3;
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    color: #111;
}

.about__info p {
    overflow: hidden;
    white-space: initial;
    /*text-overflow: ellipsis;*/
    /*line-clamp: 9;*/
    /*-webkit-line-clamp: 9;*/
    /*-webkit-box-orient: vertical;*/
    /*display: block;*/
}

.about__info p > span {
    display: block;
    padding-top: 25px;
}

.about__info b {
    font-weight: 500;
}

.about__btn {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--color-accent-teal);
    transition: color 150ms ease-in-out;
}

.about__btn:active {
    color: var(--color-accent-aqua);
}

.experience__title {
    margin-bottom: 52px;
}

.experience__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: flex-start;
    gap: 35px;
}

.experience__info {
    grid-column: 8 span;
}

.experience__join-card {
    grid-column: 4 span;
}

.experience-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 78px;
}

.experience-list__item {
    display: flex;
    align-items: center;
    gap: 32px;
}

.experience-list__count {
    width: 60px;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 45px;
    line-height: 150%;
    color: #009085;
}

.experience-list__text-wrapper {
    position: relative;
    padding-left: 42px;
}

.experience-list__text-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0, 144, 133) 0%, rgba(0, 144, 133, 0.4) 100%);
}

.experience-list__title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 36px;
    color: #000;
}

.experience-list__text {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    color: #636363;
}

.join-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    padding: 114px 25px 56px 25px;
    width: 440px;
    height: 500px;
    background-color: #009085;
    -webkit-mask-image: url("../img/svg_mask.png");
    mask-image: url("../img/svg_mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    background-image: url("../img/mask_lines.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.join-card__title {
    font-weight: 500;
    font-size: 32px;
    text-align: center;
    color: #fbfbfd;
    line-height: normal;
}

.join-card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fbfbfd;
    padding: 0 5px;
}

.join-card__text span {
    font-weight: 500;
}

.join-card__btn-wrapper {
    margin-top: auto;
    padding: 0 30px;
}

.join-card__btn {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 15px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #fbfbfd;
    background-color: #454646;
    border-radius: 18px;
    transition: background-color 150ms ease-in-out;
}

.join-card__btn:active {
    background-color: var(--color-bg-dark);
    scale: 0.99;
}

.benefits__inner {
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.benefits__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    gap: 35px;
}

.benefits__cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    padding: 36px 15px 15px 15px;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f3f3f3;
}

.benefits__item:nth-child(2) {
    background: linear-gradient(rgba(24, 24, 24, 0.7), rgba(24, 24, 24, 0.7)), url("../img/black_board.jpg") no-repeat center/cover;
}

.benefits__item:nth-child(2) .benefits__title {
    color: #fbfbfd;
}

.benefits__item:nth-child(2) .benefit-card {
    background-color: #f3f3f3;
}

.benefits__item:nth-child(2) .benefit-card__top {
    background-color: #e8e8e8;
}

.benefits__item:nth-child(3) {
    background: linear-gradient(rgba(0, 144, 133, 0.7), rgba(0, 144, 133, 0.7)), url("../img/green_board.jpg") no-repeat center/cover;
}

.benefits__item:nth-child(3) .benefits__title {
    color: #fbfbfd;
}

.benefits__item:nth-child(3) .benefit-card {
    background-color: #f3f3f3;
}

.benefits__item:nth-child(3) .benefit-card__top {
    background-color: #e8e8e8;
}

.benefits__title {
    margin-bottom: 24px;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 32px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: #111;
}

.benefits__bottom {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.benefits__subtitle {
    max-width: 506px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #111;
}

.benefits__btn {
    text-transform: uppercase;
    padding: 22px 15px;
    max-width: 328px;
    width: 100%;
    border-radius: 18px;
}

.benefit-card {
    padding: 24px 12px 15px 12px;
    border-radius: 25px;
    background-color: #e8e8e8;
}

.benefit-card__top {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background-color: #f3f3f3;
    border-radius: 999px;
}

.benefit-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.benefit-card__title {
    font-weight: 500;
    font-size: 34px;
    color: #111;
}

.benefit-card__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    color: #636363;
}

.benefit-card__link {
    display: none;
}

.work__top {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.work__subtitle {
    max-width: 392px;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #111;
}

.work-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    counter-reset: cards;
}

.work-cards__item {
    position: relative;
    counter-increment: cards;
}

.work-cards__item .work-card::after {
    content: "0" counter(cards);
    position: absolute;
    z-index: 0;
    bottom: -73px;
    right: -72px;
    font-weight: 700;
    font-size: 250px;
    line-height: 130%;
    background: linear-gradient(180deg, #dcdcdc 0%, #f3f3f3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-cards__item:first-child .work-card::after {
    right: -26px;
}

.work-cards__item::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background-color: #9f9f9f;
    display: none;
}

.work-cards__item:nth-child(3n+2)::before,
.work-cards__item:nth-child(3n+3)::before {
    display: block;
}

.work-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 40px 25px 18px 25px;
    background-color: #f3f3f3;
    border-radius: 20px;
    transition: background-color 220ms linear, box-shadow 220ms linear;
}

.work-card__inner {
    position: relative;
    z-index: 1;
}

.work-card__num {
    position: absolute;
    z-index: -1;
    bottom: -73px;
    right: -26px;
    font-weight: 700;
    font-size: 250px;
    line-height: 130%;
    background: linear-gradient(180deg, #dcdcdc 0%, #f3f3f3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-card__icon {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
}

.work-card__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    color: #111;
}

.work-card__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #111;
}

.banner {
    padding-right: 15px;
    padding-left: 15px;
}

.banner__inner {
    padding: 120px 0;
    position: relative;
    background-color: #181818;
    background-image: url("../img/banner_bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 45px;
}

.banner__inner::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 660px;
    background-image: url("../img/banner_line.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner__container {
    position: relative;
    z-index: 1;
}

.banner__title {
    margin-bottom: 16px;
    max-width: 658px;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 58px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fbfbfd;
}

.banner__subtitle {
    max-width: 483px;
    font-weight: 400;
    font-size: 18px;
    line-height: 126%;
    color: #fbfbfd;
}

.banner__btn {
    margin-top: 34px;
    padding: 25px 35px;
    font-size: 18px;
    text-transform: uppercase;
}

.banner__btn svg {
    flex-shrink: 0;
}

.services__inner {
    padding: 130px 0;
    border-radius: 45px;
    background-color: #181818;
}

.services__container {
    display: flex;
    flex-direction: column;
}

.services__top {
    margin: 0 auto;
    margin-bottom: 64px;
    max-width: 376px;
}

.services__title {
    margin-bottom: 20px;
    color: #fbfbfd;
}

.services__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #fbfbfd;
}

.services__btn {
    margin: 0 auto;
    max-width: 435px;
    width: 100%;
    padding: 40px 15px;
    font-size: 28px;
    line-height: 130%;
    color: #fbfbfd;
    border-radius: 48px;
    text-transform: uppercase;
}

.services__btn svg {
    display: none;
}

.services__cards {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.services-card {
    padding: 25px;
    border-radius: 20px 55px 20px 20px;
    background-color: #fbfbfd;
    border: 3px solid transparent;
    transition: border-color 220ms linear, box-shadow 220ms linear;
}

.services-card__top {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-card__icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #009085;
    border-radius: 50%;
}

.services-card__icon {
    width: 25px;
    height: 25px;
}

.services-card__title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 22px;
    line-height: 96%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #181818;
}

.services-card__actions {
    display: flex;
    gap: 10px;
}

.services-card__btn {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    padding: 14px 15px;
    width: 100%;
    border: 1px solid #181818;
    border-radius: 15px;
    font-weight: 500;
    color: #181818;
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
}

.services-card__btn:active {
    background-color: #181818;
    color: #fff;
    scale: 0.99;
}

.services-card__link {
    flex-shrink: 0;
}

.features__inner {
    display: flex;
    flex-direction: column;
}

.features__top {
    margin: 0 auto;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 492px;
    text-align: center;
}

.features__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #181818;
}

.features__carousel-wrapper {
    margin-bottom: 70px;
}

.features__carousel {
    overflow: visible;
}

.features__carousel .swiper-slide {
    max-width: 440px;
    width: 100%;
    height: auto;
}

.features__carousel .swiper-slide.swiper-slide-active .feature-card {
    background-color: #fff;
    box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.25);
}

.features__carousel-btns {
    display: none;
    margin-top: 50px;
}

.features__banners {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 35px;
}

.features__join-card {
    position: relative;
    z-index: 1;
    grid-column: 4 span;
}

.features__img-wrapper {
    position: relative;
    z-index: 1;
    grid-column: 8 span;
    border-radius: 45px;
    overflow: hidden;
}

.features__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-card {
    position: relative;
    height: 100%;
    padding: 40px 25px;
    padding-bottom: 250px;
    border-radius: 30px;
    background-color: #f3f3f3;
    overflow: hidden;
    transition: background-color 300ms linear, box-shadow 300ms linear;
}

.feature-card::before {
    content: "";
    position: absolute;
    bottom: -48px;
    right: 0;
    width: 250px;
    height: 250px;
    background-position: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.feature-card__num {
    margin-bottom: 50px;
    width: -moz-max-content;
    width: max-content;
    border-radius: 999px;
    padding: 8px 20px;
    background-color: #009085;
    font-size: 18px;
    color: #fbfbfd;
}

.feature-card__title {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 32px;
    color: #111;
}

.feature-card__text {
    font-size: 18px;
}

.feature-card--1::before {
    background-image: url("../img/checklist_desktop.png");
}

.feature-card--2::before {
    background-image: url("../img/users_desktop.png");
}

.feature-card--3::before {
    background-image: url("../img/profit.png");
}

.feature-card--4::before {
    background-image: url("../img/donut_chart_desktop.png");
}

.feature-card--5::before {
    background-image: url("../img/chat_bubble_desktop.png");
}

.cooperate__inner {
    padding-top: 130px;
    padding-bottom: 124px;
    border-radius: 45px;
    background-color: #181818;
}

.cooperate__container {
    display: flex;
    flex-direction: column;
}

.cooperate__top {
    margin: 0 auto;
    margin-bottom: 64px;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cooperate__title {
    margin-bottom: 20px;
    color: #fbfbfd;
}

.cooperate__subtitle {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    line-height: 130%;
    color: #fbfbfd;
}

.cooperate__carousel-btns {
    display: none;
}

.cooperate__carousel {
    overflow: visible;
}

.cooperate__carousel .swiper-slide {
    max-width: 440px;
    width: 100%;
    height: auto;
    transition: scale 200ms ease-in-out;
}

.cooperate-card {
    height: 100%;
}

.cooperate-card__img {
    width: 100%;
    height: 315px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cooperate-card__title {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #fbfbfd;
    text-align: center;
}

.partners__inner {
    padding-top: 130px;
    padding-bottom: 124px;
    border-radius: 45px;
    background-color: #111;
    background-image: url("../img/decor_bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.partners__top {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners__title {
    margin-bottom: 20px;
    color: #fbfbfd;
}

.partners__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #fbfbfd;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 35px;
    align-items: flex-start;
}

.partner-cards__item {
    grid-column: 4 span;
}

.partner-cards__item-last {
    grid-column: 8 span;
    height: 250px;
}

.partner-card__img {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px 80px 30px 30px;
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.partner-card__title {
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    line-height: 130%;
    color: #fbfbfd;
}

.another-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px 80px 30px 30px;
    background-color: #fff;
}

.another-card__img {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    padding: 10px;
    background: url("../img/winking_face.png") no-repeat center/cover;
}

.another-card__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #111;
}

.guidance__inner {
    background-color: #181818;
    border-radius: 45px;
    padding-bottom: 180px;
}

.guidance__top {
    margin-bottom: 64px;
}

.guidance__title {
    margin-bottom: 20px;
    color: #fbfbfd;
}

.guidance__subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #fbfbfd;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.card {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 45px;
}

.card__link {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
}

.card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    flex-grow: 1;
}

.card__img {
    width: 100%;
    height: 390px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
}

.card__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #fbfbfd;
}

.card__subtitle {
    font-size: 18px;
    line-height: 130%;
    color: #a7a7a7;
}

.card__bottom {
    display: flex;
    gap: 10px;
}

.card__btn {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    padding: 10px 10px;
    height: 60px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #fbfbfd;
    border-radius: 15px;
}

.card__circle-link {
    position: relative;
    z-index: 2;
    border: 1px solid #fff;
    color: #fff;
    opacity: 0.2;
    transition: opacity 150ms ease-in-out;
    height: 60px;
    width: 60px;
}

.about-us {
    padding-top: 70px;
}

.about-us__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px;
}

.about-us__img-wrapper {
    grid-column: 4 span;
    min-width: 300px;
}

.about-us__img {
    border-radius: 45px;
    width: 100%;
    max-height: 440px;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-us__info {
    display: flex;
    flex-direction: column;
    grid-column: 8 span;
}

.about-us__title {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 32px;
    color: #111;
}

.about-us__text {
    font-size: 18px;
    line-height: 150%;
    color: #636363;
}

.about-us__text strong {
    font-weight: 500;
}

.about-us__text + .about-us__text {
    margin-top: 15px;
    margin-bottom: 10px;
}

.about-us__btn {
    margin-top: auto;
    padding: 40px 10px;
    max-width: 440px;
    width: 100%;
    border-radius: 48px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    color: #fbfbfd;
}

.news__top {
    margin-bottom: 64px;
}

.news__title {
    margin-bottom: 20px;
}

.news__subtitle {
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #181818;
}

.news__carousel .swiper-slide {
    max-width: 440px;
    width: 100%;
}

.news__carousel-btns {
    display: none;
    margin-top: 90px;
}

.news-card {
    position: relative;
    transition: opacity 150ms ease-in-out;
}

.news-card__link {
    position: absolute;
    inset: 0;
}

.news-card__img {
    margin-bottom: 30px;
    height: 280px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 45px;
}

.news-card__title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #111;
}

.news-card__text {
    font-size: 18px;
    line-height: 130%;
    color: #a7a7a7;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@supports (-webkit-line-clamp: 3) {
    .news-card__text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

.alert {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 15px;
    max-width: 290px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    background-color: var(--color-accent-teal);
    border-radius: 12px;
    animation: anim 220ms linear forwards;
    box-shadow: 0px 5px 10px 2px rgba(0, 144, 133, 0.2);
}

@keyframes anim {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(20px);
    }
}

.page__header .menu__link {
    color: #111;
}

.page__section {
    padding-top: 60px;
}

.brif-form {
    box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.25);
    background: #fbfbfd;
    border-radius: 25px;
    padding-top: 70px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brif-form__title {
    font-family: var(--second-family);
    font-weight: 900;
    font-size: 58px;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: #111;
}

.brif-form__btn {
    margin-top: 50px;
    width: 100%;
    padding: 28px 15px;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    color: #fbfbfd;
    border-radius: 36px;
    background-color: #04cfd1;
    transition: background-color 220ms ease-in-out;
}

.brif-form__btn:focus-visible {
    background-color: #0eb0b3;
}

.brif-form__btn:active {
    scale: 0.99;
}

.checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.checklist__option {
    display: block;
    min-width: 50px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    flex-grow: 1;
    cursor: pointer;
    padding: 20px 0;
    transition: background-color 220ms ease-in-out, color 220ms ease-in-out;
    overflow: hidden;
}

.checklist__option:active {
    scale: 0.99;
}

.checklist__option:has(:focus-visible) {
    outline: 1px solid #222;
}

.checklist__option.agree {
    color: #33c958;
    border: 1px solid #33c958;
}

.checklist__option.agree:has(input:checked) {
    background-color: #33c958;
    color: #fff;
}

.checklist__option.reject {
    border: 1px solid #fe3b30;
    color: #fe3b30;
}

.checklist__option.reject:has(input:checked) {
    background-color: #fe3b30;
    color: #fff;
}

.checklist__option.other {
    border: 1px solid #8f9098;
    color: #8f9098;
}

.checklist__option.other:has(input:checked) {
    background-color: #8f9098;
    color: #fff;
}

.checklist__option input {
    position: absolute;
    opacity: 0;
    scale: 0;
}

@media screen and (max-width: 1700px) {
    .footer__left {
        margin-right: 50px;
    }

    .footer__links {
        margin-right: 50px;
    }
}

@media screen and (max-width: 1440px) {
    .header {
        padding-top: 15px;
    }

    .header__inner {
        padding-left: 0;
    }

    .menu {
        gap: 20px;
    }

    .footer__list {
        gap: 15px;
    }

    .footer__right {
        gap: 10px;
    }

    .hero__inner {
        padding: 48px 25px 25px 25px;
    }

    .benefits__inner {
        gap: 30px;
    }

    .benefits__items {
        gap: 15px;
    }
}

@media screen and (max-width: 1400px) {
    .footer__inner {
        display: flex;
        justify-content: space-between;
        padding-bottom: 50px;
        padding-right: 70px;
        padding-left: 70px;
        gap: 40px;
    }

    .footer__left {
        margin-right: 0;
        gap: 22px;
    }

    .footer__links {
        margin-right: 0;
    }

    .footer__item {
        flex-direction: column;
        gap: 22px;
    }

    .footer__wrapper {
        flex-direction: column;
        flex-grow: 0;
        gap: 40px;
    }
}

@media screen and (max-width: 1200px) {
    .services__cards {
        gap: 10px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .main {
        padding-bottom: 80px;
    }

    .mobile-menu {
        display: grid;
    }

    .header__nav {
        display: none;
    }

    .header__socials {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .logo img {
        width: 94px;
        height: 40px;
    }

    .hero {
        padding-top: 15px;
    }

    .hero__link {
        display: none;
    }

    .about__container {
        gap: 8px;
        padding: 0 56px;
    }

    .about__user-img {
        width: 90px;
    }

    .about__user-name {
        font-size: 16px;
    }

    .about__user-type {
        font-size: 14px;
    }

    .about__info {
        font-size: 18px;
        border-radius: 10px 30px 30px 30px;
    }

    .experience-list {
        gap: 40px;
    }

    .experience-list__item {
        gap: 24px;
    }

    .experience-list__text-wrapper {
        padding-left: 24px;
    }

    .join-card__title {
        font-size: 24px;
    }

    .join-card__btn-wrapper {
        padding: 0;
    }

    .join-card__btn {
        font-size: 16px;
        padding: 22px 15px;
        border-radius: 12px;
    }

    .benefits__items {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__item {
        padding-top: 30px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }

    .benefits__title {
        margin-bottom: 36px;
        font-size: 46px;
    }

    .work-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .work-cards .work-card::before {
        display: none;
    }

    .work-cards .work-card:nth-child(2n)::before {
        display: block;
        content: "";
        position: absolute;
        z-index: -1;
        top: 50%;
        transform: translateY(-50%);
        left: -50px;
        width: 100%;
        height: 2px;
        background-color: #9f9f9f;
    }

    .work-cards__item:nth-child(3n+2)::before,
    .work-cards__item:nth-child(3n+3)::before {
        display: none;
    }

    .work-cards__item:nth-child(2n)::before {
        display: block;
    }

    .work-card {
        padding: 40px 25px 32px 25px;
    }

    .banner__inner {
        overflow: hidden;
        padding-bottom: 280px;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner__inner {
        padding-top: 60px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 513px;
    }

    .banner__inner::before {
        right: auto;
        bottom: -242px;
        left: 50%;
        transform: translateX(-50%);
        width: 1141px;
        height: 755px;
        background-image: url("../img/banner_line_md.png");
    }

    .banner__title {
        margin: 0 auto;
        margin-bottom: 18px;
    }

    .banner__subtitle {
        max-width: 510px;
        margin: 0 auto;
    }

    .services__cards {
        margin-bottom: 60px;
        grid-template-columns: repeat(2, 1fr);
    }

    .services-card {
        padding-top: 35px;
    }

    .features__subtitle {
        font-size: 16px;
        line-height: 126%;
    }

    .features__carousel-wrapper {
        margin-bottom: 88px;
    }

    .features__carousel-btns {
        display: flex;
    }

    .features__join-card {
        grid-column: 12 span;
        margin: 0 auto;
    }

    .features__img-wrapper {
        grid-column: 12 span;
    }

    .feature-card::before {
        width: 200px;
        height: 200px;
        bottom: -30px;
    }

    .feature-card {
        border-radius: 20px;
        padding-bottom: 190px;
    }

    .partner-cards {
        gap: 15px 30px;
        padding: 0 50px;
    }

    .partner-cards__item-last {
        height: 110px;
        border-radius: 10px 45px 10px 10px;
    }

    .partner-card__img {
        height: 110px;
        border-radius: 10px 45px 10px 10px;
    }
}

@media screen and (max-width: 992px) {
    .experience__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .about-us__container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-us__img {
        height: 200px;
    }

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

    .about-us__text + .about-us__text {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .about-us__btn {
        margin: 0 auto;
        margin-top: 40px;
        max-width: 340px;
        padding: 28px 15px;
        font-size: 20px;
        border-radius: 12px;
    }

    .page__section {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        scroll-margin-top: -100px;
    }

    .section {
        padding-top: 100px;
    }

    .title {
        font-size: 46px;
    }

    .hero__inner {
        min-height: 1095px;
        padding: 100px 50px 50px 50px;
    }

    .hero__title {
        margin-bottom: 20px;
        line-height: 100%;
        letter-spacing: -0.04em;
        word-break: break-word;
    }

    .hero__bottom {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .hero__info {
        max-width: 420px;
        font-size: 16px;
        line-height: 130%;
        text-align: center;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__btn {
        width: 100%;
        padding: 24px 30px;
        border-radius: 25px;
        line-height: normal;
    }

    .experience__title {
        margin-bottom: 46px;
    }

    .experience__info {
        padding: 0 30px;
    }

    .experience-list__title {
        margin-bottom: 10px;
    }

    .join-card {
        gap: 25px;
    }

    .benefits__container {
        padding: 0 50px;
    }

    .benefits__bottom {
        gap: 40px;
    }

    .benefits__btn {
        max-width: 340px;
        border-radius: 12px;
        padding: 20px 15px;
        font-size: 20px;
    }

    .benefits__btn svg {
        width: 35px;
        height: 35px;
    }

    .benefit-card {
        padding-top: 24px;
        padding-right: 25px;
        padding-bottom: 15px;
        padding-left: 25px;
    }

    .benefit-card__top {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 25px;
    }

    .benefit-card__icon {
        width: 40px;
        height: 40px;
    }

    .benefit-card__link {
        display: flex;
        margin-left: auto;
    }

    .work__top {
        margin-bottom: 54px;
    }

    .work__subtitle {
        max-width: 100%;
    }

    .work-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }

    .work-card__icon {
        margin-bottom: 30px;
    }

    .work-card__title {
        margin-bottom: 10px;
    }

    .banner__inner::before {
        left: -300px;
        transform: translateX(0);
    }

    .banner__btn {
        margin-top: 54px;
        padding: 20px 54px;
        max-width: 340px;
        width: 100%;
        font-size: 20px;
    }

    .banner__btn svg {
        width: 35px;
        height: 35px;
    }

    .services__inner {
        padding: 100px 0;
    }

    .services__top {
        margin-bottom: 54px;
    }

    .services__title {
        margin-bottom: 18px;
    }

    .services__btn {
        max-width: 340px;
        border-radius: 12px;
        padding: 20px 42px;
        font-size: 20px;
    }

    .services__btn svg {
        display: block;
    }

    .services__cards {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 15px;
    }

    .services-card__top {
        margin-bottom: 30px;
        gap: 20px;
    }

    .services-card__btn {
        padding: 12px 5px;
    }

    .features__top {
        margin-bottom: 54px;
    }

    .features__banners {
        position: relative;
        overflow: hidden;
        border-radius: 45px;
        gap: 10px;
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
    }

    .features__banners::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../img/black_board.jpg") no-repeat center/cover;
    }

    .cooperate__inner {
        padding-top: 100px;
        padding-bottom: 94px;
    }

    .cooperate__top {
        margin-bottom: 54px;
        max-width: 550px;
    }

    .cooperate__subtitle {
        max-width: 340px;
    }

    .cooperate__carousel .swiper-slide {
        scale: 0.8;
    }

    .cooperate__carousel .swiper-slide.swiper-slide-active {
        scale: 1;
    }

    .cooperate-card__img {
        height: 350px;
    }

    .partners__inner {
        padding-top: 100px;
        padding-bottom: 67px;
    }

    .partners__top {
        margin-bottom: 54px;
    }

    .partners__title {
        margin-bottom: 24px;
    }

    .partner-card__title {
        margin-top: 10px;
    }

    .another-card__img {
        padding: 0;
        width: 20px;
        height: 20px;
    }

    .another-card__text {
        font-size: 18px;
    }

    .guidance__inner {
        padding-bottom: 100px;
    }

    .guidance__top {
        margin-bottom: 54px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        border: none;
        padding: 0;
    }

    .card__inner {
        gap: 30px;
        flex-direction: row;
    }

    .card__wrapper {
        gap: 30px;
    }

    .card__top {
        max-width: 168px;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 10px;
    }

    .card__img {
        height: 100%;
        grid-area: top;
        border-radius: 10px;
    }

    .card__title {
        font-size: 22px;
    }

    .card__btn {
        height: 55px;
    }

    .card__circle-link {
        width: 55px;
        height: 55px;
    }

    .about-us__container {
        gap: 35px;
    }

    .news__top {
        margin-bottom: 54px;
    }

    .news__carousel-btns {
        display: flex;
    }

    .news-card__img {
        margin-bottom: 25px;
        height: 180px;
        border-radius: 25px;
    }

    .news-card__title {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .news-card__text {
        font-size: 16px;
    }

    .brif-form {
        padding: 24px 20px;
    }

    .brif-form__title {
        font-size: 34px;
    }

    .checklist__option {
        padding: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .footer {
        padding-bottom: 0;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 40px;
        gap: 50px;
        border-radius: 0;
    }

    .footer__container {
        padding: 0;
    }

    .footer__left {
        gap: 15px;
    }

    .footer__copy {
        font-size: 14px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__contact {
        font-size: 14px;
    }

    .footer__item {
        gap: 15px;
    }

    .footer__wrapper {
        gap: 30px;
    }

    .footer__right {
        gap: 20px;
    }

    .footer__designer-copy {
        font-size: 14px;
    }

    .work__top {
        margin-bottom: 44px;
        gap: 25px;
    }

    .work__subtitle {
        max-width: 310px;
        font-size: 16px;
        line-height: 126%;
    }

    .work-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .work-cards .work-card::before {
        display: none;
    }

    .work-cards .work-card:not(:first-child)::before {
        display: block;
        content: "";
        position: absolute;
        z-index: -1;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background-color: #9f9f9f;
    }

    .work-cards__item:nth-child(2n)::before {
        display: none;
    }

    .work-cards__item:not(:first-child)::before {
        top: -50px;
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

    .work-card__icon {
        margin-bottom: 28px;
        width: 40px;
        height: 40px;
    }

    .work-card__title {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .work-card__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .partners__inner {
        padding-top: 80px;
        padding-bottom: 65px;
    }

    .partners__subtitle {
        text-align: center;
    }

    .partner-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px 10px;
        padding: 0;
    }

    .partner-cards__item {
        grid-column: 2 span;
    }

    .partner-cards__item-last {
        grid-column: 2 span;
    }

    .another-card {
        flex-direction: column;
        text-align: center;
    }

    .another-card__img {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 600px) {
    .section {
        padding-top: 80px;
    }

    .title {
        font-size: 28px;
    }

    .hero__inner {
        padding: 48px 25px 25px 25px;
        min-height: 590px;
    }

    .hero__title {
        margin-bottom: 15px;
        font-size: 30px;
        line-height: 110%;
        letter-spacing: -0.04em;
    }

    .hero__btn {
        padding: 28px 10px;
        width: 100%;
        font-size: 20px;
    }

    .hero__btn svg {
        display: block;
    }

    .about__container {
        flex-direction: column;
        gap: 25px;
        padding: 0 25px;
    }

    .about__user-img {
        width: 170px;
    }

    .about__user-name {
        font-size: 18px;
    }

    .about__user-type {
        font-size: 16px;
    }

    .about__info {
        border-radius: 30px;
    }

    .about__info {
        padding: 16px 24px;
        border-radius: 30px;
        font-size: 18px;
    }

    .experience__title {
        margin-bottom: 40px;
    }

    .experience__info {
        padding: 0;
    }

    .experience-list__count {
        font-size: 26px;
        width: 35px;
    }

    .experience-list__title {
        margin-bottom: 5px;
        font-size: 24px;
    }

    .experience-list__text {
        font-size: 16px;
    }

    .benefits__container {
        padding: 0 20px;
    }

    .benefits__item {
        border-radius: 30px;
        padding: 30px 10px 10px 10px;
        gap: 10px;
    }

    .benefits__title {
        font-size: 24px;
    }

    .benefit-card {
        padding: 25px 15px 18px 15px;
        border-radius: 20px;
    }

    .benefit-card__top {
        margin-bottom: 15px;
        gap: 10px;
        padding: 15px 20px;
    }

    .benefit-card__icon {
        width: 30px;
        height: 30px;
    }

    .benefit-card__title {
        font-size: 24px;
    }

    .benefit-card__text {
        font-size: 16px;
        padding: 0 5px;
    }

    .benefit-card__link {
        display: none;
    }

    .banner__inner {
        padding-top: 80px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 240px;
    }

    .banner__inner::before {
        background-image: url("../img/banner_line_mobile.png");
        width: 491px;
        height: 385px;
        left: 50%;
        bottom: -180px;
        transform: translateX(-50%);
    }

    .banner__title {
        margin-bottom: 24px;
    }

    .banner__subtitle {
        max-width: 320px;
        font-size: 16px;
    }

    .banner__btn {
        margin-top: 45px;
        max-width: 290px;
        font-size: 16px;
        padding: 20px 48px;
    }

    .services__inner {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .services__top {
        margin-bottom: 45px;
    }

    .services__title {
        margin-bottom: 24px;
    }

    .services__subtitle {
        font-size: 16px;
    }

    .services__cards {
        padding: 0;
    }

    .services-card__top {
        gap: 10px;
    }

    .services-card__icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .services-card__icon {
        width: 15px;
        height: 15px;
    }

    .services-card__title {
        font-size: 20px;
    }

    .features__top {
        margin-bottom: 35px;
        gap: 24px;
    }

    .features__subtitle {
        max-width: 200px;
    }

    .feature-card__num {
        font-size: 16px;
    }

    .feature-card__title {
        margin-bottom: 22px;
        font-size: 24px;
    }
}

@media screen and (max-width: 540px) {
    .card {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px;
    }

    .card__inner {
        flex-direction: column;
        gap: 10px;
    }

    .card__top {
        padding: 0;
        border: none;
        max-width: 100%;
    }

    .card__img {
        border-radius: 25px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__subtitle {
        font-size: 14px;
    }

    .card__btn {
        font-size: 16px;
        height: 50px;
    }

    .card__circle-link {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .section {
        scroll-margin-top: -80px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form__top {
        margin-bottom: 25px;
    }

    .contact-form__title {
        font-size: 20px;
    }

    .contact-form__text {
        font-size: 16px;
    }

    .contact-form__body {
        margin-bottom: 24px;
    }

    .contact-form__btn {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 14px;
    }

    .steps__progress-wrapper {
        margin-bottom: 25px;
    }

    .steps__inner {
        padding: 20px;
        border-radius: 16px;
    }

    .steps__step-title {
        margin-bottom: 25px;
        font-size: 20px;
    }

    .steps__option {
        padding: 10px 15px;
        font-size: 14px;
    }

    .header__container {
        padding-inline: 25px;
    }

    .hero__container {
        padding: 0;
    }

    .hero__text {
        font-size: 16px;
        line-height: 115%;
    }

    .hero__info {
        max-width: 100%;
        width: 100%;
        font-size: 14px;
    }

    .about__user-img {
        width: 90px;
    }

    .about__info p {
        display: -webkit-box;
    }

    .about__btn {
        display: flex;
    }

    .join-card {
        padding-top: 50px;
        max-width: 330px;
        height: 400px;
        width: 100%;
        -webkit-mask-image: url("../img/svg_mask_mob.png");
        mask-image: url("../img/svg_mask_mob.png");
    }

    .benefits__cards {
        gap: 10px;
    }

    .benefits__bottom {
        gap: 34px;
    }

    .benefits__btn {
        max-width: 290px;
        padding: 22px 15px;
        font-size: 16px;
    }

    .benefits__btn svg {
        width: 25px;
        height: 25px;
    }

    .benefit-card {
        padding-bottom: 8px;
    }

    .benefit-card__title {
        font-size: 16px;
    }

    .banner__inner::before {
        left: 55%;
    }

    .banner__btn {
        max-width: 290px;
        width: 100%;
    }

    .services__btn {
        padding: 28px 15px;
        font-size: 18px;
        max-width: 100%;
        border-radius: 25px;
    }

    .services__btn svg {
        display: none;
    }

    .services__cards {
        margin-bottom: 40px;
        gap: 10px;
    }

    .features__banners {
        max-width: 300px;
    }

    .features__banners::before {
        top: 66px;
    }

    .cooperate__inner {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .cooperate__top {
        margin-bottom: 45px;
    }

    .cooperate__title {
        margin-bottom: 24px;
    }

    .cooperate__carousel-btns {
        margin-top: 40px;
        display: flex;
    }

    .cooperate__carousel .swiper-slide {
        max-width: 340px;
        scale: 1;
    }

    .cooperate-card__img {
        height: 224px;
    }

    .cooperate-card__title {
        margin-top: 10px;
    }

    .partners__top {
        margin-bottom: 45px;
    }

    .partners__subtitle {
        font-size: 16px;
        line-height: 126%;
    }

    .partner-card__title {
        font-size: 14px;
    }

    .another-card__text {
        font-size: 14px;
        line-height: 95%;
        font-weight: 400;
        text-align: center;
    }

    .guidance__inner {
        padding-bottom: 80px;
    }

    .guidance__top {
        margin-bottom: 45px;
    }

    .guidance__subtitle {
        font-size: 16px;
        line-height: 126%;
    }

    .about-us__img-wrapper {
        min-width: 0;
    }

    .about-us__img {
        height: 140px;
    }

    .about-us__info {
        padding: 0;
    }

    .about-us__title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .about-us__text {
        font-size: 16px;
    }

    .about-us__btn {
        font-size: 18px;
        border-radius: 25px;
        max-width: 100%;
    }

    .news__top {
        margin-bottom: 35px;
    }

    .news__title {
        margin-bottom: 24px;
    }

    .news__subtitle {
        font-size: 16px;
        line-height: 126%;
    }

    .news__carousel-btns {
        margin-top: 50px;
    }

    .news-card__img {
        margin-bottom: 15px;
    }

    .news-card__text {
        font-size: 14px;
    }

    .brif-form__btn {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 375px) {
    .banner__btn {
        padding: 20px 15px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (any-hover: hover) and (pointer: fine) {
    .circle-link:hover {
        background-color: #181818;
        color: #fff;
    }

    .circle-link:hover svg {
        rotate: -45deg;
    }

    .contact-form__btn:hover {
        background-color: #0eb0b3;
    }

    .btn:hover {
        background-color: #069396;
    }

    .steps__option:hover {
        background-color: #33c958;
        color: #fbfbfd;
    }

    .menu__link:hover::before {
        scale: 1;
    }

    .socials__link--vk:hover {
        border-color: #0077ff;
        color: #0077ff;
    }

    .socials__link--tg:hover {
        border-color: #29a0dc;
        color: #29a0dc;
    }

    .socials__link--yt:hover {
        border-color: #ff0033;
        color: #ff0033;
    }

    .footer__link:hover {
        text-decoration: underline;
        color: #fbfbfd;
    }

    .hero__link:hover {
        border-color: var(--color-accent-teal);
        color: var(--color-accent-teal);
    }

    .about__btn:hover {
        color: var(--color-accent-aqua);
    }

    .join-card__btn:hover {
        background-color: var(--color-bg-dark);
    }

    .work-card:hover {
        box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.25);
        background-color: #fbfbfd;
    }

    .services-card:hover {
        border-color: #009085;
        box-shadow: 15px 15px 70px 30px #009085;
    }

    .services-card:hover .circle-link svg {
        rotate: -45deg;
    }

    .services-card__btn:hover {
        background-color: #181818;
        color: #fff;
    }

    .feature-card:hover {
        background-color: #fff;
        box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.25);
    }

    .card:hover .circle-link svg {
        rotate: -45deg;
    }

    .card__circle-link:hover {
        opacity: 1;
    }

    .news-card:hover {
        opacity: 0.8;
    }

    .brif-form__btn:hover {
        background-color: #0eb0b3;
    }

    .checklist__option.agree:hover {
        background-color: #33c958;
        color: #fff;
    }

    .checklist__option.reject:hover {
        background-color: #fe3b30;
        color: #fff;
    }

    .checklist__option.other:hover {
        background-color: #8f9098;
        color: #fff;
    }
}
