* {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

/*Navbars*/
#navbar0 {
	background-color: #0C1F38;
}
#navbar1 {
	background-color: #f3f3f5;
	height: 100px;
}
#navbar1 .navbar-brand {
	font-size: 1.8em;
	font-weight: 700;
	color: #00305B;
}
#navbar1 table td {
	padding: 5px;
}
#navbar1 table i.fas {
	font-size: 1.8em;
	color: #DAA106;
}
#navbar1 table .title {
	font-size: 0.8em;
	font-weight: 700;
	color: #00305B;
	text-decoration: none;
}
#navbar1 table .subtitle {
	font-size: 0.75em;
	font-weight: 500;
	color: #666;
}
#navbar2 {
	background-color: white;
	border: 1px solid #eee;
}
#navbar2 .navbar-brand {
	font-size: 1.2rem;
	font-weight: 700;
	color: #00305B;
}
#navbar2 .nav-link {
	color: #00305B;
	font-weight: 700;
	padding: 8px 20px;
}
#navbar2 .nav-link.active {
	background-color: #DAA106;
	color: white;
	font-weight: 700;
}

/*Footer Section*/
.footer {
	background-color: #0C1F38;
	color: white;
}

/*Header Section*/
.page-header {
	background: url('../../assets/bg2.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
}
.page-header::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #DAA106;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.page-header .container {
	z-index: 1;
}
.page-header .h1 {
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 5px 5px 0px rgba(0,0,0,0.2);
	color: white;
}
@media(min-width: 992px) {
	.page-header::before {
		width: 50%;
		clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
	}
}

/*Sponsors Section*/
.sponsors {
	width: 100%;
	background-color: #00305B;
}
.sponsors .card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 435px;
	height: 200px;
	aspect-ratio: 3/1;
}
.sponsors .card img {
	width: auto;
	height: 120px;
}