html {
	font-family: sans-serif;
	line-height: 1.15;
}
body {
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
}

*, *:before, *:after {
	box-sizing: border-box;
}
hr {
	box-sizing: content-box;
	background-color: #fff;
	color: #000;
	height: 1px;
	width: 100%;
	border: 0;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}
a:active, a:hover {
	outline-width: 0
}
a, a:hover, a:active, a:visited, a:focus {
	color: inherit;
	text-decoration: none;
}

strong, b {
	font-weight: 700;
}

p {
	margin-top: 0;
}
p:last-of-type {
	margin-bottom: 0;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
	border: 0;
}
svg:not(:root) {
	overflow: hidden
}

/*
ul, ol {
	margin: 15px 0 20px 20px;
	padding-left: 0;
	list-style-type: none;
}
ul li ul, ul li ol, ol li ol, ol li ul {
	margin: 3px 0 3px 18px;
}
ul li {
	margin-bottom: 10px;
	position: relative;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	text-align: left;
}
li::before {
	content: "\25CF";
	position: absolute;
	color: #000;
	font-size: 12px;
	top: -2px;
	left: -19px;
}

/*
275a -- heavy vertical bar
● -- 25CF -- BLACK CIRCLE
● -- 26AB -- MEDIUM BLACK CIRCLE
● -- 2022 -- SMALL BLACK CIRCLE
 
▶ -- 25B6 -- BLACK RIGHT-POINTING TRIANGLE
■ -- 25A0 -- BLACK SQUARE
■ -- 25AA -- BLACK LITTLE SQUARE
 
← -- 2190 -- Left arrow
→ -- 2192 -- Right arrow
↑ -- 2191 -- Up arrow
↓ -- 2193 -- Down arrow

› -- 203A -- Right single angle quote
‹ -- 2039 -- Left single angle quote
« -- 00AB -- Left double angle quote
» -- 00BB -- Right double angle quoter
*/

/*
	+-----------------------------------------+
	| 					Custom			  	  |
	+-----------------------------------------+
*/

body {
	font: 13px/1.3 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#wrapper {
	-moz-box-shadow: 0 0 26px #666;
	-webkit-box-shadow: 0 0 26px #666;
	box-shadow: 0 0 26px #666;
	max-width: 990px;
	margin: 20px auto 20px auto;
	position: relative;
}

#header {
	position: relative;
	display: flex;
	flex-direction: column;
	height: fit-content;
	min-height: 400px;
	color: white;
	background: center no-repeat url(head.webp);
	background-size: cover;
}
#header::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
#header > * {
	z-index: 1;
}
#header ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2%;
}
#logo img {
	max-height: 80px;
}
#social {
	display: flex;
	gap: 5px;
}
#social li {
	display: block;
	margin: 0;
	padding: 0;
}
#social li a {
	display: block;
	height: 40px;
	padding: 11px;
	border-radius: 4px;
	transition: background-color 250ms;
}
#social li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#title, #content {
	padding: 0 12%;
}
#title {
	flex: 1 1 fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#title h1 {
	font-size: 48px;
	font-weight: 200;
}
#details {
	display: flex;
	gap: 20px;
	margin: 0;
	font-size: 16px;
	font-weight: 200;
}
#details li {
	display: flex;
	gap: 10px;
	align-items: center;
}

#content {
	font-size: 20px;
	font-weight: 200;
	line-height: 1.6;
	color: rgb(8, 26, 131);
	hyphens: auto;
}
#content h2 {
	font-size: 32px;
	font-weight: 200;
}
#content p {
	margin: 0 0 4px 0;
}
#content > div > p {
	text-align: justify;
}
#content ul {
	margin: 0 0 10px 0;
	line-height: 1.6;
}

#footer {
	text-align: center;
	padding: 50px 12%;
}
#apply {
	background-color: rgba(18, 69, 242, 0.83);
	font-size: 20px;
	font-weight: 300;
	border-radius: 4px;
	border: 1px solid rgba(18, 69, 242, 0.83);
	color: rgb(246, 246, 251);
	padding: 16px 96px;
	display: inline-block;
	transition: background-color 250ms, border-color 250ms;
}
#apply:hover {
	background-color: rgba(11, 54, 198, 0.83);
	border-color: rgba(11, 54, 198, 0.83);
}