body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

header {
  width: 100%;
  background-color: #25BDC8;
  text-align: center;
  padding: 12px 0 16px;
  font-family: sans-serif;
}

header h1 {
  margin: 0;
  color: #fff;
  font-size: 1.8em;
}

header p {
  color: #fff;
  font-weight: bold;
  margin: 2px 0 0;
  
}

p {font-size: 1.1em;}

footer {
  width: 100%;
  background-color: #F0F0F0;
  text-align: center;
  padding: 20px 0;
  font-family: sans-serif;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1.4em;
  letter-spacing: -0.5px;
  color: #808080;
}

.loading {font-size: 18px;}


.survey {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 64px;
  text-align: center;
}

.question {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2B2E2F;
}

.answer {
  display: inline-block;
  background-color: #FDA21E;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 6px 0;
  padding: 14px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-right: 10px;
  width: 100%;
  max-width: 340px;
}

.answer:hover {
  background-color: #FCAF40;
}

.progress-bar {
  width: 100%;
  max-width: 320px;
  height: 16px;
  background-color: #f0f0f0;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
}

.progress {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background-color: #4CAF50;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 28px 28px;
  animation: animate-stripes 2s linear infinite;
  transition: width 0.3s ease-in-out;
}

.progress-text {
  font-family: sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.result {
  margin-top: 20px;
}

.divider {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 24px;
}

.loading-icon {
  width: 64px;
  height: 64px;
  border: 6px solid #F0F0F0;
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  margin-bottom: 10px;
}

.benefit {font-size: 1.1em; font-weight: bold;background: #FFF77D;padding: 2px 6px;margin-top: 4px;display:inline-block;}

#content2 {padding-top:32px;}

#content1,
#content2,
#content3 {
  padding-bottom: 44px;
}

#q2,
#q3,
#q4,
#q5,
#result1,
#result2,
#result3,
#content2,
#content3 {
  display: none;
}

@media screen and (max-width: 767px) {
   .question {
     font-size: 24px;
   }
}

@media screen and (max-width: 414px) {
  header h1 {
    font-size: 1.5em;
  }
  
   .question {
      font-size: 24px;
    }
}

@media screen and (max-width: 375px) {
  header h1 {
    font-size: 1.4em;
  }
  
     .question {
      font-size: 20px;
    }
}


@media screen and (max-width: 320px) {
  header h1 {
    font-size: 1.2em;
  }
  
   .question {
      font-size: 18px;
    }
}
