body {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 16px;
  margin: 0;
  background-color: rgba(0,0,0,0.02);
  color: #3e3e40;
}
header, section {
  float: left;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}

.float-left {
  float: left;
}
.float-right {
  float: right;
}

.background-darkgray {
  background-color: #3e3e40;
}
.background-mediumgray {
  background-color: #b2b3b5;
}
.background-gray {
  background-color: #ededee;
}
.background-lightgray {
  background-color: #d9dadb;
}
.background-orange {
  background-color: #e8874a;
}
.background-letter {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  color: #e67c40;
  font-size: 234px;
  line-height: 120px;
  font-weight: 700;
}
.background-image {
  background-repeat: no-repeat;
}
.background-right {
  background-position: right;
}
.background-left {
  background-position: left;
}
.orange {
  color: #e8874a;
}
.white {
  color: white;
}
.lightgray {
  color: #80807f;
}
.underline {
  display: inline-block;
  position: relative;
}
.underline:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  left: 0;
  bottom: 0;
}
.underline:first-of-type:after {
  -webkit-animation: underline 8s infinite;
  animation: underline 8s infinite;
}
.underline:nth-of-type(2):after {
  -webkit-animation: underline 8s 1s infinite;
  animation: underline 8s 1s infinite;
}
.underline:last-of-type:after {
  -webkit-animation: underline 8s 2s infinite;
  animation: underline 8s 2s infinite;
}
.bold {
  font-weight: 700;
}
.sans-serif, .sans-serif p {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
h1, h2, h2 {
  margin: 0;
}
h1 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  font-weight: normal;
  margin: 70px 0 20px;
}
h1 .underline-italic {
  font-style: italic;
  position: relative;
}
h1 .underline-italic:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #3e3e40;
  left: 0;
  bottom: 6px;
  -webkit-animation: underline 5s infinite;
  animation: underline 5s infinite;
}
@keyframes underline {
  0% {
    width: 0;
    left: 0;
  }
  30% {
    width: 100%;
    left: 0;
  }
  60% {
    width: 100%;
    left: 0;
  }
  80% {
    width: 0;
    left: 100%;
  }
  100% {
    width: 0;
  }
}
h2 {
  color: white;
  font-size: 35px;
  line-height: 35px;
  font-weight: normal;
}
h3 {
  font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
  font-size: 24px;
  margin: 10px 0 0;
}
h3.big {
  font-family: Georgia,'Times New Roman',serif;
  font-size: 28px;
  font-weight: normal;
}
h4 {
  font-size: 19px;
  line-height: 22px;
}
p {
  margin-top: 0;
}
table.align-bottom, tr.align-bottom, td.align-bottom {
  vertical-align: bottom;
}
.display-inline {
  display: inline-block;
  margin-bottom: 15px;
}
.padding {
  padding: 0 15%;
}

/*-------------*/
header {
  padding-top: 15px;
  padding-bottom: 15px;
}
#main {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
#share-header {
  margin-top: 4px;
}
#share-header span {
  margin-right: 10px;
  position: relative;
  bottom: -2px;
}


.social {
  display: inline-block;
  vertical-align: middle;
}
header .social {
  margin: 0 0 0 2px;
}

#background-escalator {
  background-size: contain;
}
#background-man {
  background-size: 300px;
  background-position: left 50px center;
}
#background-woman {
  background-size: 250px;
  background-position: right 50px center;
}
#background-people {
  background-position: bottom 50px center;
}

.logo-footer {
  font-size: 30px;
  color: #6f7071;
}
.share-tw {
  width: 15px;
  height: auto;
  margin-top: 10px;
}


/* INTRO -----*/
#intro {
  padding-bottom: 20px;
}
#intro h4 {
  width: 80%;
}

/* EXPOSITION ----*/
#exposition {
  float: left;
  width: 100%;
  position: relative;
}
#cliff {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: auto;
  z-index: 1;

}
@keyframes climber {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
#climber {
  -webkit-animation: climber 5s infinite;
  animation: climber 5s infinite;
  position: absolute;
  width: 230px;
  top: 83px;
  right: 75px;
  z-index: 1;
  transform-origin: 98% 2%;
}

/* ESCALATOR ----*/
#escalator {
  padding-top: 50px;
  padding-bottom: 50px;
}
#escalator p {
  width: 45%;
}

/* QUESTIONS ------*/
.question {
  color: white;
  text-align: center;
  max-width: 385px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.question svg,
.solution svg {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto;
}

.question svg circle,
.solution svg circle {
  stroke-dasharray: 200px;
  -webkit-animation: drawCircle 7s infinite;
  animation: drawCircle 7s infinite;
  animation-fill-mode: cubic-bezier(0,.87,1,.21);
}
.question svg path, .question svg line,
.solution svg path, .solution svg line, .solution svg rect, .solution svg polyline {
  stroke-dasharray: 70px;
  -webkit-animation: drawPath 7s infinite;
  animation: drawPath 7s infinite;
  animation-fill-mode: cubic-bezier(0,.87,1,0);
}

@keyframes appear {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes drawCircle {
  0% {
    stroke-dashoffset: 200px;
  }
  20% {
    stroke-dashoffset: 10px;
  }
  40% {
    stroke-dashoffset: 10px;
  }
  70% {
    stroke-dashoffset: 10px;
  }
  80% {
    stroke-dashoffset: 200px;
  }
  100% {
    stroke-dashoffset: 200px;
  }
}
@keyframes drawPath {
  0% {
    stroke-dashoffset: 70px;
  }
  20% {
    stroke-dashoffset: 0px;
  }
  40% {
    stroke-dashoffset: 0px;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  80% {
    stroke-dashoffset: 70px;
  }
  100% {
    stroke-dashoffset: 70px;
  }
}

.question p, .whitey p {
  font-size: 13px;
  line-height: 19px;
}

.whitey {
  background-color: rgba(255,255,255,0.3);
  margin-left: -50px;
  margin-right: -50px;
  padding: 30px 50px;
}
.whitey p {
  text-align: center;
  color: white;
  max-width: 385px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#question-a {
  position: relative;
  padding-top: 85px;
  padding-bottom: 120px;
}
#question-a h2 {
  width: 85%;
  position: relative;
  z-index: 2;
}
#man {
  position: absolute;
  max-width: 200px;
  width: 100%;
  height: auto;
  bottom: 15px;
  left: 95px;
  -webkit-animation: appear 7s infinite;
  animation: appear 7s infinite;
}

#question-b {
  position: relative;
  padding-top: 80px;
  padding-bottom: 110px;
}
#question-b .background-letter {
  line-height: 0px;
  margin-bottom: -15px;
  margin-left: -20px;
}
#woman {
  position: absolute;
  width: 290px;
  height: auto;
  bottom: 10px;
  right: 40px;
  -webkit-animation: appear 7s 2s infinite;
  animation: appear 7s 2s infinite;
}
#question-b .whitey {
  position: relative;
}
#question-b:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(232, 135, 74, 0);
  border-top-color: #e8874a;
  border-width: 30px;
  margin-left: -30px;
}
#thumbs {
  position: relative;
  margin-top: 90px;
  text-align: center;
}
#thumbs img {
  display: inline-block;
  margin: 0 2px;
}
#thumbs img:not(.down) {
  -webkit-animation: thumbs 1.1s infinite;
  animation: thumbs 1.1s infinite;
  position: relative;
}
/*#thumbs img:first-child {
  animation-delay: 0.2s;
}
#thumbs img:nth-child(2) {
  animation-delay: 0.4s;
}
#thumbs img:nth-child(4) {
  animation-delay: 0.3s;
}
#thumbs img:nth-child(5) {
  animation-delay: 0.7s;
}
#thumbs img:nth-child(6) {
  animation-delay: 0.5s;
}
#thumbs img:nth-child(7) {
  animation-delay: 0.2s;
}
#thumbs img:nth-child(8) {
  animation-delay: 0.6s;
}
#thumbs img:nth-child(9) {
  animation-delay: 0.1s;
}*/
@keyframes thumbs {
  0% {
    top: 0;
  }
  30% {
    top: -20px;
  }
  60% {
    top: 0;
  }
  80% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}

/* SOLUTIONS --------*/
#solutions {
  position: relative;
}
#people {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('assets/people.png');
  background-size: 450px;
  background-repeat: no-repeat;
  background-position: center bottom 40px;
  -webkit-animation: appear 7s infinite;
  animation: appear 7s infinite;
}
#solutions .whitey {
  padding-top: 60px;
  background-color: rgba(255,255,255,0.05);
}
#solutions .whitey p {
  font-size: 16px;
}
#solutions h3 {
  margin-bottom: 50px;
}
.solution p {
  margin-top: 15px;
}
.solution:first-of-type {
  padding-bottom: 55px;
}
.solution:last-of-type {
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative;
}

/* CONCLUSIONS ---------*/
#conclusion {
  font-size: 12px;
  line-height: 14px;
  padding-top: 25px;
  padding-bottom: 10px;
}
#conclusion a {
  color: inherit;
  text-decoration: none;
}

/* SOCIAL ------*/
#social p {
  font-size: 21px;
  margin: 0;
  text-align: center;
  padding: 25px 0;
}
header a, #social a {
  text-decoration: none;
  color: inherit;
}
#logos {
  padding: 25px;
}
#logos a {
  color: rgb(224, 6, 19);
  text-decoration: none;
  font-size: 30px;
}
#share-footer .social {
  margin-left: 5px;
}
#share-footer span {
  margin-right: 5px;
  position: relative;
  bottom: -3px;
}

/* EMBED -------*/
button {
  margin: 0 0 50px 0;
  background-color: transparent;
  border: 0;
  float: right;
  cursor: pointer;
}

@media (max-width: 600px){
  #solutions .underline:after {
    animation: none !important;
    -webkit-animation: none !important;
    background-color: transparent;
  }
  #solutions .underline {
    display: inline;
  }
}

@media (max-width: 500px){
  header, section {
    padding-left: 30px;
    padding-right: 30px;
  }
  .whitey {
    margin-left: -30px;
    margin-right: -30px;
  }
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
  h2 {
    font-size: 25px;
    line-height: 25px;
  }
  h3.big {
    font-size: 22px;
  }
  #intro br + br {
    display: none;
  }
  #climber {
    z-index: -1;
    opacity: 0.5;
  }
  .background-letter {
    display: none;
  }
  #question-a {
    padding-top: 55px;
    padding-bottom: 70px;
  }
  #question-b {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

@media (max-width: 400px){
  #share-footer span {
    display: none;
  }
}