@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Montserrat';
    /*background-color: var(--main-fone);*/
    background: linear-gradient(90.00deg, rgba(36, 182, 77, 0.6) 0.5%, rgba(73, 123, 223, 0.6) 92%);
    color: var(--text-color);
    font-size: 14px;
    font-weight: normal;
}


/* header start */

.wrapper {
    position: relative;
    background: linear-gradient(90.00deg, rgba(36, 182, 77, 0.6) 0.5%, rgba(73, 123, 223, 0.6) 92%);
}

.header-page--fone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    z-index: -1;
}

.header-page {
    margin-top: 22px;
}

.header-page--absolute {
    position: absolute;
    z-index: 11;
    width: 100%;
    left: 0;
    top: 0;
}

.header-page .container {}

.header-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-page__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(184, 208, 255, 0.6);
    border-radius: 100px;
    padding-left: 30px;
    background: linear-gradient(90.00deg, rgba(73, 123, 223, 0.6) 50%, rgba(36, 182, 77, 0.6) 99.5%);
}

.header-page__navigation {}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.navigation__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.navigation__item {
    margin-left: 15px;
    margin-right: 15px;
}

.navigation__link {
    font-weight: 400;
    font-size: 16px;
    position: relative;
}

.navigation__link.soon {
    opacity: .4;
    cursor: default;
}

.navigation__link::after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: -4px;
    transition: width 0.3s ease-in-out;
}


.navigation__link:hover {
    text-shadow: 0 0 5px #367bff;
}

.navigation__link:hover::after {
    width: 100%;
    left: 0;
    right: unset;
}

.navigation__registration-btn {
    padding: 18px 50px;
    /* backdrop-filter: blur(9px); */
    background: rgba(9, 9, 9, 0.37);
    border: 1px solid rgba(184, 208, 255, 0.6);
    border-radius: 100px;
    display: inline-block;
    text-shadow: 0 0 5px #367bff;
    /* transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out; */
}


/* .navigation__registration-btn:hover {
    color: rgba(9, 9, 9, 1);
    background-color: rgba(184, 208, 255, 0.6);
} */

/* .navigation__registration-btn:hover {
    color: #fff;
    background-color: var(--accent-color);
} */


.glow-on-hover {
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #fff
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.37);
    left: 0;
    top: 0;
    border-radius: 100px;
    transition: background 0.3s ease-in-out;
}

.glow-on-hover:hover:after {
    background: rgba(9, 9, 9, 1);
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* header end */



/* hero start */

.hero {
    /*background-image: url('../image/main_fone.png'), url('../image/earth.png');*/
    background-repeat: no-repeat, no-repeat;
    background-size: cover, 1016px;
    background-position: top center, center 90%;
    padding-top: 82px;
    position: relative;
}

.hero__container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 120px;
    min-height: 1044px; */
}


.hero__info {
    margin-bottom: 450px;
    padding-top: 100px;
}

.title-animate {
    transform: translate3d(0, 0, 0);
}

.hero__title h1,
.hero__title span {
    font-weight: 700;
    font-size: 58px;
    text-align: center;
    color: #fff;
    display: block;
}

.hero__title h1 {
    line-height: 120%;
}

.hero__description {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    max-width: 892px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}


.list-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 60px;
    margin-top: 50px !important;
}

.list-links__item {}

.list-links__link {
    border: 2px solid #5992FF;
    border-radius: 50px;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: transparent;
    background-size: 200% 200%;
    transition: .3s all;
}

.list-links__link:hover {
    background: linear-gradient(90.00deg, rgba(73, 123, 223, 0.6) 50%, rgba(36, 182, 77, 0.6) 99.5%);
    background-size: 100% 100%;
}

.list-links__link img {
    margin-right: 10px;
}

.show {
    position: absolute;
    bottom: -20%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

@media(max-height:1000px) {
    .show {
        bottom: -27%;
    }
}

.show-show {
    position: relative;
    border: 1px solid rgba(184, 208, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 27px;
    transform: scale(0.9); /* Изначальный масштаб */
    z-index: 10;
}


.hero__fone {
    position: absolute;
    bottom: -15%;
    left: 10%;
    /* bottom: -15%;
    left: 50%;
    transform: translateX(-50%); */
    z-index: -1;
}


/* hero end */


/* catalog start */

.catalog {
    padding-top: 500px;
    padding-bottom: 100px;
    position: relative;
}


.catalog__neon-circle {
    position: absolute;
    top: -10%;
    left: -9%;
    width: 900px;
}

.catalog__bottom-right-fone {
    position: absolute;
    right: 0;
    bottom: 0;
}

.catalog__bottom-fone {
    position: absolute;
    bottom: -50%;
    left: -2%;
}

.catalog-list {
    border-collapse: collapse;
    display: flex;
    flex-wrap: wrap;
}


.catalog-list__grid {
    width: calc(100% / 12 * 4);
    padding: 14px 0;
    border: 1px solid #fff;
}

.catalog-list__grid:nth-child(-n+3) {
    border-top: none;
    /* Убираем верхний бордер у первых трех элементов */
}

.catalog-list__grid:nth-last-child(-n+3) {
    border-bottom: none;
    /* Убираем нижний бордер у последних трех элементов */
}

.catalog-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 15px;
    padding: 14px;
    overflow: hidden;
    height: 100%;
    margin-left: 14px;
    margin-right: 14px;
    background-size: 200% 200%;
    transition: background-color 0.3s ease-in-out;
}

.catalog-list__group {
    transform: translate3d(0, 0, 0);
}

.description-box {
    transform: translate3d(0, 0, 0);
}

.catalog-list__title {}

.catalog-list__description {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Указывает количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.catalog-list__arrow {}

.catalog-list__grid:nth-child(3n+1) {
    border-left: none;
}

.catalog-list__grid:nth-child(3n) {
    border-right: none;
}


.catalog-list__item:hover:before {
    left: 110%;
}


.catalog-list__btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}



.catalog-list__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 650ms;
}

.catalog-list__item:hover {
    background: linear-gradient(90.00deg, rgba(36, 182, 77, 0.6) 0.5%,rgba(73, 123, 223, 0.6) 92%);
    background-size: 100% 100%;
}

.catalog-list__arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.catalog-list__item:hover .catalog-list__arrow {
    opacity: 1;
    transform: translateX(0px);
}

.catalog-list__btn-wrap {
    position: relative;
    height: 100%;
    padding: 14px;
    margin-left: 14px;
    margin-right: 14px;
}

.catalog-list__reg::after:hover {
    background-color: var(--main-fone);
}


.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 11, 39, 0.37);
    left: 0;
    top: 0;
    border-radius: 100px;
    transition: background 0.3s ease-in-out;
}

.glow-on-hover:hover:after {
    background: var(--main-fone);
}

.catalog-list__reg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    width: 100%;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 5px #367bff;
    border-radius: 20px;
    border: 1px dashed #5992FF;
}

.catalog-list__reg::after {
    background-color: transparent;
    border-radius: 20px;
}


/* catalog end */



/* tags */


.tags {
    position: relative;
}

.tags-select {
    display: none;
}

.tags::before {
    content: '';
    background: linear-gradient(to right, rgba(89, 146, 255, 0) 0%, #5992FF 50%, rgba(89, 146, 255, 0) 100%);
    height: 1px;
    display: block;
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0;
    background-size: 200% 100%;
    animation: gradient-animation 5s infinite alternate;
}

.tags::after {
    content: '';
    background: linear-gradient(to right, rgba(89, 146, 255, 0) 0%, #5992FF 50%, rgba(89, 146, 255, 0) 100%);
    height: 1px;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: 200% 100%;
    animation: gradient-animation 5s infinite alternate;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}



.tags {
    padding-top: 100px;
    padding-bottom: 140px;
}

.tags__row {
    align-items: flex-start;
}

.tags__col {
    width: calc(100% / 12 * 6 - 30px);
}

.tags-list-content {
    min-height: 400px;
}

.tags-list__item {}

.tags-list__title {}

.title {}

.tags-list__text {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}


@keyframes draw {
    from {
        stroke-dasharray: 0, 1000;
    }

    to {
        stroke-dasharray: 1000, 0;
    }
}

.tabs__icon path {
   opacity: 0;
}

.tabs__icon.visible path{
    opacity: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 5s forwards;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}


.tags__col--tabs {
    min-height: 435px;
    position: relative;
}

.tabs__icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.tabs {
    position: relative;
}

.tabs__fone {
    z-index: -1;
    position: absolute;
    top: -62px;
    transform: translateX(50%);
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseForMi {
    0% {
        transform:  translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* tags end */

/* midjorney */

.midjorney {
    padding: 0px 0 90px;
    position: relative;
}

.midjorney__figure {
    position: absolute;
    right: -5%;
    top: 50%;
    animation: pulseForMi 5s infinite;
}

.midjorney-select {
    display: none;
}

.midjorney::after {
    content: '';
    background: linear-gradient(to right, rgba(89, 146, 255, 0) 0%, #5992FF 50%, rgba(89, 146, 255, 0) 100%);
    height: 1px;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: 200% 100%;
    animation: gradient-animation 5s infinite alternate;
}

.midjorney__row {}

.midjorney__col {
    width: calc(100% /12 * 6 - 30px);
}

.title {}

.midjorney__content {
    margin-bottom: 60px;
}

.midjorney__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

/* midjorney end */

/* stable */

.stable {
    background-image: url('/assets/image/stable_fone.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 80px 0;
    position: relative;
}

.stable-select {
    display: none;
}

.stable::after {
    content: '';
    background: linear-gradient(to right, rgba(89, 146, 255, 0) 0%, #5992FF 50%, rgba(89, 146, 255, 0) 100%);
    height: 1px;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: 200% 100%;
    animation: gradient-animation 5s infinite alternate;
}

.stable__title {
    margin-bottom: 15px;
}

.title {}

.stable__content {
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    text-align: center;
}

.before-and-after {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.before-and-after.visible {
    opacity: 1;
}

.stable__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
}


/* stable end */

/* assistants */

.assistants {
    padding: 80px 0;
    position: relative;
}

.assistants__fone {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -20%;
}

.assistants__light {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 10%;
}

.assistants__title {
    margin-bottom: 10px;
}

.assistants__title-info {
    text-align: center;
    font-size: 22px;
    margin-bottom:35px;
}

.assistants-list {
    margin-left: -15px!important;
    margin-right: -15px!important;
    display: flex;
    flex-wrap: wrap;
}

.assistants-list__item {
    display: flex;
    border: 1px solid rgba(184, 208, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(9px);
    background: linear-gradient(90.00deg, rgba(73, 123, 223, 0.6) 50%,rgba(36, 182, 77, 0.6) 99.5%);
    width: calc(100% / 12 * 6 - 30px);
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
    margin-bottom: 30px;
    transform: translate3d(0, 0, 0);
}

.assistants-list__head {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.assistants-list__image-box {
    width: 133px;
    height: 133px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

.assistants-list__image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.assistants-list__info {
    margin-left: 20px;
}

.assistants-list__title {
    font-size: 24px;
    margin-bottom: 8px;
}

.title--small {}

.assistants-list__share {
    margin-bottom: 8px;
}

.assistants-list__action {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 15px;
    justify-content: space-between;
}

.like {
    display: flex;
    align-items: center;
}

.like__icon {}

.like__count {
    margin-left: 11px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.assistants-list__action .btn-small {
    margin-top: 4px;
}

.assistants-list__content {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Указывает количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 63px;
}


/* assistants end */

/* post */

.blog {
    padding: 40px 0 60px;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.blog-list__item {
    width: calc(100% / 12 * 3 - 30px);
    margin-left: 15px;
    margin-right: 15px;
}

.blog-list__item:hover .post__image img {
    transform: scale(1.1);
}

.post {}

.post__image {
    border-radius: 10px;
    overflow: hidden;
    padding: 33%;
    position: relative;
    display: block;
}

.post__image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-fone);
    transition: width 1.2s ease-in-out;
}


.blog-list__item.visible .post__image::after {
    width: 0;
}

.post__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease-in-out;
}

.post__title {
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
}

.post__title a {
    transform: translateY(50px);
    display: inline-block;
    transition: transform 0.5s ease-in-out 0.5s;
}

.post__title a:hover {
    color: #367bff;
}

.blog-list__item.visible .post__title a {
    transform: translateY(0);
}

.post__description {
    font-weight: 400;
    font-size: 14px;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Указывает количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 63px;
    opacity: 0;
    transition: opacity 0.7s ease-in-out 0.7s;
}

.blog-list__item.visible .post__description {
    opacity: 1;
}

/* post end */

/* question */

.question {
    padding: 60px 0;
}

.question-box {
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0.3s;
}

.question-box.visible {
    opacity: 1;
}

/* question end */


/* footer-page */

.footer-page {
    margin-top: 60px;
    border: 1px solid rgba(184, 208, 255, 0.6);
    border-bottom: unset;
    border-radius: 20px 20px 0 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    width: 100%;
    padding: 35px 48px 0 48px;
    background: linear-gradient(90.00deg, rgba(28, 138, 59, 0.6) 0.5%,rgba(15, 87, 227, 0.6) 92%);
}


.navigation-page {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.navigation-page__link {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 120%;
    margin-bottom: 9px;
    transition: color 0.3s ease-in-out;
}

.navigation-page__link:hover {
    color: #5992FF;
}


.menu-block {}

.menu-block__title {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    margin-top: 10px;
}

.menu-block__menu-row {
    display: flex;
    gap: 60px;
}

.menu-block__navigation {
    display: flex;
    flex-direction: column;
}

.menu-block__link {
    margin-bottom: 7px;
}

.footer-page-menu__col {
    width: calc(100% / 12 * 5 - 30px);
}

.footer-page__col {
    width: calc(100% / 12 * 2 - 30px);
}

.navigation-page__link {
    transition: color 0.3s ease-in-out;
}

.footer-page__row {
    padding-bottom: 40px;
}

.navigation-page__link:hover,
.menu-block__link:hover,
.navigation-page__link:hover,
.footer-page__police:hover {
    color: #5992FF;
}

.footer-page__bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
}

.footer-page__info {
    font-weight: 400;
    font-size: 14px;
}

.footer-page__police {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}


/* footer-page end */

/* other */

.tags {
    transition: height 0.3s ease-in-out;
}

.tags-list__content {
    display: none;
    opacity: 0;
}

.tags-list__content p {
    margin-bottom: 10px;
}

.tags-list__content.content--active {
    display: block;
    animation: slideUp 2s forwards;
}

.btn-tab__chunk {
    position: absolute;
    z-index: 11;
    transform: translate3d(0, 0, 0);
}

.tab--active {
    background-color: #253468;
}

.btn-tab__chunk:first-child {
    transform: rotate(-44deg);
    top: 18%;
    left: -5%;
}



.btn-tab__chunk:nth-child(2) {
    transform: rotate(38deg);
    right: -4%;
    top: 4%;
}

.btn-tab__chunk:nth-child(3) {
    transform: rotate(5deg);
    left: 30%;
    top: 25%;
}

.btn-tab__chunk:nth-child(4) {
    transform: rotate(10deg);
    left: 4%;
    top: 50%;
}

.btn-tab__chunk:nth-child(5) {
    transform: rotate(-14deg);
    right: -11%;
    top: 45%;
}

.btn-tab__chunk:nth-child(6) {
    transform: rotate(10deg);
    left: 42%;
    bottom: 5%;
}

.btn-tab__chunk:nth-child(7) {
    transform: rotate(-15deg);
    left: 3%;
    bottom: 16%;
}


.btn-tab__chunk:nth-child(8) {
    transform: rotate(15deg);
    right: 0%;
    bottom: 20%;
}

.btn-tab__chunk:nth-child(9) {
    transform: rotate(15deg);
    left: 30%;
    top: 0%;
}

.btn-tab__chunk:nth-child(10) {
    transform: rotate(-5deg);
    left: 10%;
    bottom: -6%;
}

.stable-btn {
    transform: translate3d(0, 0, 0);
}

.midjorney__btn {
    transform: translate3d(0, 0, 0);
}

/* Custom transformations for each button */
.midjorney__btn:nth-child(1) {
    transform: translateY(-10px) translateX(5px);
}

.midjorney__btn:nth-child(2) {
    transform: translateY(15px) translateX(-10px);
}

.midjorney__btn:nth-child(3) {
    transform: translateY(-20px) translateX(10px);
}

.midjorney__btn:nth-child(4) {
    transform: translateY(10px) translateX(-5px);
}

.midjorney__btn:nth-child(5) {
    transform: translateY(18px) translateX(15px);
}

.midjorney__btn:nth-child(6) {
    transform: translateY(5px) translateX(-15px);
}

.midjorney__btn:nth-child(7) {
    transform: translateY(3px) translateX(-7px);
}

.midjorney__btn:nth-child(8) {
    transform: translateY(20px) translateX(-20px);
}

.midjorney__btn:nth-child(9) {
    transform: translateY(-5px) translateX(25px);
}

.midjorney__btn:nth-child(10) {
    transform: translateY(15px) translateX(-25px) rotate(13deg);
}

.midjorney__btn:nth-child(11) {
    transform: translateY(-10px) translateX(30px);
}

.midjorney__btn:nth-child(12) {
    transform: translateY(10px) translateX(-30px);
}

.midjorney__btn:nth-child(13) {
    transform: translateY(0px) translateX(35px);
}

.section__image-item {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1.2s ease, transform 1s ease;
}

.section__image-item.content--active {
    opacity: 1;
    transform: translateX(0);
}

.image-comparison .images-container {
    display: none;
}

.image-comparison .images-container.content--active {
    display: flex;
    animation: fadeInZoom 0.3s ease forwards;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform:scale(1);
    }
}

@media(max-width:1200px) {
    .show-show {
        transform:unset;
    }

    .before-and-after {
        opacity: 1;
    }

    .post__image::after {
        width: 0;
    }

    .post__title a {
        transform: unset;
    }

    .post__description,
    .question-box {
        opacity: 1;
    }
}

@media(max-width:1100px) {

    .section__image-item {
        display: none;
    }

    .section__image-item.content--active {
        display: flex;
        animation: fadeInLeft 1s forwards;
    }
    /* .section__image-item {
        display: none;
    }

    .section__image-item.content--active {
        display: block;
    } */

    .catalog {
        padding-top: 380px;
    }

    .tabs__icon {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
    }

    .tabs-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .btn-tab__chunk {
        position: relative!important;
        transform: unset!important;
        left: unset!important;
        top: unset!important;
        bottom: unset!important;
        right: unset!important;
    }

    .midjorney-select {
        display: block;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .midjorney__buttons {
        display: none;
    }

    .midjorney {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media(max-width: 1050px) {
    .header-page__line {
        padding: 10px 20px;
    }

    .navigation__item{
		margin-bottom: 10px;
	}

	.header-page__navigation {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 111;
		background-color: var(--main-fone);
		flex-direction: column;
		overflow-y: auto;
        padding-top: 80px;
		transform: translateX(-100%);
		transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	}

	.header-page__navigation.is-active {
		transform: translateX(0%);
	}

	.navigation__list {
		flex-direction: column;
	}

    .navigation__registration-btn {
		margin-bottom: 80px;
	}

    .navigation__list {
        align-items: flex-start;
    }

    /* .image-comparison {
        height: 430px;
    }

    .images-container {
        height: 100%;
    } */

    /* .image-comparison,
    .image-comparison .images-container,
    .image-comparison img {
        height: 430px;
    } */

    .image-comparison {
        height: auto;
    }

    .stable__buttons {
        display: none;
    }

    .stable__content {
        margin-bottom: 30px;
    }

    .stable-select {
        display: block;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .tabs-buttons {
        display: none;
    }

    .tags__col--tabs {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.5;
        min-height: unset;
        z-index: -1;
    }

    .tags-select {
        display: block;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .tags-list__title,
    .midjorney .title {
        text-align: center;
    }

    .tags__col {
        margin-top: 20px;
        width: calc(100% / 12* 12 - 30px);
    }

    .tags {
        padding: 60px 0;
    }
}

@media(max-width: 992px) {
    .hero__title h1, .hero__title span {
        font-size: 45px;
        line-height: 120%;
    }

    .hero__description {
        font-size: 20px;
    }
    .assistants-list__item {
        width: calc(100% / 12* 12 - 30px);
    }

    .assistants-list__image-box {
        width: 150px;
        height: 150px;
    }

    .blog-list__item {
        width: calc(100% / 12* 6 - 30px);
        margin-bottom: 30px;
    }
    .catalog {
        padding-top: 175px;
    }

    .show {
        bottom: -7%;
    }

    .show .container {
        padding: 0;
    }

    .catalog-list {
        justify-content: center;
    }

    .catalog-list__grid {
        width: calc(100% / 12 * 6);
    }

    .catalog-list__grid {
        border: 1px dotted rgb(37 52 104 / 50%) !important;
    }


    .footer-page-menu__col {
        width: calc(100% / 12* 6 - 30px);
    }

    .footer-page__col {
        width: calc(100% / 12* 12 - 30px);
        text-align: center;
        margin-bottom: 40px;
    }

    .assistants {
        padding: 80px 0 28px;
    }

    button.accordion {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .hero {
        background-size: cover, 120%;
    }

    .catalog-list__grid {
        width: calc(100% / 12* 12);
    }

    .footer-page__bottom-line {
        flex-direction: column;
        align-items: center;
    }

    .footer-page-menu__col {
        width: calc(100% / 12* 12 - 30px);
        margin-bottom: 30px;
    }

    .question {
        padding: 30px 0 30px;
    }

    .blog {
        padding: 40px 0 30px;
    }

}

@media(max-width:576px) {
    .assistants-list__item {
        flex-direction: column;
    }
    .assistants-list__info {
        margin-left: unset;
        margin-top: 15px;
    }

    .assistants-list__title {
        font-size: 21px;
    }

    .assistants-list__image-box {
        width: 100%;
        height: 200px;
    }

    .blog-list__item {
        width: calc(100% / 12* 12 - 30px);
    }

    .hero__title h1, .hero__title span {
        font-size: 40px;
    }

    .show {
        position: relative;
        bottom: unset;
    }

    .hero__info {
        margin-bottom: 150px;
        padding-top: 100px;
    }

    .catalog {
        padding-top: 75px;
    }

    .show-show {
        padding: 15px;
    }

    .show {
        transform: translate(-50%, 30px);
    }

    .hero__description {
        font-size: 18px;
    }

    .title {
        font-size: 30px;
    }

    .assistants-list__title {
        font-size: 22px;
    }

    .footer-page {
        padding: 30px 20px;
    }

    .menu-block__menu-row {
        display: flex;
        gap: 0px 60px;
        flex-wrap: wrap;
    }
}
