.section-services h2 {
    margin-bottom: 60px;
}

.services__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 55px;
    column-gap: 40px;
}

@media (min-width: 576px) {
    .services__list {
        flex-direction: row;
    }
}

.services__item {
    width: 100%;
    flex-grow: 1;
    position: relative;
}

@media (min-width: 576px) {
    .services__item {
        width: calc((100% / 2) - 40px);
    }
}

@media (min-width: 1024px) {
    .services__item {
        width: calc((100% / 3) - 80px);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--light-color);
    padding: 0 20px 20px;
    border-radius: 20px;
    position: relative;
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
}

.service-card h3 {
    font-size: clamp(18px, 2vw, 20px);
}

@media (min-width: 576px) {
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 2px 12px rgba(45, 60, 100, .05), 0 4px 32px rgba(45, 60, 100, .05);
    }
}

.service-card__icon {
    display: flex;
    align-items: center;
    width: 115px;
    height: 115px;
    background-color: var(--accent-color);
    margin: -50px auto 0 0;
    padding: 15px;
    border: 10px solid var(--light-grey-bg);
    border-radius: 30px;
}

.service-card__icon svg {
    fill: var(--light-color);
}

.service-card__icon img {
    opacity: .8;
}

.service-card:hover .service-card__icon {
    transform: rotate(360deg);
    transition: transform 1s;
}