.main-flex.main-flex-wrap.main-flex-i-15[data-role="services-content"] {
    margin-bottom: 100px;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-content .service-main-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 7px;
    overflow: hidden;
    width: 100%;
    height: 230px;
}

.service-content .service-main-bg * {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    top: 0;
    left: 0;
}

.service-link {
    text-decoration: none;
}

.service-link .service-more svg path {
    transition: stroke .3s;
}

.service-link:hover .service-name {
    color: #915CE5;
    transition: color .3s;
}

.service-link:hover .service-more {
    color: #FBFBFB;
    transition: color .3s;
}

.service-link:hover .service-more svg path {
    stroke: #FBFBFB;
    transition: stroke .3s;
}

.service-content .service-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: color .3s;
}

.service-content .service-more {
    color: #915CE5;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: color .3s;
}

@media (max-width: 650px) {
    .service-content {
        gap: 20px;
    }
}

@media (max-width: 450px) {
    .service-content .service-name {
        font-size: 14px;
        line-height: 150%;
    }

    .service-content .service-more {
        font-size: 12px;
        line-height: normal;
    }
}