.swiper.items-carousel {
    width: 100%;
    position: unset;
    overflow: hidden;
}

.swiper.items-carousel .swiper-wrapper {
    overflow: visible;
}

.items-carousel .swiper-slide {
    padding: 10px;
    display: flex;
    border-radius: 20px;
    min-height: 200px;
    background-color: #5c79d1;
    overflow: hidden;
}

.items-carousel .swiper-slide-next {
    transform: scale(1);
    box-shadow: 0 0 20px 5px #9c70f455;
}

.items-carousel .items-carousel-button-prev {
    background: #7d7c7c8f;
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 9;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.items-carousel .items-carousel-button-next {
    background: #7d7c7c8f;
    position: absolute;
    right: 0;
    top: 40%;
    z-index: 9;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.items-carousel .items-carousel-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.items-carousel .items-carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.items-carousel .items-carousel-image img {
    width: 150px;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.items-carousel .items-carousel-title {
    width: 100%;
    text-align: center;
}

.items-carousel .items-carousel-title h5 {
    color: #ffffff;
    font-weight: 900;
    font-size: 35px;
    margin-top: 33px;
}

.items-carousel .items-carousel-link {
    padding: 8px 25px;
    border-radius: 100px;
    margin: 30px auto 0 auto;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    color: #5C79D1;
    background-color: #ffffff;
}

.items-carousel .swiper-pagination span {
    width: 10px;
    height: 10px;
    margin: 5px;
}

.items-carousel .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
    color: #ffffff;
}

.swiper-slide-duplicate-prev {
    -webkit-mask-size: 100% 50%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left top, left bottom;
}

.items-carousel-link svg {
    width: 12px;
    height: 12px;
}

@media only screen and (max-width: 430px) {
    .items-carousel .swiper-slide {
        width: 100%;
    }
}

@media only screen and (max-width:1000px) {
    .items-carousel .swiper-slide-next {
        transform: scale(1);
        min-height: 200px;
    }
}