/** General Page Styles **/
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.0em;
  line-height: 2.0em;
  color: #1b1b1b;
  background-color: #ffffff;
  height:100%;
}
h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #000000;
  font-size: 2.8em;
  line-height: 1.0em;
  color: #ffffff;
}
h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.4em;
  line-height: 1.1em;
  color: #ffffff;
}
h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
hr {
  border: 0;
  height: 1px;
  margin: 10px 0px 10px 0px;
  background: #353739;
}
a {
	text-decoration: none;
  font-weight: 700;
	color: #4E81B7;
}
ul.col-2 {columns:2 200px}
a:hover,
a:focus {
	color: #6FADCD;
}
img {
  max-width: 100%;
  height: auto;
}
.img-fl {
	float: left;
}
.clear-fl {
  visibility: hidden;
	clear: both;
  font-size: 0.00000001em;
  height: 1px;
  width: 1px;
}

/** File Attachment Icons **/
.file--application-pdf {
  padding-left: 25px;
  background-image: url(img/pdf-icon.png);
  background-repeat:no-repeat;
}

/** Contact Form Styles **/
.contact-thankyou {
  text-align: center;
}
.formfield {
  display: flex;
}
.contact-form label {
  width: 20%;
  padding: 0 15px 0 0;
  text-align: right;
  font-size: 0.9em;
  font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 80%;
  height: 30px;
  margin: 0px 0px 15px 0px;
  outline: 0 none;
  padding: 2px 22px 0px 10px;
  font-size: 12px;
  line-height: 15px;
  box-sizing: border-box;
}
.contact-form textarea {
  width: 80%;
  height: 76px;
  margin: 0px 0px 15px 0px;
  outline: 0 none;
  padding: 8px 22px 0px 10px;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  line-height: 15px;
  box-sizing: border-box;
}
.contact-form .button {
  padding: 7px 25px 7px 26px;
  background-clip: padding-box;
  background-color: #021a40;
  box-shadow: 1px 1px 0px rgba(0,0,0,0.3);
  border: 1px solid #9a8647;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.9);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9em;   
  
  color: #fff;
  cursor: pointer;
}
.contact-form .button-submit:hover,
.contact-form .button-submit:focus {
  background: #4E81B7;
  border: 1px solid #6FADCD;
}
@media screen and (max-width: 768px) {
  .formfield {
    display: block;
  }
  .contact-form label {
    width: 100%;
    display: block;
    padding: 0 0 15px 0;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .contact-form .button-submit {
    width: 100%;
    height: 50px;
    padding: 5px 25px 5px 25px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    width: 100%;
  }
}