.swiper-pagination-bullet {
    border:1px solid black;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    border-color: transparent;
    opacity: 1;
}

.home-slider {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    background-color: #ffffff;
}

.home-slider-box {
    display: flex;
    align-items: center;
    width: 1240px;
    justify-content: space-between;
}

.home-slider-box-left {
    width: 100%;
    max-width: 790px;
    height: 480px;
    overflow: hidden;
    border-radius: 12px;
}

.home-slider-box-right {
    width: 420px;
    height: 480px;
    background-color: #ffffff;
    border-radius: 12px;
overflow: hidden;
}

.home-slider-box-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;  
}

.home-slider-box-right img:hover {
    transform: scale(1.01);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;  
}

.swiper-slide img:hover {
    transform: scale(1.01);
}

.swiper-button-disabled{
    background-color: #cccccc !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #ffcd04;
    border-radius: 50%;
    top: calc(50% - 80px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: #f8b120;
}

.swiper-button-next svg path,
.swiper-button-prev svg path {
    fill: #000;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 20px;
    height: 20px;
}

.swiper-pagination-bullet {
    background: #ffffff;
}

.swiper-pagination-bullet-active {
    background: #ffcd04;
}

@media (max-width: 1300px) and (min-width: 1201px){
    .home-slider-box {
        width: 1140px;
    }

    .home-slider-box-left {
        max-width: 718px;
    }

    .home-slider-box-right {
        width: 402px;
    }
}

@media (max-width: 1200px) and (min-width: 840px){
    .home-slider-box-right {
        display: none;
    }

    .home-slider {
        background: #ffffff;
        padding-top: 32px;
    }

    .home-slider-box {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 839px) and (min-width: 701px) {
    .home-slider-box-right {
        display: none;
    }

    .home-slider {
        padding-top: 16px;
        padding-left: 16px;
        padding-right: 16px;
        background: #fff;
    }

    .home-slider-box {
        justify-content: center;
        width: 100%;
    }

    .swiper-slide img {
        object-fit: fill;
    }

    .home-slider-box-left {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 700px) {
    .home-slider-box-right {
        display: none;
    }

    .home-slider-box {
        justify-content: center;
        width: 100%;
    }

    .home-slider {
        padding-top: 12px;
        padding-left: 12px;
        padding-right: 12px;
        background: #f5f5f5;
    }

    .swiper-slide img {
        object-fit: fill;
    }

    .home-slider-box-left {
        width: 100%;
        height: auto;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

}