.logotypes__section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.logotypes__swiper {
    position: relative;
    overflow: hidden;
    width: calc(100% - 70px);
}

.logotypes__section .swiper-wrapper {
    width: fit-content;
    margin: auto;
    align-items: center;
}

.logotypes__section .logotype {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logotypes__section img {
    max-height: 60px;
    object-fit: contain;
}

/* Pagination */
.logotypes__pagination-item {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 32px;
	min-width: 32px;
	max-width: 32px;
    height: 32px;
	min-height: 32px;
	max-height: 32px;
    background-color: #000;
    cursor: pointer;
    transition: 0.25s ease;
    z-index: 999999999999999;
}

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

.logotypes__pagination-next {
    transform: rotate(180deg);
    right: 0;
}

.logotypes__pagination-item.swiper-button-disabled {
	opacity: .2;
    cursor: not-allowed;
}

.logotypes__pagination-item.swiper-button-disabled.swiper-button-lock {
    display: none;
}


