.home-banner{
	position: relative;
}
.home-banner .right-blue{
	background-color: var(--color-blue-dark);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 40%;
	z-index: 1;
}
.home-banner .wrap{
	position: relative;
	z-index: 2;
}
.home-banner .boxes{
	position: absolute;
	left: 0;
	bottom: 0;
}
.home-banner .boxes .box-1{
	width: 85px;
	height: 85px;
	margin-left: 85px;
	background-color: var(--color-blue-dark);
}
.home-banner .boxes .box-2{
	width: 85px;
	height: 85px;
	background-color: var(--color-blue-lighter);
}
.home-banner .texto{
	background-color: var(--color-blue-dark);
	color: white;
	width: 50%;
	margin-right: 0;
	margin-left: auto;
}
.home-banner .texto .control{
	padding: 120px 100px 100px 100px
}
.home-banner .texto-control h2{
	font-size: 40px;
	margin-bottom: 20px;
	color: white;
}
.home-banner .texto-control p{
	color: white;
}
.home-banner .texto .button-container {
	text-align: center;
	margin-top: 50px;
}
.home-banner .left-image{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	z-index: 1;
}
.home-banner .left-image img{
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}
@media only screen and (max-width:1500px) {
	.home-banner .texto-control h2{
		font-size: 40px;
		margin-bottom: 25px;
	}
}

@media only screen and (max-width:1200px) {
	.home-banner .texto .control {
	    padding: 70px 50px 70px 50px;
	}
}
@media only screen and (max-width:767px) {
	.home-banner .left-image{
		position: relative;
		width: 100%;
	}
	.home-banner .texto{
		width: 100%;
	}
	.home-banner .right-blue{
		width: 100%;
	}
	.home-banner .boxes{
		display: none;
	}
	.home-banner .texto .control {
	    padding: 40px 0px 40px 0px;
	}
}




