.limit {
	position: relative;
	margin: 150px 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	/*background-color: #039cdf;*/
	padding: 20px;
	background: #2a398f;
  box-sizing: border-box;
	box-shadow: inset 0 0 15px 0 rgba(0,0,0,0.5),
									0 0 10px 0 rgba(0,0,0,0.3);
}
.limit .wrapper {
	max-width: 800px;
	margin: auto;
}
.limit .motor_limit_logo {
	width: 200px;
	/*margin: -100px 0;*/
	position: absolute;
	right: 20px;
	top: -100px;
	filter: drop-shadow( 0 0 10px rgba(0,0,0,1));
	transform: rotate(12.5deg);
}
.limit h2 {
	/*margin: auto;*/
	margin-bottom: 20px;
	font-size: 3rem;
	color: #fff;
}
.limit article {
	line-height: 1.5;
	color: #fff;
	max-width: 800px;
	margin: auto;
}
.limit article h3 {
	margin-bottom: 10px;
}
.limit article a {
	font-weight: bold;
	color: #21BD5B;
	transition: color 0.15s ease;
}
.limit article a:hover {
  color: #fff;
}
.limit > a {
	margin: auto;
	padding: 15px 30px;
	font-weight: bold;
	background-color: #fff;
	border-radius: 5px;
	color: #2a398f;
	box-shadow: 0 0 9px 0 rgba(0,0,0,1);
	transition: all 0.15s ease-in-out;
}
.limit > a:hover {
	box-shadow: 0 0 12px 0 rgba(0,0,0,1);
	transform: scale(1.1);
	background-color: #27ae60;
	color: #fff;
}
@media only screen and (max-width: 500px) {
	.limit h2 {
		margin: 75px 0 20px;
	}
}