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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: #fff;

}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.scroll-wrapper {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
}

/* MAIN SECTION */

.main {
    height: 100dvh;
    padding: 40px;
}

.main__bg {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main__bg:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('/assets/noise.jpg');
    opacity: 0.3;
    z-index: 1;
}

.main__bg:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 2;
}

.main__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__bage {
    background-color: #0A0D12;
    font-weight: 500;
    font-size: 16px;
    border-radius: 99px;
    padding: 8px 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.main__title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.main__description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.input-wrapper {
    border-radius: 16px;
    backdrop-filter: blur(5px);
    background-color: rgba(24, 29, 39, 0.4);
    padding: 8px;
    width: fit-content;
    z-index: 10;
}

.input {
    background-color: transparent;
    border: none;
    outline: none;
    color: inherit;
    padding: 16px;
    width: 278px;
    border-radius: 10px;
    margin-right: 20px;
}

.input::placeholder {
    color: inherit;
}

.input-button {
    background-color: rgb(194, 245, 38);
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    color: #000;
    letter-spacing: normal;
}

.input-button:hover {
    background-color: rgb(194, 230, 38);
}

.input-button:active {
    background-color: rgb(194, 250, 38);
}

@media (max-width: 810px) {
    .main {
        padding: 16px;
        height: unset;
    }

    .main__bage {
        font-size: 12px;
    }

    .main__title {
        font-size: 40px;
    }

    .main__description {
        font-size: 14px;
    }

    .input-wrapper {
        border-radius: none;
        backdrop-filter: none;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .input {
        margin-right: 0;
        background-color: rgba(0,0,0,0.2);
    }
}

/* GALLERY SECTION */

.gallery {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 60px;
    padding-right: 0;
}

.gallery__title {
    color: #0A0D12;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 16px;
    padding-right: 16px;
}

.gallery__title--accent {
    color: #5f8506;
    font-style: italic;
    font-weight: 700;
}

.gallery__description {
    color: #717680;
    font-size: 18px;
    margin-bottom: 40px;
    padding-right: 16px;
}

.gallery__wrapper {
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 24px;
    padding-right: 60px;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    scrollbar-width: none;
}

.gallery__wrapper::-webkit-scrollbar {
    display: none;
}

.gallery__wrapper.dragging {
    cursor: grab;
}

.card {
    width: 402px;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    flex-shrink: 0;
    pointer-events: none;

}

.card__image {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card__text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    width: calc(100% - 32px);
}

.card__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.card__description {
    font-size: 14px;
}

@media (max-width: 810px) {
    .gallery {
        padding-left: 12px;
    }

    .gallery__title {
        font-size: 32px;
        padding-right: 8px;
    }

    .gallery__description {
        font-size: 14px;
        padding-right: 8px;
    }

}

/* COACH SECTION */
.coach {
    background-color: rgb(5, 10, 15);
    padding-bottom: 80px;
    position: relative;
}

.coach__grill {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    transform: translateY(50%);
    background: radial-gradient(44.03% 44.03% at 50% 50%, rgba(194, 245, 38, 0.07) 0%, rgba(194, 245, 38, 0) 100%);

}

.coach__text {
    text-align: center;
    padding: 100px 16px 72px 16px;
}

.coach__title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 24px;
}

.coach__title--accent {
    color: #c2f526;
    font-weight: 600;
    font-style: italic;
}

.coach__description {
    color: #717680;
    font-size: 18px;
}

.coach__logo {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.coach__logo>img {
    width: 180px;
}

@media (max-width: 810px) {
    .coach__text {
        padding: 70px 16px 32px 16px;
    }

    .coach__title {
        font-size: 32px;
    }

    .coach__description {
        font-size: 18px;
    }
}

/* GOALS SECTION */
.goals {
    padding: 112px 16px;
    color: #0A0D12;
    background-color: rgb(245, 245, 245);
}

.goals__title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

.goals__title--accent {
    color: #5f8506;
    font-weight: 600;
    font-style: italic;
}

.goals__description {
    color: #717680;
    font-size: 18px;
    margin-bottom: 48px;
    text-align: center;
}

.goals__wrapper {
    margin: 0 auto;
    max-width: 648px;
    width: 100%;
}

.goal {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.02) 20px 13px 52px 0px, rgba(0, 0, 0, 0.02) 81px 50px 95px 0px, rgba(0, 0, 0, 0.01) 183px 113px 129px 0px, rgba(0, 0, 0, 0) 325px 200px 153px 0px, rgba(0, 0, 0, 0) 507px 313px 167px 0px;
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 24px;
    margin-bottom: 16px;
}

.goal__image-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    background-color: rgb(245, 245, 245);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal__text {}

.goal__title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 8px;
}

.goal__description {
    font-size: 14px;
}

@media (max-width: 810px) {
    .goals {
        padding: 80px 16px;
    }

    .goals__title {
        font-size: 32px;
    }

    .goals__description {
        font-size: 14px;
    }

    .goal__image-wrapper {
        height: 80px;
        width: 80px;
    }

    .goal__title {
        font-size: 18px;
    }

    .goal__description {
        font-size: 12px;
    }
}

/* A B O U T */

/* MAIN SECTION */

.about-main {
    color: #0A0D12;
    padding-top: 96px;
}

.about__container {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1550px;
}

.bage {
    padding: 8px 16px;
    background-color: #f5f5f5;
    border-radius: 16px;
    width: fit-content;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about__description {
    color: #717680;
    font-size: 18px;
    margin-bottom: 40px;
}

.about-main__picture {
    position: relative;
    background-color: rgb(43, 43, 43);
    border-radius: 24px;
    height: 786px;
}

.about-main__picture>h2 {
    color: #fff;
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    padding: 0 16px;
}

.about-main__picture>img {
    position: absolute;
    object-fit: cover;
    top: 0;
    bottom: 0;
    left: 100px;
    right: 100px;
    height: 100%;
    width: calc(100% - 200px);
}

@media (max-width: 810px) {
    .about-main {
        padding-top: 80px;
    }

    .bage {
        font-size: 12px;
    }

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

    .about__description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-main__picture {
        border-radius: 16px;
        height: 550px;
        overflow: hidden;
    }

    .about-main__picture>h2 {
        font-size: 24px;
    }

    .about-main__picture>img {
        position: absolute;
        object-fit: cover;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
}

/* REDEFINING SECTION */
.redefining {
    margin: 0 auto;
    max-width: 700px;
    padding: 96px 16px;
    color: #0A0D12;
}

.redefining__title {
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 20px;
}

.redefining__description {
    font-size: 18px;
    margin-bottom: 16px;
}

@media (max-width: 810px) {
    .redefining {
        padding: 80px 16px;

    }

    .redefining__title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .redefining__description {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* CONTACTS SECTION */
.contacts {
    color: #0A0D12;
    padding-bottom: 60px;
}

.contacts__wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.contacts-card {
    padding: 24px;
    border-radius: 16px;
    background-color: rgb(245, 245, 245);
    flex-grow: 1;
    max-width: 512px;
    width: 100vw;
}

.contacts-card__image {
    height: 56px;
    width: 56px;
    margin-bottom: 32px;
}

.contacts-card__title {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.contacts-card__description {
    color: #717680;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 400;
}

.contacts-card__link {
    color: #7eaf01;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 810px) {
    .contacts__wrapper {
        display: block;
    }

    .contacts-card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
    }
}

/* F E A T U R E S */

/* PHONES SECTION */

.phones {
    color: #0A0D12;
    text-align: center;
    padding: 112px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phones__images {
    display: flex;
    max-width: 1390px;
    width: 100%;
    margin: 250px auto 80px;

}

.phones img {
    flex-shrink: 0;
    width: calc(100% / 5);
}

.phones__img1 {}

.phones__img2 {
    transform: scale(1.2);
    z-index: 1;
}

.phones__img3 {
    transform: scale(1.5);
    z-index: 2;
}

.phones__img4 {
    transform: scale(1.2);
    z-index: 1;
}

.phones__img5 {}

@media (max-width: 810px) {
    .phones {
        padding: 80px 16px;
    }

    .phones__images {
        margin: 100px auto 50px;

    }
}

/* INFO SECTION */

.info {
    padding: 96px 16px;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    color: #0A0D12;
}

.info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 190px;
    gap: 16px;
}

.info-card:nth-child(odd) {
    flex-direction: row-reverse;
}

.info-card__text {
    max-width: 553px;
    width: 100vw;
}

.info-card__title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}

.info-card__description {
    font-size: 18px;
    line-height: 32px;
}

.info-card__picture {
    max-height: 438px;
    max-width: 438px;
    height: 100dvh;
    width: 100dvw;
    position: relative;
    overflow: hidden;
    background-color: rgb(245, 245, 245);
    border-radius: 24px;
}

.info-card__picture>img {
    width: 230px;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    filter: drop-shadow(rgba(0, 0, 0, 0.24) 6px 11px 12px) drop-shadow(rgba(0, 0, 0, 0.21) 23px 45px 22px) drop-shadow(rgba(0, 0, 0, 0.12) 52px 101px 29px) drop-shadow(rgba(0, 0, 0, 0.04) 93px 179px 35px) drop-shadow(rgba(0, 0, 0, 0) 145px 280px 37px);
}

@media (max-width: 810px) {
    .info {
        padding: 56px 16px;
    }

    .info-card {
        display: block;
        margin-bottom: 90px;
    }

    .info-card__text {
        max-width: 100%;
        width: 100%;
    }

    .info-card__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .info-card__description {
        font-size: 16px;
        line-height: 24px;
    }

    .info-card__picture {
        max-height: 370px;
        max-width: 100%;
        height: 100dvh;
        width: 100%;
        margin-bottom: 32px;
    }

    /* PLAIN */

}

.plain-html {
    color: #0A0D12;
    margin: 0 auto;
    padding: 112px 16px;
    max-width: 1120px;
    font-weight: 500;
}

.plain-html section {
    margin-bottom: 64px;
}

.plain-html h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 500;
}

.plain-html h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.plain-html h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
}

.plain-html strong {
    font-weight: 700;
}

.plain-html time {
    color: #717680;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

.plain-html p {
    font-size: 18px;
    margin-bottom: 24px;
}

.plain-html ul {
    margin-bottom: 24px;
    list-style-position: inside;
}

.plain-html li {
    font-size: 18px;
    padding-left: 40px;
    margin-bottom: 8px;
}

@media (max-width: 810px) {
    .plain-html {
        padding: 80px 16px;
    }

    .plain-html section {
        margin-bottom: 48px;
    }

    .plain-html h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .plain-html h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .plain-html h3 {
        font-size: 20px;
        margin-bottom: 16px;

    }

    .plain-html time {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .plain-html p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .plain-html ul {
        margin-bottom: 20px;
        list-style-position: inside;
    }

    .plain-html li {
        font-size: 16px;
        margin-bottom: 4px;
        padding-left: 20px;
    }
}


/* FOOTER */
.footer {
    background-color: #0A0D12;
    padding: 96px 96px 0 96px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
}

.footer__title-part {
    max-width: 794px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer__title {
    font-size: 40px;
    margin-bottom: 48px;
    font-weight: 500;
}

.footer__contact-part {
    display: flex;
    gap: 120px;
}

.footer__contact-part-title {
    color: #717680;
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 400;
}

.footer__links {}

.footer__link {
    display: block;
    text-decoration: none;
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer__contacts {}

.footer__contact {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer>hr {
    margin: 124px 0 24px 0;
    border: none;
    height: .5px;
    background-color: #717680;
}

.footer__bottom {}

.footer__row {
    display: flex;
    justify-content: space-between;
    color: #717680;
    font-size: 18px;
    margin-bottom: 100px;
}

.footer__rights {}

.footer__jur-links {
    display: flex;
    gap: 72px;
    justify-content: space-between;
    align-items: center;
}

.footer__jur-link {
    color: #717680;
    text-decoration: none;
    font-size: inherit;
    transition: color .3s;
}

.footer__jur-link:hover{
    color: lightgray;
}

.footer__logo {
    width: 100%;
}

.input-wrapper--footer {
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(255, 255, 255, .05);

}

.input--footer {

    width: 356px;
}

.input-button--footer {}

@media (max-width: 1050px) {
    .footer {
        padding: 80px 16px 0 16px;
    }

    .footer__top {
        display: block;
    }

    .footer__title-part {
        margin: 40px auto 0;
    }

    .footer__title {
        text-align: center;
    }

    .footer__contact-part {
        margin: 40px auto 0;
        justify-content: center;
        gap: 40px;
    }

    .footer__row {
        display: block;
    }

    .footer__contact-part-title {}

    .footer__links {}

    .footer__link {}

    .footer__contacts {}

    .footer__contact {}

    .footer>hr {}

    .footer__bottom {}

    .footer__rights {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer__jur-links {
        gap: 20px;
    }

    .footer__jur-link {}

    .footer__logo {}

    .input-wrapper--footer {
        border: none;
        background-color: unset;
        backdrop-filter: blur(0);
    }

    .input--footer {
        border: 1px solid rgba(255, 255, 255, .1);
        background-color: rgba(255, 255, 255, .05);
        width: 250px;
    }
}

.menu {
    position: fixed;
    z-index: 50;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    padding: 8px;
    border-radius: 16px;
    background-color: #181d27;
    display: flex;
    gap: 32px;
    align-items: center;

}

.menu.active {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.sliding-menu {
    display: flex;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 24px;
    background-color: #181d27;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transform: translateY(-100%);
    height: 0;
    transition: height .2s;
}

.sliding-menu.active {
    height: 172px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    margin-right: 10px;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    transition: transform .2s;
    transform-origin: center center;
}

.hamburger span:nth-child(1) {
    top: 0;
    transform: translate(0, 0) rotate(0);
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%) rotate(0);
}

.hamburger span:nth-child(3) {
    top: 100%;
    transform: translate(0, -100%) scale(1);
}


.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    display: none;
}

.mobile-part {
    flex-shrink: 0;
    display: none;
}

.desktop-part {
    display: flex;
    padding-right: 32px;
}

.menu-link {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    transition: background-color .3s;
}

.menu-link:hover{
    background-color: hsla(220, 33%, 22%, 1);
}

@media (max-width: 810px) {
    .mobile-part {
        display: block;
    }

    .desktop-part {
        display: none;
    }
}

*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

*::-webkit-scrollbar-track {
    background-color: lightgray;
    border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 5px;
    cursor: pointer;
}

.animation-box {
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: 1s;
}

.animation-item {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chips {
    height: 58px;
    font-size: 16px;
    border-radius: 29px;
    color: #fff;
    background-color: #222734;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    width: fit-content;
    transition: opacity 1.5s;
}

@media (max-width: 810px) {
    .chips {
        font-size: 12px;
    }
}

.animation-item:first-child>.chips {
    transition: opacity 1s;
    opacity: 0.3;
}

.animation-item:nth-child(2)>.chips {
    transition: opacity 1s;
    opacity: 0.5;
}

.animation-item:nth-child(3)>.chips {
    transition: opacity 1s;
    opacity: 0.7;
}


@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(80%) scale(0)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.appear {
    animation: fade-in 1s ease-out forwards;
}

@keyframes fade-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

    to {
        opacity: 0;
        transform: translateY(-80%) scale(0)
    }
}

.disappear {
    animation: fade-out 1s ease-out forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}