/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

*:focus {
  outline: none;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: bolder;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border-style: none;
  width: 100%;
  height: auto;
}

form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #000c49;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

span {
  font: inherit;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

header,
main,
footer,
section {
  display: block;
  position: relative;
  width: 100%;
}

/* common styles */
:root {
  --header-height: 60px;
  --main-white: #fff;
  --main-dark: #000;
  --dark-blue: #090940;
  --main-orange: #ee4036;
  --semi-orange: #feeceb;
  --semi-grey: #f2f2f5;
  --main-blue: #262060;
  --main-yellow: #faaf40;
  --main-green: #64c795;
}
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hidd {
  overflow: hidden;
}
.main {
  background-color: var(--main-white);
}
/* common styles */

/* hero styles */
.mk-hero {
  min-height: 50vh;
  height: auto;
  padding-top: calc(var(--header-height) + 100px);
}
.mk-hero__top {
  max-width: 1030px;
  gap: 25px;
  margin: 0px auto;
}
.mk-hero__title,
.mk-hero__title span {
  color: var(--main-dark);
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.mk-hero__subtitle {
  color: var(--main-dark);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.group-btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sub-group-btn,
.group-btn {
  color: var(--main-orange);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.4s;
  border-radius: 10px;
  border: none;
  outline: none;
  padding: 14px 40px;
  background-color: var(--semi-orange);
  cursor: pointer;
  flex-shrink: 0;
}

.group-btn:hover {
  background-color: var(--main-orange);
  color: var(--main-white);
}
.group-btn.active {
  background-color: var(--main-orange);
  color: var(--main-white);
  text-shadow: 0px 0px 2px var(--main-white);
}

.sub-group-btn {
  color: var(--main-dark);
  text-transform: capitalize;
  background-color: transparent;
}
.sub-group-btn:hover {
  color: var(--main-white);
  background-color: var(--main-blue);
}
.sub-group-btn.active {
  color: var(--main-white);
  background-color: var(--main-blue);
  text-shadow: 0px 0px 2px var(--main-white);
}
.hero-cards-title {
  color: var(--main-dark);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero-cards__self {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-card {
  padding: 20px;
  padding-top: 40px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: var(--main-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.hero-card-title {
  padding: 10px 20px;
  border-radius: 33px;
  background: var(--main-orange);
  color: var(--main-white);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: fit-content;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.hero-card-img {
  aspect-ratio: 245/146;
  width: 100%;
  height: auto;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
}
.hero-cards-items {
  list-style: circle !important;
  list-style-position: inside;
}
.hero-card-item {
  margin-bottom: 5px;
  padding: 10px 5px;
  border-radius: 10px;
  background-color: var(--semi-grey);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.4s;
  cursor: pointer;
}
.hero-cards-items > :first-child:hover {
  background-color: #bebebe;
}
.hero-card-item span {
  color: var(--main-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.hero-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  /* background-color: var(--main-yellow); */
}
.hero-card-item:nth-child(1) .hero-card-icon {
  background-color: var(--main-yellow);
  color: var(--main-yellow);
}
.hero-card-item:nth-child(2) .hero-card-icon {
  background-color: var(--main-blue);
  color: var(--main-blue);
}
.hero-card-item:nth-child(3) .hero-card-icon {
  background-color: var(--main-orange);
  color: var(--main-orange);
}
.hero-card-item:last-child {
  -webkit-filter: blur(4.5px);
  filter: blur(4.5px);
}
.sub-group-btns-container {
  margin-top: 40px;
  position: relative;
}
.sub-group-btns {
  width: fit-content;
  /* margin: 0px auto; */
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--semi-grey);
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.sub-group-static {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.sub-group-btns.sub-group-btns-inserted {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -20;
  opacity: 0;
}
.sub-group-btns.sub-group-btns-inserted.active {
  z-index: 8;
  opacity: 1;
  position: relative;
}

.hero-cards {
  margin-top: 60px;
}

.hero-cards__wrapper {
  position: relative;
  margin-top: 50px;
}
/* .hero-cards__static {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: -1;
} */
.hero-cards__self > :nth-child(1) .hero-card-title {
  background-color: var(--main-orange);
}
.hero-cards__self > :nth-child(2) .hero-card-title {
  background-color: var(--main-blue);
}
.hero-cards__self > :nth-child(3) .hero-card-title {
  background-color: var(--main-yellow);
}
.hero-cards__self > :nth-child(4) .hero-card-title {
  background-color: var(--main-green);
}

/* ------------------------------------------------------ */
.plan-block {
  margin-top: 70px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.plan-block-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}
.plan-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-block-content {
  padding: 86px 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.plan-block-title {
  color: var(--main-white);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 628px;
}
.plan-btn {
  color: var(--main-white);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  background-color: var(--main-orange);
  padding: 15px 80px;
  border-radius: 10px;
  outline: none;
  border: none;
  transition: all 0.4s;
  cursor: pointer;
}
.plan-btn:hover {
  opacity: 0.7;
}
/* hero styles */

/* header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--dark-blue);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header__logo svg {
  width: 121px;
  height: auto;
}
.nav-wrapper,
.header-nav {
  display: flex;
  gap: 64px;
  align-items: center;
}
.header-nav__link {
  font-size: 14px;
  color: var(--main-white);
  font-weight: 500;
  transition: all 0.4s;
}
.burger-btn-wrap,
.burger-btn {
  display: none;
}
/* header styles */

/* footer styles */
.footer {
  margin-top: 70px;
  background-color: var(--dark-blue);
  padding: 40px 0;
  color: white;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  width: 246px;
  padding: 0.5rem;
  margin: 0 auto;
  height: auto;
}

.footer-slogan {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-separator {
  border: 1px solid white;
  opacity: 0.2;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social {
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-icons {
  display: flex;
  gap: 0.5rem;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
}

.footer-subscribe {
  display: none;
  max-width: 560px;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-subscribe {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}

.footer-subscribe form {
  display: flex;
  width: 100%;
  gap: 0.25rem;
}

.footer-subscribe input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  outline: none;
  color: #181818;
  font-size: 14px;
}
.footer-subscribe input[type="email"]::placeholder {
  color: #9c9c9c;
  font-size: 14px;
}

.footer-subscribe button {
  padding: 12px 20px;
  font-size: 14px;
  background-color: #ee4036;
  color: white;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
}
/* footer styles */

/* popup styles */
.popup {
  width: 100%;
  height: 100vh;
  display: grid;
  place-content: center;
  background: rgba(32, 32, 32, 0.2);
  -webkit-backdrop-filter: blur(4.5px);
  backdrop-filter: blur(4.5px);
  position: fixed;
  top: 0;
  z-index: -100;
  opacity: 0;
  transition: all 0.4s;
}
.popup.active {
  z-index: 10000;
  opacity: 1;
}
.popup-content {
  max-width: 610px;
  width: 100vw;
  background-color: var(--main-white);
  padding: 90px 80px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.popup-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  cursor: pointer;
  background-color: var(--semi-grey);
}
.popup-close-btn svg {
  width: 32px;
}
.popup-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup-heading h2 {
  color: var(--main-dark);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.popup-heading p {
  color: var(--main-dark);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup-form form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.popup-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-btn {
  width: fit-content;
  margin: 0px auto;
  font-weight: 500;
}
.popup-form-input {
  padding: 20px;
  background-color: var(--semi-grey);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.popup-form-input::placeholder,
.popup-form-input {
  color: var(--main-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup-form-input::placeholder {
  color: #9c9c9c;
}
/* popup styles */

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  background-color: var(--main-white);
  width: 90%;
  height: 100vh;
  transition: all 0.4s;
  transform: translateX(101%);
  display: none;
}
.mobile-menu-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000a4;
  z-index: -20;
  cursor: pointer;
  opacity: 0;
  display: none;
  transition: all 0.3s;
}
body.mobile-opened .mobile-menu {
  transform: translateX(0);
}
body.mobile-opened .mobile-menu-overlay {
  z-index: 10000;
  opacity: 1;
}
.mobile-menu__heading {
  border-bottom: 1px solid #dcdada;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 12px 0px;
  height: 50px;
}
.close-mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  z-index: 1;
  cursor: pointer;
}
.mobile-menu__nav-item {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: none;
  border-bottom: 1px solid #dcdada;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-dark);
  width: 100%;
  outline: none;
}
.mobile-menu__nav-arrow {
  width: 12px;
  flex-shrink: 0;
  transition: all 0.4s;
}
button.mobile-menu__nav-item.active .mobile-menu__nav-arrow {
  transform: rotate(-0.5turn);
}
.mobile-menu-toggler {
  border-bottom: 1px solid transparent;
  background-color: #f6f6f6;
  transition: all 0.4s;
  display: grid;
  grid-template-rows: 0fr;
}
.mobile-menu-toggler ul {
  min-height: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 0px 32px;
  overflow: hidden;
}
.mobile-menu-toggler ul > span {
  display: block;
}
.mobile-menu-toggler ul a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--main-dark);
  text-transform: uppercase;
}

button.mobile-menu__nav-item.active + .mobile-menu-toggler {
  grid-template-rows: 1fr;
  border-color: #dcdada;
}
/* mobile menu */

/* /////////////////////////////////////////// */

/* quizes */

body:has(.quiz-page) .footer,
body:has(.quiz-start) .footer,
body:has(.quiz-end) .footer {
  margin-top: 0 !important;
}

.quiz-start {
  overflow: hidden;
}

.quiz-section {
  min-height: 80vh;
  position: relative;
  background-image: url("../images/vec-bg.svg");
  background-size: cover;
}
.quiz-block {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0;
  transition: all 0.4s;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  min-height: 80vh;
  height: 100%;
  display: flex;
  width: 100%;
}
.quiz-block .container {
  flex: 1;
}
.quiz-block__heading {
  color: #000;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.quiz-block__heading-h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.quiz-block__subheading {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.quiz-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 920px;
}

.quiz-block__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.quiz-block-btn {
  display: flex;
  padding: 15px 80px;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  width: fit-content;
  background-color: var(--main-orange);
  transition: all 0.4s;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.quiz-block-btn:hover {
  opacity: 0.8;
}
.quiz-block__answers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quiz-block__answers:has(.only-two) {
  grid-template-columns: repeat(2, 1fr) !important;
}
.quiz-answer {
  cursor: pointer;
  display: block;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: #f2f2f5;
  overflow: hidden;
  transition: all 0.4s;
  min-height: 70px;
  gap: 10px;
}
.quiz-answer.active {
  border-color: rgba(10, 10, 68, 1);
}
.quiz-answer:hover {
  border-color: rgba(10, 10, 68, 1);
}
.quiz-answer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  background-color: var(--main-yellow);
}
.quiz-answer-icon.blue {
  background-color: var(--main-blue);
}
.quiz-answer-icon.green {
  background-color: var(--main-green);
}
.quiz-answer-icon.red {
  background-color: var(--main-orange);
}

.quiz-answer-left {
  display: flex;
  gap: 15px;
  align-items: center;
  pointer-events: none;
}
.quiz-answer-text {
  color: #090940;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  pointer-events: none;
  text-align: left;
}
.quiz-answer-checkbox {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-content: center;
  border: 1px solid #090940;
  border-radius: 5px;
  overflow: hidden;
  pointer-events: none;
}
.quiz-answer-checkbox svg {
  opacity: 0;
  transition: all 0.4s;
}
.quiz-answer.active .quiz-answer-checkbox svg {
  opacity: 1;
}
.form-block .quiz-block__inner {
  justify-content: flex-start;
}

.basic-questions-wrap,
.group-questions-wrap {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0;
  transition: all 0.4s;
  min-height: 80vh;
  height: 100%;
  display: flex;
}

.group-questions {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  inset: 0;
  opacity: 0;
  z-index: -10;
  transition: all 0.4s;
}
.group-questions.active-block {
  position: relative;
}

.quiz-input-field {
  padding: 24px 40px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: #f2f2f5;
  color: #282163;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 527px;
  grid-column: 1 / -1;
  margin: 0px auto;
  width: 100%;
}

.quiz-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.quiz-cards-self {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  max-width: 900px;
  gap: 20px;
  width: 100%;
}
.quiz-card {
  height: 250px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: #fff;
  position: relative;
  width: 100%;
  display: grid;
  place-content: center;
  padding: 15px;
}
.quiz-card-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  border-radius: 33px;
  overflow: hidden;
  display: block;
  width: max-content;
  color: var(--main-white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.quiz-card-title.orange {
  background-color: var(--main-orange);
}
.quiz-card-title.blue {
  background-color: var(--main-blue);
}
.quiz-card-title.yellow {
  background-color: var(--main-yellow);
}
.quiz-card img {
  max-width: 245px;
  display: block;
}
.quiz-hero-head {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-range-wrapper {
  max-width: 927px;
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: #f2f2f5;
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0px auto;
  width: 100%;
}
input[type="range"]:focus {
  outline: none;
}
.range-input {
  flex: 1;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #acbfe2;
  border-radius: 22px;
  height: 10px;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -5px; /* Centers thumb on the track */
  background-color: #090940;
  border-radius: 20px;
  height: 20px;
  width: 20px;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 1px solid #090940;
  outline-offset: 2px;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #acbfe2;
  border-radius: 22px;
  height: 10px;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #090940;
  border: none;
  border-radius: 20px;
  height: 20px;
  width: 20px;
}
.range-label {
  color: #282163;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.quiz-block[data-type="range-select"] .quiz-block__inner,
.quiz-block[data-type="input-select"] .quiz-block__inner {
  gap: 150px;
}

/* quizes */
.active-block {
  z-index: 9;
  opacity: 1;
  position: relative;
}

/* quiz hero */
.quiz-hero {
  display: flex;
  position: relative;
}
.quiz-hero-bg {
  position: absolute;
  inset: 0;
}
.quiz-hero-bg > .container {
  height: 100%;
  width: 100%;
}
.quiz-hero-bg__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 80px 0px;
  padding-right: 203px;
  align-items: flex-end;
  justify-content: flex-end;
}
.quiz-bg {
  position: absolute;
  bottom: 0;
  max-width: 878px;
  right: 0;
  transform: translateX(20%);
}
.quiz-hero > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.quiz-hero {
  min-height: 70vh;
  padding-top: calc(var(--header-height) + 110px);
  padding-bottom: 110px;
}
.quiz-hero-l {
  display: flex;
  flex-direction: column;
  gap: 70px;
  height: 100%;
  justify-content: center;
}
.quiz-title {
  color: var(--main-dark);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  flex-direction: column;
}
.quiz-title span {
  color: var(--main-orange);
  font-size: 48px;
}
.quiz-title span del {
  font: inherit;
}
.quiz-hero-head .quiz-block__subheading {
  text-align: left;
}
.quiz-hero-list,
.quiz-hero-list-self {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quiz-hero-list-self {
  gap: 15px;
}
.quiz-hero-list-item {
  padding: 10px;
  border-radius: 20px;
  background-color: #f2f2f5;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.quiz-hero-list-item2 {
  background-color: rgba(250, 175, 64, 0.1);
}
.quiz-hero-list-item3 {
  background-color: rgba(100, 199, 149, 0.1);
}
.quiz-hero-list-item4 {
  background-color: rgba(238, 64, 54, 0.1);
}
.quiz-hero-list-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quiz-hero-list-title {
  color: var(--main-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.quiz-hero-list-text {
  color: var(--main-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.quiz-hero-list-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.quiz-hero-reviews {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.quiz-hero-review {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  max-width: 350px;
}
.quiz-review-text {
  color: var(--main-dark);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.quiz-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.qrt__title {
  color: var(--main-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.qrt__verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--main-green);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.qrt__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.qrt__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qrt__stars svg {
  flex-shrink: 0;
}
.qrt__img {
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  overflow: hidden;
}
.qrt__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.qrt__left {
  display: flex;
  gap: 10px;
  align-items: center;
}
.quiz-hero-review1 {
  transform: translateX(-100px);
}

.quiz-block__thank-you {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
}
/* quiz hero */

/* quiz form */
.quiz-from-wrap {
  max-width: 425px;
  width: 100%;
}
.input-for-data {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  clip-path: inset(0%);
}
#qfw-block #qfw.quiz-from-wrap .forminator-field label {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 5px;
}
#qfw-block #qfw.quiz-from-wrap .forminator-field .forminator-input {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  padding: 15px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  outline: none;
}

#qfw-block #qfw .forminator-button-submit {
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  border-radius: 10px;
  background: #ee4036;
  padding: 15px 80px;
  margin: 0px auto;
  overflow: hidden;
  outline: none;
  display: block;
}

iframe .TermsText {
  color: rgba(0, 0, 0, 0.5);
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#amazon_pay-tab {
  display: none !important;
}
/* quiz form */

/* test */

.hero-card-overlay {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s all;
  padding: 10px;

  border-radius: 20px;
  border: 1px solid rgba(10, 10, 68, 0.1);
  background: var(--main-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-card-overlay *,
.hero-card-overlay {
  color: var(--main-dark);
  font-size: 14px;
}
.hero-card:has(.hero-card-item:first-child:hover) .hero-card-overlay {
  opacity: 1;
}

.hero-cards__wrapper {
  z-index: 3;
}
.change-title {
  min-height: 116px;
}
