.jumbotron.jumbotron-fluid {
	margin-bottom: 0px;
	height: 0;
	padding-bottom: 29.01%;
	position: relative;
	overflow: hidden;
}

.jumbotron.jumbotron-fluid:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .2);
}

.jumbotron .container-fluid {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 99;
}

.jumbotron h1 {
	position: relative;
	margin-top: 6px;
	margin-bottom: 10px;
	font-size: 36px;
}

.jumbotron p {
	font-size: 18px;
}

.main {
	padding: 40px;
	background-color: rgba(247, 247, 247, 1);
}

.main .wrapper {
	background-color: #fff;
	padding: 40px;
}

.jumbotron h1:after {
	content: '';
	position: absolute;
	width: 120px;
	height: 3px;
	background: var(--secondary-color);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 992px) {
	.jumbotron .container-fluid {
		top: 0;
		left: 0px;
		transform: translate(0);
	}

	.jumbotron h1 {
		font-size: 24px;
	}

	.jumbotron p {
		font-size: 14px;
		text-align: center;
		line-height: 1.3;
		max-width: 80%;
	}

	.main {
		padding: 20px 5px;
	}

}