.beos-icon-wall {
    display: flex;
    flex-direction: column;

}

.beos-icon-wall__title {
    color: var(--bs-dark-text-color);
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2.5rem;
}

.beos-icon-wall__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .beos-icon-wall__title {
        margin-bottom: 2rem;
    }

    .beos-icon-wall__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .beos-icon-wall__title {
        margin-bottom: 1.5rem;
    }

    .beos-icon-wall__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 425px) {
    .beos-icon-wall__title {
        margin-bottom: 1.25rem;
    }

    .beos-icon-wall__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}