.section-head h2 {
    color: #07365c;
    font-weight: 700;
}

.section-head .text-link, .category-name {
    color: #16873a
}

.category-row {
    gap: 18px
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #16873a;
    font-weight: 700
}

.category-icon {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: linear-gradient(145deg, #07365c 0%, #0b5e91 54%, #4da7d8 100%);
    box-shadow: 0 12px 30px rgba(7, 54, 92, .18);
    transition: transform .2s ease, box-shadow .2s ease
}

.category-icon img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 25, 48, .2));
    transition: transform .2s ease
}

.category:hover .category-icon {
    background: linear-gradient(145deg, #07365c 0%, #0b5e91 54%, #4da7d8 100%);
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(7, 54, 92, .25)
}

.category:hover .category-icon img {
    transform: scale(1.06)
}

.category:hover .category-name {
    color: #0f7a35
}

.category-name {
    font-size: .84rem;
    line-height: 1.25;
    text-align: center;
    transition: color .2s ease
}

@media(max-width:680px) {
    .category-icon {
        width: 86px
    }

    .category {
        min-width: 92px
    }
}