.hero {
	width: 100%;
	position: relative;
}
.hero .hero-wrapper {
	padding-top: 3em;
	padding-bottom: 3em;
}
.hero .hero-img {
	position: absolute;
	width: 40%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	right: 0;
	object-fit: cover;
	object-position: center;
}
.hero .wave-img {
	position: absolute;
	width: 40%;
	height: auto;
	top: 10%;
	left: 0;
}
.hero .hero-img-2 {
	margin-top: 3.5em;
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center;
}
.hero .hero-wrapper * {
	text-align: center;
}
.hero .hero-wrapper .line {
	width: 100px;
	height: 8px;
	background-color: #2A8AEF;
}
.hero .hero-wrapper .h5 {
	font-family: 'Work Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #666;
}
.hero .hero-wrapper .h1 {
	font-family: 'Work Sans', sans-serif;
	font-weight: bold;
	font-size: 2.5rem;
	color: #2A8AEF;
}
.hero .hero-wrapper p {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #333;
	line-height: 1.6em;
}
.hero .hero-wrapper .btn {
	padding: 10px 30px;
	border-radius: 0;
	font-weight: 500;
	border-color: #2A8AEF;
}
.hero .hero-wrapper .btn:hover,
.hero .hero-wrapper .btn:focus {
	background-color: #0E63BE;
	border-color: #0E63BE;
}
.hero .hero-wrapper .btn-primary {
	background-color: #2A8AEF;
	color: white;
}
.hero .hero-wrapper .btn-outline-primary {
	background: transparent;
	color: #2A8AEF;
	border-color: #2A8AEF;
}
.hero .hero-wrapper .btn-outline-primary:hover,
.hero .hero-wrapper .btn-outline-primary:focus {
	color: white;
}
@media(min-width: 992px) {
	.hero, .hero .hero-wrapper {
		min-height: 100vh;
	}
	.hero .hero-wrapper * {
		text-align: left;
	}
	.hero .hero-wrapper .h1 {
		font-size: 3em;
	}
	.hero .hero-wrapper p {
		text-align: justify;
	}
}
@media(min-width: 576px) {
	.hero .hero-img-2 {
		margin-top: 8em;
	}
}
@media(min-width: 1200px) {
	.hero .hero-wrapper {
		padding-right: 4rem;
	}
	.hero .hero-img {
		width: 50%;
	}
}