.owlwrap{	
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}
.navleft,
.navright{
	color: black;
	font-size: 20px;
	display: inline-block;
	padding-bottom: 33px;
	cursor: pointer;
}
.owlout{
	display: inline-block;
	width: 100%;
	overflow: hidden;
}
.navleft{
	left: 0;
}
.navright{
	right: 0;
}
/*video*/
.banners__video-preview {
	border-radius: 10px;
	overflow: hidden;
}
.banners video {
	pointer-eventes: none;
}
/*.owlwrap .wrapitem picture,
.owlwrap .wrapitem video*/
.owlwrap .banners__image-content,
.owlwrap picture
{
	height: 100%;
	max-height: 100%;
	width: 100%;
	max-width: 100%;
}
.banners__video-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	justify-content: flex-start;
	align-items: flex-start;
	padding: 24px;
	gap: 8px;
	color: var(--white);
}
.banners__video-overlay * {
	color: inherit;
}
.banners__video-text {
	font-size: 18px;
	text-shadow: 2px 2px 9px var(--black);
	font-weight: 900;
}
.banners__video-button {
	padding: 8px 12px;
	display: flex;
	gap: 12px;
	background-color: var(--green);
	border-radius: 8px;
	width: fit-content;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	opacity: 0.8;
}
@media (min-width: 720px) {
	.banners__video-text {
		font-size: 24px;
	}
}
@media (min-width: 1280px) {
	.banners__video-overlay {
		gap: 36px;
		padding: 60px;
	}
	.banners__video-button {
		padding: 16px 32px;
		font-size: 24px;
	}
}
@media all and (max-width: 767px){
	.navleft{
		display: none;
	}
	.navright{
		display: none;
	}	
}