.brand-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2vw, 18px);
    font-family: var(--Medium);
    img {
        border-radius: 50%;
        display: flex;
        background: var(--nature2);
        margin-bottom: clamp(8px, 2vw, 16px);
        max-width: 144px;
        transition: 0.4s;
    }
    .brand-title {
        margin-bottom: 8px;
        width: 100%;
        text-align: center;
    }
    .brand-title-en {
        color: var(--gray);
    }
    &:hover img {
        background: #E7F2E8;
    }
}