.service-swiper {
    overflow: visible;
}
.service-card {
    min-height: 480px;
    height: 100%;
    width: 100%;
    background: #fff;
    padding: 51px 32px;
    box-shadow: 0 8px 22px rgba(0,0,0,.22);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    cursor: pointer;
}
.service-head {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-icon {
    width: 105px;
    height: 105px;
    min-width: 105px;
    border-radius: 50%;
    background: #8fa1ad;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}
.service-icon img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all .35s ease;
}
.service-card .service-title {
    font-family: var(--h3FontFamily);
    /*font-size: var(--h3DeskFont);*/
    font-size: clamp(30px, 2.5vw, var(--h3DeskFont));
	font-style: var(--h3FontStyle);
	font-weight: var(--h3FontWt);
    color: #80949E;
    margin: 0;
    transition: all .35s ease;
}
.service-line {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: #80949E;
    margin: 50px 0;
    transition: all .35s ease;    
}
.service-card p {
    color: #80949E;
    font-size: var(--defaultDeskFont);
	font-family: var(--defaultFontFamily);
	font-weight: var(--defaultFontWt);
	font-style: var(--defaultFontStyle);
	line-height: var(--defaultDeskLineHt);
    margin-bottom: 55px;
    flex-grow: 1;
    transition: all .35s ease;
}

.arrow-btn {
    position: absolute;
    right: 32px;
    bottom: 31px;
    width: 46px;
    height: 46px;
    aspect-ratio: 1/1;
    background: #C20000;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    line-height: 1;
    transition: all .35s ease;
}
.arrow-btn:hover {
    color: #FFFFFF;
}
.service-nav {
    display: none;
}

.service-card:hover {
    background: #1C2329;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.service-card:hover .service-title,
.service-card:hover p {
    color: #fff;
}
.service-card:hover .service-line {
    background: #fff;
}

@media (min-width: 768px) {
    .service-grid {
        display: flex !important;
        flex-wrap: wrap;
        gap: 41px;
        align-items: stretch;
        transform: none !important;
    }
    .service-grid .swiper-slide {
        display: flex;
        margin: 0 !important;
        height: auto;
    }
    .service-card {
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1599px) {
    .service-grid .swiper-slide {
        flex: 0 0 calc(50% - 20.5px);
        max-width: calc(50% - 20.5px);
        width: calc(50% - 20.5px) !important;
    }
}

/* 3 cards per row on large screen */
@media (min-width: 1600px) {
    .service-grid .swiper-slide {
        flex: 0 0 calc(33.333% - 27.34px);
        max-width: calc(33.333% - 27.34px);
        width: calc(33.333% - 27.34px) !important;
    }
}

@media (max-width: 992px) {
    .service_list_block .service-head {
        min-height: 60px;
    }
    .service_list_block .service-icon {
        display: none;
    }
}

/* Mobile: Swiper slider */
@media (max-width: 767.98px) {
    .service-swiper {
        overflow: hidden;
        padding: 0 30px;
        margin: 0 -12px;
    }
    .service-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }
    .service-grid .swiper-slide {
        /*width: 100% !important;*/
        height: auto !important;
        display: flex;
    }
    .service-card {
        width: 100%;
        min-height: 300px;
        height: 500px;
        padding: 60px 17px;
    }
    .service_list_block .service-head {
        min-height: auto;
        display: block;
    }
    .service_list_block .service-icon {
        display: none;
    }
    .service-card .service-title {
        white-space: normal;
        overflow-wrap: break-word;
    }
    .service-line {
        margin: 50px auto;
    }

    .service-card p {
        margin-bottom: 45px;
        flex-grow: 0;
    }
    .arrow-btn {
        width: 46px;
        height: 46px;
        right: 17px;
        bottom: 25px;
        font-size: 23px;
    }

    .service-nav {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 40px;
    }
    .service-prev,
    .service-next {
        position: relative;
        width: 60px;
        height: 60px;
        aspect-ratio: 1/1;
        border: 2.812px solid #425A6E;
        background: #fff;
        color: #425A6E;
        font-size: 30px;

        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .3s ease;
    }
}