/* Блок Hero */
.hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 31, 51, 1) 0%,
        rgba(0, 62, 102, 0.6) 41%,
        rgba(0, 93, 153, 0) 100%
    );
}

.hero .slider {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero .slider img.active {
    display: block;
}

.hero .main-text {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 90px;
    padding-left: 125px;
    z-index: 2;
    width: 660px;
}

.hero .main-text h1 {
    font-size: 48px;
    font-weight: bolder;
    color: white;
}

.hero .main-text h1.hero-h1-top {
    color: #00BBF4;
}

.hero .main-text .sub-title {
    padding: 25px 0;
}

.hero .main-text .sub-title span {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

.hero .main-text .button {
    padding-top: 25px;
}

.hero .main-text .progress-bar {
    height: 2px;
    width: 200px;
    margin-top: 115px;
    position: relative;
    left: 50%;
    transform: translateX(115%);
    display: flex;
}

.hero .main-text .progress-bar .bar {
    background-color: #8D8D8D;
    width: 20%;
    transition: background-color 0.3s ease;
}

.hero .main-text .progress-bar .bar.active {
    background-color: white;
}


/* Блок Партнеры */
.partners {
    width: 100%;
    overflow: hidden;
    padding: 75px 0;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 125s linear infinite;
}

.partners a {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    margin: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Блок Преимущества */
.advantages {
    padding: 50px 100px;
    display: grid;
    place-items: center;
}

.advantages .container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    padding-top: 50px;
    width: 100%;
}

.advantages .container .block {
    width: 33%;
    background-color: #F1F1F1;
    display: grid;
    place-items: center;
    padding: 25px 25px;
    border-radius: 4px;
}

.advantages .container .block img {
    width: 60px;
    height: 60px;
}

.advantages .container .block p {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.advantages .container .block span {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #3E3E3E;
}


/* Блок Выбор спортсменов */
.athletes {
    position: relative;
    padding: 0 100px;
    margin: 50px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #00BBF4;
    width: 100%;
    height: 350px;
}

.athletes .text {
    z-index: 2;
    width: 45%;
    padding-right: 5%;
    padding-top: 75px;
}

.athletes .text h2 {
    text-align: left;
}

.athletes .text span {
    color: #1A2E47;
    line-height: 1.5;
}

.athletes .text .button {
    padding-top: 40px;
}

.athletes .image {
    position: absolute;
    right: 50px;
    bottom: -4px;
    width: auto;
}

.athletes .image img {
    height: 425px;
    object-fit: contain;
}


/* Блок Отзывы */
.reviews {
    width: 100%;
    padding: 50px 100px;
    box-sizing: border-box;
}

.reviews .title {
    margin: 0 auto;
    text-align: center;
}

.reviews-inner {
    position: relative;
    width: 100%;
}

.reviews .container {
    width: 100%;
    overflow: hidden;
    padding: 75px 40px 0 40px;
    box-sizing: border-box;
    display: grid;
    place-items: center;
}

.reviews .slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-wrapper .fog {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;

    opacity: 0;
    transition: opacity 0.35s ease;
}

.slider-wrapper .fog.active {
    opacity: 1;
}

.slider-wrapper .fog-left {
    left: 0;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0.95) 30%,
        rgba(255,255,255,0.7) 60%,
        transparent 100%
    );
}

.slider-wrapper .fog-right {
    right: -3px;

    background: linear-gradient(
        to left,
        #ffffff 0%,
        rgba(255,255,255,0.95) 30%,
        rgba(255,255,255,0.7) 60%,
        transparent 100%
    );
}

.reviews .sub-container {
    display: flex;
    transition: transform 0.4s ease;
}

.reviews .sub-container .block {
    width: 350px;
    background-color: #F1F1F1;
    border-radius: 4px;
    flex-shrink: 0;
    margin: 0 15px;
    padding: 25px;
    display: grid;
    place-items: center;
}

.reviews .sub-container .block .reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.reviews .sub-container .block p {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0 5px 0;
}

.reviews .sub-container .block span {
    color: #A4A4A4;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 15px;
    text-align: center;
}

.reviews .sub-container .block .review-text {
    color: #3E3E3E;
    font-size: 15px;
}

.reviews .sub-container .block .quote {
    margin-top: 5px;
}

.reviews .arrow {
    position: absolute;
    top: calc(50% + 35px);
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.reviews .arrow-left {
    left: 0;
}

.reviews .arrow-right {
    right: 0;
}

.reviews .arrow svg path {
    stroke: #8D8D8D;
    transition: stroke 0.2s ease;
}

.reviews .arrow:not(.disabled) svg path {
    stroke: #00BBF4;
}

.reviews .arrow.disabled {
    pointer-events: none;
}




/* Стили для блока "Товары" */
.products {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 50px 100px;
    overflow: hidden;
    box-sizing: border-box;
}

.products .header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.products .header .block {
    padding: 0 25px;
    border-bottom: 3px solid #8D8D8D;
}

.products .header .block.active {
    border-bottom: 3px solid #00BBF4;
}

.products .header .block h3 {
    text-align: center;
    color: #8D8D8D;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.products .header .block h3.active {
    color: #00BBF4;
}

.products .container-products {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    box-sizing: border-box;
}

.products .slider-wrapper-products {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 60px;
}

.products .fog-products {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products .fog-products.active {
    opacity: 1;
}

.products .fog-left-products {
    left: 0;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 35%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.95) 15%,
        transparent 100%
    );
}

.products .fog-right-products {
    right: 0;

    background: linear-gradient(
        to left,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 35%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.95) 15%,
        transparent 100%
    );
}

.products .slider-container-products {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition: transform 0.4s ease;
    will-change: transform;
}

.products .slider-container-products .product-card {
    flex: 0 0 275px;
    width: 275px;
    margin: 0 10px;
    box-sizing: border-box;
}

.products .arrow-products {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    user-select: none;
}

.products .arrow-left-products {
    left: 10px;
}

.products .arrow-right-products {
    right: 10px;
}

.products .arrow-products svg path {
    stroke: #8D8D8D;
    transition: stroke 0.2s ease;
}

.products .arrow-products:not(.disabled) svg path {
    stroke: #00BBF4;
}

.products .arrow-products.disabled {
    pointer-events: none;
}

.products .products-tab-content {
    display: none;
}

.products .products-tab-content.active {
    display: block;
}

.products .header .block,
.products .header .block h3 {
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.products .products-tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transform: translateY(10px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        visibility 0.45s ease;
}

.products .products-tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}


@media (min-width: 1750px) {
    .advantages,
    .reviews,
    .products {
        padding-left: 160px;
        padding-right: 160px;
    }

    .athletes {
        padding: 0 160px;
    }

    .hero .main-text {
        padding-left: 160px;
        width: 760px;
    }

    .hero .main-text h1 {
        font-size: 54px;
    }
}

@media (min-width: 1537px) and (max-width: 1749.98px) {
    .advantages,
    .reviews,
    .products {
        padding-left: 120px;
        padding-right: 120px;
    }

    .athletes {
        padding: 0 120px;
    }

    .hero .main-text {
        padding-left: 140px;
    }
}

@media (min-width: 1441px) and (max-width: 1536.98px) {
    .hero .main-text {
        padding-left: 110px;
    }
}

@media (max-width: 1440px) {
    .advantages,
    .reviews,
    .products {
        padding: 50px 80px;
    }

    .athletes {
        padding: 0 80px;
    }

    .hero .main-text {
        padding-top: 80px;
        padding-left: 80px;
        width: 600px;
    }

    .hero .main-text h1 {
        font-size: 44px;
    }
}

@media (max-width: 1280px) {
    .advantages,
    .reviews,
    .products {
        padding: 45px 60px;
    }

    .athletes {
        padding: 0 60px;
    }

    .hero .main-text {
        padding-top: 70px;
        padding-left: 60px;
        width: 520px;
    }

    .hero .main-text h1 {
        font-size: 40px;
    }

    .hero .main-text .progress-bar {
        margin-top: 130px;
    }

    .athletes .image {
        right: 25px;
    }

    .athletes .image img {
        height: 360px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 440px;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(0, 31, 51, 0.85) 0%,
            rgba(0, 40, 66, 0.55) 55%,
            rgba(0, 62, 102, 0.35) 100%
        );
    }

    .hero .slider {
        position: absolute;
        inset: 0;
    }

    .hero .main-text {
        position: relative;
        width: 100%;
        max-width: 640px;
        padding: 55px 40px 45px;
    }

    .hero .main-text h1 {
        font-size: 38px;
    }

    .hero .main-text .sub-title {
        padding: 18px 0;
    }

    .hero .main-text .progress-bar {
        display: none;
    }

    .partners {
        padding: 55px 0;
    }

    .partners a {
        width: 150px;
        height: 75px;
        margin: 0 28px;
    }

    .advantages {
        padding: 45px 40px;
    }

    .advantages .container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding-top: 35px;
    }

    .advantages .container .block {
        width: 100%;
        max-width: 520px;
        padding: 28px 25px;
    }

    .advantages .container .block img {
        width: 50px;
        height: 50px;
    }

    .athletes {
        flex-direction: column;
        height: auto;
        margin: 40px 0;
        padding: 45px 40px 0;
        text-align: center;
        align-items: center;
        overflow: hidden;
    }

    .athletes .text {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
        padding: 0;
    }

    .athletes .text h2 {
        text-align: center;
    }

    .athletes .text .button {
        display: flex;
        justify-content: center;
        padding-top: 28px;
    }

    .athletes .image {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 560px;
        margin: 30px auto 0;
        display: block;
    }

    .athletes .image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .products {
        padding: 45px 0;
    }

    .products .header .block {
        padding: 0 16px;
    }

    .products .header .block h3 {
        font-size: 19px;
        white-space: nowrap;
    }

    .products .container-products {
        margin-top: 35px;
    }

    .products .arrow-products,
    .products .fog-products {
        display: none;
    }

    .products .slider-wrapper-products {
        overflow: visible;
        padding: 0;
    }

    .products .products-tab-content.active {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 24px;
        padding: 4px 24px 10px;
        scrollbar-width: none;
    }

    .products .products-tab-content.active::-webkit-scrollbar {
        display: none;
    }

    .products .slider-container-products {
        transform: none !important;
    }

    .products .slider-container-products .product-card {
        scroll-snap-align: start;
        flex: 0 0 260px;
        width: 260px;
        margin: 0 8px;
    }

    .reviews {
        padding: 45px 0;
    }

    .reviews .title {
        padding: 0 24px;
    }

    .reviews .container {
        overflow: visible;
        padding: 35px 0 0;
    }

    .reviews .slider-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 24px;
        padding: 4px 24px 10px;
        scrollbar-width: none;
    }

    .reviews .slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    .reviews .fog,
    .reviews .arrow {
        display: none;
    }

    .reviews .sub-container {
        transform: none !important;
    }

    .reviews .sub-container .block {
        scroll-snap-align: start;
        width: 280px;
        margin: 0 8px;
    }
}

@media (max-width: 920px) {
    .advantages,
    .athletes {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero .main-text {
        padding: 50px 32px 42px;
    }

    .hero .main-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 834px) {
    .advantages,
    .athletes {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero .main-text {
        padding: 48px 28px 40px;
    }

    .hero .main-text h1 {
        font-size: 34px;
    }
}

@media (max-width: 800px) {
    .partners a {
        width: 140px;
        height: 70px;
        margin: 0 24px;
    }

    .athletes {
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .athletes .text h2,
    .athletes .text span {
        text-align: left;
    }

    .athletes .text .button {
        justify-content: flex-start;
    }

    .products .slider-container-products .product-card {
        width: 220px;
        flex: 0 0 220px;
    }
}

@media (max-width: 768px) {
    .advantages,
    .athletes {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        min-height: 400px;
    }

    .hero .main-text {
        padding: 44px 24px 38px;
    }

    .hero .main-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .partners {
        padding: 45px 0;
    }

    .partners a {
        width: 130px;
        height: 65px;
        margin: 0 20px;
    }

    .advantages,
    .athletes {
        padding-left: 20px;
        padding-right: 20px;
    }

    .advantages {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .advantages .container .block {
        max-width: none;
    }

    .athletes {
        padding-top: 38px;
    }

    .hero {
        min-height: 380px;
    }

    .hero .main-text {
        padding: 40px 20px 34px;
    }

    .hero .main-text h1 {
        font-size: 28px;
    }

    .products .header {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0 16px;
    }

    .products .header::-webkit-scrollbar {
        display: none;
    }

    .products .header .block {
        flex: 0 0 auto;
        padding: 0 14px;
    }

    .products .header .block h3 {
        font-size: 18px;
    }

    .reviews .title {
        padding: 0 20px;
    }

    .reviews .sub-container .block {
        width: 260px;
    }

    .products .products-tab-content.active,
    .reviews .slider-wrapper {
        scroll-padding-left: 16px;
        padding: 4px 16px 10px;
    }
}

@media (max-width: 430px) {
    .advantages,
    .athletes {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero .main-text {
        padding: 36px 16px 32px;
    }

    .hero .main-text h1 {
        font-size: 26px;
    }

    .products .slider-container-products .product-card {
        flex: 0 0 250px;
        width: 250px;
    }
}

@media (max-width: 414px) {
    .hero .main-text h1 {
        font-size: 25px;
    }

    .partners a {
        width: 120px;
        margin: 0 16px;
    }
}

@media (max-width: 400px) {
    .advantages,
    .athletes {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero .main-text {
        padding: 34px 14px 30px;
    }

    .hero .main-text h1 {
        font-size: 24px;
    }
}

@media (max-width: 390px) {
    .hero .main-text h1 {
        font-size: 23px;
    }

    .products .header .block h3 {
        font-size: 17px;
    }

    .reviews .sub-container .block {
        width: 250px;
    }
}

@media (max-width: 375px) {
    .advantages,
    .athletes {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero .main-text {
        padding: 32px 12px 28px;
    }

    .hero .main-text h1 {
        font-size: 22px;
    }

    .products .products-tab-content.active,
    .reviews .slider-wrapper {
        scroll-padding-left: 12px;
        padding: 4px 12px 10px;
    }

    .products .slider-container-products .product-card {
        flex: 0 0 240px;
        width: 240px;
    }
}

@media (max-width: 360px) {
    .hero .main-text h1 {
        font-size: 21px;
    }

    .partners a {
        width: 105px;
        margin: 0 14px;
    }

    .products .header .block {
        padding: 0 10px;
    }

    .products .header .block h3 {
        font-size: 16px;
    }

    .reviews .sub-container .block {
        width: 240px;
    }
}


