section-slider {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
    user-select: none;
    overflow: hidden;
}

section-slider:active {
    cursor: grabbing;
}

section-slider .SliderTrack {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

section-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    box-sizing: border-box;
}

section-slide img,
section-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

section-slide video {
    opacity: 0;
    transition: opacity 1.5s ease 1s;
}

section-slide.active video.ready {
    opacity: 1;
}

section-slider .SlideContent {
    color: #fff;
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
    position: absolute;
    bottom: 164px;
    left: 230px;
    display: flex;
    flex-direction: column;
}

section-slide.active .SlideContent {
    transform: translateY(0);
    opacity: 1;
}

section-slider .SlideContent h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 10px;
}

section-slider .SlideContent p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
}

section-slider .SlideContent button {
    width: 160px;
}

section-slider .SlideActions {
    display: flex;
    gap: 15px;
}

section-slider .Dots {
    position: absolute;
    bottom: 100px;
    left: 230px;
    display: flex;
    gap: 5px;
    z-index: 100;
    pointer-events: auto;
}

section-slider .dot {
    width: 24px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

section-slider .dot::before {
    content: "";
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

section-slider .dot.active::before {
    background: #fff;
}



/* ARROWS SLIDER */
arrows-slider {
    display: block;
    width: 100%;
    background: #fff;
    user-select: none;
}

arrows-slider .ArrowsSlider {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

arrows-slider .List {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    width: 100%;
    justify-content: center;
    scrollbar-width: none;
}

arrows-slider .List::-webkit-scrollbar {
    display: none;
}

arrows-slider .List p {
    font-size: 20px;
    font-weight: 500;
    color: #B3B3B3;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

arrows-slider .List p.active {
    color: #262626;
    transform: scale(1.1);
    font-weight: 500;
}

arrows-slider .Slide {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    gap: 50px;
}

arrows-slider .SliderTrack {
    display: flex;
    flex: 1;
    will-change: transform;
}

arrows-slider arrows-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

arrows-slider arrows-slide img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

arrows-slider .ImageContainer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

arrows-slider .ImageContainer img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

arrows-slider .round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #343434;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

arrows-slider .round:hover {
    background: #727272;
    border-color: #727272;
}

arrows-slider .round img {
    transition: filter 0.3s ease;
}

arrows-slider .round:hover img {
    filter: invert(1);
}

arrows-slider .Box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

arrows-slider .Values {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

arrows-slider .Values div h5 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #262626;
    letter-spacing: 4px;
}

arrows-slider .Values div h5 span.unit {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
}

arrows-slider .Values div p {
    font-size: 16px;
    color: #727272;
    font-weight: 400;
}

arrows-slider .Buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

arrows-slider .Buttons .btn-outline {
    color: #262626;
    border-color: #e6e6e6;
}

arrows-slider .Buttons .btn-outline:hover {
    background: #EBF0F0;
}

arrows-slider .Buttons .btn-default {
    background: #406A70;
    color: #fff;
}

arrows-slider .Buttons .btn-default:hover {
    opacity: 0.8;
}

arrows-slider .Buttons button {
    width: 180px;
}



/* DEFAULT SLIDER */
default-slider {
    display: block;
    width: 100%;
    background: #fff;
}

default-slider .DefaultSlider .DisplayArea {
    width: 100%;
    height: 825px;
    position: relative;
    background: #262626;
    overflow: hidden;
    border-radius: 16px;
}

default-slider .DefaultSlider .MediaItem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

default-slider .DefaultSlider .MediaItem.active {
    opacity: 1;
    visibility: visible;
}

default-slider .DefaultSlider .MediaItem img,
default-slider .DefaultSlider .MediaItem video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

default-slider .DefaultSlider .Navigation {
    width: 100%;
    margin: 40px auto 0;
    box-sizing: border-box;
}

default-slider .DefaultSlider .NavBox {
    width: fit-content;
    margin: 0 auto;
}

default-slider .DefaultSlider .List {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    padding-bottom: 20px;
}

default-slider .DefaultSlider .List p {
    font-size: 20px;
    color: #B3B3B3;
    cursor: pointer;
    margin: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

default-slider .DefaultSlider .List p.active {
    color: #262626;
}

default-slider .DefaultSlider .LineBase {
    width: 100%;
    height: 1px;
    background: #E6E6E6;
    position: relative;
}

default-slider .DefaultSlider .ActiveLine {
    position: absolute;
    top: -1px;
    left: 0;
    height: 2px;
    background: #262626;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.4s ease;
}

default-slider .DefaultSlider .DescriptionArea {
    position: relative;
    margin-top: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
}

default-slider .DefaultSlider .DescItem {
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #727272;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

default-slider .DefaultSlider .DescItem.active {
    opacity: 1;
    visibility: visible;
}

default-slider .DefaultSlider .separator {
    display: inline-block;
    margin: 0 10px;
}



/* LIST SLIDER */
list-slider {
    display: block;
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

list-slider .ListSlider .Navigation {
    width: 100%;
    margin: 0 auto 40px;
    box-sizing: border-box;
}

list-slider .ListSlider .NavBox {
    width: fit-content;
    margin: 0 auto;
}

list-slider .ListSlider .List {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    padding-bottom: 20px;
}

list-slider .ListSlider .List p {
    font-size: 20px;
    color: #B3B3B3;
    cursor: pointer;
    margin: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

list-slider .ListSlider .List p span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 2px;
}

list-slider .ListSlider .List p.active {
    color: #262626;
}

list-slider .ListSlider .LineBase {
    width: 100%;
    height: 1px;
    background: #E6E6E6;
    position: relative;
}

list-slider .ListSlider .ActiveLine {
    position: absolute;
    top: -1px;
    left: 0;
    height: 2px;
    background: #262626;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.4s ease;
}

list-slider .ListSlider .ContentArea {
    width: 100%;
    max-width: 1126px;
    margin: 0 auto;
}

list-slider .ListSlider .GridContainer {
    display: none;
    grid-template-columns: repeat(auto-fit, 148px);
    max-width: 1126px;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
}

list-slider .ListSlider .GridContainer.active {
    display: grid;
    animation: listFadeIn 0.4s ease forwards;
}

@keyframes listFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

list-slider .ListSlider .GridItem {
    width: 148px;
    display: flex;
    align-items: center;
    gap: 12px;
}

list-slider .ListSlider .GridItem p {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #727272;
    font-size: 16px;
}

list-slider .ListSlider .GridItem div {
    width: 12px;
    min-width: 12px;
    height: 12px;
    background: #54A7B2;
    border: 2px solid #ADDCE0;
    border-radius: 100%;
}



/* COLOR SLIDER */
color-slider {
    display: block;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

color-slider .ColorSlider .DisplayArea {
    width: 100%;
    height: 825px;
    position: relative;
    background: #F2F2F2;
    border-radius: 16px;
}

color-slider .ColorSlider .MediaItem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

color-slider .ColorSlider .MediaItem.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

color-slider .ColorSlider .MediaItem.slide-next {
    transform: translateX(100px);
}

color-slider .ColorSlider .MediaItem.slide-prev {
    transform: translateX(-100px);
}

color-slider .ColorSlider .MediaItem.active {
    transform: translateX(0);
}

color-slider .ColorSlider .MediaItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

color-slider .ColorSlider .ColorNavigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

color-slider .ColorSlider .ColorItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

color-slider .ColorSlider .ColorItem .Circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

color-slider .ColorSlider .ColorItem .Circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

color-slider .ColorSlider .ColorItem p {
    font-size: 18px;
    color: #B3B3B3;
    margin: 0;
    transition: color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

color-slider .ColorSlider .ColorItem.active .Circle {
    border-color: #262626;
}

color-slider .ColorSlider .ColorItem.active p {
    color: #262626;
}

@media (max-width: 1200px) {

    section-slider .SlideContent {
        left: 40px;
        bottom: 100px;
    }

    section-slider .Dots {
        left: 40px;
        bottom: 60px;
    }

    section-slider .SlideContent h1 {
        font-size: 40px;
    }

    default-slider .DefaultSlider .DisplayArea {
        height: 600px;
    }
}

@media (max-width: 992px) {

    arrows-slider .Slide {
        flex-direction: column;
        gap: 30px;
    }

    arrows-slider .Values {
        gap: 30px;
        justify-content: center;
    }

    arrows-slider .Values div h5 {
        font-size: 22px;
    }

    default-slider .DefaultSlider .List,
    list-slider .ListSlider .List,
    arrows-slider .List {
        width: 100%;
        gap: 30px;
        overflow-x: scroll;
        justify-content: flex-start;
        padding: 10px 20px;
    }

    default-slider .DefaultSlider .NavBox {
        width: 100%;
    }

    color-slider .ColorSlider .DisplayArea {
        height: 200px;
    }

    color-slider .ColorSlider .ColorNavigation {
        overflow-x: scroll;
        justify-content: flex-start;
    }

    default-slider .DefaultSlider .DescriptionArea {
        min-height: 200px;
    }

    default-slider .DefaultSlider .DisplayArea video {
        height: 100%;
        object-fit: cover;
    }

    default-slider .DefaultSlider .DisplayArea app-video {
        height: 100%;
    }

    list-slider .ListSlider .NavBox {
        width: 100%;
    }

    color-slider .ColorSlider .ColorItem p {
        font-size: 14px
    }
}

@media (max-width: 768px) {

    section-slide {
        padding: 0 20px;
        align-items: flex-end;
    }

    section-slider .SlideContent {
        left: 20px;
        right: 20px;
        bottom: 80px;
        text-align: center;
        align-items: center;
    }

    section-slider .SlideContent h1 {
        font-size: 28px;
    }

    section-slider .SlideContent p {
        font-size: 14px;
    }

    section-slider .Dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }

    arrows-slider .ImageContainer {
        min-height: 250px;
    }

    arrows-slider .round {
        display: none;
    }

    arrows-slider .Values {
        flex-wrap: wrap;
        gap: 20px;
    }

    arrows-slider .Buttons {
        flex-direction: column;
        width: 100%;
    }

    arrows-slider .Buttons button,
    arrows-slider .Buttons app-button {
        width: 100%;
    }

    default-slider .DefaultSlider .DisplayArea {
        height: 400px;
    }

    default-slider .DefaultSlider .List p,
    list-slider .ListSlider .List p,
    arrows-slider .List p {
        font-size: 16px;
    }

    arrows-slider .ArrowsSlider {
        padding: 0;
    }
}