.banner-pro {
	position: relative;
}
.view_type_grid {
	background: var(--up-bg-wd);
	padding: 20px;
	border-radius: 12px;
}
.dark-theme .view_type_grid {
	border: 1px solid var(--up-gray-color-1);
}
.banner-pro__column {
	padding-left: 10px;
	padding-right: 10px;
}
.banner-pro.view_type_grid .row-flex {
	gap:20px 0px;
}

@media (max-width: 500px) {
	.banner-pro .row-flex {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.banner-pro__column {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
}
@media (min-width: 500px) {
	.banner-pro .row-flex {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.banner-pro__column {
		-ms-flex: 0 0 52%;
		flex: 0 0 52%;
		max-width: 52%;
	}
}
@media (min-width: 768px) {
	.banner-pro__column {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.banner-pro .row-flex {
		flex-wrap: wrap;
	}
}
@media (min-width: 992px) {
	.banner-pro__column--col-4,
	.banner-pro__column--col-2 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.banner-pro__column--col-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}
@media (min-width: 1200px) {
	.banner-pro__column--col-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.banner-pro__column--col-4 {
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}
	.banner-pro__column--col-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}
@media (min-width: 1300px) {
	.banner-pro__column--col-2 {
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}
}
.banner-pro__item {
	border-radius: 10px;
	padding: 0px;
	height: 100%;
	background: #F9F9F9;
	position: relative;
	overflow: hidden;
}
.banner-pro__column .banner-pro__item {
	border-radius: 10px;
}
.swiper-slide .banner-pro__item {
	border-radius: 12px;
}
.banner-pro__content {
	position: absolute;
	left: 30px;
	top: 30px;
	z-index: 1;
	right: 30px;
}
.banner-pro__title {
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 600;
	color:#000;
}
.banner-pro__description {
	font-size: 16px;
	font-weight: 400;
	color:#000;
}
.banner-pro__content-price {
	position: absolute;
	left: 30px;
	bottom: 30px;
	display: flex;
	flex-direction: column;
}
.banner-pro__from {
	font-size: 16px;
	color: #000;
	margin-bottom: 4px;
	line-height: 16px;
	font-weight: 500;
}
.banner-pro__price {
	color: #fff;
	font-size: 26px;
	line-height: 26px;
	font-weight: 500;
}
.banner-pro__link {
	position: absolute;
	right: 30px;
	bottom: 30px;
	height: 54px;
	width: 78px;
	color:#000;
	background: #fff;
	border-radius: 50px;
}

.banner-pro__image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}
.banner-pro__image img {
	width: 100%;
	height: auto;
	font-size: 0px;
	border-radius: 10px;
}

.banner-pro__img_cover {
	object-fit: cover;
}

.banner-pro__img_contain {
	object-fit: none;
	object-position: center;
}

.banner-pro.view_type_slider:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	gap: 20px;
	overflow: hidden;
}
.banner-pro.view_type_slider:not(.swiper-initialized) .swiper-slide {
	flex: 0 0 75%;
	max-width: 75%;
}
.banner-pro.view_type_slider .banner-pro__item {
	width: 100%;
}
@media (min-width: 400px) {
	.banner-pro.view_type_slider:not(.swiper-initialized) .swiper-slide {
		flex: 0 0 calc((100% - 20px) / 2);
		max-width: calc((100% - 20px) / 2);
	}
}
@media (min-width: 600px) {
	.banner-pro.view_type_slider:not(.swiper-initialized) .swiper-slide {
		flex: 0 0 calc((100% - 40px) / 3);
		max-width: calc((100% - 40px) / 3);
	}
}
@media (min-width: 992px) {
	.banner-pro.view_type_slider:not(.swiper-initialized) .swiper-slide {
		flex: 0 0 calc((100% - 60px) / 4);
		max-width: calc((100% - 60px) / 4);
	}
}
.banner-pro.swiper-initialized .swiper-wrapper {
	gap: 0;
}
.view_type_slider {
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
}

.view_type_slider .swiper-slide {
	height: auto;
	display: flex;
}


.banner-pro__controls {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.banner-pro__control-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: var(--slider-navigation-border);
   background: var(--slider-navigation-bg);
	border-radius: 100px;
	padding: 4px;
	gap: 0;
	width: 100%;
	max-width: 260px;
	height: 32px;
	position: relative;
}

.home-page-content-top .banner-pro__controls {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.home-page-content-top .banner-pro__control-wrapper {
	background: rgba(255,255,255,0.4);
	border: 1px solid #fff;
}

.banner-pro__arrow {
	width: 35px;
	height: 24px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	z-index: 2;
	background: var(--slider-arrow-bg);
	color: var(--slider-arrow-color);
}
.banner-pro__arrow i {
	font-size: 20px;
	line-height: 1;
}
.banner-pro__arrow:hover {
	background: var(--slider-arrow-hover-bg);
  color: var(--slider-arrow-hover-color);
}

.banner-pro__arrow.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: var(--slider-arrow-hover-bg);
}

.banner-pro__control-wrapper .swiper-pagination {
	position: relative;
	bottom: auto !important;
	left: auto !important;
	top: auto !important;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-pro__control-wrapper .swiper-pagination-progressbar {
	position: relative;
	flex: 1;
	min-width: 50px;
	height: 6px;
	background: var(--slider-progressbar-bg);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 10px;
}

.banner-pro__control-wrapper .swiper-pagination-progressbar-fill {
	background: var(--slider-progressbar-fill);
	border-radius: 10px;
}

.banner-pro__control-wrapper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--slider-bullet);
	opacity: 1;
	margin: 0 4px !important;
}

.banner-pro__control-wrapper .swiper-pagination-bullet-active {
	background: var(--slider-bullet-active);
}