@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');

/**************** Basic ****************/

:root {
    --white: #FFFFFF;
    --main_black: #000000;
    --main_color: #766AE6;
    --secondary_darck: #282640;
    --secondary_midle: #44415F;
    --secondary_light: #727491;
    --bg_main: #F6F6FA;
    --secondary_accent: #FF5B79;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: normal;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    color: var(--main_black);
    background-color: var(--bg_main);
}

body.hidden {
    overflow: hidden;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #F6F6FA;
}

.container {
    width: 100%;
    max-width: 1490px;
    padding: 0 20px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

button {
    border: none;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

input:focus,
textarea:focus {
    outline: none;
}

input,
textarea {
    border: none;
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.section {
    width: 100%;
    position: relative;
}

/*************************************/

/*************** Header **************/

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    padding: 32px 0;
    transition: all 0.3s ease-in-out;
}

.header.fixed {
    padding: 12px 0;
    background-color: var(--white);
    box-shadow: 0 8px 12px 0 #ADB0EE99;
}

.header .container {
    max-width: 1620px;
}

.header-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    width: 160px;
    position: relative;
    display: flex;
}

.header-logo img {
    width: 100%;
}

.header-content {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.header-nav {
    position: relative;
    display: flex;
}

.nav-menu {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.nav-menu li {
    position: relative;
    display: flex;
}

.nav-menu li a {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    white-space: nowrap;
    color: var(--secondary_darck);
}

.nav-menu li a:hover {
    color: var(--main_color);
}

.header-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.header-buttons__author {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    white-space: nowrap;
    color: var(--secondary_midle);
    padding: 12px 24px;
    border: 1px solid #BABCFF99;
    border-radius: 8px;
}

.header-buttons__author:hover {
    color: var(--main_color);
    border: 1px solid var(--main_color);
}

.header-buttons__club {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    white-space: nowrap;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    background-color: var(--main_black);
}

.header-buttons__club:hover {
    background-color: var(--main_color);
}

.header-socials {
    width: 100%;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.header-socials__link {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px solid #BABCFF99;
    border-radius: 50%;
}

.header-socials__link svg,
.header-socials__link img {
    max-width: 100%;
    max-height: 100%;
}

.header-mobile__buttons {
    width: 100%;
    position: relative;
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.header-mobile__buttons-item {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
}

.header-mobile__buttons-item_blue {
    background-color: var(--main_color);
}

.header-mobile__buttons-item_transparent {
    background-color: transparent;
    border: 1px solid #BABCFF99;
}

.header-burger {
    width: 30px;
    height: 30px;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 5px;
    padding: 4px 6px;
}

.header-burger span {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
}

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
}

.header-burger.active span:nth-child(2) {
    display: none;
}

.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -3px);
}

/****************************************/

/**************** Content ***************/

.section-title {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    color: var(--main_black);
    text-align: center;
}

.section-title__gradient {
    background: linear-gradient(270deg, #A065C5 -0.33%, #D4609B 96.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    padding: 200px 0 60px;
}

.hero:after {
    content: '';
    width: 100%;
    height: 740px;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("../img/main/hero-gradient.png");
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 85px;
    z-index: 1;
}

.hero-top {
    width: 100%;
    max-width: 1640px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-top__decor {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
}

.hero-top__decor img,
.hero-top__decor svg {
    max-width: 100%;
    max-height: 100%;
}

.hero-top__decor-1 {
    width: 76px;
    height: 76px;
    top: 0;
    left: 9%;
    padding: 20px;
    transform: rotate(-14deg);
    animation: spin1 2.5s linear infinite;
}

.hero-top__decor-2 {
    width: 64px;
    height: 64px;
    bottom: 30%;
    left: 10px;
    padding: 20px;
    animation: spin2 2.5s linear 0.5s infinite;
}

.hero-top__decor-3 {
    width: 72px;
    height: 72px;
    bottom: 4%;
    left: 27%;
    padding: 20px;
    transform: rotate(-10deg);
    animation: spin3 2.5s linear 0.8s infinite;
}

.hero-top__decor-4 {
    width: 88px;
    height: 88px;
    top: 0;
    right: 6%;
    padding: 20px;
    transform: rotate(14deg);
    animation: spin3 2.5s linear 1s infinite;
}

.hero-top__decor-5 {
    width: 76px;
    height: 76px;
    bottom: 8%;
    right: 15px;
    padding: 20px;
    transform: rotate(-4deg);
    animation: spin2 2.5s linear 0.5s infinite;
}

.hero-top__decor-6 {
    width: 76px;
    height: 76px;
    bottom: 4%;
    right: 30%;
    padding: 20px;
    transform: rotate(10deg);
    animation: spin1 2.5s linear infinite;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    z-index: 1;
}

.hero-content__create {
    padding: 12px 24px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background-color: var(--white);
    border-radius: 600px;
    margin-bottom: 12px;
}

.hero-content__create-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: var(--main_black);
}

.hero-content__create-icon {
    width: 24px;
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.hero-content__create-icon img {
    width: 100%;
}

.hero-content__title {
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    color: var(--main_black);
}

.hero-content__title-choice {
    position: relative;
}

.hero-content__title-choice:after {
    content: '';
    width: 175px;
    height: 95px;
    position: absolute;
    top: -15px;
    left: -15px;
    background-image: url("../img/main/choice-decor.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.hero-content__title-gradient {
    background: linear-gradient(270deg, #A065C5 -0.33%, #D4609B 96.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content__text {
    max-width: 930px;
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: var(--secondary_darck);
}

.hero-content__button {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    padding: 20px 30px;
    background-color: var(--main_color);
    border-radius: 8px;
    margin-top: 28px;
}

.hero-content__button:hover {
    background-color: var(--main_black);
}

.hero-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-videos {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.hero-videos:hover .hero-videos__track {
    animation-play-state: paused;
}

.hero-videos__track {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 12px;
    animation: ticker2 40s linear infinite;
}

.hero-videos__block {
    width: 180px;
    height: 350px;
    position: relative;
    display: flex;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.hero-videos__block:after {
    content: '';
    width: calc(100% - 28px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 14px;
    background-image: url("../img/main/tiktok-ramk.png");
    background-size: 100% 100%;
    z-index: 1;
}

.hero-videos__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.hero-videos__block:hover img {
    transform: scale(1.05);
}

.hero-categories {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.hero-categories:hover .hero-categories__track {
    animation-play-state: paused;
}

.hero-categories__track {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    animation: ticker1 140s linear infinite;
    animation-direction: reverse;
}

.hero-categories__title {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    background-color: var(--white);
    border-radius: 60px;
    padding: 13px 16px;
    border: 1px solid rgba(114, 116, 145, 0.2);
}

.hero-categories__title-img {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
}

.hero-categories__title-img img {
    width: 100%;
}

.hero-categories__title-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--secondary_light);
    white-space: nowrap;
}

.hero-categories__title-icon {
    width: 16px;
    height: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
}

.hero-categories__title-icon img,
.hero-categories__title-icon svg {
    max-width: 100%;
    max-height: 100%;
}

.hero-categories__item {
    position: relative;
    display: flex;
    flex-shrink: 0;
    padding: 16px;
    background-color: var(--white);
    border-radius: 60px;
}

.hero-categories__item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--secondary_light);
    white-space: nowrap;
}

.about {
    padding: 60px 0 120px;
}

.about:after {
    content: '';
    width: 1280px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-image: url("../img/main/about-decor03.svg");
    background-size: 100% 100%;
}

.about-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.about-top {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_midle);
}

.about-content {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.about-collaborations {
    width: calc(100% / 3 - 20px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-collaborations__head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 32px;
    background-color: var(--white);
    border-radius: 12px;
}

.about-content__title {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: var(--main_black);
    z-index: 1;
}

.about-collaborations__text {
    font-weight: 100;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_midle);
    z-index: 1;
}

.about-collaborations__img {
    width: 100%;
    position: relative;
    display: flex;
}

.about-collaborations__img img {
    width: 100%;
    border-radius: 16px;
}

.about-materials {
    width: calc(100% / 3 - 20px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 70px;
}

.about-materials__head {
    width: 100%;
    min-height: 260px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 32px;
    border-radius: 12px;
    background: linear-gradient(153deg, #6754E9 14.82%, #A77ECE 98.01%);
    overflow: hidden;
}

.about-materials__title.about-content__title {
    color: var(--white);
}

.about-materials__text {
    font-weight: 100;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
    z-index: 1;
}

.about-materials__head:after {
    content: '';
    width: 170px;
    height: 170px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url("../img/main/about-decor01.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.about-community {
    width: 100%;
    min-height: 260px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 32px;
    border-radius: 12px;
    background-color: var(--white);
    overflow: hidden;
}

.about-community__text {
    font-weight: 100;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_midle);
    z-index: 1;
}

.about-community:after {
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../img/main/about-decor02.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.about-education {
    width: calc(100% / 3 - 20px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-education__head {
    width: 100%;
    min-height: 385px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 32px;
    border-radius: 16px;
    overflow: hidden;
}

.about-education__title.about-content__title {
    color: var(--white);
}

.about-education__text {
    font-weight: 100;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
    z-index: 1;
}

.about-education__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-education__bg:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.about-education__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-users {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-end;
}

.about-users__info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-users__count {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: var(--main_black);
    white-space: nowrap;
}

.about-users__count span {
    color: #ffbe11;
}

.about-users__text {
    font-weight: 100;
    font-size: 16px;
    line-height: 120%;
    color: var(--main_black);
}

.about-users__images {
    position: relative;
    display: flex;
    flex-direction: row;
}

.about-users__images img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: -20px;
}

.about-users__images img:last-child {
    margin-right: 0;
}

.why {
    padding: 80px 0 120px;
}

.why-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.why-top {
    width: 100%;
    max-width: 1240px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.why-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_midle);
}

.why-content {
    width: 100%;
    max-width: 1240px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.why-left {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.why-slider {
    width: 100%;
    position: relative;
    display: flex;
}

.why-slider .swiper-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 28px 16px;
}

.why-block {
    width: calc(50% - 8px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-block__head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.why-block__icon {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 10px;
    background-color: var(--white);
    border-radius: 50%;
}

.why-block__icon img,
.why-block__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.why-block__title {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_light);
    transition: all 0.3s ease-in-out;
}

.why-block:hover .why-block__title {
    color: var(--main_black);
}

.why-block__wrap {
    width: 100%;
    left: 0;
    bottom: 100%;
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    padding-bottom: 15px;
}

.why-block:hover .why-block__wrap {
    pointer-events: auto;
    z-index: 2;
    opacity: 1;
}

.why-block__info {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--main_color);
    border-radius: 8px;
    padding: 12px 30px;
    gap: 8px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
}

.why-block__info:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    margin: auto;
    border-style: solid;
    border-width: 14px 10.5px 0 10.5px;
    border-color: var(--main_color) transparent transparent transparent;
}

.why-block__info p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: var(--white);
}

.why-controls {
    width: 100%;
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #eeeef4;
    padding: 6px 12px;
    border-radius: 60px;
}

.why-controls__prev,
.why-controls__next {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 3px;
}

.why-controls__prev svg,
.why-controls__next svg {
    max-width: 100%;
    max-height: 100%;
}

.why-controls__pagination {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    bottom: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
}

.why-controls__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
}

.why-controls__pagination .swiper-pagination-bullet-active {
    background-color: var(--main_color);
}

.why-right {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-gallery {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: -40px;
}

.why-gallery__item {
    position: relative;
    display: flex;
    border: 6px solid var(--white);
    border-radius: 12px;
}

.why-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.why-gallery__item-1 {
    width: 47%;
    transform: rotate(-10deg);
    margin-right: -5%;
    margin-bottom: -40px;
    z-index: 1;
}

.why-gallery__item-1:after {
    content: '';
    position: absolute;
    top: -55px;
    right: -50px;
    width: 72px;
    height: 72px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
    transform: rotate(10deg);
    background-image: url("../img/icons/why14.png");
    background-size: 32px 32px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: spin1 2.5s linear infinite;
}

.why-gallery__item-2 {
    width: 53%;
    transform: rotate(10deg);
}

.why-gallery__item-2:after {
    content: '';
    position: absolute;
    bottom: -55px;
    right: -30px;
    width: 75px;
    height: 75px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
    transform: rotate(10deg);
    background-image: url("../img/icons/why16.png");
    background-size: 36px 36px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: spin2 2.5s linear 1s infinite;
}

.why-showcase {
    width: 100%;
    max-width: 335px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 40px 32px;
    border-radius: 12px;
    background: linear-gradient(153deg, #6754E9 14.82%, #A77ECE 98.01%);
    z-index: 1;
    margin-left: 40px;
}

.why-showcase:after {
    content: '';
    position: absolute;
    bottom: 65px;
    left: -85px;
    width: 88px;
    height: 88px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
    transform: rotate(-35deg);
    background-image: url("../img/icons/why15.png");
    background-size: 48px 48px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: spin3 2.5s linear 0.5s infinite;
}

.why-showcase__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--white);
}

.why-showcase__text {
    font-weight: 100;
    font-size: 18px;
    line-height: 120%;
    color: var(--white);
}

.why-showcase__button {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    background-color: var(--main_black);
    margin-top: 16px;
}

.why-showcase__button:hover {
    background-color: var(--secondary_accent);
}

.experts {
    padding: 120px 0 180px;
    background-color: #eeeef4;
}

.experts:before {
    content: '';
    width: 1114px;
    height: 50px;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/main/section-head-decor01.svg");
    background-size: 100% 100%;
}

.experts:after {
    content: '';
    width: 100%;
    height: 160px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../img/main/track-decor.svg");
}

.experts-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.experts-top {
    width: 100%;
    max-width: 1240px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.experts-top__title .section-title__gradient {
    background: linear-gradient(270deg, #786AE5 -0.33%, #A365C2 96.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experts-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_midle);
}

.experts-slider {
    width: 100%;
    position: relative;
    display: flex;
    padding: 0 12px;
}

.experts-block {
    width: 290px;
    height: 560px;
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}

.experts-block__img {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

.experts-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.experts-block:hover .experts-block__img img {
    transform: scale(1.04);
}

.experts-block__img:after {
    content: '';
    width: calc(100% - 28px);
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 14px;
    background-image: url("../img/main/tiktok-ramk.png");
    background-size: 100% 100%;
    z-index: 1;
}

.experts-block__button {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.experts-block:hover .experts-block__button {
    transform: scale(0.8);
}

.experts-block__button img,
.experts-block__button svg {
    width: 100%;
    height: 100%;
}

.inside {
    padding: 120px 0;
    background-color: var(--white);
}

.inside-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.inside-top {
    width: 100%;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.inside-top__title {
    background: linear-gradient(270deg, #8069DF -0.33%, #FE5B7A 96.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inside-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_midle);
}

.inside-content {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.inside-telegram {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 54px 32px 40px;
    background-color: #f6f6fa;
    border-radius: 26px;
    overflow: hidden;
}

.inside-telegram:after {
    content: '';
    width: 45%;
    aspect-ratio: 61 / 70;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url("../img/main/inside-decor01.png");
    background-size: 100% 100%;
}

.inside-telegram__head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    z-index: 1;
}

.inside-telegram__info {
    max-width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.inside-telegram__title {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: var(--main_black);
}

.inside-telegram__text {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_midle);
}

.inside-telegram__number {
    font-weight: 200;
    font-size: 64px;
    line-height: 120%;
    text-align: right;
    color: var(--main_color);
    opacity: .2;
}

.inside-telegram__messages {
    width: 100%;
    max-width: 400px;
    position: relative;
    display: flex;
    z-index: 1;
}

.inside-telegram__messages img {
    width: 100%;
}

.inside-app {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(153deg, #6754E9 14.82%, #A77ECE 98.01%);
    border-radius: 26px;
    overflow: hidden;
    padding: 54px 32px 0;
}

.inside-app__head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.inside-app__info {
    max-width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.inside-app__title {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: var(--white);
}

.inside-app__text {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
}

.inside-app__number {
    font-weight: 200;
    font-size: 64px;
    line-height: 120%;
    text-align: right;
    color: var(--white);
    opacity: .2;
}

.inside-app__bottom {
    width: 65%;
    position: relative;
    display: flex;
    align-self: flex-end;
}

.inside-app__logo {
    width: 78px;
    height: 80px;
    position: absolute;
    top: 60px;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 12px 0 #4A4C8A99;
    padding: 20px;
    z-index: 1;
}

.inside-app__logo img,
.inside-app__logo svg {
    max-width: 100%;
    max-height: 100%;
}

.inside-app__img {
    width: 100%;
    position: relative;
    display: flex;
}

.inside-app__img img {
    width: 100%;
}

.members {
    padding: 180px 0 60px;
}

.members:before {
    content: '';
    width: 1114px;
    height: 50px;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../img/main/section-head-decor02.svg');
    background-size: 100% 100%;
}

.members .container {
    max-width: 1450px;
    padding: 0;
}

.members-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.members-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 30px;
    margin-bottom: 60px;
}

.members-top__title .section-title__gradient {
    background: linear-gradient(270deg, #B463B5 -0.33%, #FF5B79 96.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.members-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_midle);
}

.steps {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.steps-img {
    width: 50%;
    max-width: 640px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.steps-img:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/main/steps-gradient.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.steps-img img {
    max-width: 100%;
    z-index: 1;
}

.steps-navigation {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 30px;
    gap: 20px;
    z-index: 5;
}

.steps-navigation__prev,
.steps-navigation__next {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--main_color);
    padding: 10px;
}

.steps-navigation__prev:hover,
.steps-navigation__next:hover {
    background-color: var(--main_color);
}

.steps-navigation__prev svg,
.steps-navigation__next svg {
    max-width: 100%;
    max-height: 100%;
}

.steps-navigation__prev svg path,
.steps-navigation__next svg path {
    transition: all 0.3s ease-in-out;
}

.steps-navigation__prev:hover svg path,
.steps-navigation__next:hover svg path {
    stroke: var(--white);
}

.steps-content {
    position: absolute;
    top: 100px;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: all 1s ease;
}

.steps-content.step2 {
    transform: translate(0, 0) rotate(0);
}

.steps-content.step2 {
    transform: translate(-310px, -135px) rotate(-12deg);
}

.steps-content.step3 {
    transform: translate(-635px, -210px) rotate(-24deg);
}

.steps-content.step4 {
    transform: translate(-975px, -210px) rotate(-36deg);
}

.steps-content.step5 {
    transform: translate(-1310px, -140px) rotate(-48deg);
}

.steps-content.step6 {
    transform: translate(-1620px, -5px) rotate(-60deg);
}

.steps-controls {
    width: 100%;
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #eeeef4;
    padding: 6px 12px;
    border-radius: 60px;
}

.steps-controls__prev,
.steps-controls__next {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 3px;
}

.steps-controls__prev svg,
.steps-controls__next svg {
    max-width: 100%;
    max-height: 100%;
}

.steps-controls__pagination {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    bottom: unset !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
}

.steps-controls__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
}

.steps-controls__pagination .swiper-pagination-bullet-active {
    background-color: var(--main_color);
}

.steps-block {
    width: 360px;
    height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 16px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
}

.steps-block:nth-child(2) {
    transform: rotate(12deg);
    margin-top: 40px;
    margin-left: 30px;
}

.steps-block:nth-child(3) {
    transform: rotate(24deg);
    margin-top: 162px;
    margin-left: 14px;
}

.steps-block:nth-child(4) {
    transform: rotate(36deg);
    margin-top: 360px;
    margin-left: -20px;
}

.steps-block:nth-child(5) {
    transform: rotate(48deg);
    margin-top: 623px;
    margin-left: -69px;
}

.steps-block:nth-child(6) {
    transform: rotate(60deg);
    margin-top: 943px;
    margin-left: -130px;
}

.steps-block__icon {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-block__icon img,
.steps-block__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.steps-block__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #282640;
}

.steps-block__text {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_light);
}

.join {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 80px 40px;
    background-color: var(--main_color);
    border-radius: 26px;
    margin-bottom: 24px;
}

.join-content {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.join-left {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.join-left__title.section-title {
    color: var(--white);
    text-align: left;
}

.join-moment {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.join-moment__price {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.join-moment__price-span {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
    padding: 12px 18px;
    background-color: var(--secondary_accent);
    border-radius: 6px;
}

.join-moment__price-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: var(--white);
}

.join-moment__text {
    font-weight: 100;
    font-size: 20px;
    line-height: 140%;
    color: var(--white);
}

.join-moment__text strong {
    font-weight: 500;
}

.join-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 32px;
    margin-top: 16px;
}

.join-bottom__button {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    padding: 28px 30px;
    background-color: var(--main_black);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.join-bottom__button:before {
    content: '';
    width: 35px;
    height: 110px;
    position: absolute;
    left: -45px;
    bottom: 50%;
    background-image: url("../img/main/join-arrow.svg");
    background-size: 100% 100%;
    pointer-events: none;
}

.join-bottom__button:after {
    content: '';
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    flex-shrink: 0;
    background-image: url("../img/icons/join-star.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.join-bottom__button:hover {
    background-color: var(--secondary_accent);
}

.join-bottom__text {
    max-width: 320px;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.6);
}

.join-bottom__text strong {
    color: var(--white);
}

.join-right {
    width: 45%;
    max-width: 490px;
    position: relative;
    display: flex;
}

.join-right img {
    width: 100%;
}

.join-info {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.join-info__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.6);
}

.cooperate {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.cooperate-left {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    border-radius: 26px;
    background-color: #eeeef4;
    background-image: url("../img/main/cooperate-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cooperate-left__content {
    width: 100%;
    max-width: 510px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cooperate-left__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 140%;
    color: var(--main_black);
}

.cooperate-left__question {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--main_color);
    margin-bottom: 16px;
}

.cooperate-left__text {
    max-width: 465px;
    font-weight: 100;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_midle);
    margin-bottom: 16px;
}

.cooperate-left__button {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    padding: 20px 30px;
    background-color: var(--main_color);
    border-radius: 8px;
}

.cooperate-left__button:hover {
    background-color: var(--main_black);
}

.cooperate-right {
    width: 50%;
    position: relative;
    display: flex;
    gap: 24px;
}

.cooperate-right img {
    width: calc(50% - 12px);
    border-radius: 26px;
    object-fit: cover;
}

.faq {
    padding: 60px 0 120px;
}

.faq-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.faq-top {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-top__text {
    max-width: 600px;
    font-weight: 100;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--secondary_light);
}

.faq-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.faq-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #DDDDEB99;
}

.faq-block:first-child {
    border-top: 1px solid #DDDDEB99;
}

.faq-block__head {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    padding: 30px 0;
    gap: 10px;
}

.faq-block__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--main_black);
    transition: all 0.3s ease-in-out;
}

.faq-block:hover .faq-block__title {
    color: var(--main_color);
}

.faq-block__head.active .faq-block__title {
    color: var(--main_color);
}

.faq-block__icon {
    width: 26px;
    height: 26px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.faq-block__head.active .faq-block__icon {
    transform: rotate(45deg);
}

.faq-block__icon img,
.faq-block__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.faq-block__panel {
    width: 100%;
    max-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-block__panel.active {
    margin-bottom: 30px;
}

.faq-block__panel p {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary_light);
}

/***************************************/

/**************** Footer ***************/

.footer {
    width: 100%;
    position: relative;
}

.footer .container {
    max-width: 1450px;
    padding: 0;
}

.footer-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-body {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    background-color: #EFEFFF;
    border-radius: 26px 26px 0 0;
    padding: 120px 30px 80px;
    background-image: url("../img/main/footer-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-join {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-join__left {
    width: 50%;
    max-width: 540px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-join__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    color: var(--main_black);
}

.footer-join__month {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    color: var(--secondary_darck);
}

.footer-join__month-card {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: var(--main_color);
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 12px 0 #ADB0EE99;
    margin-left: 16px;
}

.footer-join__month-card:after {
    content: '';
    width: 36px;
    height: 36px;
    position: relative;
    background-image: url("../img/icons/card.png");
    background-position: center;
    background-size: 100% 100%;
}

.footer-join__info {
    font-weight: 100;
    font-size: 16px;
    line-height: 140%;
    color: var(--secondary_light);
}

.footer-join__right {
    max-width: 50%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.footer-join__button_club {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    white-space: nowrap;
    text-align: center;
    padding: 20px 30px;
    background-color: var(--main_color);
    border-radius: 8px;
}

.footer-join__button_club:hover {
    background-color: var(--main_black);
}

.footer-join__button_partner {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--secondary_midle);
    white-space: nowrap;
    text-align: center;
    padding: 18px 30px;
    border: 1px solid #BABCFF99;
    border-radius: 8px;
}

.footer-join__button_partner:hover {
    color: var(--main_color);
    border: 1px solid var(--main_color);
}

.footer-main {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-socials {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-socials:before {
    content: '';
    width: 50%;
    height: 1px;
    background-color: var(--white);
}

.footer-socials:after {
    content: '';
    width: 50%;
    height: 1px;
    background-color: var(--white);
}

.footer-socials__list {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.footer-socials__link {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 12px;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.footer-socials__link img,
.footer-socials__link svg {
    max-width: 100%;
    max-height: 100%;
}

.footer-socials__link svg path {
    transition: all 0.3s ease-in-out;
}

.footer-socials__link:hover {
    background-color: var(--white);
}

.footer-socials__link:hover svg path {
    fill: var(--main_color)
}

.footer-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.footer-left {
    width: 25%;
    max-width: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    width: 100%;
    max-width: 200px;
    position: relative;
    display: flex;
}

.footer-logo img {
    width: 100%;
}

.footer-language {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 60px;
    border: 1px solid var(--white);
}

.footer-language__icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-language__icon img {
    max-width: 100%;
    max-height: 100%;
}

.footer-language__block {
    position: relative;
    display: flex;
}

.footer-language__block-current {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--secondary_midle);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.footer-language__block-current:after {
    content: '';
    width: 12px;
    height: 12px;
    position: relative;
    display: flex;
    flex-shrink: 0;
    background-image: url("../img/icons/arrow-bottom.svg");
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.footer-language__block-current.active:after {
    transform: rotate(180deg);
}

.footer-language__block-list {
    width: 100%;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 8px 16px;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.footer-language__block-list.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.footer-language__block-list a {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: var(--secondary_darck);
}

.footer-language__block-list a:hover {
    color: var(--main_color);
}

.footer-menu {
    width: 50%;
    max-width: 550px;
    position: relative;
    display: flex;
}

.footer-menu__list {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-menu__list li {
    width: calc(50% - 8px);
    position: relative;
    display: flex;
}

.footer-menu__list li a {
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: var(--secondary_darck);
}

.footer-menu__list li a:hover {
    color: var(--main_color);
}

.footer-right {
    width: 25%;
    max-width: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-info__title {
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: var(--secondary_light);
}

.footer-info__email {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--main_color);
}

.footer-info__email:hover {
    color: var(--main_black);
}

.footer-info__telegram {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--secondary_darck);
}

.footer-info__telegram:hover {
    color: var(--main_color);
}

.footer-bottom {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    background-color: var(--main_black);
    border-radius: 26px 26px 0 0;
}

.footer-bottom__content {
    width: 100%;
    max-width: 1220px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-bottom__copyright {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom__copyright p {
    font-weight: 300;
    font-size: 15px;
    line-height: 120%;
    color: var(--white);
    white-space: nowrap;
}

.footer-bottom__links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom__links a {
    font-weight: 300;
    font-size: 15px;
    line-height: 120%;
    color: var(--secondary_light);
}

.footer-bottom__links a:hover {
    color: var(--main_color);
}

/***************************************/

/**************** Media  ***************/

@media only screen and (max-width: 1400px) {

    .header {
        padding: 24px 0;
    }

    .nav-menu {
        gap: 24px;
    }

}

@media only screen and (max-width: 1280px) {

    .header-row {
        gap: 24px;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .header-buttons {
        gap: 10px;
    }

    .header-buttons__club,
    .header-buttons__author {
        font-size: 14px;
        padding: 12px 16px;
    }


    .inside-telegram {
        width: 53%;
    }

    .inside-app {
        width: 47%;
    }

    .inside-telegram__number {
        font-size: 48px;
    }

    .inside-app__number {
        font-size: 48px;
    }

    .join-left {
        width: 50%;
    }

    .join-bottom__button:before {
        display: none;
    }

    .join-right {
        width: 50%;
    }

}

@media only screen and (max-width: 1024px) {

    .container {
        padding: 0 30px;
    }

    .header.fixed,
    .header {
        padding: 20px 0;
    }

    .header-burger {
        display: flex;
    }

    .header-content {
        width: 100%;
        height: calc(100vh - 88px);
        position: fixed;
        top: 88px;
        right: -1500px;
        z-index: 20;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        background-color: var(--main_black);
        padding: 40px 16px;
        transition: all 0.5s ease;
        overflow-y: auto;
    }

    .header-content.active {
        right: 0;
    }

    .header-nav {
        width: 100%;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        justify-content: center;
    }

    .nav-menu li a {
        width: 100%;
        position: relative;
        font-weight: 100;
        font-size: 16px;
        padding: 20px 0;
        color: var(--white);
        text-align: center;
    }

    .nav-menu li a:after {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.0416) 0%, rgba(255, 255, 255, 0.26) 50.48%, rgba(255, 255, 255, 0.0416) 100%);
    }

    .header-socials {
        display: flex;
    }

    .header-buttons {
        margin-left: auto;
    }

    .header-buttons__club, .header-buttons__author {
        padding: 12px 18px;
        font-size: 16px;
    }

    .section-title {
        font-size: 42px;
    }


    .hero:after {
        top: 0;
    }

    .hero-top__decor-1 {
        top: -75px;
    }

    .hero-top__decor-2 {
        display: none;
    }

    .hero-top__decor-3 {
        left: 12%;
        bottom: 2%;
    }

    .hero-top__decor-4 {
        top: -75px;
    }

    .hero-top__decor-5 {
        right: 10%;
        bottom: 5%;
    }

    .hero-top__decor-6 {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .about-collaborations {
        width: 100%;
        flex-direction: row;
    }

    .about-collaborations__head {
        width: 60%;
        justify-content: space-between;
    }

    .about-collaborations__img {
        width: 40%;
    }

    .about-materials {
        width: 100%;
        margin-top: 0;
        flex-direction: row;
    }

    .about-materials__head {
        width: 50%;
    }

    .about-community {
        width: 50%;
    }

    .about-education {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .about-users {
        width: 50%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-education__head {
        width: 50%;
        min-height: 300px;
    }

    .why {
        padding: 70px 0 150px;
    }

    .why-content {
        flex-direction: column;
        gap: 60px;
    }

    .why-left {
        width: 100%;
        gap: 32px;
    }

    .why-slider .swiper-wrapper {
        align-items: unset;
        flex-wrap: nowrap;
        gap: 0;
    }

    .why-controls {
        display: flex;
    }

    .why-block {
        width: 320px;
        min-height: 270px;
        height: auto;
        background-color: var(--white);
        border-radius: 16px;
        padding: 32px;
    }

    .why-block__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-block__icon {
        background-color: var(--main_color);
    }

    .why-block__icon svg path {
        fill: var(--white);
    }

    .why-block__title {
        color: var(--main_black);
    }

    .why-block__wrap {
        position: relative;
        background-color: transparent;
        left: unset;
        bottom: unset;
        z-index: 1;
        opacity: 1;
        pointer-events: auto;
    }

    .why-block__info {
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .why-block__info:after {
        display: none;
    }

    .why-block__info p {
        color: var(--secondary_light);
    }

    .why-right {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .why-gallery {
        width: 65%;
        margin-right: -5%;
    }

    .why-showcase {
        width: 40%;
        margin-left: 0;
    }

    .why-gallery__item-1:before {
        content: '';
        position: absolute;
        bottom: 0;
        right: -25px;
        width: 68px;
        height: 68px;
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: 0 8px 12px 0 #ADB0EE99;
        transform: rotate(-35deg);
        background-image: url("../img/icons/why15.png");
        background-size: 38px 38px;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
        animation: spin3 2.5s linear 0.5s infinite;
    }

    .why-showcase:after {
        display: none;
    }

    .why-showcase__text {
        font-size: 16px;
    }


    .inside {
        padding: 80px 0;
    }

    .inside-telegram {
        width: 50%;
    }

    .inside-app {
        width: 50%;
    }

    .inside-telegram__number {
        font-size: 36px;
    }

    .inside-app__number {
        font-size: 36px;
    }

    .inside-telegram__text {
        font-size: 16px;
    }

    .inside-telegram__messages {
        width: 90%;
    }

    .inside-app__text {
        font-size: 16px;
    }

    .inside-app__logo {
        width: 58px;
        height: 60px;
        padding: 16px;
        top: 40px;
    }

    .members {
        padding: 130px 0 40px;
    }

    .steps {
        gap: 5px;
        align-items: center;
        flex-direction: column-reverse;
        padding: 0 30px;
    }

    .steps-content {
        width: 100%;
        position: relative;
        top: unset;
        left: unset;
    }

    .steps-controls {
        display: flex;
    }

    .steps-block:nth-child(n) {
        transform: rotate(0);
        margin-top: 0;
        margin-left: 0;
    }

    .steps-navigation {
        display: none;
    }

    .steps-img {
        width: 70%;
        max-width: 500px;
        justify-content: center;
    }

    .join {
        padding: 80px 30px;
    }

    .join-content {
        flex-direction: column;
    }

    .join-left {
        width: 100%;
        gap: 32px;
    }

    .join-bottom {
        margin-top: 0;
    }

    .join-right {
        width: 100%;
        max-width: 700px;
        align-self: center;
    }

    .cooperate-left {
        width: 60%;
        padding: 60px 30px;
    }

    .cooperate-left__title {
        font-size: 32px;
    }

    .cooperate-right {
        width: 40%;
    }

    .cooperate-right img {
        width: 100%;
    }

    .cooperate-right img:nth-child(2) {
        display: none;
    }

    .faq {
        padding: 40px 0 80px;
    }

    .footer-body {
        gap: 60px;
        padding: 80px 30px 60px;
    }

    .footer-join {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-join__left {
        width: 100%;
        max-width: 100%;
    }

    .footer-join__right {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-left {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-menu {
        width: 55%;
    }

    .footer-right {
        width: unset;
    }

}

@media only screen and (max-width: 768px) {

    .hero-content__title {
        font-size: 46px;
    }

    .hero-content__title-choice:after {
        display: none;
    }

    .about-content__title {
        font-size: 24px;
    }

    .about-collaborations__text,
    .about-community__text,
    .about-education__text,
    .about-materials__text {
        font-size: 16px;
    }

    .why {
        padding: 70px 0 100px;
    }

    .why-right {
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }

    .why-gallery {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .why-gallery__item-1 {
        width: 50%;
    }

    .why-gallery__item-2 {
        width: 55%;
    }

    .why-showcase {
        width: 100%;
        max-width: 500px;
    }

    .inside-content {
        flex-direction: column;
    }

    .inside-telegram {
        width: 100%;
    }

    .inside-telegram__info {
        max-width: unset;
    }

    .inside-app {
        width: 100%;
    }

    .inside-app__bottom {
        width: 100%;
        max-width: 300px;
    }

    .inside-app__info {
        max-width: unset;
    }

    .inside-app__logo {
        width: 78px;
        height: 80px;
        padding: 20px;
    }

    .cooperate-right {
        display: none;
    }

    .cooperate-left {
        width: 100%;
    }

    .cooperate-left__content {
        max-width: 100%;
    }

}

@media only screen and (max-width: 600px) {

    .container {
        padding: 0 15px;
    }

    .header-logo {
        width: 140px;
    }

    .header-mobile__buttons {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .header-content {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .hero {
        padding: 140px 0 40px;
    }

    .hero-top__decor {
        display: none;
    }

    .about-collaborations {
        gap: 10px;
    }

    .about-materials {
        gap: 20px;
        flex-direction: column;
    }

    .about-materials__head {
        width: 100%;
    }

    .about-community {
        width: 100%;
    }

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

    .about-education__head {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .about-users {
        width: 100%;
        align-items: center;
    }

    .members-top {
        padding: 0 15px;
    }

    .join-left {
        align-items: center;
    }

    .join-left__title.section-title {
        text-align: center;
        font-size: 36px;
    }

    .join-moment {
        gap: 24px;
        align-items: center;
    }

    .join-moment__price {
        justify-content: center;
    }

    .join-moment__text {
        text-align: center;
    }

    .join-bottom {
        justify-content: center;
    }

    .join-bottom__text {
        text-align: center;
    }

    .join-info {
        align-items: center;
    }

    .join-info__text {
        text-align: center;
    }

    .cooperate-left__content {
        align-items: center;
    }

    .cooperate-left__title {
        text-align: center;
    }

    .cooperate-left__question {
        text-align: center;
    }

    .cooperate-left__text {
        text-align: center;
    }

    .footer-body {
        padding: 70px 16px 60px;
        gap: 60px;
        background-position: top;
    }

    .footer-join__left {
        align-items: center;
    }

    .footer-join__title {
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-join__month {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-join__info {
        text-align: center;
    }

    .footer-join__right {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom__content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom__links {
        gap: 12px;
    }

    .footer-bottom__links a {
        width: 100%;
    }

    .footer-bottom {
        padding: 24px 16px;
    }

}

@media only screen and (max-width: 480px) {

    .header-logo {
        width: 120px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero {
        padding: 110px 0 40px;
    }

    .hero-row {
        gap: 50px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-content__create {
        margin-bottom: 5px;
    }

    .hero-content__create-text {
        font-size: 18px;
    }

    .hero-content__title {
        font-size: 36px;
    }

    .hero-content__text {
        font-size: 18px;
    }

    .hero-content__button {
        margin-top: 10px;
    }

    .hero-bottom {
        gap: 30px;
    }

    .hero-videos__block {
        width: 155px;
        height: 300px;
    }

    .hero-categories__title-text {
        font-size: 14px;
    }

    .hero-categories__item span {
        font-size: 14px;
    }

    .hero-categories__title-img {
        width: 22px;
        height: 22px;
    }

    .about {
        padding: 40px 0 100px;
    }

    .about-top__text {
        font-size: 18px;
    }

    .about-row {
        gap: 42px;
    }

    .about-content {
        gap: 20px;
    }

    .about-collaborations {
        flex-direction: column;
    }

    .about-collaborations__head {
        width: 100%;
        padding: 24px 16px;
    }

    .about-content__title {
        font-size: 22px;
    }

    .about-collaborations__img {
        width: 100%;
    }

    .about-materials__head {
        min-height: 150px;
        padding: 24px 16px;
    }

    .about-community {
        min-height: 150px;
        padding: 24px 16px;
    }

    .about-community__text {
        width: 70%;
    }

    .about-users {
        flex-direction: column-reverse;
    }

    .about-users__info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .why {
        padding: 60px 0 80px;
    }

    .why-row {
        gap: 50px;
    }

    .why-top__text {
        font-size: 18px;
    }

    .why-block {
        width: 260px;
        padding: 24px;
    }

    .why-gallery__item-1:after {
        width: 48px;
        height: 48px;
        top: -15px;
        right: -25px;
        background-size: 22px 22px;
    }

    .why-gallery__item-1:before {
        width: 55px;
        height: 55px;
        background-size: 28px 28px;
    }

    .why-gallery__item-2:after {
        width: 60px;
        height: 60px;
        background-size: 28px 28px;
        bottom: -30px;
        right: -20px;
    }

    .experts {
        padding: 60px 0 100px;
    }

    .experts:before {
        display: none;
    }

    .experts:after {
        height: 80px;
        width: 1800px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .experts-row {
        gap: 42px;
    }

    .experts-top__text {
        font-size: 18px;
    }

    .experts-block {
        width: 205px;
        height: 400px;
    }

    .experts-block__button {
        width: 50px;
        height: 50px;
    }

    .inside-row {
        gap: 42px;
    }

    .inside-top__text {
        font-size: 18px;
    }

    .inside-telegram {
        padding: 40px 24px 30px;
    }

    .inside-telegram__info {
        gap: 14px;
    }

    .inside-telegram__number {
        font-size: 20px;
    }

    .inside-telegram__title {
        font-size: 26px;
    }

    .inside-telegram__messages {
        width: 80%;
    }

    .inside-app {
        padding: 40px 24px 0;
    }

    .inside-app__info {
        gap: 14px;
    }

    .inside-app__title {
        font-size: 26px;
    }

    .inside-app__number {
        font-size: 20px;
    }

    .inside-app__bottom {
        width: 100%;
        max-width: 250px;
    }

    .inside-app__logo {
        width: 52px;
        height: 54px;
        padding: 14px;
        top: 50px;
        left: 5px;
    }

    .members {
        padding: 80px 0 40px;
    }

    .members:before {
        display: none;
    }

    .members-top {
        margin-bottom: 40px;
    }

    .members-top__title .section-title__gradient {
        display: block;
    }

    .members-top__text {
        font-size: 18px;
    }

    .steps {
        padding: 0 15px;
    }

    .steps-block {
        width: 280px;
        max-height: 290px;
        height: auto;
        padding: 24px;
    }

    .steps-block__icon {
        width: 50px;
        height: 50px;
    }

    .steps-block__title {
        font-size: 18px;
    }

    .steps-block__text {
        font-size: 16px;
    }

    .steps-block__text br {
        display: none;
    }

    .join {
        padding: 80px 20px;
        gap: 16px;
        margin-bottom: 12px;
    }

    .join-left {
        gap: 25px;
    }

    .join-left__title.section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .join-moment__price-span {
        font-size: 16px;
        text-align: center;
    }

    .join-moment__price-text {
        font-size: 18px;
        text-align: center;
    }

    .join-bottom__button {
        width: 100%;
        font-size: 16px;
    }

    .join-moment__text {
        font-size: 18px;
    }

    .join-info__text {
        font-size: 14px;
    }

    .cooperate-left {
        padding: 60px 24px;
    }

    .cooperate-left__title {
        font-size: 26px;
    }

    .cooperate-left__text {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .cooperate-left__button {
        width: 100%;
        font-size: 16px;
    }

    .faq-row {
        gap: 50px;
    }

    .faq-top__text {
        font-size: 18px;
    }

    .faq-block__head {
        padding: 24px 0;
    }

    .faq-block__title {
        font-size: 18px;
    }

    .faq-block__panel p {
        font-size: 16px;
    }

    .faq-block__panel.active {
        margin-bottom: 24px;
    }

    .footer-bottom__links a {
        font-size: 14px;
    }

    .footer-join__title {
        font-size: 26px;
    }

    .footer-join__info {
        font-size: 14px;
    }

    .footer-join__button_club {
        width: 100%;
    }

    .footer-join__button_partner {
        width: 100%;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-menu {
        width: 100%;
    }

}


/***************************************/

/************** Animations *************/

@keyframes ticker1 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 12px));
    }
}

@keyframes ticker2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 12px));
    }
}

@keyframes spin1 {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(25deg) translate(10px, -10px);
    }
    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes spin2 {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(-25deg) translate(6px, 6px);
    }
    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes spin3 {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(15deg) translate(16px, -16px);
    }
    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}


