:root {
    --dark: #302C42;
    --secondary: #453230;
    --white: #fff;
    --pink: rgb(241, 157, 227);

    --swiper-navigation-size: 62px;

    --transition-duration: 0.2s;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Light.woff2) format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.container {
    max-width: 1310px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: var(--white);

    background-color: var(--dark);
}

body.scroll-lock {
    overflow: hidden;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    border: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    clip-path: inset(100%) !important;
    clip: rect(0 0 0 0) !important;
    overflow: hidden !important;
}

.title {
    font-size: clamp(26px, 3vw, 36px);
    text-transform: uppercase;
}

.title__row1 {
    font-weight: 700;
}

.title__row2 {
    position: relative;
    font-weight: 300;
}

.text {
    max-width: 629px;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 400;
}

.btn {
    display: inline-block;
    text-align: center;
    border-radius: 40px;

    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-border {
    min-width: 154px;
    padding: 14.5px 20px;
    border: 2px solid var(--white);

    color: var(--white);

    background-color: transparent;
    transition: background var(--transition-duration);

    &:hover {
        border: none;
        padding: 16.5px 20px;
        background: linear-gradient(90.00deg, rgb(192, 183, 232), rgb(129, 118, 175) 100%);
        color: var(--white);
    }

    &:focus-visible {
        border: none;
        padding: 16.5px 20px;
        background: linear-gradient(90.00deg, rgb(192, 183, 232), rgb(129, 118, 175) 100%);
        color: var(--white);
        box-shadow: 0 0 0 2px var(--white);
    }
}

.btn-gradient {
    min-width: 154px;
    padding: 16.5px 20px;

    color: var(--secondary);

    background: linear-gradient(90.00deg, rgb(129, 118, 175), rgb(192, 183, 232) 100%);
    transition: background var(--transition-duration);

    &:hover {
        background: linear-gradient(90.00deg, rgb(192, 183, 232), rgb(129, 118, 175) 100%);
        color: var(--white);
    }

    &:focus-visible {
        background: linear-gradient(90.00deg, rgb(192, 183, 232), rgb(129, 118, 175) 100%);
        color: var(--white);
        box-shadow: 0 0 0 2px var(--white);
    }
}

.btn-long {
    min-width: 214px;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
}

.content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/*-----------header---------------*/

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

.logo-container {
    display: flex;
    margin-right: 30px;
    align-items: center;
    gap: 0 15px;
}

.logo__link,
.logo-text__link {
    display: block;
}

.logo__link:focus-visible,
.logo-text__link:focus-visible {
    box-shadow: 0 0 0 2px var(--white);
}

.menu {
    margin-left: 37px;
}

.burger-button {
    display: flex;
    width: 55px;
    height: 48px;
    padding: 10px;
    border-radius: 5px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.burger-button:hover {
    background: rgba(0, 0, 0, 0.5);
}

.menu__line {
    background: linear-gradient(90.00deg, rgb(192, 183, 232), rgb(129, 118, 175) 100%);
    height: 4px;
    border-radius: 40px;
    width: 100%;
}

.menu__line--short {
    width: 80%;
}

.menu__list {
    display: flex;
    align-items: center;
    gap: 0 42px;

    font-weight: 700;
    font-size: 12px;
}

.menu__link {
    height: 48px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    transition-duration: var(--transition-duration);

    &:focus-visible {
        background: linear-gradient(75.00deg, rgb(129, 118, 175) 30%, rgb(192, 183, 232) 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background var(--transition-duration);

        filter: drop-shadow(0px 4px 4px #8d84b3);
        outline: none;
    }

    &:hover {
        background: linear-gradient(75.00deg, rgb(129, 118, 175) 30%, rgb(192, 183, 232) 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background var(--transition-duration);
    }

    &:active {
        background: var(--pink);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background var(--transition-duration);
    }
}

.btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 37px;
}

/*-----------------*/

.mobile-overlay {
    width: 70%;
    height: 100%;
    margin-right: 0;
    padding: 19px 19px;
    border: none;
    background: var(--dark);
    animation: open-overlay 0.3s ease-in-out forwards;
    z-index: 100;
}

@keyframes open-overlay {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-overlay:modal {
    max-width: 100%;
    max-height: 100%;
}

.mobile-overlay__close-button-wrapper {
    display: flex;
    justify-content: end;
}

.mobile-overlay__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
    min-height: 60vh;
}

.mobile-overlay__link {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.cross-button {
    padding: 0;
    background-color: transparent;
    border: none;
    width: 48px;
    aspect-ratio: 1;
    position: relative;
    border-radius: 5px;
}

.cross-button:hover {
    background: rgba(0, 0, 0, 0.5);
}

.cross-button::before,
.cross-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    width: 50%;
    height: 2px;
    background-color: var(--white);
    border-radius: 5px;
}

.cross-button::before {
    rotate: 45deg;
}

.cross-button::after {
    rotate: -45deg;
}

@media (min-width: 991px) {
    .visible-mobile {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-mobile {
        display: none !important;
    }
}


/*----------Hero---------------*/

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 47px;

    color: var(--white);
}

.hero__content {
    position: relative;

    padding-top: 48px;
    margin-right: 20px;
}

.hero__content::after {
    content: "";
    position: absolute;
    top: 23px;
    left: -84px;

    display: block;
    width: 243px;
    height: 565px;

    background-image: url(../img/vector-hero-content.png);
    background-repeat: no-repeat;
    background-position: 0 0;

    z-index: -2;
}

.hero__title {
    margin-bottom: 32px;

    font-weight: 700;
    line-height: 1.3;
}

.hero__text {
    margin-bottom: 63px;
    max-width: 450px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.hero__text p {
    text-wrap: balance;
}

.hero__btn {
    position: relative;
}

.hero__btn::after {
    --arrow-width: 45px;
    --arrow-height: 40px;

    content: '';
    position: absolute;
    top: calc(50% - var(--arrow-height)/2);
    right: calc(-40px - 45px);

    display: inline-block;
    width: var(--arrow-width);
    height: var(--arrow-height);

    background: url(../img/icons/arrow-small-right.svg) center/contain no-repeat;
}

.text-gradient {
    font-size: clamp(36px, 3.19vw, 46px);
    background: linear-gradient(90.00deg, rgb(129, 118, 175), rgb(192, 183, 232) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-st {
    font-size: clamp(24px, 2.78vw, 40px);
}

.hero__img-container {
    position: relative;
}

.hero__img {
    position: relative;
    width: 520px;
    height: 455px;
    border-radius: 115px 115px 115px 260px;
    border: 15px solid rgba(0, 0, 0, 0.13);
}

.hero__img-container::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -125px;

    display: block;
    width: 736px;
    height: 846px;

    background-image: url(../img/vector-hero.png);
    background-repeat: no-repeat;
    background-position: 0 0;

    z-index: -2;
}

.contact {
    position: relative;

    width: 100%;
    margin-top: 88px;
    padding: 26px 17px;

    border-radius: 90px;
    box-shadow: 0 4px 4px 0 rgba(192, 183, 232, 0.01);
    background: radial-gradient(2901.00% 50.16% at 50% 54%, rgba(58, 52, 86, 0.95), rgb(33, 30, 46) 100%);

    scroll-margin-top: 88px;
}

.swiper-contact {
    position: relative;

    display: block;
    padding: 0;

    overflow: hidden;
    list-style: none;
    z-index: 1;
}

.swiper-contact .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.contact .swiper-button-p:after {
    display: none;
    content: '';
    background-image: url(../img/btn-navigation-contact.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
}

.contact .swiper-button-n:after {
    display: none;
    content: '';
    background-image: url(../img/btn-navigation-contact.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
}

.contact .swiper-button-p,
.contact .swiper-button-n {
    position: absolute;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;

    background: transparent;
    z-index: 10;
    cursor: pointer;
}

.contact .swiper-button-p.swiper-button-lock,
.contact .swiper-button-n.swiper-button-lock {
    display: none;
}

.contact .swiper-button-p:focus-visible,
.contact .swiper-button-n:focus-visible {
    box-shadow: 0 0 0 2px var(--white);
}

.contact .swiper-button-p {
    left: 10px;
    right: auto;
}

.contact .swiper-button-n {
    right: 10px;
    left: auto;
}

.contact__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px 0;
}

.contact__item--phone {
    justify-content: start;
    padding-left: 50px;
}

.contact__item--mail {
    justify-content: start;
    padding-left: 12px;
}

.contact__item--phone::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;

    display: inline-block;
    width: 1px;
    height: 116px;

    background: url(../img/line-vertical.svg) no-repeat 0 0;
    background-size: 100%;
}

.contact__item--mail::after {
    content: "";
    position: absolute;
    top: 0;
    left: -37px;

    display: inline-block;
    width: 1px;
    height: 116px;

    background: url(../img/line-vertical.svg) no-repeat 0 0;
    background-size: 100%;
}

.contact__icon--phone {
    padding: 5.5px 5.5px;
    margin-right: 25px;
}

.contact__icon--mail {
    padding: 2.5px 2.5px;
    margin-right: 20px;
}

.contact__title {
    margin-bottom: 9px;
    font-size: 24px;
    font-weight: 700;
}

.contact__text {
    font-size: 14px;
}

/*----------About---------------*/

.about {
    position: relative;
    padding-top: 91px;
}

.about::after {
    content: "";
    position: absolute;
    bottom: 41px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: 1440px;
    height: 504px;

    background-image: url(../img/vector-about.png);
    background-repeat: no-repeat;
    background-position: 0 0;

    z-index: -2;
}

.row-introduction {
    margin-bottom: 97px;
}

.title__row1--introduction {
    padding-top: 2px;
    margin-bottom: 10px;
}

.title__row2--introduction::after {
    content: "";
    position: absolute;
    top: -28px;
    right: -198px;

    display: inline-block;
    width: 228px;
    height: 100px;

    background: url(../img/arrow-big-right.png) no-repeat 0 0;
}

.about__container {
    display: flex;
    justify-content: start;
    column-gap: clamp(30px, 8.33vw, 120px);
}

.about__img {
    border-radius: 240px 100px 240px 100px;
}

.about__content {
    padding-top: 50px;
}

.about__title {
    margin-bottom: 40px;
}

.title__row1--about {
    margin-bottom: 2px;
}

.about__text {
    margin-bottom: 24px;
    line-height: 1.63;
}

/*------------services--------------*/

.services {
    position: relative;
    padding-top: 111px;
}

.services::after {
    content: "";
    position: absolute;
    top: 265px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: 1440px;
    height: 820px;

    background-image: url(../img/vector-services.png);
    background-repeat: no-repeat;
    background-position: 0 0;

    z-index: -2;
}

.services__inner {
    position: relative;
}

.row-services {
    margin-bottom: 102px;
}

.title__row1--services {
    margin-bottom: 13px;
}

.title__row2--services::after {
    content: "";
    position: absolute;
    top: -28px;
    right: -244px;

    display: inline-block;
    width: 228px;
    height: 100px;

    background: url(../img/arrow-big-right.png) no-repeat 0 0;
}

.services__text {
    max-width: 650px;
    line-height: 1.61;
}

.swiper-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-services,
.swiper-tech,
.swiper-process {
    position: relative;
    display: block;
    padding: 0;
    margin-left: auto;
    margin-right: auto;

    overflow: hidden;
    list-style: none;
    z-index: 1;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-wrapper-services {
    height: 100%;
}

.swiper-services.swiper-autoheight,
.swiper-services.swiper-autoheight .swiper-slide {
    height: inherit;
}

.swiper-autoheight .swiper-wrapper-services {
    align-items: flex-start;
    transition-property: transform;
}

.swiper-btn {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);

    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-top: -31px;

    z-index: 10;
    cursor: pointer;
}

.swiper-btn.swiper-button-lock,
.swiper-btn.swiper-button-lock {
    display: none;
}

.swiper-btn:focus-visible,
.swiper-btn:focus-visible {
    box-shadow: 0 0 0 2px var(--white);
}

.swiper-btn.swiper-button-disabled,
.swiper-btn.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.btn-next-services,
.btn-next-tech {
    right: -29px;
}

.btn-next-process {
    top: var(--swiper-navigation-top-offset, 100%);
    right: -29px;
    margin-top: -62px;
}

.btn-prev-services,
.btn-prev-tech {
    left: -29px;
}

.btn-prev-process {
    top: var(--swiper-navigation-top-offset, 100%);
    left: -29px;
    margin-top: -62px;
}

.swiper-button-lock {
    display: none;
}

.btn-swiper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.13);
}

.btn-swiper:after {
    content: '';
    position: absolute;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: linear-gradient(251.38deg, rgb(192, 183, 232) 12.874%, rgb(129, 118, 175) 89.331%);
}

.btn-swiper img {
    z-index: 11;
}

.card {
    min-width: 310px;
    height: 100%;
    overflow: hidden;
}

.card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 23px 25px 42px 25px;
    height: 100%;
    text-align: center;
    border-radius: 40px;
    background: radial-gradient(50.00% 50.00% at 50% 50%, rgb(67, 61, 96), rgb(33, 30, 46) 100%);
}

.card__image {
    position: relative;

    margin: 0 auto 21px auto;
    width: 219px;
    height: 219px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.13);
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid rgba(0, 0, 0, 0.13);
}

.card__title {
    position: relative;

    margin-bottom: 39px;

    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.card__title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: 154px;
    height: 1px;

    background: rgba(192, 183, 232, 0.33);
}

.card__line {
    margin-bottom: 19px;
}

.card__text {
    max-width: 250px;
    margin-bottom: 34px;
    text-align: start;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}

.card__btn {
    margin-top: auto;
}

/*---------------tech------------------------*/
.tech {
    padding-top: 114px;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 33px;
}

.image-container img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 0 0;
}

.title__row1--tech {
    margin-bottom: 13px;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: var(--white);
}

.tech-card img {
    margin: 0 auto;
}


/*------------------------------process----------------------*/

.process {
    position: relative;
    padding-top: 69px;
}

.process::after {
    content: "";
    position: absolute;
    top: 287px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: 1440px;
    height: 168px;

    background-image: url(../img/Vector-process.png);
    background-repeat: no-repeat;
    background-position: 0 0;
}

.row-process {
    margin-bottom: 119px;
}

.title__row1--process {
    margin-bottom: 15px;
}

.title__row2--process::after {
    content: "";
    position: absolute;
    top: -28px;
    right: -244px;

    display: inline-block;
    width: 228px;
    height: 100px;

    background: url(../img/arrow-big-right.png) no-repeat 0 0;
}

.text-process {
    max-width: 650px;
    line-height: 1.6;
}

.card-process {
    text-align: center;
}

.circle {
    position: relative;
    margin: 0 auto;
    width: 198px;
    height: 198px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.13);
    z-index: 1;
}

.circle__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    height: 159px;
    border-radius: 50%;

    font-size: 64px;
    font-weight: 700;
    color: var(--secondary);

    background: linear-gradient(251.38deg, rgb(192, 183, 232) 12.874%, rgb(129, 118, 175) 89.331%);

    z-index: 2;
}

.card-process__text {
    position: relative;

    text-align: start;
    margin-top: 20px;
    margin-left: 25px;
    display: inline-block;
    vertical-align: middle;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.card-process__text::before {
    content: "";
    position: absolute;
    top: calc((24px * 1.5 - 27px) / 2);
    left: -48px;

    display: inline-block;
    width: 33px;
    height: 27px;

    background: url(../img/arrow-small-right-process.png) no-repeat 0 0;
}


/*-----------optin---------------*/

.optin {
    padding-top: 108px;
    padding-bottom: 127px;
}

.optin__inner {
    text-align: center;
}

.form {
    padding: 89px 20px 84px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: radial-gradient(50.00% 50.00% at 50% 50%, rgb(64, 58, 95), rgb(33, 30, 46) 100%);
}

.form__title {
    position: relative;
    display: block;
    margin-bottom: 51px;
    font-weight: 700;
}

.form__title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: clamp(116px, 28vw, 414px);
    height: 1px;

    background: linear-gradient(90deg, rgb(52, 48, 69), rgb(192, 183, 232) 35%, rgb(129, 118, 175) 69%, rgb(52, 48, 69) 100%);
}

.form__title-text {
    position: relative;
    margin-bottom: 63px;

    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    white-space: normal;
}

.form__body {
    display: flex;
    justify-content: center;
    gap: 0 10px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1058px;
    height: 100%;
}

.form__label {
    height: 72px;
    padding: 0 42px;
    flex-shrink: 2;
    flex-grow: 1;
    width: 524px;
    min-width: 300px;
    margin-bottom: 39px;
    border: 2px solid var(--white);
    border-radius: 40px;
    outline: none;
}

.form__input {
    width: 100%;
    height: 100%;

    font-size: 14px;
    font-weight: 400;

    outline: none;
}

.form__label--email,
.form__label--phone {
    margin-bottom: 35px;
}

.form__label--subject {
    width: 100%;
    margin-bottom: 33px;
}

.form__label--message {
    width: 100%;
    height: 210px;
    resize: vertical;
    padding: 26px 42px;
    margin-bottom: 51px;

    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.06);
}

textarea {
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 400;
}

/*--------------footer------------*/

.footer {
    position: relative;
}

.footer::after {
    content: "";

    position: absolute;
    bottom: 165px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: 1440px;
    height: 549px;

    background-image: url(../img/group-footer.png);
    background-repeat: no-repeat;
    background-position: 0 0;

    z-index: -2;
}

.footer__inner {
    position: relative;
    margin-bottom: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
}

.footer__inner::after {
    content: '';
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);

    display: block;
    width: clamp(289px, 88vw, 1269px);
    height: 1px;

    background: linear-gradient(90deg, rgb(52, 48, 69), rgb(192, 183, 232) 35%, rgb(129, 118, 175) 69%, rgb(52, 48, 69) 100%);
}

.footer__link {
    width: 185px;
}

.logo__img--footer {
    width: 185px;
    height: 185px;
}

.footer__nav,
.footer__company,
.footer__social {
    position: relative;
}

.footer__nav {
    margin-left: 42px;
}

.footer__company {
    padding-top: 9px;
    margin-left: 38px;
}

.footer__social {
    padding-right: 8px;
}

.footer__nav-item,
.footer__company-item {
    margin-bottom: 23px;
}

.footer__nav-link,
.footer__company {
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
}

.footer__nav-link,
.footer__company-link {

    &:focus-visible {
        background: linear-gradient(75.00deg, rgb(129, 118, 175) 30%, rgb(192, 183, 232) 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background var(--transition-duration);

        filter: drop-shadow(0px 4px 4px #8d84b3);
        outline: none;
    }

    &:hover {
        background: linear-gradient(75.00deg, rgb(129, 118, 175) 30%, rgb(192, 183, 232) 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background var(--transition-duration);
    }

}

.footer__social-title {
    margin-bottom: 37px;
    font-size: 16px;
    font-weight: 700;
}

.footer__social-list {
    margin-bottom: 49px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.footer__social-link {
    display: block;
}

.footer__social-link:focus-visible {
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--white);
}

.footer__nav::after,
.footer__company::after,
.footer__social::after {
    content: '';
    position: absolute;
    top: -4px;
    left: calc(-80px - 6px/2);

    width: 6px;
    height: 196px;

    background-image: url(../img/line-vertical-footer.svg);
    background-repeat: no-repeat;
    background-position: center;

}

.footer__bottom {
    padding-top: 49px;
    padding-bottom: 35.5px;
}

.footer__copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;

    font-size: 14px;
    font-weight: 700;
}

.footer__copy span {
    letter-spacing: 1.9px;
    margin-bottom: 22.5px;
}

.footer__copy span:not(:last-child)::after {
    content: "-";
    margin-left: 5px;
    margin-right: 5px;
}



@media (max-width: 1439px) {

    .logo-container {
        margin-right: 0;
    }

    .menu {
        margin-left: 0;
    }

    .menu__list {
        gap: clamp(1rem, -0.73rem + 3.6vw, 1.5rem);
    }

    .btn-container {
        gap: clamp(1rem, -0.73rem + 3.6vw, 1.5rem);
    }

    .hero__img-container::after {
        display: none;
    }

    .contact__item--mail::after {
        display: none;
    }

    .contact__item--phone::after {
        display: none;
    }

    .services__text {
        max-width: 629px;
    }

    .services::after,
    .about::after,
    .process::after,
    .footer::after {
        display: none;
    }
}

@media (max-width: 1309px) {

    .swiper-content {
        margin: 0 22px;
    }
}

@media (max-width: 1250px) {

    .title__row2--introduction::after {
        display: none;
    }

    .title__row2--process::after {
        display: none;
    }

    .title__row2--services::after {
        display: none;
    }

    .hero__inner {
        padding-top: 0;
    }

    .footer__nav::after,
    .footer__company::after,
    .footer__social::after {
        left: calc(-40px - 6px / 2);
    }

}

@media (max-width: 1023px) {

    .contact {
        padding: 20px 40px;
    }

    .contact .swiper-button-p:after {
        display: block;
    }

    .contact .swiper-button-n:after {
        display: block;
    }

    .contact__item {
        justify-content: start;
        align-items: start;
    }
}


@media (max-width: 991px) {

    .introduction__title,
    .services__title,
    .process__title {
        margin-bottom: 42px;
    }

    .row {
        margin-bottom: 50px;
    }

    .row .content-container {
        flex-wrap: wrap;
    }

    .title__row1 {
        padding: 0;
        margin: 0 0 10px 0;
    }

    .text {
        max-width: 100%;
        line-height: 1.6;
    }

    .header__inner {
        padding: 30px 0;
    }

    .menu {
        order: 1;
    }

    .menu__list {
        display: none;
    }

    .menu__list-item {
        margin-bottom: 30px;
    }

    .btn-container__link {
        padding: 8px 16px;
        font-size: 10px;
    }

    .hero__container,
    .about__container {
        align-items: center;
    }

    .hero__content {
        padding-top: 20px;
        margin-right: 10px;
    }

    .hero__img {
        width: 340px;
        height: 296px;
        border: 10px solid rgba(0, 0, 0, 0.13);
    }

    .about__content {
        padding-top: 0;
    }

    .hero__text {
        min-width: 350px;
    }

    .hero__btn::after {
        display: none;
    }

    .contact__item-title {
        font-size: 20px;
    }

    .about__img {
        width: 337px;
        height: 358px;
        margin-bottom: 34px;
        border-radius: 140px 60px 140px 60px;
    }

    .form {
        border-radius: 40px;
    }

    .services {
        padding-top: 90px;
    }

    .footer__logo {
        margin: 0 auto 25px auto;
        grid-column: span 2;
    }

    .footer__nav::after,
    .footer__company::after,
    .footer__social::after {
        content: '';
        display: none;
    }

    .footer__inner {
        margin-bottom: 77px;
        grid-template-columns: 200px 200px;
        grid-template-rows: auto auto;
        justify-content: center;
        text-align: center;
        row-gap: 25px;
    }

    .footer__nav,
    .footer__company {
        margin-left: 0;
        justify-items: start;
    }

    .footer__company {
        padding-top: 0;
    }

    .footer__company {
        margin-bottom: 50px;
    }

    .footer__social {
        grid-column: span 2;
        justify-self: center;
        padding: 0;
    }


    .footer__social-list {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .btn-border,
    .btn-gradient {
        min-width: 130px;
    }

    .content-container {
        align-items: center;
        justify-content: center;
    }

    .about__container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .title {
        text-align: center;
    }

    .text {
        text-align: start;
        line-height: 1.6;
    }

    .hero__container {
        flex-wrap: wrap;
    }

    .hero__content {
        margin: 0 auto;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: start;
    }

    .hero__img-container {
        display: block;
        order: -1;
    }

    .contact {
        margin-top: 57px;
        scroll-margin-top: 30px;
    }

    .contact__list {
        padding: 0;
    }

    .contact__item {
        padding: 0;
        align-items: center;
    }

    .contact__item-title {
        display: none;
    }

    .contact__icon--phone {
        margin-right: 5px;
    }

    .contact__icon--mail {
        margin-right: 5px;
    }

    .introduction__title,
    .about__title,
    .services__title,
    .tech__title,
    .process__title {
        margin-bottom: 42px;
    }

    .about,
    .services {
        padding-top: 70px;
    }

    .about__content {
        padding: 0;
        text-align: center;
    }

    .tech__title {
        margin-bottom: 0;
        font-size: 16px;
    }

    .swiper-services {
        max-width: 320px;
    }

    .tech {
        padding-top: 56px;
    }

    .process {
        padding-top: 0;
    }

    .card-process__text {
        margin-top: 34px;
        margin-left: 0;
        text-align: center;
    }

    .card-process__text::before {
        display: none;
    }

    .optin {
        padding-top: 76px;
        padding-bottom: 83px;
    }

    .form {
        padding: 45px 20px 65px 20px;
    }

    .form__body {
        padding: 0 5px 0 5px;
    }

    .form__title {
        margin-bottom: 35px;
    }

    .form__title::after {
        background: linear-gradient(45deg, rgb(52, 48, 69), rgb(192, 183, 232) 35%, rgb(129, 118, 175) 69%, rgb(52, 48, 69) 100%);
        bottom: -18px;
    }

    .form__title-text {
        margin-bottom: 26px;
        white-space: pre-line;
        line-height: 1.45;
    }

    .form__label {
        height: 53px;
        padding: 0 29px;
        margin-bottom: 22px;
    }

    .form__label--message {
        padding: 18px 29px;
        height: 220px;
        margin-bottom: 51px;
    }

    .footer__logo {
        margin: 0 auto 25px auto;
        grid-column: span 2;
    }

    .footer__social-title {
        margin-bottom: 27px;
    }

    .footer__bottom {
        padding-top: 39px;
        padding-bottom: 66.5px;
    }

    .footer__inner {
        margin-bottom: 67px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 0;
    }

    .footer__social,
    .footer__logo {
        grid-column: span 1;
    }

    .footer__logo {
        margin-bottom: 58px;
    }

    .footer__inner::after {
        width: clamp(289px, 70vw, 1269px);
    }

}

@media (max-width: 575px) {

    .logo__img {
        width: 70px;
        height: 70px;
    }

    .logo-text__img {
        width: 46px;
        height: 28px;
    }

    .logo__img--footer {
        width: 185px;
        height: 185px;
    }

    .logo-container {
        gap: 0 10px;
    }

    .btn-container {
        display: none;
    }

    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .header__inner {
        padding: 25px 0;
    }

    .menu__list {
        font-size: 10px;
        display: none;
    }

    .hero__inner {
        flex-direction: column;
        padding-top: 14px;
    }

    .hero__content {
        padding-top: 34px;
        margin: 0 auto;
    }

    .hero__content::after {
        display: none;
    }

    .hero__title {
        margin-bottom: 27px;
        line-height: 1.4;
    }

    .hero__text {
        display: none;
    }

    .btn {
        font-size: 14px;
        height: 48px;
    }

    .btn-gradient {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .arrow {
        display: none;
    }

    .contact {
        padding: 21px 40px 18px 40px;
    }

    .contact__title {
        display: none;
    }

    .contact__text {
        padding-top: 5px;
        font-size: 14px;
        line-height: 1.6;
    }

    .title__row1--introduction {
        padding-top: 2px;
        margin-bottom: 16px;
    }

    .row-introduction {
        margin-bottom: 36px;
    }

    .introduction__text {
        display: none;
    }

    .about {
        padding-top: 57px;
    }

    .about__title {
        display: none;
    }

    .introduction__title,
    .services__title,
    .process__title {
        margin-bottom: 0;
    }

    .text {
        text-align: start;
        line-height: 1.8;
    }

    .about__text {
        margin-bottom: 45px;
    }

    .services {
        padding-top: 68px;
    }

    .row-services {
        margin-bottom: 26px;
    }

    .title__row1--services {
        margin-bottom: 15px;
    }

    .image-container {
        margin-bottom: 0;
    }

    .services__text {
        display: none;
    }

    .card-process__text::before {
        display: none;
    }

    .text-process {
        display: none;
    }

    .row-process {
        margin-bottom: 37px;
    }

    .footer__nav {
        display: none;
    }

    .footer__company {
        display: none;
    }


}

@media (max-width: 391px) {

    .swiper-content {
        margin: 0 15px;
    }

    .hero__img::after {
        content: "";

        position: absolute;
        bottom: -215px;
        left: -25px;

        display: block;
        width: 390px;
        height: 645px;

        background-image: url(../img/vector-hero-390.png);
        background-repeat: no-repeat;
        background-position: 0 0;

        z-index: -2;
    }

    .image-container {
        border-radius: 60px;
        height: 160px;
    }

    .image-container img {
        border-radius: 60px;
        object-position: -130px;
    }

    .swiper-content {
        margin: 0 15px;
    }

    .card {
        min-width: 100%;
    }

    .footer__copy span:not(:last-child)::after {
        display: none;
    }

}