.home_slider_wrapper1.swiper {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    margin-left: 0; /* Changed from margin-right */
    border-radius: 0 0 200px 0; /* Changed border-radius for LTR */
    z-index: 1;
    overflow: hidden;
    border-bottom: solid 10px #c9a35c;
}

.home_slider_wrapper1 .item {
    overflow:hidden;
}

.home_slider_wrapper1 .nav_wrapper {
    display: flex;
    flex-direction: row-reverse;
    height: 100px;
    width: 100px;
    position: absolute;
    right: 20px; /* Changed from left */
    bottom: 50%;
}

.home_slider_wrapper1 .swiper-pagination {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    left: 5%; /* Changed from right */
    bottom: 50%;
    z-index: 11;
    width: fit-content;
    margin: 0 auto;
}

.home_slider_wrapper1 .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--box_bg_0);
}

.home_slider_wrapper1 .swiper-pagination-bullet-active {
    background: var(--box_bg_0);
    height: 35px;
    width: 15px;
}

.home_slider_wrapper1 .swiper-button-prev, .home_slider_wrapper1 .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius_1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary_1);
    transition: all 0.2s ease-in-out 0s;
    padding: 0;
    position: relative;
}

.home_slider_wrapper1 .swiper-button-prev:hover , .home_slider_wrapper1 .swiper-button-next:hover {
    opacity: 1;
}

.home_slider_wrapper1 .swiper-button-prev svg ,.home_slider_wrapper1 .swiper-button-next svg {
    color: #fff;
    transform: unset;
}

.home_slider_wrapper1 .swiper-button-prev,
.home_slider_wrapper1 .swiper-button-next {
    left: unset !important;
    right: unset !important;
    /*top: unset;*/
}

.home_slider_wrapper1.swiper-3d .swiper-slide-shadow-left,
.home_slider_wrapper1.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgb(0 0 0 / 75%), #fff0); /* Changed from to left */
}

@media (max-width: 575px) {
    .home_slider_wrapper1 .item {
        
    }
    .home_slider_wrapper1 .swiper-button-prev, .home_slider_wrapper1 .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    
    .home_slider_wrapper1 .swiper-pagination {
        bottom: var(--margin-2);
    }
    
    .home_slider_wrapper1 .swiper-button-prev, .home_slider_wrapper1 .swiper-button-next {
        bottom: var(--margin-2);
    }
}

@media (max-width: 991px) {
    .home_slider_wrapper1.swiper {
        border-radius: 0;
    }
    .home_slider_wrapper1.swiper {
        margin-bottom: var(--margin);
    }
    .home_slider_wrapper1 .item {
        height: 148px !important;
    }
    .home_slider_wrapper1 .swiper-button-prev {
        right: 13% !important; /* Changed from left */
        left: unset !important; /* Changed from right */
    }
    .home_slider_wrapper1 .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--box_bg_0);
    }
    .home_slider_wrapper1 .swiper-pagination-bullet-active {
        background: var(--box_bg_0);
        height: 20px;
        width: 10px;
    }
}

@media (min-width: 992px) {
    .home_slider_wrapper1.swiper {
        width: 92.4%;
    }
    
    .home_slider_wrapper1 .item {
        width: 100% !important;
        height: 550px !important;
        object-fit: cover;
        text-align: center;
    }
    
    .home_slider_wrapper1 .item img {
        width: 100%;
        height: 100%;
        background-color: var(--primary_3);
    }
}