html {
	height: 100%;
}

body {
  font-family: 'Saira Semi Condensed', sans-serif;
  background-color: #121416;
	min-height: 100%;
	padding: 0;
  margin: 0;
}

.banner {
	position: relative;
  width: 100%;
	height: 52px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}

.home {
	min-height: 100%;
	padding: 0;
  padding: 5%;
  text-align: center;
}

.splashlogo{
  display: block;
  margin: auto;
	width: 100%;
	min-width: 295px;
	max-width: 885px;
	height: 100%;
	min-height: 216px;
	max-height: 648px;
}

.home a {
	display: block;
	margin: auto;
	padding-top: 25px;
  font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 14pt;
  color: white;
  text-align: center;
	width: 100%;
	min-width: 295px;
	max-width: 885px;
}

.home p {
	display: block;
	margin: auto;
	padding-top: 20px;
  font-family: 'Saira Semi Condensed', sans-serif;
	font-size: 8pt;
  color: white;
  text-align: center;
	width: 100%;
	min-width: 295px;
	max-width: 885px;
}

/*****
BANNER'S HOME BUTTON
*****/

.homebutton {
  /*position: relative;*/
  font-family: 'Saira Semi Condensed', sans-serif;
  background-color: #121416;
  color: white;
  padding: 16px;
	font-size: 20px;
	line-height: 1;
  text-transform: uppercase;
  border: none;
}

.homebutton:after {
  content:"";
  position:absolute;
  color:transparent;
  width:100%;
  height:2px;
  background:#B60024;
  bottom:12.5%;
  left:0px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .homebutton {
  background-color: #B60024;
}

.dropdown:hover .homebutton:after {
  background-color: #121416;
}

/*****
BANNER'S ABOUT BUTTON
*****/

.aboutbutton {
  /*position: relative;*/
  font-family: 'Saira Semi Condensed', sans-serif;
  background-color: #121416;
  color: white;
  padding: 16px;
	font-size: 20px;
	line-height: 1;
  text-transform: uppercase;
  border: none;
}

.aboutbutton:after {
  content:"";
  position:absolute;
  color:transparent;
  width:100%;
  height:2px;
  background:#24B600;
  bottom:12.5%;
  left:0px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .aboutbutton {
  background-color: #24B600;
}

.dropdown:hover .aboutbutton:after {
  background-color: #121416;
}

/*****
BANNER'S CONTACT BUTTON
*****/

.contactbutton {
  /*position: relative;*/
  font-family: 'Saira Semi Condensed', sans-serif;
  background-color: #121416;
  color: white;
  padding: 16px;
	font-size: 20px;
	line-height: 1;
  text-transform: uppercase;
  border: none;
}

.contactbutton:after {
  content:"";
  position:absolute;
  color:transparent;
  width:100%;
  height:2px;
  background:#0024B6;
  bottom:12.5%;
  left:0px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .contactbutton {
  background-color: #0024B6;
}

.dropdown:hover .contactbutton:after {
  background-color: #121416;
}

/*****
DROPDOWN MENU
******/

/* Dropdown Button */
.dropbtn {
  position: relative;
  font-family: 'Saira Semi Condensed', sans-serif;
  background-color: #121416;
  color: white;
  padding: 16px;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
}

.dropdown:hover .dropbtn {
  background-color: #B60024;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: inline-block;
	position: relative;
	right: 0;
	float: right;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #B60024;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
