/* ============================================================
   Logo Carousel Widget
   ============================================================ */
.lc-wrap { width: 100%; }

.lc-swiper { overflow: hidden; }

.lc-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.lc-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.lc-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.8;
	transition: opacity .3s ease;
}

.lc-logo:hover img {
	opacity: 1;
}

/* Pagination */
.lc-pagination {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lc-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1a1b4b;
	opacity: 1;
	margin: 0 6px !important;
	transition: background .3s ease;
	cursor: pointer;
}

.lc-pagination .swiper-pagination-bullet-active {
	background: #cc292b;
}
