* {
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* apply styles to <header> */
header {
    padding: 20px 35px;
    background-color: #39a6b2;
}
header h1 {
    font-weight: bold;
    font-size: 36px;
    margin: 0;
    display: inline;
}
  
header a {
    text-decoration: none;
    color: #fce138;
}
  header nav {
    float: right;
    margin: 7px 0;
}
header nav ul li {
    display: inline;
}
header nav ul li a {
    margin: 0 30px;
    font-weight: lighter;
    font-size: 22px;
}
body {
    color: #39a6b2;
    font-family: Helvetica, Arial, sans-serif;
  }

section {
    padding: 60px;
}
/* Hero Style Start */
.hero {
    background-image: url("../images/hero-bg.jpg");
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  /* Hero Style End */
  .hero-form {
    border: 3px solid #024e76;
    background-color: #fce138;
    padding: 20px;
    width: 500px;
    color: #024e76;
    position: absolute;
    bottom: 120px;
    right: 140px;
}

hero-form h3 {
    font-size: 24px;
    margin: 0;
  }
  
  .hero-form p {
    margin: 5px 0 15px 0;
  }
  
.form-input {
    border: 1px solid #024e76;
    display: block;
    padding: 7px 15px;
    font-size: 16px;
    color: #024e76;
    width: 100%;
    margin-bottom: 15px;
}



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

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

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

/*mwhat we do section*/
.intro {
    text-align: center;
}
.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;
}
.intro p {
    line-height: 1.7;
    color: #39a6b2;
    width: 80%;
    font-size: 20px;
    margin: 0 auto; /*Trick to center a block elemnt with a width less than 100%; instead of display:inline-block;*/
}
/*what you do starts*/
.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;
}
    /*class for style similar headers on the page*/ 
.primary-border {
    border-color: #fce138;
}
  
.secondary-border {
    border-color: #39a6b2;
}
    /*class for style similar headers end*/

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

/*trainsers start */
.trainers {
    text-align: center; /*centers everything on the page*/
}

.trainer { /*this styling boxed the image and keeps the words together*/
    width: 900px;
    margin: 0 auto 30px auto;
    background: #024e76;
    color: #fce138;
    overflow: auto; /*trainer was going to reach out, fixed it*/
}

.trainer img { /*reduced file image and made it float left*/
    width: 35%;
    float: left;
}
/*generic for making text left or right through a secondary class*/
.text-left {
    text-align: left;
}
  
.text-right {
    text-align: right;
}
/*end of generic text editing*/
.trainer-bio {
    padding: 35px;
    float: left;
    width: 65%;
}

.trainer-bio h3 {
    font-size: 32px;
    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 section starts here*/
/* 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: top; /*alight the div text to alight to the top*/
    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 style ends*/

/*footer style starts here*/
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;
}
