* {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
}

/*Navbar*/
.navbar {
	background-color: transparent;
}
.navbar.navbar-scrolled {
	background-color: #060c22;
}
.navbar .navbar-brand {
	font-size: 1.2rem;
	font-weight: 700;
}
.navbar .nav-link {
	color: white;
	margin: 4px 0;
	position: relative;
}
.navbar .nav-item:not(.dropdown) .nav-link::after {
	content: '';
	width: 0;
	height: 2px;
	background-color: #f82249;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s all;
}
.navbar .nav-item:not(.dropdown) .nav-link.active::after,
.navbar .nav-item:not(.dropdown) .nav-link:hover::after {
	width: 100%;
}
@media(min-width: 1200px) {
	.navbar .navbar-brand {
		font-size: 1.8rem;
		font-weight: 700;
		margin: -2em 0;
	}
	.navbar .nav-link {
		margin: 0 4px;
	}
}

/*Page Header*/
.page-header {
	background: url('../../assets/bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.page-header.home {
	width: 100%;
	min-height: 100vh;
}
.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.page-header .content {
	position: relative;
	z-index: 1;
}
.page-header .content * {
	text-align: center;
	color: white;
}
.page-header .content h1 {
	text-transform: uppercase;
	font-weight: bold;
}
.page-header .content h1 span {
	color: #f82249;
}

/*Page Content*/
.content .btn.btn-primary {
	background-color: #f82249;
	border-color: #f82249;
	border-radius: 0;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	text-shadow: none;
}
.content p {
	text-align: center;
}
.content .h2 {
	font-weight: bold;
	color: #f82249;
	position: relative;
	margin-bottom: 1.2em;
	text-align: center;
}
.content .h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #999;
}

/*Sponsors Section*/
.sponsors {
	background-color: #060c22;
}
.sponsors .card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 100px;
	aspect-ratio: 3/1;
}
.sponsors .card img {
	width: auto;
	height: 100%;
}

/*Footer Section*/
.footer {
	background-color: #101522;
	color: white;
}