.service_list_card {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    border: 1px solid #D6DAF1;
    border-radius: 38px;
    height: 100%;
}

.services-horizontal-scroll {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-scroll-item {
    width: calc(33% - 10px);
}



.service-card-img {
    max-height: 220px;
    overflow: hidden;
    border-radius: 24px;
}

.service-card-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.iv_image.service-card-img {
    background: linear-gradient(to bottom, #FF8BB3, white);
}




.iv_image.service-card-img.pink {
    background: linear-gradient(to bottom, #FF8BB3, white);
}

.iv_image.service-card-img.green {
    background: linear-gradient(to bottom, #CAFFD1, white);
}

.iv_image.service-card-img.gray {
    background: linear-gradient(to bottom, #CFE4ED, white);
}

.iv_image.service-card-img.blue {
    background: linear-gradient(to bottom, #A5DAFF, white);
}

.iv_image.service-card-img.red {
    background: linear-gradient(to bottom, #FFB9C0, white);
}

.iv_image.service-card-img.yellow {
    background: linear-gradient(to bottom, #FFEFCB, white);
}

.iv_image.service-card-img.purple {
    background: linear-gradient(to bottom, #FFD4F1, white);
}











.iv_image.service-card-img img {
    height: 100%;
    object-fit: contain;
}

.services_list_content a {
    text-decoration: none;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 22px;
}

.service-card-title {
    font-size: 24px;
    color: var(--theme-base-color);
    font-weight: 500;
    line-height: 26px;
    min-height: 52px;
}

.service-card-description {
    margin-bottom: 10px;
    font-size: 14px;
    color: #5A5C70;
}

.service-card-bottom {
    display: flex;
    justify-content: space-between;
}

.service-card-price {
    font-size: 24px;
    color: var(--theme-base-color);
    font-weight: 500;
}

.service-card-btn {
    color: var(--theme-base-color);
    border: 1px solid var(--theme-base-color);
    padding: 10px 24px;
    border-radius: 38px;
}

.all-services__btn {
    margin-top: 30px;
    display: flex;
    justify-content: end;
}

.all-services__btn a {
    text-decoration: none;
}


.services_list_items {}


.services_list_content {}

.services_list_items .item {
    box-shadow: 2px 2px 10px #0000001c;
    border-radius: 30px;
    position: relative;
    height: 100%;
    padding: 30px;
    transition: 0.3s;
}

.services_list_items .item a {
    color: #000;
    text-decoration: none;
}

.services_list_items .image {
    position: absolute;
    left: 0px;
    width: 120px;
    top: -20px;
}

.services_list_items .image.round_image {
    width: 120px;
    height: 120px;
}

.services_list_items .image.round_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.services_list_items .image img {}

.services_list_items .item_content {
    padding-left: 106px;
}

.services_list_items .title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    min-height: 52px;
}

.services_list_items .description {
    color: #737373;
    padding-bottom: 20px;
}

.services_list_items .bottom_btn {
    position: relative;
}

.services_list_items .bottom_btn_left {
    background: var(--theme-base-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    display: inline-block;
}

.services_list_items .bottom_btn_right {
    position: absolute;
    top: 5px;
    right: 0px;
    font-size: 14px;
    color: var(--theme-base-color);
}

.link_arrow {
    display: none;
}

@media (max-width:991px) {
    .services-horizontal-scroll {
        overflow-x: scroll;
    }

    .service-scroll-item {
        width: 100%;
    }

    .service_list_card {
        min-width: 270px;
        position: relative;
    }

    .service-card-content {
        padding: 15px;
    }

    .service-card-bottom .service-card-btn {
        display: none;
    }

    .services-horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .all-services__btn a {
        width: 100%;
        text-align: center;
    }

    .link_arrow {
        position: absolute;
        border: 1px solid white;
        border-radius: 30px;
        width: clamp(28px, 32px, 36px);
        height: clamp(28px, 32px, 36px);
        overflow: hidden;
        transition: all 0.3s ease;
        display: block;
        align-items: center;
        right: 30px;
        top: 15px;
    }

    .link_arrow__icon {
        width: clamp(26px, 30px, 34px);
        height: clamp(26px, 30px, 34px);
        display: flex;
        justify-content: center;
        transition: 0.3s;
        align-items: center;
        transform: rotate(-45deg);
    }
}
