.breadcrumbWrapper {
  background-color: #F1FCFF;
}

.section:nth-of-type(2n){
  background-color: #F1FCFF;
}

.section > div {
  margin: 150px 30px;
  flex: 1;
}

#sectionOne {
  padding: 100px 0 150px;
}

#sectionOne p {
  max-width: 400px;
}

#sectionOne > div:first-child > div {
  float: right;
}

#sectionOne > div,
#sectionTwo > div {
  max-width: 515px;
  margin: 0;
}

#youtubeVideo {
  flex: 1;
}

#youtubeVideo > div {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

#youtubeVideo iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: none;
}

#carouselImageContainer img {
  display: none;
  position: absolute;
  top: -35px;
  left: -25px;
  height: 700px;
}

#carouselImageContainer img::after {
  content: 'test';
  position: absolute;
  left: 0;
  top: 24px;
  min-width: 200px;
  border: 1px #aaaaaa solid;
  border-radius: 10px;
  background-color: #ffffcc;
  padding: 12px;
  color: #000000;
  font-size: 14px;
  z-index: 1;
}

#carouselImageContainer img.active {
  display: block;
}

#sectionTwo {
  min-height: 700px;
  align-items: flex-start;
}

#sectionTwo > div {
  padding: 150px 0;
}

#sectionTwo > div:first-child {
  position: relative;
}

#sectionTwo p {
  display: inline-block;
}

#sectionTwo h4 {
  color: #284D5E;
  font-size: 14px;
  text-transform: uppercase;
}

#sectionTwo .soundBite {
  display: none;
  margin-top: 50px;
}

#sectionTwo .soundBite.active {
  display: flex;
}

#carouselNav {
  display: inline-block;
}

#carouselNav button {
  display; flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 15px 5px;
  position: relative;
  font-family: FontAwesome;
}

#carouselNav button:first-child {
  margin-left: 0;
}

#carouselNav button:before {
  position: absolute;
  top: 0;
  font-size: 25px;
}

#carouselNav button.next:before {
  left: 16px;
}

#carouselNav button.prev:before {
  left: 14px;
}

#sectionThree {
  flex-direction: column;
  padding: 100px 0 50px;
}

#sectionThree > div {
  margin: 0 30px;
}

#sectionThree p,
#sectionThree h2 {
  text-align: center;
}

#sectionThree .cta {
  margin-top: 60px;
}

#sectionThree > .normalLink {
  margin-top: 30px;
  text-decoration: underline;
  color: #5D6B6E;
}

#sectionThree #steps {
  display: flex;
  flex-direction: row;
  margin-top: 60px;
}

#steps > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  margin: 0 20px;
}

#steps .stepNumber {
  width: 20px;
  height: 20px;
  margin: 0 0 15px;
  background-color: #56CBE7;
  color: white;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  padding: 20px;
  border: 1px solid #56CBE7;
  border-radius: 20px;
}

@media only screen and (max-width: 960px) {
  #sectionOne,
  #sectionTwo,
  #sectionThree {
    flex-wrap: wrap;
    padding: 40px 20px 20px;
  }

  #sectionOne > div {
    flex: 1 auto;
  }

  #sectionOne > #youtubeVideo {
    margin: 40px 0 0;
  }

  #sectionTwo > div {
    flex: 1 auto;
    padding: unset;
  }

  #sectionTwo > div:first-child {
    order: 2;
  }

  #sectionTwo > div:last-child {
    order: 1;
  }

  #sectionTwo > #carouselImageContainer img {
    position: unset;
  }

  #sectionTwo > .soundBite {
    margin-top: 10px;
  }

  #sectionThree #steps {
    flex-wrap: wrap;
  }

  #sectionThree #steps > div {
    margin: 0 20px 40px;
    max-width: unset;
  }
}