.icons__swiper {
    overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icons__swiper-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
	color: #000;
}

.icons__swiper-card img {
    height: 140px;
	min-height: 140px;
	max-height: 140px;
}

.icons__swiper-card p {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

/* Pagination */
.icons__pagination {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    z-index: 9999999999;
}

.icons__pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    background-color: #000;
    cursor: pointer;
    transition: 0.25s ease;
}

.icons__pagination-item svg path {
    fill: #fff;
}

.icons__pagination .icons__pagination-next {
    transform: rotate(180deg);
}



@media only screen and (max-width:767px) {
	.icons__swiper-card p {
		font-size: 14px;
	}
}