.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quiz-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 37, 31, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-popup[inert] {
  opacity: 0;
}
@media (min-width: 769px) {
  .quiz-popup {
    padding: 20px;
  }
}

.quiz-popup {
  z-index: 9999;
}

.quiz__container {
  position: relative;
  background-color: #ffffff;
  padding: 24px;
  height: 100dvh;
  display: flex;
  width: 100%;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
}
@media (min-width: 769px) {
  .quiz__container {
    padding: 48px;
    height: 736px;
    max-height: 80vh;
    width: 1172px;
    max-width: 80vw;
    min-height: auto;
  }
  .quiz__container.showResult {
    height: 800px;
  }
}
.quiz__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.quiz__close:hover {
  opacity: 0.7;
}
.quiz__close:focus-visible {
  outline: 2px solid #115F78;
  outline-offset: 2px;
}
.quiz__close-icon {
  font-size: 24px;
  color: #27251F;
}
.quiz__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  padding-top: 20px;
  min-height: 0;
}
@media (min-width: 769px) {
  .quiz__content {
    padding-top: 0;
  }
}
@media (max-height: 700px) {
  .quiz__content {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.quiz__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 0;
}
.quiz__title#quiz-title, .quiz-result__title#quiz-result-title {
  color: #27251F;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 769px) {
  .quiz__title#quiz-title, .quiz-result__title#quiz-result-title {
    font-size: 20px;
  }
}
.quiz__progress {
  margin-top: 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .quiz__progress {
    margin-top: 24px;
  }
}
.quiz__progress-bar {
  border-radius: 4px;
  background-color: #E9ECEF;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
  padding: 1px;
}
.quiz__progress-fill {
  position: relative;
  display: flex;
  width: 0%;
  max-width: 100%;
  height: 16px;
  background-color: #BE9940;
  background-image: linear-gradient(45deg, #B2871F 25%, transparent 25%, transparent 50%, #B2871F 50%, #B2871F 75%, transparent 75%, transparent);
  background-size: 30px 30px;
  border-radius: 4px;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz__question-section {
  display: flex;
  margin-top: 32px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  min-height: 0;
}
@media (min-width: 769px) {
  .quiz__question-section {
    margin-top: 40px;
  }
}
.quiz__question-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-weight: 400;
  justify-content: flex-start;
  flex-shrink: 0;
}
.quiz__question-counter {
  color: #737373;
  font-size: 16px;
  margin: 0;
}
.quiz__question-title {
  color: #27251F;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 400;
  margin: 8px 0 0 0;
}
@media (min-width: 769px) {
  .quiz__question-title {
    font-size: 36px;
  }
}
.quiz__question-content {
  position: relative;
  display: flex;
  margin-top: 16px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
}
.quiz__instruction {
  color: #737373;
  font-weight: 400;
  z-index: 0;
  margin: 0;
  font-size: 13px;
  flex-shrink: 0;
}
.quiz__options {
  z-index: 0;
  display: flex;
  margin: 0;
  margin-top: 16px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  font-size: 16px;
  color: #27251F;
  font-weight: 600;
  justify-content: flex-start;
  border: none;
  padding: 0;
  min-height: 0;
  overflow-y: auto;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quiz__options::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) {
  .quiz__options {
    overflow: auto;
  }
}
.quiz__option {
  background-color: #ffffff;
  border-top: 1px solid #BFBFBF;
  display: flex;
  width: 100%;
  padding: 12px;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.quiz__option:nth-child(even) {
  background-color: #F9F7F3;
}
.quiz__option:hover {
  color: #115F78;
}
.quiz__option:focus-visible {
  outline: 2px solid #115F78;
  outline-offset: -2px;
}
.quiz__option label {
  font-size: 16px;
}
.quiz__option:has(.quiz__radio:checked) .quiz__label {
  color: #115F78;
}
.quiz__radio-wrapper {
  position: relative;
  width: 17px;
  flex-shrink: 0;
  height: 17px;
}
.quiz__radio-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 0px 0px 4px #115F78 inset;
  z-index: 1;
  opacity: 0;
}
.quiz__radio-wrapper:has(.quiz__radio:checked)::before {
  opacity: 1;
}
.quiz__radio {
  border-radius: 8px;
  background-color: transparent;
  border-color: #BFBFBF;
  border-style: solid;
  border-width: 1px;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  width: 17px;
  flex-shrink: 0;
  height: 17px;
  cursor: pointer;
}
.quiz__radio:checked {
  position: relative;
}
.quiz__radio:checked + .quiz__radio-wrapper::before {
  opacity: 1;
}
.quiz__radio:focus-visible {
  outline: 2px solid #115F78;
  outline-offset: 2px;
}
.quiz__label {
  color: #27251F;
  align-self: stretch;
  margin: auto 0;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  cursor: pointer;
  z-index: 0;
}
.quiz__label:hover {
  color: #115F78;
}
.quiz__label:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.quiz__actions {
  z-index: 0;
  display: flex;
  margin-top: 48px;
  width: 100%;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .quiz__actions {
    margin-top: 48px;
    gap: 40px 100px;
  }
}
.quiz__error-message {
  color: #dc3545;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}
.quiz__button {
  justify-content: center;
  align-items: center;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  padding: 11px 24px;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-width: 120px;
  white-space: initial;
}
.quiz__button:focus-visible {
  outline: 2px solid #115F78;
  outline-offset: 2px;
}
.quiz__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.quiz__button--primary {
  margin-left: auto;
}
@media (max-width: 768px) {
  .quiz__button--primary {
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .quiz__button {
    flex: none;
    white-space: nowrap;
  }
}
.quiz__question {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.quiz__question[aria-hidden=false] {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.quiz__question[data-prev=true] {
  transform: translateX(-10%);
  opacity: 0;
}
.quiz__question[data-next=true] {
  transform: translateX(10%);
  opacity: 0;
}

.custom-scrollbar-initialized {
  position: relative;
  overflow: hidden;
}
.custom-scrollbar-initialized .custom-scrollbar-content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.custom-scrollbar-initialized .custom-scrollbar-content::-webkit-scrollbar {
  display: none;
}
.custom-scrollbar-initialized .custom-scrollbar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 4px);
  width: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  background-color: #E8E8E8;
}
.custom-scrollbar-initialized .custom-scrollbar-wrapper.has-custom-scrollbar {
  opacity: 1;
}
.custom-scrollbar-initialized .custom-scrollbar-wrapper:hover {
  opacity: 1;
}
.custom-scrollbar-initialized .custom-scrollbar {
  position: absolute;
  width: 8px;
  height: 130px;
  background-color: #7A7A7A;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.custom-scrollbar-initialized .custom-scrollbar:hover {
  opacity: 1;
}
.custom-scrollbar-initialized .custom-scrollbar:active {
  background-color: rgb(96.5, 96.5, 96.5);
}
.custom-scrollbar-initialized.has-custom-scrollbar .custom-scrollbar-wrapper {
  opacity: 1;
}

.quiz__options.custom-scrollbar-initialized .custom-scrollbar-content {
  border-radius: 4px;
  background-color: #ffffff;
}
.quiz__options.custom-scrollbar-initialized .custom-scrollbar-wrapper {
  right: 0;
  top: 0;
  width: 8px;
}
.quiz__options.custom-scrollbar-initialized .custom-scrollbar {
  width: 8px;
  background-color: #7A7A7A;
  opacity: 0.7;
}
.quiz__options.custom-scrollbar-initialized .custom-scrollbar:hover {
  opacity: 1;
  background-color: #7A7A7A;
}
.quiz__options.custom-scrollbar-initialized .custom-scrollbar:active {
  background-color: rgb(96.5, 96.5, 96.5);
}
.quiz__options.custom-scrollbar-initialized .quiz__option {
  margin: 0;
}
.quiz__options.custom-scrollbar-initialized .quiz__option:first-child {
  border-top: none;
}

body.redesign .quiz__question-title {
  font-weight: 400;
}
body.redesign .quiz__instruction {
  font-size: 13px;
}
body.redesign .quiz__question-counter {
  color: #737373;
}
body.redesign .quiz__instruction {
  color: #737373;
}
body.redesign .quiz .wrap-btn-quiz .btn:focus-visible {
  outline: 2px solid #fff;
}
body.redesign .quiz .activities .wrap-btn-quiz .btn {
  color: #ffffff !important;
}

.quiz__options,
.quiz-result__main {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quiz__options::-webkit-scrollbar,
.quiz-result__main::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.quiz-result {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
@media (min-width: 769px) {
  .quiz-result {
    max-width: 1172px;
    min-height: 100%;
    height: auto;
    padding-bottom: 0;
  }
}
.quiz-result__container {
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  min-height: 0;
  padding-bottom: 24px;
}
@media (min-width: 769px) {
  .quiz-result__container {
    justify-content: center;
    padding-bottom: 0;
  }
}
.quiz-result__close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.quiz-result__scrollbar {
  position: absolute;
  right: 40px;
  top: 78px;
  bottom: 48px;
  width: 8px;
  background-color: #E8E8E8;
  border-radius: 100px;
  z-index: 1;
  display: none;
}
@media (min-width: 769px) {
  .quiz-result__scrollbar {
    display: block;
  }
}
.quiz-result__scrollbar-thumb {
  width: 100%;
  height: 259px;
  background-color: #7A7A7A;
  border-radius: 100px;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .quiz-result__scrollbar-thumb {
    margin-bottom: -83px;
  }
}
.quiz-result__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  min-height: 0;
  padding-top: 20px;
}
@media (min-width: 769px) {
  .quiz-result__content {
    padding-top: 0;
  }
}
.quiz-result__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 0;
  flex-shrink: 0;
  padding-bottom: 32px;
}
@media (min-width: 769px) {
  .quiz-result__header {
    padding-bottom: 48px;
  }
}
.quiz-result__title {
  color: #27251F;
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 769px) {
  .quiz-result__title {
    font-size: 20px;
  }
}
.quiz-result__main {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
@media (min-width: 769px) {
  .quiz-result__main {
    max-height: 674px;
  }
}
.quiz-result__result-section {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 32px;
  justify-content: flex-start;
  flex-direction: column;
}
@media (min-width: 769px) {
  .quiz-result__result-section {
    gap: 48px;
    row-gap: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.quiz-result__result-content {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  order: 1;
}
@media (min-width: 769px) {
  .quiz-result__result-content {
    order: 0;
  }
}
.quiz-result__result-info {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: #115F78;
  justify-content: flex-start;
}
.quiz-result .quiz-result__result-label {
  color: #115F78;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.quiz-result .quiz-result__result-title {
  color: #115F78;
  font-weight: 700;
  margin: 4px 0 0 0;
  font-size: 32px;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .quiz-result .quiz-result__result-title {
    margin: 8px 0 0 0;
  }
}
.quiz-result__result-description {
  color: #27251F;
  font-weight: 400;
  margin: 16px 0 0 0;
  font-size: 18px;
  line-height: 27px;
}
@media (min-width: 769px) {
  .quiz-result__result-description {
    margin: 24px 0 0 0;
  }
}
.quiz-result__result-image {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  width: 100%;
  order: 0;
}
@media (min-width: 769px) {
  .quiz-result__result-image {
    width: 376px;
    order: 1;
  }
}
.quiz-result__image {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1.79;
  object-fit: cover;
}
.quiz-result__tools {
  background-color: #E1E1E1;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  order: 3;
}
@media (min-width: 769px) {
  .quiz-result__tools {
    margin-top: 48px;
    order: 2;
  }
}
.quiz-result__tools-header {
  background-color: #ffffff;
  display: flex;
  width: 100%;
  padding-left: 0;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  .quiz-result__tools-header {
    padding-left: 24px;
    font-size: 20px;
  }
}
.quiz-result__tools-title {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 16px 24px;
  gap: 8px;
  background: #115F78;
}
.quiz-result__tools-title-text {
  align-self: stretch;
  margin: auto 0;
  color: #ffffff;
}
.quiz-result__tools-content {
  display: flex;
  width: 100%;
  padding-bottom: 56px;
  flex-direction: column;
  align-items: stretch;
  font-weight: 400;
  justify-content: flex-start;
  position: relative;
}
.quiz-result__tools-info {
  align-items: stretch;
  display: flex;
  width: 100%;
  padding: 24px 24px 160px;
  flex-direction: column;
  overflow: hidden;
  color: #ffffff;
  justify-content: flex-start;
  background: #115F78;
}
@media (min-width: 769px) {
  .quiz-result__tools-info {
    padding: 48px 24px 160px;
  }
}
.quiz-result .quiz-result__tools-headline {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 769px) {
  .quiz-result .quiz-result__tools-headline {
    font-size: 32px;
    line-height: 1.3;
  }
}
.quiz-result .quiz-result__tools-description {
  font-size: 16px;
  color: #ffffff;
  margin: 10px 0 0 0;
  line-height: 24px;
}
.quiz-result__tools-cards {
  display: flex;
  width: 100%;
  padding: 0 24px;
  align-items: stretch;
  gap: 24px;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  margin-top: -120px;
  z-index: 3;
}
@media (min-width: 769px) {
  .quiz-result__tools-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.quiz-result__card {
  display: flex;
  min-width: 240px;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .quiz-result__card {
    width: 326px;
    height: auto;
    align-items: stretch;
  }
}
.quiz-result__card-content {
  background-color: #ffffff;
  align-self: stretch;
  display: flex;
  min-width: 240px;
  min-height: 272px;
  padding: 32px 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
@media (min-width: 769px) {
  .quiz-result__card-content {
    justify-content: space-between;
  }
}
.quiz-result__card-info {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.quiz-result .quiz-result__card-title {
  color: #115F78;
  font-weight: 400;
  margin: 0;
  font-size: 24px;
}
.quiz-result__card-description {
  color: #27251F;
  line-height: 24px;
  margin: 14px 0 0 0;
}
.quiz-result__card-link {
  align-self: flex-start;
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 3px;
  font-size: 16px;
  color: #115F78;
  font-weight: 700;
  justify-content: flex-start;
}
.quiz-result__card-link-text:focus {
  outline: 2px solid #115F78;
  outline-offset: 2px;
}
.quiz-result__card-accent {
  padding: 18px 0;
  flex-shrink: 0;
  align-self: stretch;
}
.quiz-result__card-accent-content {
  background-color: #C29323;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  width: 8px;
  height: 100%;
}
.quiz-result__help {
  display: flex;
  width: 100%;
  padding: 0 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 80px;
}
@media (min-width: 769px) {
  .quiz-result__help {
    margin-bottom: 48px;
  }
}
.quiz-result__help-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: #27251F;
  font-weight: 400;
  justify-content: flex-start;
}
@media (min-width: 769px) {
  .quiz-result__help-content {
    max-width: 715px;
  }
}
.quiz-result__help-title {
  color: #27251F;
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}
.quiz-result__help-description {
  color: #27251F;
  line-height: 24px;
  text-decoration-skip-ink: none;
  margin: 16px 0 0 0;
}
.quiz-result .quiz-result__help-phone {
  font-weight: 700;
  text-decoration: underline;
  color: #27251F;
}
.quiz-result__help-buttons {
  align-self: flex-start;
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  justify-content: flex-start;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}
@media (min-width: 769px) {
  .quiz-result__help-buttons {
    flex-direction: row;
    align-self: flex-start;
    gap: 24px;
    width: auto;
  }
}
.quiz-result__help-button {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 11px 24px;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
@media (min-width: 769px) {
  .quiz-result__help-button {
    width: auto;
  }
}
.quiz-result__help-button--primary:focus {
  outline: 2px solid #115F78;
  outline-offset: 2px;
}
.quiz-result__help-button--secondary:focus {
  outline: 2px solid #27251F;
  outline-offset: 2px;
}

body.redesign .quiz-result__title {
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 769px) {
  body.redesign .quiz-result__title {
    font-size: 20px;
  }
}
body.redesign .quiz-result__card-title {
  color: #115F78;
  font-weight: 400;
  margin: 0;
  font-size: 24px;
}
@media (min-width: 769px) {
  body.redesign .quiz-result__card-title {
    font-size: 32px;
  }
}
body.redesign .quiz-result__help-title {
  font-weight: 400;
}

.wrap-btn-quiz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.read-time__text {
  font-size: 0.938rem;
  color: #AFAFAF;
}

body.redesign .read-time__text {
  color: #AFAFAF;
}

.wrap-btn-quiz.left {
  justify-content: flex-start;
}

.wrap-btn-quiz.right {
  justify-content: flex-end;
}

body.redesign .wrap-btn-quiz {
  margin-top: 32px;
}

@media (min-width: 992px) {
  .wrap-btn-quiz {
    justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  body.redesign .fmbr-hero__bg .activities h1 {
    color: #27251f !important;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
