/* ===============================
   HERO SECTION
================================ */

.quiz-hero-section {
  position: relative;
  background-image: url('../images/background-quiz-top.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px 30px 20px;
  text-align: center;
}

.quiz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(246,243,238,0.25) 0%, rgba(246,243,238,0.35) 70%, #F1F3F1 100%);
}

.quiz-hero-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  margin-top: -40px;
  z-index: 2;
}

.quiz-logo {
  max-width: 260px;
  margin-bottom: 0px;
}

.quiz-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 64px;
  font-weight: 500;
  color: #5E6D5F;
  margin-bottom: 22px;
}

.quiz-main-sub {
  font-size: 20px;
  line-height: 30px;
  color: #5E6D5F;
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.quiz-main-cta {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
}

.quiz-mini-note {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #6C7A6E;
}

/* ===============================
   ICON SECTION
================================ */

.quiz-icons-section {
  background: #F1F3F1;
  padding: 0px 20px 80px 20px;
  text-align: center;
}

.quiz-icons-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quiz-icon-item {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
}

.quiz-icon-item img {
  height: 120px;
  margin-bottom: 2px;
}

.quiz-icon-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #5E6D5F;
  margin: 10px 0px 0px 0px;
}

.quiz-icon-item p {
  font-size: 16px;
  color: #6C7A6E;
  margin: 10px 20px 0px 20px;
}

.quiz-parallax-section{
    width:100%;
    min-height: 760px;

    background-image:url("../images/background-bottom.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;
}

.quiz-parallax-overlay{
    width: 70%;
    height: 100%;

    background:rgba(255,255,255,0.7);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px 20px;
}

.quiz-parallax-content{
    max-width:900px;
    text-align:center;
}
.quiz-parallax-content h2{
    font-size:38px;
    margin-bottom:20px;
}
.quiz-parallax-content p{
    font-size:18px;
    line-height:1.7;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

  .quiz-main-title {
    font-size: 38px;
    line-height: 46px;
  }

  .quiz-icons-container {
    flex-direction: column;
    align-items: center;
  }

  .quiz-section {
    margin-top: -60px;
  }

}