.service-card {
    border-radius: 6px;
    box-shadow: 0 20px 40px 0 #adb5bd1a;
    border: solid 1px #8193ae1f;
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

@media only screen and (max-width: 520px) {
    .service-card {
        padding: 40px 20px;
    }
}

.service-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -1px;
    width: calc(100% + 2px);
    height: 8px;
    border-radius: 6px 6px 0 0;
}

.service-card:nth-child(6n - 5)::before {
    background-color: #ffd25f;
}

.service-card:nth-child(6n - 4)::before {
    background-color: #63a2ff;
}

.service-card:nth-child(6n - 3)::before {
    background-color: #63f5ff;
}

.service-card:nth-child(6n - 2)::before {
    background-color: #ff63ac;
}

.service-card:nth-child(6n - 1)::before {
    background-color: #5ed291;
}

.service-card:nth-child(6n)::before {
    background-color: #7f5ed2;
}

.service-card__body {
    padding-top: 16px;
}

.service-card__head {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #22272a;
}

.service-card__content {
    font-size: 0.9rem;
}

img.service-card__icon {
    max-height: 100px;
    max-width: 100%;
}