:root {
    --primary: #BFEF2D;
}

body {
    background: #000a1a;
    font-family: 'Century Gothic', serif;
    overflow: hidden;
    overflow-x: hidden;
}

.root {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.root > section {
    flex: 1 0 auto;
}

.root > footer {
    flex: 0 0 auto;
}

.root__container {
    max-width: 1100px;
    margin: 0 auto;
}

.root__header-logo {
    width: inherit;
    max-width: 170px;
}

section {
    position: relative;
}

.button-outline {
    outline: 1px solid var(--primary);
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .4s;
}

.button-outline:hover {
    background: rgba(191, 239, 45, 0.31);
}

.button {
    background: var(--primary);
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
    transition: all .4s;
}

.button:hover {
    background: rgba(191, 239, 45, 0.8);
}

.button:focus {
    outline: none;
}

.introduction {
    color: #C1C3C7;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.introduction img {
    width: 40px;
}

.highlight {
    color: #BFEE2B;
}

a.button img {
    max-width: 15px;
}

@media screen and (max-width: 1280px) {
    .root__container {
        max-width: 1000px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1080px) {
    .root__container {
        max-width: 900px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 935px) {
    .root__container {
        max-width: 800px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 890px) {
    .root__container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 536px) {
    .root__container {
        padding: 0 25px;
    }
    .root__header-logo {
        max-width: 130px;
    }
}


.root__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    z-index: 2;
    padding: 0 25px;
}

.root__header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.root__header-right__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.root__header-right__navigation a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    letter-spacing: .3px;
    transition: opacity .3s;
}

.root__header-right__navigation a:hover {
    opacity: .75;
}

.root__header-right__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.root__header-right__actions-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    gap: 11px;
    text-decoration: none;
}

.root__header-right__actions-language {
    outline: 1px solid var(--primary);
    border-radius: 50%;
    padding: 6px;
    line-height: 0;
    cursor: pointer;
}

.root__header-right__actions-language img {
    width: 36.5px;
    height: 36.5px;
}

.header__languages {
    position: relative;
}
.header__languages span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    transition: rotate 0.3s ease;
}
.header__languages:hover span{
    transform: rotate(180deg);
}
.languages__item {
    position: relative;
    padding: 8px;

    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2px;
    transition: all 0.3s ease 0s;
}
.languages__item span{

    display: flex;
    justify-content: center;
    align-items: center;
}
.languages__svg path{
    fill: #f6f0f0;
}
.languages__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.14px;
}
.languages__link h4{
    font-size: 14px;
    letter-spacing: -0.14px;
}
.languages__link img{
    width: 48px;
    height: 48px;
}
.languages__sub-list {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 0px);
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.languages__sub-items {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    background-color: #020a17;
    border-radius: 0.5rem;
    backdrop-filter: blur(25px);
    padding: 0;
}
.languages__sub-item img {
    width: 35px;
    height: 35px;
}
.languages__item:hover .languages__sub-list{
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    pointer-events: all;
}
.languages__sub-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding: 9px;
    border-radius: 0.5rem;
}
.languages__sub-item:hover {
    cursor: pointer;
    background-color: #184185;
}
.languages__sub-item:last-child {
    margin-bottom: 0;
}

.dropbtn {
    border: none;
    cursor: pointer;

}
.dropbtn img {
    outline: 1px solid var(--primary);
    border-radius: 50%;
    display: block;
    padding: 6px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #05070b;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 1px;
}

.dropdown-content a {
    padding: 7px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #21221e;}

.dropdown:hover .dropdown-content {display: block;}

.root__header-right__actions-user {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
}

.root__header-right__actions-user > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.root__main {
    padding-top: 185px;
}

.root__main-bg__shape {
    position: absolute;
    top: 0;
    right: 0;
    opacity: .8;
    z-index: -1;
}

.root__main-bg__line {
    position: absolute;
    right: 0;
    opacity: .8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 1700px;
    max-width: 100%;
    width: 100%;
}

.root__main-bg__gradient {
    position: absolute;
    right: 0;
    opacity: .8;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.root__main-title {
    font-size: 58px;
    margin-bottom: 35px;
}

.root__main-subtitle {
    max-width: 400px;
    line-height: 2;
    margin-bottom: 70px;
}

.root__main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 25px;
    margin-bottom: 70px;
    max-width: 220px;
    text-decoration: none;
}

.root__main-instruction {
    background: #212738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0;
}

.root__main-instruction__image {
    position: relative;
}

.root__main-instruction__image img:first-child {
    height: 100%;
}

.root__main-instruction__image-robot {
    position: absolute;
    top: -13px;
    left: -31px;
}

.root__main-instruction__image-play {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.root__main-instruction__content {
    padding: 25px;
    line-height: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.root__main-instruction__content h3 {
    font-size: 27px;
    display: inline-block;
    line-height: 1;
}

.root__main-instruction__content p {
    font-size: 16px;
    color: #ACACAC;
    line-height: 1;
}

.root__main > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.root__main > div > div {
    flex: 1 1 50%;
    align-self: stretch;
    z-index: 0;
}

.root__main-right {
    position: relative;
    z-index: 1;
}

.root__main-right__background img {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 620px;
}

.root__main-right__background-circles {
    top: 50px !important;
    left: 50% !important;
    transform: scale(1.15) translateX(-41%);
}

.root__main-scroll {
    position: absolute;
    bottom: -210px;
    left: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-180deg);
    writing-mode: vertical-lr;
    gap: 9px;
    font-weight: 600;
    padding: 20px 10px;
    height: 130px;
    animation: scroll-animation 2s ease-in-out infinite;
}

.root__main-left {
    position: relative;
    z-index: 2;
}

@keyframes scroll-animation {
    0% {
        transform: translateY(0) rotate(-180deg);
    }

    50% {
        transform: translateY(10px) rotate(-180deg);
    }

    100% {
        transform: translateY(0) rotate(-180deg);
    }
}

.root__main-right__background-phone__container {
    position: absolute;
    height: 610px;
    width: 291px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.root__main-right__background-phone {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.root__main-right__background-phone__container-bg {
    background: #101010;
    height: 100%;
    border-radius: 48px;
}

.root__main-right__background-phone__container-screen {
    background: #1E1E1E;
    position: absolute;
    top: 37px;
    width: 270px;
    height: 559px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    padding: 7px;
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 0 0 25px 25px;
}

.root__main-right__background-phone__container-load {
    background: #000;
    position: absolute;
    top: 37px;
    width: 270px;
    height: 559px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 25px 25px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.root__main-right__background-phone__container-load svg {
    position: relative;
    top: -37px;
    width: 75px;
    height: 75px;
    opacity: 0;
}

.root__main-right__background-phone__container-screen::-webkit-scrollbar {
    width: 8px;
}

.root__main-right__background-phone__container-screen::-webkit-scrollbar-thumb {
    background: #2196F3;
    border-radius: 25px;
}

.root__main-right__background-phone__container-screen::-webkit-scrollbar-track {

}

.root__main-right__background-phone__container-screen__tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-size: 13px;
    padding: 10px 0 25px;
}

.root__main-right__background-phone__container-screen__tabs > span {
    flex: 1 1 33.333%;
    color: #8e8e8e;
    font-size: 11px;
    cursor: pointer;
}

.root__main-right__background-phone__container-screen__tabs > span:last-of-type {
    color: #fff;
}

.root__main-right__background-phone__container-screen__tabs > span:last-of-type > img {
    width: 8px;
    height: 11px;
    transform: rotate(180deg);
    position: relative;
    top: 2px;
}

.root__main-right__background-phone__container-screen__items {
    display: flex;
    flex-direction: column;
}

.root__main-right__background-phone__container-screen__item {
    padding: 5px;
    font-size: 12px;
    border-bottom: 1px solid #444444;
    display: flex;
    align-items: center;
    text-align: center;
}

.root__main-right__background-phone__container-screen__item:first-of-type {
    border-top: 1px solid #444444;
}

.root__main-right__background-phone__container-screen__item * {
    flex: 1 1 33.3333%;
}

.root__main-right__background-particles img {
    position: absolute;
}

.root__main-right__background-particles > img:nth-child(1) {
    top: 55px;
    left: -25px;
}

.root__main-right__background-particles > img:nth-child(2) {
    top: 55px;
    right: -50px;
}

.root__main-right__background-particles > img:nth-child(3) {
    top: 260px;
    left: -20px;
}

.root__main-right__background-particles > img:nth-child(4) {
    top: 200px;
    right: -150px;
    z-index: 1;
}

.root__main-right__background-particles > img:nth-child(5) {
    bottom: -120px;
    left: -120px;
    z-index: 1;
}

.root__main-right__background-particles > img:nth-child(6) {
    bottom: -123px;
    right: -75px;
    z-index: 1;
}

.root__header-right__actions-burger {
    width: 30px;
    height: 50px;
    line-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    display: none;
}

.root__header-right__actions-burger > span {
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 5px;
}

.root__main-right > .root__main-scroll {
    display: none;
}

.root__main-right__decorate {
    width: 100%;
    height: 100%;
}

.root__main-mobile__actions {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    display: none;
}

@media screen and (max-width: 1280px) {
    .root__main-right__decorate {
        transform: scale(.8);
    }

    .root__main-right__background-particles > img:nth-child(1) {
        top: 55px;
        left: -84px;
    }

    .root__main-right__background-particles > img:nth-child(2) {
        top: 19px;
        right: -84px;
    }

    .root__main-right__background-particles > img:nth-child(3) {
        top: 260px;
        left: -58px;
    }

    .root__main-right__background-particles > img:nth-child(5) {
        bottom: -70px;
        left: -180px;
    }

    .root__main-right__background-particles > img:nth-child(6) {
        bottom: -70px;
        right: -120px;
        z-index: 1;
    }
}

@media screen and (max-width: 1080px) {
    .root__main-right__decorate {
        transform: scale(.6);
    }

    .root__main-right__background-particles > img:nth-child(4) {
        right: -200px;
    }

    .root__main-bg__shape {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .root__header-right__actions-burger {
        display: flex;
    }

    .root__header-right__navigation {
        display: none;
    }
}

@media screen and (max-width: 935px) {
    .root__main > div {
        align-items: flex-start;
    }

    .root__main-right__decorate {
        position: relative;
        top: -150px;
    }

    .root__main-right > .root__main-scroll {
        display: block;
    }

    .root__main-scroll {
        display: none;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .root__main-right__background-particles > img:nth-child(4) {
        right: -230px;
    }

    .root__main-right__background-particles > img:nth-child(3) {
        left: -68px;
    }

    .root__main-right__background-particles > img:nth-child(1) {
        left: -94px;
    }

    .root__main-right__background-particles > img:nth-child(2) {
        right: -126px;
        top: 10px;
    }
}

@media screen and (max-width: 890px) {
    .root__main-right__decorate {
        transform: scale(.55);
    }

    .root__header-right__actions-button {
        display: none;
    }
}

@media screen and (max-width: 824px) {
    .root__main-right__decorate {
        right: 30px;
    }

    .root__main-title {
        margin-bottom: 20px;
    }

    .root__main-subtitle {
        margin-bottom: 20px;
    }

    .root__main-button {
        margin-bottom: 30px;
    }

    .root__main-right__background-particles > img:nth-child(5) {
        bottom: -160px;
        left: -197px;
    }

    .root__main-right__background-particles > img:nth-child(6) {
        bottom: -146px;
        right: -120px;
    }

    .root__main-right__background-particles > img:nth-child(4) {
        right: -242px;
    }
}

@media screen and (max-width: 630px) {
    .root__main-right__decorate {
        transform: scale(.5);
    }

    .root__main-right__background-particles > img:nth-child(1) {
        left: -170px;
    }

    .root__main-right__background-particles > img:nth-child(2) {
        right: -180px;
        top: 10px;
    }

    .root__main-right__background-particles > img:nth-child(3) {
        left: -154px;
    }

    .root__main-right__background-particles > img:nth-child(4) {
        right: -301px;
    }

    .root__main-right__background-particles > img:nth-child(5) {
        bottom: -160px;
        left: -244px;
    }

    .root__main-right__background-particles > img:nth-child(6) {
        bottom: -146px;
        right: -197px;
        z-index: 1;
    }
}

@media screen and (max-width: 536px) {
    .root__main > div {
        flex-direction: column;
    }

    .root__main {
        padding-top: 120px;
    }

    .root__main-right {
        height: 500px;
        width: 500px;
        flex: 0 0 auto !important;
        left: 50%;
        transform: translateX(-50%);
    }

    .root__main > div > div {
        flex: 1 1 100%;
    }

    .root__main-left > .root__main-button {
        display: none;
    }

    .root__main-left > .root__main-instruction {
        display: none;
    }

    .root__main-right > .root__main-scroll {
        display: none;
    }

    .root__main-right__decorate {
        transform: scale(.7);
    }

    .root__main-right__background-particles > img:nth-child(6) {
        bottom: -184px;
        right: -85px;
    }

    .root__main-right__background-particles > img:nth-child(4) {
        right: -180px;
    }

    .root__main-right__background-particles > img:nth-child(5) {
        bottom: -170px;
        left: -155px;
    }

    .root__main-right__background-particles > img:nth-child(1) {
        top: 55px;
        left: -61px;
    }

    .root__main-right__background-particles > img:nth-child(2) {
        top: 19px;
        right: -61px;
    }

    .root__main-right__background-particles > img:nth-child(3) {
        left: -52px;
    }

    .root__main-right__decorate {
        position: relative;
        top: -80px;
        right: 0;
    }

    .root__main-mobile__actions {
        display: flex;
    }

    .root__main-bg__gradient {
        top: 28%;
    }
}

.root__about {
    margin-top: 180px;
}

.root__about-decorative {
    max-width: 50%;
    text-align: right;
    line-height: 0;
    margin-left: auto;
    position: relative;
    height: 125px;
    overflow: hidden;
}

.root__about-decorative img {
    width: 100%;
    height: 100%;
}

.root__about-content {
    background: #0A183F;
    border-radius: 25px 0 0 25px;
    padding: 100px 0;
    max-width: calc(100% - 100px);
    margin-left: auto;
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.root__about-content > div {
    flex: 0 0 30%;
}

.root__about-content__right-title {
    margin-top: 25px;
    font-weight: 600;
    max-width: 400px;
    font-size: 40px;
}

.root__about-content__right-subtitle {
    max-width: 400px;
    display: block;
    margin-top: 35px;
    color: #BDBFC4;
    font-size: 15px;
    line-height: 1.7;
}

.root__about-content__right-button {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 35px;
    margin-top: 30px;
    max-width: 250px;
    justify-content: center;
    text-decoration: none;
}

.root__about-content__left {
    max-height: 500px;
}

.root__about-content__left > img {
    height: 100%;
}

.root__about-content__price {
    flex: 0 0 20% !important;
}

.root__about-content__price-block {
    background: #00071A;
    max-width: 214px;
    padding: 25px;
    height: 375px;
    text-align: center;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    height: 400px;
}

.root__about-content__price-block h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.root__about-content__price-block p {
    color: #BDBFC4;
    font-size: 15px;
    line-height: 2;
}

.root__about-content__price-block:before {
    content: '';
    height: 94%;
    width: 89%;
    position: absolute;
    pointer-events: none;
    border: 5px solid #707070;
    border-radius: 100px;
}

.root__about-content__price-block__socials {
    position: absolute;
    height: 100%;
    width: 100%;
}

.root__about-content__price-block__socials > img {
    position: absolute;
}

.root__about-content__price-block__socials > img:nth-child(1) {
    top: 20px;
    left: -50%;
    transform: translateX(50%);
    z-index: 3;
    animation: levitation-instagram 6s ease-in-out infinite;
}

.root__about-content__price-block__socials > img:nth-child(2) {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: levitation-facebook 5s ease-in-out infinite;
}

.root__about-content__price-block__socials > img:nth-child(3) {
    top: 30px;
    right: -50%;
    transform: translateX(-70%);
    z-index: 1;
    animation: levitation-tiktok 4s ease-in-out infinite;
}

@keyframes levitation-instagram {
    0% {
        transform: translateY(0) translateX(50%);
    }
    50% {
        transform: translateY(-20px) translateX(50%);
    }
    100% {
        transform: translateY(0) translateX(50%);
    }
}

@keyframes levitation-facebook {
    0% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-20px) translateX(-50%);
    }
    100% {
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes levitation-tiktok {
    0% {
        transform: translateY(0) translateX(-70%);
    }
    50% {
        transform: translateY(-20px) translateX(-70%);
    }
    100% {
        transform: translateY(0) translateX(-70%);
    }
}

.root__about-bg__shape {
    position: absolute;
    bottom: 0;
    left: -100px;
    z-index: -1;
    max-height: 500px;
}

.root__about-bg__stain {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
    max-height: 500px;
    transform: translateY(-50%);
}

.root__about-bg__line {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    max-width: 550px;
}

@media screen and (max-width: 1080px) {
    .root__about-content__price-block__socials > img {
        max-width: 100px;
        max-height: 100px;
    }

    .root__about-content > div {
        flex: 1 1 50%;
    }

    .root__about-content__left {
        display: none;
    }

    .root__about-content__price {
        flex: 1 1 50% !important;
    }

    .root__about-content {
        padding: 80px 15px;
    }

    .root__about-content {
        justify-content: space-between;
        align-items: stretch;
    }

    .root__about-content__price-block {
        right: 25px;
    }

    .root__about-content__price-block {
        height: 350px;
        max-width: 190px;
    }

    .root__about-decorative {
        max-width: 100%;
    }

    .root__about-decorative img {
        width: 100%;
        height: 100%;
        transform: translateX(50%);
    }

    .root__about-content {
        max-width: 100%;
        border-radius: 0;
    }

    .root__about-content__right {
        z-index: 2;
    }

    .root__about-content__price {
        z-index: 1;
    }

    .root__about-bg__shape {
        display: none;
    }

    .root__about-bg__stain {
        display: none;
    }

    .root__about-bg__line {
        display: none;
    }
}

@media screen and (max-width: 536px) {
    .root__about-decorative img {
        transform: translateX(40%);
    }

    .root__about-content > div {
        flex: 1 1 100%;
    }

    .root__about-content__price {
        position: absolute;
        top: 0;
        right: 0;
    }

    .root__about-content__price-block {
        height: 235px;
        width: 150px;
        top: -118px;
    }

    .root__about-content__price-block__socials > img {
        max-width: 74px;
        max-height: 74px;
    }

    .root__about-content__price-block h1 {
        font-size: 27px;
    }

    .root__about-content__price-block p {
        font-size: 12px;
    }

    .root__about-content__right-introduction {
        max-width: 250px;
    }

    .root__about-content__price-block__socials > img:nth-child(3) {
        top: 10px;
    }

    .root__about-content__price-block__socials > img:nth-child(1) {
        top: 10px;
        left: -45%;
    }
}

@media screen and (max-width: 935px) {
    .root__about {
        margin-top: 50px;
    }
}

.root__benefits {
    background: #01051B;
    overflow: hidden;
}

.root__benefits > div {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.root__benefits-title {
    font-size: 40px;
    font-weight: 600;
    margin-top: 30px;
}

.root__benefits-items {
    margin-top: 70px;
    display: flex;
    align-items: flex-start;
    gap: 100px;
    max-width: 900px;
}

.root__benefits-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 33.3333%;
    text-align: center;
}

.root__benefits-item__title {
    font-size: 27px;
    font-weight: 600;
}

.root__benefits-item__subtitle {
    display: inline-block;
    text-align: center;
    line-height: 1.8;
    color: #C1C3C7;
    font-weight: 400;
    margin-top: 5px;
}

.root__benefits-background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 110%;
}

@media screen and (max-width: 1280px) {
    .root__benefits-items {
        margin: 70px auto 0;
    }

    .root__benefits > div {
        padding: 60px 15px;
    }

    .root__benefits-background {
        width: 1700px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        height: 110%;
    }
}

@media screen and (max-width: 935px) {
    .root__benefits-item__title {
        font-size: 22px;
        font-weight: 600;
    }

    .root__benefits-items {
        align-items: stretch;
        justify-content: center;
        gap: 30px;
    }
}

@media screen and (max-width: 536px) {
    .root__benefits-items {
        gap: 15px;
    }

    .root__benefits-item__image {
        max-width: 130px;
        max-height: 130px;
    }

    .root__benefits-item__image img {
        width: 100%;
        height: 100%;
    }

    .root__benefits-item__title {
        font-size: 17px;
    }

    .root__benefits-item__subtitle {
        font-size: 12px;
    }

    .root__benefits-title {
        font-size: 37px;
        margin-top: 20px;
    }

    .root__benefits-items {
        margin: 55px auto 0;
    }
}

.root__future {
    background: #000;
    line-height: 0;
    position: relative;
}

.root__future > div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    z-index: 1;
    position: relative;
}

.root__future > div > div {
    flex: 1 1 50%;
}

.root__future-right {
    margin-bottom: 50px;
}

.root__future-right__title {
    font-size: 40px;
    margin-top: 25px;
    line-height: 1.2;
}

.root__future-right__subtitle {
    margin-top: 25px;
    color: #C1C3C7;
    line-height: 2;
    font-size: 15px;
}

.root__future-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 25px;
    margin-top: 25px;
    text-decoration: none;
}

.root__future-left {
    text-align: center;
}

.root__future-left > img {
    width: 405px;
    height: 571px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    max-height: 100%;
}

.root__future-bg__shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
    height: 956px;
    min-width: 1920px;
}


.root__future-right__man-mobile {
    width: 100%;
    height: 260px;
    background: #313131;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    display: none;
}

.root__future-right__man-mobile > img {
    height: 100%;
}

@media screen and (max-width: 630px) {
    .root__future-right__subtitle {
        display: none;
    }

    .root__future-right__title {
        margin-bottom: 70px;
    }

    .root__future-left > img {
        left: -80px;
    }

    .root__future > div {
        padding-top: 80px;
    }

    .root__future-right {
        margin-bottom: 80px;
    }

    .root__future-bg__shape {
        display: none;
    }
}

@media screen and (max-width: 536px) {
    .root__future > div {
        flex-direction: column-reverse;
    }

    .root__future-left {
        display: none;
    }

    .root__future-right__man-mobile {
        display: flex;
    }

    .root__future-button {
        margin-left: 50%;
        transform: translateX(-50%);
        margin-top: 30px;
    }

    .root__future-right {
        margin-bottom: 40px;
    }

    .root__future > div {
        padding-top: 40px;
    }

    .root__future-right__title {
        margin-bottom: 30px;
    }
}

.root__examples {
    padding: 80px 0;
}

.root__examples-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.root__examples-title {
    font-size: 40px;
}

.root__examples-more {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
}

.root__examples-tabs {
    display: flex;
    align-items: center;
    gap: 14px;
}

.root__examples-tab {
    background: #3C3958;
    color: #fff;
    padding: 15px 25px;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.root__examples-tab.root__examples-tab__active {
    background: var(--primary);
    color: #000;
}

.root__examples-images {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    margin-top: 70px;
}

.root__examples-images .backBgCreo {
    flex: 0 0 calc(25% - 35px);
    max-width: calc(25% - 35px);
    cursor: pointer;
    pointer-events: all;
    border-radius: 50%;
    position: relative;
}

.root__examples-images .backBgCreo:after {
    content: '';
    position: absolute;
    top: -5px;
    left: 5px;
    width: 99%;
    height: 103%;
    background: linear-gradient(160deg, #c0098a, #8112bf);
    filter: blur(0px);
    z-index: -1;
    border-radius: 50%;
}

.root__examples-images .backBgCreo:before {
    content: '';
    position: absolute;
    background: url(../images/examples/clickhand.png) no-repeat;
    background-size: contain;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
}

.backBgCreo img, .backBgCreo video {
    max-width: 100%;
    border-radius: 50%;
    pointer-events: all !important;
}

.swiper-slide img,
.swiper-slide video {
    max-width: 100% !important;
}



@media screen and (max-width: 1080px) {
    .root__examples-head {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .root__examples-tabs {
        max-width: calc(140px * 4);
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
    }

    .root__examples-tab {
        width: 126px;
    }

    .root__examples-images {
        flex-wrap: wrap;
    }

    .root__examples-images .backBgCreo {
        flex: 0 0 calc(50% - 35px);
        max-width: calc(50% - 35px);
    }

    .root__examples-images {
        gap: 50px 20px;
    }

    .root__examples-images .backBgCreo {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 536px) {
    .root__examples-title > span {
        display: block;
    }

    .root__examples-head {
        text-align: center;
    }

    .root__examples-tab {
        width: 100px;
        font-size: 14px;
    }

    .root__examples-tabs {
        max-width: calc(114px * 4);
    }

    .root__examples-images {
        gap: 10px;
    }

    .root__examples-images .backBgCreo {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .swiper-slide img, .swiper-slide video {
        max-width: 290px !important;
    }

    .root__examples {
        padding: 40px 0;
    }



}

.root__slider {
    background: #000 url('../images/slider/bg-images.png') no-repeat;
    padding: 70px 0;
    background-size: contain;
}

.root__slider > div {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.root__slider > div > div {
    flex: 1 1 50%;
    max-width: 50%;
}

.root__slider-title {
    font-size: 40px;
    margin-top: 20px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.root__slider-description {
    color: #C1C3C7;
    margin-top: 25px;
}

.root__slider-description__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.root__slider-description__content-info {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 15px;
}

.root__slider-description__content-info__bold {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.root__slider-description__content-text {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
}

.root__slider-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.root__slider-actions__current {
    color: #404040;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    user-select: none;
}

.root__slider-actions__current-active {
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    align-items: center;
}

.root__slider-actions__current-active__number {
    max-height: 26px;
    overflow: hidden;
}

.root__slider-actions__current-active__number > div {
    position: relative;
    top: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.root__slider-actions__arrows {
    display: flex;
    align-items: center;
}

.root__slider-actions__arrows button {
    cursor: pointer;
}

.root__slider-actions__arrows button:focus {
    outline: none;
}

.root__slider-actions__arrows button img {
    width: 30px;
    height: 15px;
}

.root__slider-actions__arrows button:nth-child(1) > img {
    transform: rotate(-90deg);
}

.root__slider-actions__arrows button:nth-child(2) > img {
    transform: rotate(90deg);
}

.root__slider-actions__arrows button:active {
    transform: scale(.9);
}

.root__slider-description {
    overflow: hidden;
}

.root__slider-actions__current-count {
    display: flex;
    align-items: center;
}

.root__slider-right > div {
    overflow: hidden;
}

.root__slider-right > div > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.root__slider-right img {
    max-width: 100%;
    height: auto !important;
}

@media screen and (max-width: 935px) {
    .root__slider-right img {
        height: 350px;
    }

    .root__slider-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: column;
    }

    .root__slider {
        background: #000;
    }
}

@media screen and (max-width: 633px) {
    .root__slider-right img {
        height: 280px;
    }
}

@media screen and (max-width: 536px) {
    .root__slider > div {
        flex-direction: column;
    }

    .root__slider > div > div {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .root__slider-right > div {
        width: 100%;
    }

    .root__slider-right img {
        height: 350px;
    }

    .root__slider-title {
        white-space: normal;
    }

    .root__slider-actions {
        margin-bottom: 35px;
    }
}

.root__reviews {
    padding: 70px 0;
}

.root__reviews-title {
    margin-bottom: 60px;
    font-size: 40px;
}

.root__reviews-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    max-width: 100%;
}

.root__reviews-item {
    flex: 1 1 calc(33.3333% - 35px);
    max-width: calc(33.3333% - 35px);
    height: 350px;
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    filter: drop-shadow(0px 0px 23px #008bed6e);
}

.root__reviews-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.root__reviews-item__message-avatar {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.root__reviews-item__message-avatar > img {
    width: 38px;
    border-radius: 50%;
}

.root__reviews-item__message-text {
    background: #182736;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.root__reviews-item__message-text > span {
    padding: 15px 0 15px 15px;
}

.root__reviews-item__message-text__quote {
    position: absolute;
    bottom: 0;
    left: -11px;
}

.root__reviews-item__message-text__time {
    color: #6A7F91;
    height: 100%;
    padding: 15px 15px 7px 0;
    user-select: none;
}

.root__reviews-item__message-owner {
    background: #2B5278;
}

.root__reviews-item__message-owner .root__reviews-item__message-text__time {
    color: #488DD3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.root__reviews-slider__images {
    width: 100%;
    overflow: hidden;
}

.root__reviews-slider__images > div {

}

.root__reviews-slider__images > div {
    height: 100%;
}

.root__reviews-slider__images .root__reviews-item {
    max-width: 100%;
    flex: 1 1 100%;
    padding-right: 35px;
}

.root__reviews-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.root__reviews-actions__current {
    color: #404040;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    user-select: none;
}

.root__reviews-actions__current-active {
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    align-items: center;
}

.root__reviews-actions__current-active__number {
    max-height: 26px;
    overflow: hidden;
}

.root__reviews-actions__current-active__number > div {
    position: relative;
    top: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.root__reviews-actions__arrows {
    display: flex;
    align-items: center;
}

.root__reviews-actions__arrows button {
    cursor: pointer;
}

.root__reviews-actions__arrows button:focus {
    outline: none;
}

.root__reviews-actions__arrows button img {
    width: 30px;
    height: 15px;
}

.root__reviews-actions__arrows button:nth-child(1) > img {
    transform: rotate(-90deg);
}

.root__reviews-actions__arrows button:nth-child(2) > img {
    transform: rotate(90deg);
}

.root__reviews-actions__arrows button:active {
    transform: scale(.9);
}

.root__reviews-actions__current-count {
    display: flex;
    align-items: center;
}

.root__reviews-slider {
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

@media screen and (max-width: 952px) {
    .root__reviews-items {
        display: none;
    }

    .root__reviews-slider {
        display: block;
    }
}

.root__referral {
    background: #0A183F;
    position: relative;
}

.root__referral > div {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 1;
    gap: 25px;
}

.root__referral > div > div:first-of-type {
    flex: 1 1 60%;
    padding: 70px 0;
}

.root__referral > div > div:last-of-type {
    flex: 1 1 40%;
}

.root__referral-title {
    font-size: 40px;
}

.root__referral-subtitle {
    margin-top: 40px;
    color: #C1C3C7;
    font-size: 16px;
}

.root__referral-right {
    background: #00061A;
    border-radius: 80px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.root__referral-right__step {
    display: flex;
    align-items: center;
    color: #C1C3C7;
    font-size: 15px;
    line-height: 1.5;
}

.root__referral-right__step a {
    text-decoration: none;
    color: var(--primary);
}

.root__referral-right__step-image {
    position: relative;
    margin-right: 15px;
}

.root__referral-right__step-image img {
    max-width: 52px;
    max-height: 59px;
}

.root__referral-right__step-image > span {
    position: absolute;
    top: calc(50% - 3px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-weight: 600;
    font-size: 17px;
    line-height: 0 !important;
    color: #fff;
}

.root__referral-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.root__referral-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .root__referral > div {
        flex-direction: column;
    }

    .root__referral-shape {
        display: none;
    }

    .root__referral > div > div:first-of-type {
        padding: 35px 0 0;
        flex: 1 1 100%;
    }

    .root__referral > div > div:last-of-type {
        position: absolute;
        bottom: -170px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 640px;
        max-height: 340px;
        height: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .root__referral-right__step {
        font-size: 14px;
    }

    .root__referral-left {
        margin-bottom: 200px;
    }
}

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

.root__partners-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    flex-wrap: wrap;
}

.root__partners-container > a {
    flex: 1 1 calc(25% - 35px);
    max-width: calc(25% - 35px);
    pointer-events: all;
    text-align: center;
}

.root__partners-container img {
    filter: contrast(0.3);
    transition: filter 0.5s ease;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.root__partners-container a:hover img {
    filter: invert(0.1);
}

@media screen and (max-width: 768px) {
    .root__partners {
        padding-top: 200px;
    }
}

.root__footer {
    position: relative;
}

.root__footer-info {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
}

.root__footer-info__container {
    overflow: hidden;
    position: relative;
}

.root__footer-info__background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 1700px;
    height: 100%;
}

img.root__footer-info__left-payments.tablet {
    max-width: 370px;
}

.root__footer-info__left,
.root__footer-info__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.root__footer-info__right {
    align-items: flex-end;
}

.root__footer-info__left > img:first-of-type {
    max-width: 158px;
    max-height: 36px;
}

.root__footer-info__right-top {
    display: flex;
    align-items: center;
    gap: 25px;
}

.root__footer-info__right-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 15px 25px;
    font-weight: 600;
    text-decoration: none;
    color:#fff;
}

button.root__footer-info__right-button.button-outline img {
    filter: invert(100%);
}

.root__footer-info__right-button > img {
    max-width: 45px;
    height: 15px;
}

a.root__footer-info__right-button {
    color: #000;
    text-align: center;
}
a.root__footer-info__right-button.lastLink {
    color: #fff;
}
a.root__footer-info__right-button.lastLink img {
    filter: invert(100%);
}

.root__footer-info__right-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.root__footer-info__right-bottom__social {
    display: inline-block;
    background: #0A183F;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.root__footer-bottom {
    background: #00061A;
    padding: 20px 0;
    color: #C1C3C7;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.root__footer-bottom__right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.root__footer-bottom__right a {
    color: #C1C3C7;
    text-decoration: none;
}

.root__footer-info__right-bottom.tablet {
    display: none;
}

.root__footer-info__left-payments.mobile {
    display: none;
    margin: 7px 0;
}

@media screen and (max-width: 890px) {
    .root__footer-info__right-top {
        flex-direction: column;
        gap: 15px;
    }

    .root__footer-info__right-bottom {
        display: none;
    }

    .root__footer-info__right-bottom.tablet {
        display: flex;
        justify-content: flex-start;
    }

    .root__footer-info__right-button {
        font-size: 13px;
    }

    img.root__footer-info__left-payments.tablet {
        max-width: 300px;
    }

    .root__footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media screen and (max-width: 536px) {
    .root__footer-info__left-payments.tablet {
        display: none;
    }

    .root__footer-info__left-payments.mobile {
        display: block;
    }

    .root__footer-info__right-button {
        font-size: 11px;
    }

    .root__footer-bottom__right a {
        font-size: 12px;
    }

    .root__footer-info__left-payments.mobile img {
        max-width: 160px;
    }

    .root__partners-container > a {
        flex: 1 1 calc(45% - 35px);
        max-width: calc(43% - 35px);
    }


}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 9999;
}

.loader img {
    max-width: 80% !important;
    width: 390px;
}

.mobile__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00061A;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.mobile__menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.mobile__menu-links > a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.mobile__menu > button {
    font-size: 14px;
}

.mobile__menu-close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

@media screen and (max-width: 890px) {
    .mobile__menu > button {
        display: flex;
    }
}
.modal__video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 6, 26, 0.57);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    opacity: 0;
    pointer-events: none;
}

.modal__video-container {
    max-width: 600px;
    max-height: 400px;
    position: relative;
}

.modal__video-container > video {
    width: 100%;
    height: 100%;
}

.modal__video-close {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    background: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__video-close > svg {
    width: 15px;
    height: 15px;
}

.gallery {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 6, 26, 0.57);
    z-index: 9999;
    padding: 0 15px;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__content {
    max-width: 500px;
    max-height: 500px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    background: #fff !important;
    border: 1px solid #000 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
}

@media screen and (max-width: 490px) {
    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 40px) !important;
    }

    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 40px) !important;
    }
}

@media screen and (max-width: 426px) {
    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 60px) !important;
    }

    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 60px) !important;
    }
}

@media screen and (max-width: 383px) {
    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 75px) !important;
    }

    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 75px) !important;
    }
}