/* ===== GALLERY TABS ===== */
.vrs-gallery__tabs {
	display: flex;
	gap: 8px 20px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.vrs-gallery__tab {
	flex: 1 1;
	padding: 15.5px 32px;
	background: #F4F6FB;
	color: #3A3A3A;
	font-size: 14px;
	line-height: 120%;
	font-weight: 500;
	cursor: pointer;
	border-radius: 50px;
	border: none;
	min-width: 320px;
	transition: all 0.3s ease;
}

.vrs-gallery__tab:hover {
	background-color: #CDC5B6;
}

.vrs-gallery__tab.active {
	background: #CDC5B6;
}

.vrs-gallery__tab-content {
	display: none;
}

.vrs-gallery__tab-content.active {
	display: block;
}


.vrs-gallery__tab-content .swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 32px;
}

.vrs-gallery__tab-content .swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 32px;
}

.vrs-gallery__tab-content .swiper .swiper-slide {
	height: auto;
}

.vrs-gallery__tab-content .swiper .swiper-slide img {
	width: 100%;
	max-height: 700px;
	object-fit: cover;
	height: auto;
}

@media (max-width: 768px) {

	.vrs-gallery__tab-content .swiper .swiper-slide img {
		max-height: 300px;
	}
}

@media (max-width: 568px) {

	.vrs-gallery__tab-content .swiper .swiper-slide img {
		height: 300px;
	}

	/* .vrs-gallery__tab-content {
		padding-bottom: 64px;
	} */

	.vrs-gallery__tab-content .swiper-button-prev,
	.swiper-button-next {
		position: static;
		transform: translate(0);
		margin: 0;
	}

	.vrs-gallery__tab-content .gallery-swiper-nav {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 24px;
		margin-top: 16px;
	}

	.vrs-gallery__tab-content .swiper-button-prev:hover,
	.vrs-gallery__tab-content .swiper-button-next:hover {
		transform: scale(1);
	}

	.vrs-gallery__tab-content .gallery-swiper-nav .swiper-button-disabled {
		display: block !important;
		opacity: .5;
	}
}

/* ===== END GALLERY TABS ===== */