#carrossel {
	position: relative;
	margin: 0px;
	padding: 0px;
	width: 100%;
	background-image: url('../images/background.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
	background-color: #ffffff;
}

#carrossel article {
	display: grid;
	grid-template-columns: repeat(20, 1fr);
	column-gap: 1%;

	margin: auto;
	width: 100%;
	height: 100vh;
	max-width: 1080px;
}

#carrossel article div {
	grid-column: 1 / 14;
	margin: auto 0px;
}

#carrossel article div h1 {
	margin-bottom: 0px;
	font-size: 5rem;
	text-transform: uppercase;
	color: #DD0000;
}

#carrossel article div h1 span {
	display: block;
	font-size: 3rem;
	color: #000000;
}

#carrossel article div p {
	margin-bottom: 0px;
	font-size: 1rem;
	font-weight: 400;
	color: #000000;
}

#carrossel article div p span {
	display: inline-block;
	padding: 0.5% 1%;
	background-color: #000;
	color: #fff;
}

#carrossel article img {
	grid-column: 16 / 21;
	position: relative;
	top: 5%;
	right: -20%;
	margin: auto 0px;
	width: 80%;
}

#carrossel article > p {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 2%;
	margin: 0px auto;
	padding: 0px;
	width: 100%;
	max-width: 1080px;
	font-size: 0.5rem;
	color: #fff;
}

@media screen and (max-width: 1080px) {

	#carrossel {
		padding: 0px 5%;
		width: 90%;
	}

	#carrossel article div h1 {
		font-size: 4rem;
	}

	#carrossel article div h1 span {
		font-size: 2.5rem;
	}

	#carrossel article div p {
		font-size: 1.2rem;
	}

		#carrossel article > p {
		width: 90%;
	}

}

@media screen and (max-width: 600px) {

	#carrossel {
		background-size: 200%;
	}

	#carrossel article div {
		grid-column: 2 / 20;
}

	#carrossel article div h1 {
		font-size: 3rem;
	}

	#carrossel article div h1 span {
		font-size: 2rem;
	}

	#carrossel article div p {
		font-size: 1rem;
	}

	#carrossel article img {
		display: none;
	}

	#carrossel article > p {
		width: 80%;
	}
}