body {
  font-family: 'Open Sans', sans-serif;  
}
body p {
  font-size: 19px;
}
.heading {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.heading p {
  color: #0F3876;
}

.form-group.has-error .help-block {
  display: block !important;
  color: red;
}

.logo {
  width: 250px;
  padding: 15px;
  padding-left: 0px;
  display: block;
  margin: auto;
}

.response {
  display: block;
  margin-top: 20px;
}

.icon {
  width: 100%;
  position: fixed;
  top: 10%;
  left: 0;
  height: 80%;
  background-repeat: no-repeat;
  opacity: .08;
  background-position: center;
  background-size: contain;
  z-index: 0;
}
.has-error input {
  border-bottom: 2px solid red;
  
}
#form {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 1000;
}

label span {
  display: inline-block;
  width: 100px;
}

.form-group {
  margin-bottom: 0;
}

input {
  border: none;
  border-bottom: 2px solid #0F3876;
}

input[type="text"], input[type="email"] {
  background: transparent;
}

.vertical-checkboxes {
  display: flex;
  flex-direction: column;
}

input[type="radio"], input[type="checkbox"] {
  margin-right: 10px;
}

h2 {
  display: inline-block;
  margin-bottom: 50px;
  color: #0F3876;
  border-bottom: 1px solid #0F3876;
  padding: 10px 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 24px;
}

h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0F3876;
}

textarea {
  overflow: auto;
  resize: vertical;
  width: 100%;
  height: 160px;
}

.btn-one {  
  display: inline-block;
  padding: 10px 14px;
  border: 2px solid #0F3876;
  background: #0F3876;
  color: #fff;
}

.btn-one:hover {
  color: #0F3876;
  background: none;
  cursor: pointer;
}

.flex-container {
  display: flex;
  justify-content: space-around;
}

.flex-container div {
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
}

textarea {
  border: 2px solid #0F3876;
}



/* -------------------- MISC -------------------- */
body {
  background: white;
}

a {
  color: #888;
}

a:focus, a:hover {
  text-decoration: none;
}




/* -------------------- HEADER -------------------- */

.logo img{
  height: 60px;
}


/* --- NAVIGATION --- */
.main-nav{
  float: right;
  display: inline-block;
}

.main-nav ul{  
  margin: 30px 0px;
  padding: 0;
  display: inline-block;
}

.main-nav ul li{  
  float: left;
  list-style: none;
  margin-right: 30px;
}

.main-nav ul li:last-child{ 
  margin-right: 0px;
} 

.main-nav ul li a{  
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
}


/* --- SLIDE NAV --- */
#slide_nav{
  display: none;
}

#slide_content{
  background-color: white;
}




/* --- HAMBURGER ANIMATION --- */
.burger-wrapper{
  display: none;
  padding-top: 10px;
}

.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity,-webkit-filter;
  transition-property: opacity,-webkit-filter;
  transition-property: opacity,filter;
  transition-property: opacity,filter,-webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger .hamburger-inner, .hamburger .hamburger-inner:after, .hamburger .hamburger-inner:before {
  background-color: black;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  background-color: #000;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger--arrow .hamburger-inner{
  background-color: rgba(0, 0, 0, 0) !important;
}

.hamburger--arrow .hamburger-inner:before {
  -webkit-transform: translate3d(-8px,2px,0) rotate(-40deg) scaleX(.7);
  transform: translate3d(-8px,2px,0) rotate(-40deg) scaleX(.7);
}

.hamburger--arrow .hamburger-inner:after {
  -webkit-transform: translate3d(-8px,-2px,0) rotate(40deg) scaleX(.7);
  transform: translate3d(-8px,-2px,0) rotate(40deg) scaleX(.7);
}

.banner {
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  height:40vh;
}





/* -------------------- CONTENT -------------------- */

.main {
  min-height: 80vh;
}



/* -------------------- FOOTER -------------------- */






/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
.flex-container {
  flex-direction: column;
}
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}