@font-face {
    font-family: 'InformBold';
    src: url('fonts/informBold.woff2') format('woff2'),
        url('fonts/informBold.woff') format('woff'),
        url('fonts/informBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --index: calc(1vw + 1vh);
    --transition: 1.25s cubic-bezier(.2, .6, 0, 1);
}
html, body {
    height: 100%;
    overflow: hidden;
    background-color: #141414;
}
body {
    font-family: 'InformBold', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1.96px;
    color: #fff;
}
.wrapper {
    position: relative;
    max-width: 1598px;
    height: 100%;
    padding: 0 15px;
    margin-right: auto;
    margin: auto;
    &::before {
        content: '';
        position: absolute;
        top: 0;bottom: 0;left: 15px;
        width: 1px;
        height: 100%;
        background: linear-gradient(transparent, white);
        opacity: .3;
    }
    &::after {
        content: '';
        position: absolute;
        top: 0;bottom: 0;right: 15px;
        width: 1px;
        height: 100%;
        background: linear-gradient(white, transparent);
        opacity: .3;
    }
}
.page-content {
    position: relative;
    height: 100%;
}
.main-wrapper {
    /* position: relative; */
    height: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #141414;
    opacity: 0;
    transition: opacity 2s;
}
.main-wrapper.visible {
    opacity: 1;
}
.slider {
    overflow: visible;
    /* opacity: 1; */
}
.slider1 {
    width: 24%;
    margin-left: 0;
    transform: translateY(-200px);
    transition: transform 6s, opacity 7s;
    opacity: 0;
}
.slider1.is-load {
    transform: translateY(0);
    opacity: 1;
}
.slider2 {
    position: relative;
    width: 39.2%;
    transform: translateY(200px);
    opacity: 0;
    transition: opacity 8s;
    &::before {
        content: '';
        position: absolute;
        top: 0;bottom: 0;left: -1px;
        width: 1px;
        height: 100%;
        background: linear-gradient(white, transparent);
        opacity: .3;
    }
    &::after {
        content: '';
        position: absolute;
        top: 0;bottom: 0;right: -1px;
        width: 1px;
        height: 100%;
        background: linear-gradient(transparent, white);
        opacity: .3;
    }
}
.slider2.is-load {
    transform: translateY(0);
    /* transform: translateY(0); */
    opacity: 1;
}
.slider3 {
    width: 24%;
    margin-right: 0;
    transform: translateY(-200px);
    opacity: 0;
    transition: transform 6s, opacity 7s;
}
.slider3.is-load {
    transform: translateY(0);
    opacity: 1;
}
.slider:nth-child(even) {
    transform: rotate(180deg);
}
.slider:nth-child(even) .slider__item {
    transform: rotate(-180deg);
}
.slider .slider__wrapper {
    transition-timing-function: ease!important;
}
.slider__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vh 0;
}
.slider1 .slider__img {
    margin-right: auto;
}
.slider1 .slider__img img {
    object-position: top left;
}
.slider2 .slider__img {
    height: 440px;
    max-width: 468px;
    margin-right: auto;
    margin-left: auto;
}
.slider2 .slider__img img {
    object-position: center;
}
/* .slider2 .slider__img.slider__img--big img {
    object-position: center;
} */
.slider3 .slider__img {
    margin-left: auto;
}
.slider3 .slider__img img {
    object-position: top right;
}
.slider__img {
    width: 100%;
    max-width: 385px;
    height: 440px;
    max-height: 35vh;
}
.slider2 .slider__img.slider__img--big {
    max-width: none;
    height: 100%;
    max-height: 90vh;
}
.slider__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .4;
}
.slider__img:not(:nth-child(1)) {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .wrapper {
        padding: 0;
        max-width: none;
    }
    .main-wrapper {
        display: none;
    }
    .mobile-wrapper {
        position: relative;
        display: block;
        height: 100%;
        background-color: #141414;
        &::before {
            content: '';
            position: absolute;
            top: 0;bottom: 0;
            left: 0;right: 0;
            z-index: 4;
            background: linear-gradient(0deg, rgba(20,20,20,0.99) 0%, rgba(20,20,20,0.88) 10%, rgba(20,20,20,0.3) 26%, rgba(20,20,20,0.3) 50%, rgba(20,20,20,0.3) 80%, rgba(20,20,20,0.88) 95%, rgba(20,20,20,0.99) 100%);
        }
    }
    .slider-mob {
        height: 100%;
    }
    .slider__item {
        padding: 0;
        height: 100%;
    }
    .slider__img {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: none;
    }
    .slider__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
    }
}

.top-line {
    position: absolute;
    top: 0;
    left: 0;right: 0;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 5;
}
.top-line__soc-list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.top-line__soc-item {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.96px;
    color: #fff;
    text-decoration: none;
}
.top-line__tomail {
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'InformBold', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.96px;
    text-transform: uppercase;
    color: #fff;
}
@keyframes change-color {
    0% {
        background-color: #141414;
    }
    25% {
        background-color: rgba(39, 153, 246, 0.20);
    }
    50% {
        background-color: rgba(255, 0, 87, 0.20);
    }
    100% {
        background-color: #141414;
    }
}
@keyframes change-position {
    0% {
        transform: translate(-50%, -50%);
    }
    13% {
        transform: translate(-10%, -25%);
    }
    26% {
        transform: translate(-5%, -30%);
    }
    39% {
        transform: translate(-10%, -25%);
    }
    52% {
        transform: translate(-50%, -50%);
    }
    65% {
        transform: translate(-90%, -25%);
    }
    78% {
        transform: translate(-95%, -30%);
    }
    91% {
        transform: translate(-90%, -25%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}
.center-top {
    position: absolute;
    top: 33vh;
    left: 0; right: 0;
    z-index: 1;
    opacity: 0;
    transition: all 3s;
}
.center-top.visible {
    opacity: 1;
}
.center-circle {
    position: absolute;
    top: 50%;left: 50%;
    transform: translate(-50%, -50%);
    width: 70vh;
    height: 70vh;
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
    background-color: transparent;
    transition: background-color 5s;
    /* animation: change-color 55s 30s infinite; */
    animation: change-color 20s 10s infinite, change-position 40s 10s ease-in-out infinite;
}
.center-bottom {
    position: absolute;
    top: calc(33vh + 200px + 70px);
    left: 0; right: 0;
    z-index: 5;
}
.center__title {
    font-size: 300px;
    line-height: 200px;
    letter-spacing: normal;
    text-align: center;
}
.center__text {
    font-size: 26px;
    line-height: 22px;
    letter-spacing: 0.52px;
    text-align: center;
}
.center__list {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.center__list-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 68px;
    padding: 20px 30px;
    border-radius: 2px;
    border: 0.8px solid rgb(255, 255, 255, .3);
    background-color: rgba(19, 19, 19, .3);
    transition: all .25s;
    img {
        height: 22px;
        width: auto;
    }
}
.center__list-btn-myclub:hover {
    background-color: #9747FF;
    border: 0.8px solid #9747FF;

}
.center__list-btn-fansly:hover {
    background-color: #2799F6;
    border: 0.8px solid #2799F6;
}
.center__list-btn-manyvids:hover {
    background-color: #EF4D84;
    border: 0.8px solid #EF4D84;
}
.center__list-btn-telegram:hover {
    background-color: #00AEEF;
    border: 0.8px solid #00AEEF;
}

@media (max-width: 1200px) {
    .center__title {
        font-size: 200px;
        line-height: 150px;
    }
}

@media (max-width: 1024px) {
    .top-line {
        max-width: 600px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 30px;
        justify-content: center;
    }
    .top-line__soc-list {
        justify-content: center;
        gap: 20px;
    }
    .top-line__soc-item {
        font-size: 12px;
        letter-spacing: 1.68px;
    }
    .top-line__tomail {
        display: none;
    }
    .center-top {
        top: 46px;
        z-index: 5;
    }
    .center-circle {
        display: none;
    }
    .center-bottom {
        max-width: 700px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        top: auto;
        bottom: 15px;
    }
    .center__title {
        font-size: 80px;
        line-height: 100px;
    }
    .center__text {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.24px;
    }
    .center__list {
        justify-content: space-between;
        gap: 6px;
        margin-top: 10px;
    }
    .center__list-btn {
        width: calc(50% - 5px);
        min-height: 40px;
        padding: 10px;
        img {
            height: 12px;
        }
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 110vh;
    width: 100%;

    background-color: rgba(20,20,20, .6);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .3s;
    &.opened {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
}
.modal__content {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 40px 30px 40px;
    margin-top: -10vh;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;

    background-color: white;
    border-radius: 10px;
    color: #141414;
}
.modal__title {
    font-size: 40px;
    margin-bottom: 16px;
}
.modal__input {
    display: block;
}
.modal__input input{
    padding: 12px 0;
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #141414;
}
.modal__input + .modal__input {
    margin-top: 16px;
}
.modal__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #141414;
    border-radius: 2px;
    max-width: 250px;
    margin-top: 20px;
}
.modal__success {
    font-size: 20px;
}
.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 25px;
    color: #141414;
    opacity: .8;
}
