/* Header */


#mainHeader {
    position: relative;
    top: 0px;
    z-index: 1010;
    width: 100%;
    overflow: hidden;
}

#mainHeader.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;

}



/* Slider */
.slider-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
}


.big-slider {
    position: relative;
    max-width: 570px;
    max-height: 590px;
    width: 100%;
    overflow: hidden;
    top: -30px;
}

.slides {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    /*    object-fit: cover; */
    object-fit: contain;
    max-width: 100%;
}

.slide.active {
    display: block;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
}

.next {
    right: 16px;
}

.thumbnail-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scroll-behavior: smooth;
    height: 500px;
    max-height: 507px;
    padding-right: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: -130px;
}

.thumbnail-container::-webkit-scrollbar {
    width: 8px;
    display: none;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;

}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 0px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail:last-child {
    margin-bottom: 0;
}

.active_slider {
    border: 2px solid var(--main-btn-bg);
}

@media screen and (max-width:1550px) {
    .big-slider {
        position: relative;
        max-width: 570px;
        max-height: 590px;
        width: 100%;
        overflow: hidden;
        top: 0px;
    }

    .thumbnail-container {
        margin-top: 0px;
        height: 600px;
        max-height: 570px;
    }
}

@media screen and (max-width:1322px) {
    .slide {
        max-width: 100%;
        object-fit: contain;
    }
}

@media screen and (max-width:1057px) {
    .thumbnail-container {
        display: none;
    }

    .thumbnail-container {
        width: 30%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1320px){
    .site-header.site-header--left.no-menu-overflow .header-top-pc {
        --logoImgHeight: 58px !important;
    }
}


.site-header.site-header--left.no-menu-overflow .header-top-pc {
    --logoImgHeight: 88px;
}

.menu-title {
    font-weight: 900;
}