/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
	--navy: #021443;
	--orange: #E93A26;
	--yellow: #FFB600;
	--gray: #D9D9D9;
	--white: #FFF;
    --fw-norm: 400;
    --fw-light:200;
    --fw-heavy:600;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	background-image: url("../img/mgb_bg.jpg");
	font-family: "Quicksand", sans-serif;
	font-weight:var(--fw-norm);
    color:var(--navy);
}

#topBar {
	width: 90%;
    height:125px;
	margin-left: 5%;
	font-family: "Quicksand", sans-serif;
	font-weight:var(--fw-light);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

#topBar a img {
	height: 90%;
	width: auto;
	margin-right: auto;
}

#main_menu ul {
	display: flex;
	list-style: none;
}

#main_menu ul li {
	display: inline-block;
	font-size: 1.5em;
	font-weight:var(--fw-light);
	padding: 0 35px;
}

#main_menu ul li a {
	text-decoration: none;
	color:var(--navy);
}
#main_menu ul li a:hover {
    color:var(--orange);
}
.big_hr {
	border: solid thin black;
	width: 90%;
	margin: 20px 5%;
}
.img_right,
.img_left {
	width: 90%;
	margin-left: 5%;
	display: grid;
	column-gap: 20px;
	align-items: stretch;
}
.img_right {
	grid-template-columns: 45% 55%;
}
.img_left {
	grid-template-columns: 55% 45%;
}
.img_right .left,
.img_right .right,
.img_left .left,
.img_left .right {
	min-width: 0;
}

.img_right .left,
.img_left .right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.img_right .right,
.img_left .left {
	display: flex;
}

h1 {
	font-size: 4em;
	color: var(--navy);
	font-family: "Oswald", sans-serif;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.75em;
}

h2,
h3 {
	margin: 20px 0;
	font-family: "Oswald", sans-serif;
}

.img_right p,
.img_left p {
	font-size: 1.25em;
	line-height: 1.5em;
}

.img_right p {
	margin: 20px 5px 0 0;
}

.img_left h1,
.img_left h2,
.img_left h3,
.img_left p,
.img_left ul {
	margin-left: 20px;
}

.img_left p {
	margin-top: 0;
}

.img_left ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	list-style: none;
}

.img_left ul li {
	width: 50%;
	margin: 10px 0;
	font-weight:var(--fw-bold);
}

strong {
	color: var(--orange);
}

.big_image {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.inline_bullet {
	text-align: left;
	margin: 0 auto;
	font-size: 1.25em;
	padding: 20px 0;
	color: var(--navy);
	font-family: "Oswald", sans-serif;
}

.apply_button {
	text-align: center;
	align-self: center;
	background-color: var(--navy);
	border-radius: 25px;
	width: 40%;
	margin: 20px 10%;
	padding: 7px 0;
	font-weight:var(--fw-heavy);
	font-size: 1.25em;
}
.apply_button a, .apply_button_long a {
    text-decoration: none;
    color:var(--white) !important;
}
.apply_button a:hover, .apply_button_long a:hover {
    color:var(--orange) !important;
}
.apply_button_long {
	text-align: center;
	background-color: var(--navy);
	border-radius: 25px;
	width: calc(100% - 20px);
	margin: 0 0 0 20px;
	padding: 7px 0;
	font-weight:var(--fw-heavy);
	font-size: 1.25em;
}

.window_pane_img {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	gap: 40px;
	height: 100%;
}

.left_pic,
.right_pic {
	width: 100%;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.equal_split {
    width:90%;
    margin-left:5%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    align-items: start;
}
.equal_split a {
    color:var(--navy);
    text-decoration:none;
}
.equal_split a:hover {
    color:var(--orange);
}
.equal_left,
.equal_right {
    display:flex;
    flex-direction:column;
}
.equal_left p, .equal_right p {
    font-size: 1.25em;
    margin:10px 0px;
}
.equal_left_image {
    margin-top:20px;
}
.equal_left_image, .equal_right_image {
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    margin-top:20px;
}
.equal_left_image { 
    aspect-ratio:16 / 9;
}
.equal_right_image {
    aspect-ratio:5/4;
}
.equal_right_image_home {
    aspect-ratio:8/4;
}
.job_links a {
    text-decoration: none;
    color:var(--navy);
    font-weight:var(--fw-heavy);
}
.job_links a:hover {
    color:var(--orange);
}
.center_align_wide {
    width:90%;
    margin-left:5%;
}
.apploi-drop-down select {
    background-color:var(--navy) !important;
    border: 1px solid var(--navy);
}
.job-link {
    color:var(--navy) !important;
}
.job-link:hover {
    color:var(--orange) !important;
}
.jobs-card span {
    color:var(--navy) !important;
    font-size:1em !important;
}
#paginator a{
    color:var(--orange) !important;
}
.current {
    background-color:var(--navy) !important;
}
#paginator_footer {
    color:var(--navy) !important;
}
.search-job-container {
    display:none !important;
}