/* slider  */
.slider_mainLayout {
    position: relative;
    width: 100%;
    margin-bottom: 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider_contentLayout {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_img {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
}

.slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_img.center {
    z-index: 3;
    width: 700px;
    height: 520px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.slider_img.right {
    z-index: 1;
    width: 400px;
    height: 350px;
    right: -100px;
    top: 50px;
    transform: scale(0.9) translateX(20px);
    opacity: 0.7;
}

.slider_img.right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider_img.left {
    z-index: 1;
    width: 400px;
    height: 350px;
    left: -100px;
    top: 50px;
    transform: scale(0.9) translateX(-20px);
    opacity: 0.7;
}

.slider_img.left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider_dotLayout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(41, 41, 41, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider_dot:hover {
    background: rgba(41, 41, 41, 0.6);
}

.slider_dot.active {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider_dot.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider_img.hidden {
    opacity: 0;
    transform: scale(0.8);
    z-index: 0;
}

.slider_btn {
    position: absolute;
    z-index: 3;

    transition: all .5s;
    cursor: pointer;
}

.slider_btn.left {
    left: 0;
}

.slider_btn.right {
    right: 0;
}