.service-thumb img {
    width: 100%;
    object-fit: cover;
    height: 440px;


}

.service-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.service-subpages-wrapper {
    background: #E3F0FF 0% 0% no-repeat padding-box;
    padding: 55px 35px;
    flex: 1;
    width: 50%;
    margin-top: -80px;
}

.service-info-title {
    width: 50%;
}

.service-subpages-wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: self-start;
}

.service-subpages-wrapper ul li a {
    font-size: 17px !important;
    letter-spacing: 0.17px;
    position: relative;
    font-family: 'Montserrat';
    font-weight: 500;

}

.service-row:nth-child(even) .service-info-title {
    order: 2;
}

.service-row:nth-child(even) .service-subpages-wrapper {
    order: 1;
}

.service-subpages-wrapper ul li a:before {
    content: " ";
    position: absolute;
    background: #014278 0% 0% no-repeat padding-box;
    width: 5px;
    height: 5px;
    left: -17px;
    top: 9px;
}

@media(max-width: 992px) {
    .service-subpages-wrapper {
        margin-top: 0px;
        width: 100%;
    }

    .service-item {
        margin-top: 70px;
    }

    .service-info {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 0px;
        gap: 8px;
    }

    .service-row:nth-child(even) .service-subpages-wrapper {
        order: 2;
    }

    .service-info-title {
        width: 100%;
    }

    .service-thumb img {
        min-height: 300px;
    }
}

@media(max-width: 480px) {
    .service-subpages-wrapper ul {
        grid-template-columns: 1fr;
    }
}