.swiper {
	height: 100%;
	margin-top: 0px;
	margin-bottom: 30px;
	width: 100%;
}

.swiperbrands {
	margin: 0 auto;
	overflow: hidden;
}

.swiper-wrapper {
	display: flex;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%; /* Це забезпечить, щоб кожен слайд займав весь доступний простір */
	text-align: center;

}

.swiper-slide img {
	height: auto;
	max-width: 100%;
	border-radius: 20px;
}
.swiper-pagination-bullet {
	width: 10px; /* Ширина точки */
	height: 10px; /* Висота точки */
	background: #F6F4F2; /* Колір */
	opacity: 1; /* Робимо їх видимими */
}

.swiper-pagination-bullet-active {
	background-color: #666;
	transform: scale(1.3); /* Робимо активну більшу */
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	z-index: 10;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 26px;
}

.swiper-button-next {
	right: 20px;
}

.swiper-button-prev {
	left: 20px;
}
