* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body {
    color: #39a6b2;
    font-family: Helvetica, Arial, sans-serif;
  }
  /* apply the styles to the header */
  header {
      padding:20px 35px;
      background-color: #39a6b2;
  }
  
  header h1 {
      font-weight: bold;
      font-size: 36px;
      color: #fce138;
      margin:0;
      display: inline;
  }

  header a {
      text-decoration: none; /*takes off the blue color and underline for the links*/
      color: #fce138;
  }

  header nav {
      float: right; /*moves the nav element to the right side*/
      margin: 7px 0;
  }
  
  header nav ul li {
    display: inline; /*turns a block element into an inline element*/
  }

  header nav ul li a {
      margin: 0 30px;
      font-weight: lighter;
      font-size: 22px;
  }

  footer {
      background: #fce138;
      width: 100%;
      padding: 40px 35px;
  }

  footer h2 {
      display:inline;
      color: #024e76;
      font-size: 30px;
      margin:0;
  }

  footer div {
    float: right;  
    line-height: 1.5;
    text-align: right;
  }

  footer a {
      color: #024e76;
  }

  /* Hero style start */
  .hero {
    background-image: url("../images/hero-bg.jpg");
    height: 600px;
    background-size: cover; /*sets the size of the image so it won't get clipped */
    background-position: center; /*centers the background image*/
    position: relative;
  }
  /* Hero style end */

  /* Hero form style */

  .hero-form {
      color: #024e76;
      background-color: #fce138;
      padding: 20px;
      width: 500px;
      text-align: left;
      border: solid 3px #024e76;
      position: absolute;
      bottom: 120px;
      right: 140px;
  }

  .hero-form h3 {
      margin: 0;
      font-size: 24px;
  }

  .hero-form p {
      margin: 5px 0 15px 0;
  }

  .hero-form label {
      margin: 0 5px;
  }

  .hero-form button {
      color: #fce138;
      background-color: #024e76;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
  }

  .form-input {
      border: solid 1px #024e76;
      display: block;
      padding: 7px 15px;
      font-size: 16px;
      color: #024e76;
      width: 100%;
      margin-bottom: 15px;
  }
/* end of Hero form style */
.section-title {
    font-size: 55px;
    color: #024e76;
    margin-bottom: 35px;
    padding: 0 100px 20px 100px;
    display: inline-block;
    border-bottom: 3px solid;
}

.primary-border{
    border-color: #fce138;
}

.secondary-border {
    border-color:#39a6b2;
}
/* what we do style section */
.intro {
    text-align: center;
}


.intro p{
    line-height: 1.7;
    color: #39a6b2;
    width: 80%;
    font-size: 20px;
    margin: 0 auto;
}
/*what you do style section */

.steps {
    text-align: center;
    background: #fce138;
}

.steps div {
    margin-bottom: 80px;
}

.steps img {
    width: 15%;
    margin: 10px 0;
}

.steps h3 {
    color: #024e76;
    font-size: 46px;
    margin-top: 10px;
}

.steps p{
    color: #39a6b2;
    font-size: 23px;
}

.steps span {
    font-size: 38px;
}

/* trainer style section */

.trainers {
    text-align: center;
}
.trainer {
    width: 900px;
    margin: 0 auto 30px auto;
    background: #024e76;
    color: #fce138;
    overflow: auto;
}

.trainer img {
    width: 35%;
    float: left;
}

.trainer-bio {
    padding: 35px;
    float: left;
    width: 65%;
}

.trainer-bio h3 {
    font-size: 32 px;
    margin-bottom: 8px;
}

.trainer-bio h4 {
    font-weight: lighter;
    font-size: 26px;
    margin-bottom: 25px;
}

.trainer-bio p {
    font-size: 17px;
    line-height: 1.3;
}

/* REACH OUT STYLES START */

.contact {
    text-align: center;
    background: #024e76;
}

.contact h2 {
    color:#fce138;
}

.contact-info iframe {
    width: 400px;
    height: 400px;
}

.contact-info div {
    width: 410px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin: 30px 0 0 60px;
    color: white;
}

.contact-info h3 {
    color: #fce138;
    font-size: 32px ;
}

.contact-info p, .contact-info address {
    margin: 20px 0;
    line-height: 1.5;
    font-size: 20px;
    font-style: normal;
}

.contact-info a {
    color:#fce138;
}
/*reach out styles end */

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
section{
    padding: 60px;
}