

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	/* NAVIGATION */
	--swiper-navigation-size: 50px;
    --swiper-navigation-top-offset: 50%;
    --swiper-navigation-sides-offset: 0px;
    --swiper-navigation-color: var(--swiper-theme-color);

	/* PAGINATION */
	--swiper-pagination-color: var(--swiper-theme-color);
	--swiper-pagination-left: auto;
	--swiper-pagination-right: 8px;
	--swiper-pagination-bottom: 8px;
	--swiper-pagination-top: auto;
	--swiper-pagination-fraction-color: inherit;
	--swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
	--swiper-pagination-progressbar-size: 4px;
	--swiper-pagination-bullet-size: 12px;
	--swiper-pagination-bullet-width: 12px;
	--swiper-pagination-bullet-height: 12px;
	--swiper-pagination-bullet-inactive-color: var(--background-color);
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 4px;
	--swiper-pagination-bullet-vertical-gap: 6px;
	/*IMAGE SIZES*/
	--width:960px;
	--height:600px;
}

.swiper-container{
	width:100%;
	height:var(--height);
	background: var(--background-color);
	display:flex; 
	justify-content:center;
	align-items:center;
	z-index: -5;
}

.swiper{
	width:100%;
	height: var(--height);
	justify-content:center;
	align-items:center;
	z-index: -5;
}

.swiper-slide img{
    width:85%;
	min-width:var(--width);
	height:var(--height);
	justify-content:center;
	align-items:center;
	z-index: -5;
	object-fit: cover;
}

.swiper .swiper-button-next{
	color:var(--primary-color);
	background-color: var(--background-color);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	opacity: 60%;
}

.swiper .swiper-button-prev{
	color:var(--primary-color);
	background-color: var(--background-color);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	opacity: 60%;
}

.swiper .swiper-pagination-bullet-active{
	background:var(--primary-color);
	color:var(--primary-color);
}



