@font-face {
	font-family: "JackGothic";
	src: url("../Jack-Gothic.otf");
}

@font-face {
	font-family: "LouiePro";
	src: url("../Louie_Pro.ttf");
}

:root {
	--blue: #002454;
	--darkblue: #001c42;
	--gold: #FAC01A;
	--grey: #4A4A4A;
	--white: #ffffff;
	--black: #000000;
}

/* --- Global Page Styles --- */
* {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--darkblue);
	margin: 0;
	padding: 0;
	color: var(--grey);
	font-family: 'Arimo', sans-serif;
	font-size: 16px;
	line-height: 1.3em;
}

p {
	line-height: 1.3em;
	margin: 0 0 1em 0;
}

img {
	margin: 0;
	padding: 0;
	display: block;
}

a {
	text-decoration: none;
}

a:hover {
	cursor: pointer;
	text-decoration: underline;
}

h1 {
	font-family: 'LouiePro', sans-serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 1em;
	margin: 0 0 .5em 0;
}

h2 {
	font-family: 'LouiePro', sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1em;
	margin: 0 0 .5em 0;
}

h3 {
	font-family: 'LouiePro', sans-serif;
	font-size: 28px;
	line-height: 1em;
	margin: 0 0 .5em 0;
}

h4 {
	font-family: 'Arimo', sans-serif;
	font-size: 18px;
	line-height: 1em;
	margin: 0 0 .5em 0;
}

li {
	margin-bottom: 10px;
}

.mobile {
	display: none;
}

/* --- Page Sections --- */
.section-content {
	margin: 0 auto;
	padding: 0;
	max-width: 1050px;
	width: 100%;
}

.bar-logo {
	background-color: var(--blue);
	margin: 0 auto;
	padding: 0;
	max-width: 1600px;
	width: 100%;
}

.letter-section {
	background: url('../../images/mbb-section1-bg.jpg') var(--gold) center center no-repeat;
	background-size: cover;
	margin: 0 auto;
	padding: 60px 0;
	max-width: 1600px;
	width: 100%;
}

#letter-text {
	float: left;
	width: 57%;
}

#headshot {
	float: right;
	width: 40%;
}

.blue-section {
	background-color: var(--blue);
	margin: 0 auto;
	padding: 0;
	max-width: 1600px;
	width: 100%;
	display: -webkit-flex; /* Safari */     
	display: flex; /* Standard syntax */
}

.blue-left {
	float: left;
	width: 50%;
	-webkit-flex: 1; /* Safari */
	-ms-flex: 1; /* IE 10 */
	flex: 1; /* Standard syntax */
}

.blue-right {
	float: right;
	width: 50%;
	-webkit-flex: 1; /* Safari */
	-ms-flex: 1; /* IE 10 */
	flex: 1; /* Standard syntax */
}

.blue-content {
	color: var(--white);
	margin: 0 auto;
	padding: 60px 0;
	width: 80%;
	position: relative;
}

.white-section {
	margin: 0 auto;
	padding: 60px;
	max-width: 1600px;
	width: 100%;
	background: url('../../images/mbb-beneftis-bg.png') var(--white) bottom left no-repeat;
}

.white-left {
	float: left;
	width: 50%;
}

.white-right {
	float: right;
	width: 50%;
	padding: 0 20px;
}

.white-content {
	color: var(--grey);
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 500px;
	
}

.skyjacks-banner {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1600px;
	
}

.confirm-content {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 40px;
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
	background-color: #f4f4f4;
	color: var(--blue);
}

/* --- Image Slider --- */
.sliderContainer {
	position:relative;
	width:100%;
	height:100%;
	margin:0 auto;
	overflow:hidden;
}

.sliderContainer img:first-child {
	position:relative;
	width:100%;
	left:0%;
	top:0;
}

.sliderContainer img {
	position:absolute;
	width:100%;
	left:-100%;
	top:0;
	height: 100%;
	object-fit: cover;
}

.nextCircle {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:85%;
	width:50px;
	height:50px;
	border-radius: 50%;
	opacity:0.5;
	background-color:black;
	z-index:19;	
}

.next {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:white;
	z-index:20;

}

.nextCircle:hover{
	opacity:0.7;
	cursor: pointer;
}

.fa.fa-arrow-right, .fa.fa-arrow-left {
	font-size:30px;
}

.prevCircle {
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:85%;
	width:50px;
	height:50px;
	border-radius: 50%;
	opacity:0.5;
	background-color:black;
	z-index:19;	
}

.previous {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:white;
	z-index:20;
	
}

.prevCircle:hover {
	opacity: 0.7;
	cursor: pointer;
}

/* --- Accordion Container --- */
.accordion-container {
	background-color: var(--white);
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	padding: 30px;
	margin: 0 0 0 40px;;
	width: 80%;
	color: var(--blue);
}

.accordion-container h3 {
	cursor: pointer;
}

/* --- Form Styles --- */
#form-player {
	height: 100%;
	width: auto;
}

.form-container {
	background: url('../../images/mbb-form-bg-arrows.jpg') var(--gold) center top no-repeat;
	background-size: cover;
	margin: 0 auto;
	padding: 60px;
	max-width: 1600px;
	width: 100%;
	color: var(--white);
}

.form-left {
	float: left;
	width: 50%;
}

.form-right {
	float: right;
	width: 50%;
}

.form-section {
	margin: 0 0 0 auto;
	max-width: 650px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 30px;
}

.otherAmount {
	font-size: 12px;
}

.input-field {
	font-size: 14px;
	color: var(--white);
	margin-block: 5px;
	margin-inline: 5px;
	padding: 0;
	display: inline-block;
	width: 100%;
}

.input-field input {
	background-color: var(--white);
	width: 100%;
	border: 1px solid #bdbdbd;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	color: var(--grey);
	display: inline-block;
	font-size: 15px;
	margin: 0;
	padding: 10px 5px;
}

.input-field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url('../../images/caret-down-solid.svg') right no-repeat;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	width: 100%;
	background-color: #ffffff;
	padding: 11px 5px;
	border: 1px solid #bdbdbd;
}

.input-field input:focus {
	border: 1px solid var(--red);
}

input[type=submit] {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-family: 'LouiePro', sans-serif;
	display: inline-block;
	font-size: 30px;
	font-weight: 400;
	margin: 30px 0 10px 0;
	background-color: var(--gold);
	color: var(--blue);
	padding: 20px 30px 10px 30px;
	line-height: 1em;
	border: none;
}

input[type=submit]:hover {
	background-color: var(--white);
	color: var(--blue);
	cursor: pointer;
}

.amount-selections {
	display: flex;
	flex-wrap: wrap;
	column-gap: 12px;
	row-gap: 30px;
	justify-content: center;
}

.amount-box {
	display: block;
	min-width: 150px;
	text-align: center;
	font-size: 12px;
	background-color: var(--grey);
	color: var(--white);
	padding: 4px;
	justify-content: center;
	border-radius: 4px;
}

.amount-selections .radio-select {
	display: inline-flex;
	align-items: center;
	column-gap: 5px;
	flex-wrap: nowrap;
}

input[type="radio"] {
	appearance: none;
	background-color: var(--white);
	margin: 0;
	font: inherit;
	width: 1em;
	height: 1em;
	border: 2px solid var(--black);
	border-radius: 50%;
}

input[type="radio"]:checked {
	background-color: var(--gold);
	color: var(--blue);
}

input[type="radio"]:checked+label.amount-box {
	background-color: var(--gold);
	color: var(--blue);
}

/* ------------------------------------------------- Footer */
.page-footer {
	padding: 0;
	margin: 0;
}

/* ------------------------------------------------- Responsive styles */
@media only screen and (max-width:850px) {
	html {
		min-height: auto;
	}

	body {
		font-size: 18px;
	}

	.desktop {
		display: none;
	}

	.mobile {
		display: inline-block;
	}
	
	.letter-section {
		padding: 40px;
	}

	#letter-text,
	#headshot,
	.blue-left,
	.blue-right,
	.white-left,
	.white-right {
		float: none;
		width: 100%;
		flex: none;
		padding: 0;
	}
	
	.form-left,
	.form-right {
		float: none;
		width: 100%;
	}
	
	.white-right {
		margin-top: 60px;
	}
	
	.blue-section {
		display: block;
	}
	
	.accordion-container h3 {
		font-size: 24px;
	}
	#form-player {
		width: 100%;
		height: auto;
	}
}