#banners {
	padding: 65px 0;
	padding-top: 0;
/*	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(241,249,237,1) 89%);*/

	background: var(--accents2);
	max-height: 500px;
	overflow: hidden;
}
#banners #banners-container {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	position: relative;
/*	border-top: 2px solid rgba(0, 0, 0, 0.1);*/
	padding-top: 65px;
}
#banners #banners-container .banner-tag {
	position: absolute;
	right: 40px;

	bottom: -40px;
	color: rgba(0, 0, 0, 0.2);
	padding-right: 0px;
	line-height: 1;
	font-size: .7em;
}
#banners #banners-container .banner-tag a {
	color: rgba(0, 0, 0, 0.4);
	text-decoration: underline;
}
#banners #banners-container .banners {
/*	display: flex;
	flex-direction: row;
	justify-content: space-between;	
	column-gap: 40px;*/
}
#banners img {
	display: block;
	width: 100%;
	border-radius: 10px;
}


	#banners #banners-container .banners .owl-dots {
		display: flex;
		justify-content: center;
		column-gap: 10px;
		padding-top: 25px;

		position: absolute;
		right: 0;
		bottom: -35px;
	}
	#banners #banners-container .banners .owl-dots .owl-dot {
		width: 6px;
		height: 6px;
		border-radius: 10px;
		background: rgba(0,0,0,0.1);
	}
	#banners #banners-container .banners .owl-dots .owl-dot.active {
		background: rgba(0,0,0,0.5);
	}



@media screen and (max-width: 1100px) {
	#banners {
		padding: 30px 0;
		padding-bottom: 30px;
	}
	#banners #banners-container { 
		padding-top: 30px;
	}
	#banners #banners-container .banner-tag {
		bottom: auto;
		right: auto;
		top: -5px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
	#banners #banners-container .banners {
		display: block;
	}
	#banners #banners-container .banners .owl-dots {
		position: relative;
		right: auto;
		left: auto;
		bottom: auto;
	}



}