* {
	padding: 0;
	margin: 0;
	font-family: 'Work Sans', sans-serif;
}

body {
	background-color: #DBDBDB;
}

/*Navbar*/
#navbar1, #navbar2 {
	background-color: #0B60B0;
}

/*Sidebar*/
.sidebar {
	background-color: #0B60B0;
	border-right: 1px solid #D9D9D9;
	height: 100%;
}
.nav-sidebar .nav-item {
	padding: 0;
}
.nav-sidebar .nav-item .nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: white;
	border: 1px solid #E9E9E9;
	color: #0B60B0;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	margin-bottom: 15px;
	padding: 12px 20px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/*Page Header*/
.page-header {
	background-color: #40A2D8;
}
.page-header .h1 {
	text-align: center;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	text-shadow: 5px 5px 0px rgba(0,0,0,0.2);
}

/*Page Content*/
.page-content .h2 {
	font-weight: bold;
	color: #0B60B0;
}
.page-content .h5 {
	background-color: #0B60B0;
	color: white;
	padding: 10px;
	font-weight: bold;
}
.page-content p {
	text-align: justify;
}
.page-content .btn.btn-primary {
	background-color: #0B60B0;
	border-color: #0B60B0;
	border-radius: 0;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	text-shadow: none;
	font-weight: bold;
}

/*Sponsors Section*/
.sponsors {
	width: 100%;
	background-color: #40A2D8;
}
.sponsors .card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 80px;
	aspect-ratio: 3/1;
}
.sponsors .card img {
	width: auto;
	height: 100%;
}

/*Footer Section*/
.footer {
	background-color: #1B262C;
	color: white;
}