.other-services{
    display: grid;
    grid-template-columns: 1.25fr 4fr;
    gap: 6rem; 
    position: relative;
}

.other-services-col1{
    border-right: 1px solid;
    padding-right: 2rem;
}

.other-services-col1 h3 {
    text-transform: uppercase;
}

.other-services-list{
    display: grid;
    position: relative;
}

.other-services-list .service img{
    max-width: 100%;
    border-radius: 20px;
    height: 280px;
    object-fit: cover;
}

.other-services-list .service .service_title{
    display: flex;
    align-items: center;
    text-align: left;
}

.other-services-list .service .service_title h4{
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.other-services-list .service a {
    text-decoration: none;
    color: inherit;
}

.other-services-list .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
}

.other-services-list .swiper .swiper-wrapper .swiper-slide:nth-child(odd) a{
    padding-right: 5px;
}
.other-services-list .swiper .swiper-wrapper .swiper-slide:nth-child(even) a{
    padding-left: 5px;
}
  
.other-services-list .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
  
  
.other-services-list .swiper-slide a{
    display: block;
    width:100%;
}

.other-services-list .swiper-button-next:after, .other-services-list .swiper-button-prev:after{
    content: none;
}
.other-services-list .swiper-button-next{
    top: 45%;
    right: -45px;
}
.other-services-list .swiper-button-prev{
    top: 45%;
    left: -45px;
}
.other-services-list .swiper-button-next svg, .other-services-list .swiper-button-prev svg{
    width: 10px;
}
.other-services-list .swiper-button-prev svg{
    transform: rotate(180deg);
}


/* mobile */

@media screen and (max-width: 1024px) {
    .other-services {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2rem; 
    }

    .other-services-col1{
        border-right: none;
    }

    .other-services-list .swiper-button-next{
        top: 42%;
        right: 10px;
    }
    .other-services-list .swiper-button-prev{
        top: 42%;
        left: 10px;
    }
}