f-carousel,
f-carousel .f-carousel-container{
    display: block;
    width: 100%;
}

f-carousel .swiper{
    position: relative;
}

f-carousel .f-carousel-navigation{
    position: absolute;
    top: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    background: rgba(246, 115, 27, .8);
    border: 1px solid #F6731B;
    border-radius: 50%;
    transform: translateY(-50%);
}

f-carousel .f-carousel-navigation--prev{
    left: 24px;
}

f-carousel .f-carousel-navigation--next{
    right: 24px;
}

f-carousel .f-carousel-navigation svg{
    width: 24px;
    height: 24px;
}

f-carousel .f-carousel-navigation:hover{
    background: #df5f0d;
}

f-carousel .f-carousel-navigation.swiper-button-disabled{
    opacity: .35;
    cursor: default;
}

@media (min-width: 960px) {
    f-carousel .f-carousel-navigation{
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease, background-color .2s ease;
    }

    f-carousel .swiper:hover .f-carousel-navigation,
    f-carousel .swiper:focus-within .f-carousel-navigation{
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    f-carousel .swiper:hover .f-carousel-navigation.swiper-button-disabled,
    f-carousel .swiper:focus-within .f-carousel-navigation.swiper-button-disabled{
        opacity: .35;
    }
}

f-carousel .slide-container{
    position: absolute;
    inset: 0;
    padding-inline: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

f-carousel .slide-wrapper{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 30px;
}

f-carousel .slide-name{
    margin-bottom: 100px;
    font-size: 75px;
    line-height: 1;
    font-family: var(--font-akzidenz-grotesk);
    font-weight: 700;
    color: #FBFBFB;
}

f-carousel .slide-title{
    font-size: 29px;
    line-height: 1;
    font-family: var(--font-akzidenz-grotesk);
    font-weight: 700;
    color: #FBFBFB;
}

f-carousel .slide-content{
    font-size: 16px;
    line-height: 1;
    font-family: var(--font-hongmeng-sans-sc);
    font-weight: 500;
    color: #DBDBDB;
}
f-carousel .slide-icon{
    display: flex;
    width: 42px;
    height: 50px;
}

f-carousel .slide-image picture{
    display: flex;
}

f-carousel .f-carousel-thumbnails{
    width: 100%;
    min-height: 88px;
    background: #050505;
    box-sizing: border-box;
}

f-carousel .f-carousel-thumbnail{
    position: relative;
    display: flex;
    flex: 1 0 calc(100% / 6);
    width: calc(100% / 6);
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 12px 22px;
    cursor: pointer;
    color: #fff;
    text-align: left;
    background: transparent;
    border: 0;
    appearance: none;
}

f-carousel .f-carousel-thumbnail::before{
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 2px;
    content: "";
    background: #F6731B;
    opacity: 0;
}

f-carousel .f-carousel-thumbnail.is-active::before{
    opacity: 1;
}

f-carousel .f-carousel-thumbnail-media{
    display: block;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    overflow: hidden;
}

f-carousel .f-carousel-thumbnail-media img,
f-carousel .f-carousel-thumbnail-media svg{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

f-carousel .f-carousel-thumbnail-title,
f-carousel .f-carousel-thumbnail-subtitle{
    display: block;
}

f-carousel .f-carousel-thumbnail-text{
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-akzidenz-grotesk);
    font-size: 29px;
    line-height: 1;
}

@media(max-width:959px){
    f-carousel .f-carousel-navigation{
        width: 40px;
        height: 40px;
    }

    f-carousel .f-carousel-navigation--prev{
        left: 12px;
    }

    f-carousel .f-carousel-navigation--next{
        right: 12px;
    }

    f-carousel .f-carousel-thumbnails{
        min-height: 76px;
    }

    f-carousel .f-carousel-thumbnail{
        flex-basis: 176px;
        width: 176px;
        min-height: 76px;
        gap: 12px;
        padding: 10px 14px;
    }

    f-carousel .f-carousel-thumbnail-media{
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    f-carousel .f-carousel-thumbnail-text{
        font-size: 3.8667vw;
    }
    f-carousel .slide-container{
        padding-inline: 20px;
        align-items: flex-start;
    }
    f-carousel .slide-name{
        margin-block: 6.6667vw;
        text-align: center;

        font-size: 12vw;
        font-weight: 700;
        letter-spacing: -0.447px;
    }
    f-carousel .slide-wrapper{
        gap: 2.6667vw;
        max-width: 100%;
    }

    f-carousel .slide-title{
        font-size: 3.8667vw;
        max-width: 50%;
    }

    f-carousel .slide-content{
        font-size: 2.1333vw;
        letter-spacing: -0.003px;
        max-width: 50%;
    }
}
