.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
body {
  font-family: Helvetica, sans-serif;
  color: #323232;
  font-size: 17px;
  line-height: 1.8;
}
.hero {
  background-image: url('images/KDS-landing-page-hero.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 13px solid #ee5327;
  height: 700px;
  position: relative;
}
.hero .header {
  padding: 50px 0;
  display: block;
}
.hero .header img {
  float: left;
  max-width: 150px;
}
.hero .header a {
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  background: #ee5327;
  padding: 5px 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  float: right;
  font-size: 15px;
  letter-spacing: .1em;
}
.hero .header a:hover {
  text-decoration: none;
  background: #0f1e41;
}
.hero .headline {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}
.hero h1 {
  font-size: 30px;
  font-weight: bold;
  max-width: 700px;
  text-align: center;
  margin: auto;
  line-height: 1.5;
}
.content {
  padding-top: 100px;
}
.content .row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 130px 0;
  padding: 0 40px;
}
.content .row .left {
  -webkit-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  padding-right: 40px;
  border-right: 1px solid #bababa;
}
.content .row .left h2 {
  color: #ee5327;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 25px;
  line-height: 1.2;
}
.content .row .left p {
  margin-bottom: 20px;
}
.content .row .left em {
  color: #ee5327;
}
.content .row .right {
  -webkit-flex: 1 0 65%;
  -ms-flex: 1 0 65%;
  flex: 1 0 65%;
  padding-left: 40px;
}
.content .row .right h3 {
  color: #0f1e41;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 15px;
}
.content .row .right ul {
  margin-bottom: 20px;
}
.content .row .right ul li {
  padding-bottom: 10px;
}
.content .row .right ul ul {
  margin-bottom: 0;
}
.content .row .right ul ul li {
  list-style-type: disc;
}
.footer {
  background: #0f1e41;
  padding: 50px 0;
  color: white;
  font-size: 14px;
}
@media only screen and (max-width: 800px) {
  .content .row .left {
    -webkit-flex: 1 0 35%;
    -ms-flex: 1 0 35%;
    flex: 1 0 35%;
  }
  .content .row .right {
    -webkit-flex: 1 0 55%;
    -ms-flex: 1 0 55%;
    flex: 1 0 55%;
  }
}
@media only screen and (max-width: 600px) {
  .content .row .left,
  .content .row .right {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    padding: 0;
  }
  .content .row .left {
    margin-bottom: 20px;
    border: 0;
  }
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 1170px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .hero .headline {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 400px) {
  .hero .headline h1 {
    font-size: 27px;
  }
  .content .row {
    padding: 0 20px;
  }
  .footer {
    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .hero .header {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .hero .header img {
    margin-bottom: 15px;
  }
}
