.banner-icons--wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
}

.banner-icons--container {
    display: flex;
    width: calc((100% / 6) - (30px * 5) / 6);
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-icons--svg {
    width: 80px;
    height: 80px;
}

.banner-icons--svg > i,
.banner-icons--svg > img,
.banner-icons--svg > svg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    font-size: 80px;
}

.banner-icons--text {
    text-align: center;
}

@media (max-width: 1025px) {
    .banner-icons--container {
        width: calc((100% / 3) - (30px * 2) / 3);
    }
}

@media (max-width: 767px) {
    .banner-icons--container {
        width: calc((100% / 2) - (30px / 2));
    }
}