* {
	font-family: 'Raleway', sans-serif;

	color: #ffffff;
}

.container-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	max-height: 100vh;
	background-image: url(img/background.jpg);
	background-position: center center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.container-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.container-wrapper-content {
	width: 80%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 222;
}

.logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80vw;
	height: 60vh;
}

.logo-wrapper > img {
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
}

.header-content-heading > h2 {
	font-size: 3rem;
	text-align: center;
	font-family: 'Goldman', cursive;
	position: relative;
}

.header-content-heading > h2::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 130px;
	width: 60px;
	height: 4px;
	background-color: #f25c05;
}

.header-content-heading > p {
	font-size: 1.4rem;
	text-align: center;
}

.header-content-box-wrapper > h3 {
	position: relative;
	font-size: 1.4rem;
}

.header-content-box-wrapper > h3::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50px;
	height: 4px;
	background-color: #f25c05;
}

.header-content-box-wrapper > p {
	font-weight: bold;
}
.header-content-box-wrapper > p > a {
	font-weight: 400;
	text-decoration: none;
	color: #f25c05;
}
