* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

button {
  background: transparent;
  outline: unset;
  border: unset;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Alegreya Sans", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

.html-no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1300px;
  padding: 0 10px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

html,
body {
  overflow-x: hidden;
}

.section-title {
  --section-title-color: #333;
  font-size: clamp(24px, 48px, 6vw);
  font-family: "Exo 2", sans-serif;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: var(--section-title-color);
}
@media screen and (max-width: 481.01px) {
  .section-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
}

.section-subtitle {
  --section-subtitle-color: #333;
  font-size: 22px;
  text-align: center;
  font-family: "Exo 2", sans-serif;
  color: var(--section-subtitle-color);
  border-bottom: 3px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 5px;
}

.section-description {
  --section-description-color: #333;
  font-size: 24px;
  font-family: "Exo 2", sans-serif;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: var(--section-description-color);
}

.swiper {
  z-index: unset !important;
}
.swiper-wrapper {
  z-index: unset !important;
}
.swiper-pagination {
  z-index: unset !important;
}

html, body {
  overflow: unset;
}

.quiz-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: lightgray;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 32px;
  padding: 16px;
}
.quiz-header .section-title {
  margin: 24px 0;
  text-transform: uppercase;
  font-size: 64px;
}
@media screen and (max-width: 540.01px) {
  .quiz-header .section-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 360.01px) {
  .quiz-header .section-title {
    font-size: 40px;
  }
}
.quiz-header .section-title a {
  color: inherit;
}
.quiz-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 1050.01px) {
  .quiz-header ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
  }
}
.quiz-header ul li {
  font-size: 20px;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1050.01px) {
  .quiz-header ul li {
    text-align: center;
  }
}
@media screen and (max-width: 540.01px) {
  .quiz-header ul li {
    font-size: 18px;
  }
}
.quiz-header .section-info {
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  color: #ffff00;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 540.01px) {
  .quiz-header .section-info {
    font-size: 24px;
  }
}
.quiz-content {
  background: url("header.jpg") no-repeat center/cover;
  padding: 36px 0;
  z-index: 1;
  color: #fff;
  min-height: 600px;
  position: relative;
}
.quiz-content::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.quiz-content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quiz-content .question {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  color: #333;
  width: 100%;
}
.quiz-content .question.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quiz-content .question input, .quiz-content .question select, .quiz-content .question textarea {
  padding: 6px;
  border: 1px solid #333;
  font-size: 18px;
  line-height: 20px;
  font-family: "Exo 2", sans-serif;
}
.quiz-content .question textarea {
  min-height: 100px;
}
.quiz-content .question h2 {
  font-size: 24px;
  font-family: "Exo 2", sans-serif;
  margin-bottom: 16px;
  text-align: center;
}
.quiz-content .question p {
  font-size: 18px;
  line-height: 20px;
  font-family: "Exo 2", sans-serif;
  margin-bottom: 24px;
  text-align: center;
}
.quiz-content .question .form-errors {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ef4135;
}
.quiz-content .question .form-errors.hidden {
  display: none;
}


.quiz-content .question label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.quiz-content .question label.checkbox-control {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.quiz-content .question div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.quiz-content .question div label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quiz-content .question div label input {
  width: 18px;
  height: 18px;
}
.quiz-questions {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.quiz-final {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.quiz-final.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
}
.quiz-final h2 {
  font-size: 24px;
  font-family: "Exo 2", sans-serif;
  margin-bottom: 16px;
  text-align: center;
}
.quiz-final p {
  font-size: 18px;
  line-height: 20px;
  font-family: "Exo 2", sans-serif;
  margin-bottom: 24px;
  text-align: center;
}
.quiz-start {
  width: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.quiz-start.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quiz-start button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 16px 8px;
  color: #333;
  border: 4px solid #ffff00;
  max-width: 600px;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .quiz-start button {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  
  .quiz-controls {
      flex-direction: column-reverse;
  }
  
}
.quiz-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 540px;
}
.quiz-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  padding: 8px;
  color: #333;
  border: 2px solid #333;
  max-width: 240px;
  width: 100%;
  margin-bottom: 24px;
}
.quiz-button.submit {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: 0;
          order: 0;
  max-width: 480px;
}
.quiz-button.hidden {
  display: none;
}
.quiz-title {
  font-size: 28px;
  margin-bottom: 24px;
  font-family: "Exo 2", sans-serif;
  text-align: center;
}
.quiz-info {
  font-size: 24px;
  line-height: 28px;
  font-family: "Exo 2", sans-serif;
  text-align: center;
  margin-bottom: 36px;
}
.quiz-info.banner {
  margin-top: 36px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 16px;
  line-height: 36px;
  border-left: 8px solid #ffbf00;
}
@media screen and (max-width: 540px) {
  .quiz-info.banner {
    font-size: 18px;
    padding: 16px 16px 16px 8px;
  }
}
.quiz-footer {
  padding: 24px;
}
@media screen and (max-width: 880.01px) {
  .quiz-footer {
    padding: 24px 0;
  }
}
.quiz-footer .section-title {
  font-size: 48px;
  text-transform: uppercase;
}
@media screen and (max-width: 880.01px) {
  .quiz-footer .section-title {
    font-size: 40px;
  }
}
.quiz-footer .section-title a {
  color: #000000;
}
.quiz-footer .section-info {
  font-size: 24px;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.quiz-footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 880.01px) {
  .quiz-footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.quiz-footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 240px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.content {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  padding: 16px 8px;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 450px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#quiz-prev {
  opacity: 0.5;
}