.section-service {
    width: calc(100% - 2rem);
    margin-inline: 1rem;
    border-radius: 0 0 2rem 2rem;
}
.back-sec {
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    padding-bottom: 72px;
    position: relative;
    overflow: hidden;
}
.back-sec:before {
    content: "";
    width: 150%;
    height: 300px;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 87%) 50%, rgb(255 255 255) 100%);
}
.service-items {
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(20px);
    padding: 32px 16px 60px;
    border-radius: 24px;
    border: 1px solid white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
    overflow: hidden;
}
.service-items:hover {
    background-color: white;
}
.service-items:after {
    content: "";
}
.sw--service {
    margin-top: 72px;
}
.image-box {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 45px;
    color: var(--white);
    position: relative;
    transition: 0.4s;
}
.image-box:before {
    content: "";
    width: 59px;
    height: 59px;
    border-radius: 50%;
    position: absolute;
    background: rgb(255 255 255 / 20%);
    z-index: -1;
    top: 0;
    right: 0;
    transition: 0.4s;
}
.service-items:hover .image-box:before {
    background: rgb(14 113 181 / 12%);
}
.service-items i {
    transition: 0.4s;
}
.service-items:hover i {
    color: var(--color1);
}
.service-items .s-title {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 8px;
}
.service-items:before {
    content: "";
    width: 88px;
    height: 0;
    border: 2px solid #E6E6E6;
    position: absolute;
    bottom: 16px;
    border-radius: 100px;
    right: 50%;
    transform: translateX(50%);
}
.service-items:hover:before {
    border-color: var(--color2);
}
.service-items p {
    margin: 8px 0 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.service-items .links {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #E6E6E6;
    transition: 0.4s;
}
.service-items:hover .links i {
    color: var(--color2);
}
.img-items {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
}
.img-items img {
    height: 100%;
    object-fit: cover;
}
.section-service .swiper-backface-hidden .swiper-slide {
    transform: unset !important;
}
.section-service .swiper-button-next {
    right: calc(100% - 1.5rem);
}
.section-service .swiper-button-prev {
    left: calc(100% - 1.5rem);
}
@media screen and (min-width: 992px) {
    .section-service .sw.position-relative {
        width: calc(100% - 2rem);
        margin-right: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .section-service {
        width: 100%;
        margin-inline: 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }
    .section-service .sw {
        padding-inline: 1rem;
    }
    .back-sec:before {
        height: 400px;
    }
    .service-items {
        max-height: 370px;
    }
    .back-sec {
        padding-bottom: 44px;
    }
    .section-service .swiper-button-prev {
        left: calc(100% - 2rem);
    }
    .section-service .swiper-button-next {
        right: calc(100% - 2rem);
    }
}
@media only screen and (max-width: 450px) {

}