.slider_banner {
	width: 100%;
	display: block
}

.slider_banner .container {
	position: relative;
}

.slider_banner .container .back {
	background-position: left top;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: absolute;
	content: ' ';
	width: 200px;
	height: 100%;
	right: 100%;
}

.slider_banner .container .back:before {
	position: absolute;
	right: 100%;
	height: 100%;
	content: ' ';
	top: 0;
	width: calc(calc(calc(100vw - 1440px) / 2) - 100%);
	background-color: var(--color-destaque);
}

.slider_banner .slider {
	width: 100%;
	display: block;
	position: relative;
}

.slider_banner .slider .item {
	width: 100%;
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}

.slider_banner .slider .item .img {
	display: none;
}

.slider_banner .slider .item .info {
	padding: 120px 0;
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1220px) {
	.slider_banner .slider .item .img {
		display: block;
		width: 50%;
	}

	.slider_banner .slider .item .img img {
		height: 100%;
	}

	.slider_banner .slider .item .info {
		width: 50%;
	}
}