* {
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000000;
}

h2 {
  font-size: 28px;
  color: #fff;
}

h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}

h4 {
  font-size: 22px;
  color: #141e46;
  font-weight: 300;
}

p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.paragraph-big {
  font-size: 45px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: -1.62px;
  text-transform: uppercase;
  color: var(#141e46, #020202);
}

.paragraph {
  color: var(rgba(255, 255, 255, 0.7), #777b95);
  line-height: 125%;
}

.center-align {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  gap: 3vw;
  height: 100vh;
}

.all-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.667vw;
  max-width: 80%;
  height: 100%;
  justify-content: space-evenly;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.all-text-wrapper .paragraph {
  max-width: 90%;
}

.slider {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.slide {
  min-width: 100%;
  height: 100vh;
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: transform 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  display: flex;
  transform: translateX(0);
  gap: 90px;
}

.slide.prev {
  transform: translateX(-100%);
}

.slide.next {
  transform: translateX(100%);
}

/*ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    display: grid;*/
/*    gap: 20px;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 50%;*/
/*}*/
/*li{*/
/*    width: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 100%;*/
/*}*/
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 300;
  color: #fff;
  position: relative;
}

.start-quiz {
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 15px;
  background: linear-gradient(0deg, #ebf400 0%, #f57d1f 100%);
  outline: none;
  color: #fff;
}

.start-quiz:hover {
  background: #f57d1f;
}

.button-answer {
  font-size: 20px;
  padding: 15px 25px;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #f57d1f;
}

.button-answer:hover {
  background: #f57d1f;
  color: #fff;
}

footer {
  background-color: #000;
  color: white;
  padding: 10px 0;
  border-top: 1px solid #fff;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.667vw 4.333vw;
  padding: 20px 40px;
}

.footer-wrapper p {
  text-align: left;
}

.footer-wrapper .footer-item:last-of-type {
  grid-column: 1/3;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-item h3,
h4,
.footer-link {
  color: #fff;
}

.footer-item h3 {
  font-weight: 600;
}

.footer-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.06s ease-in-out;
}

.footer-link svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.footer-link:hover {
  color: #f57d1f;
}

.footer-contacts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-bar {
  width: 100%;
  height: 5px;
  background-color: #929ca0;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #f57d1f;
  width: 0;
  transition: width 0.6s ease-in-out;
}

.result-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  gap: 20px;
  margin: auto;
  padding: 0 20px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 48%;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
}

form input {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 18px;
}

form button {
  font-size: 18px;
  margin-top: 50px;
  background: #f57d1f;
  border: 1px solid #f57d1f;
}

form button:hover {
  background: EBF400;
  color: #000;
}

article {
  padding: 20px;
  width: 80%;
  margin: auto;
}

article p {
  text-align: left;
}

article ul {
  display: block;
  width: 100%;
}

article li {
  color: #fff;
  display: block;
}

article h1 {
  color: #fff;
}

article h3 {
  margin: 15px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  color: #141e46;
  text-align: center;
  padding: 15px;
  z-index: 1000;
  left: 0;
}

.cookie-button-wrapper {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.cookie-button {
  border: 1px solid #000;
  background-color: #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s;
  display: flex;
  text-transform: uppercase;
  color: #fff;
  flex: none;
}

.cookie-button-wrapper .transparent {
  background-color: transparent;
  color: #000;
}

.cookie-button-wrapper .transparent:hover {
  background-color: #000;
  color: #141e46;
}

.cookie-button:hover {
  background-color: #141e46;
  color: #000;
}

.cookies-banner {
  grid-row-gap: 0px;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  width: 300px;
  height: auto;
  margin-bottom: 25px;
  margin-left: 25px;
  margin-right: 25px;
  padding: 25px;
  display: flex;
}

.text-x {
  display: flex;
  margin-bottom: 20px;
  gap: 12px;
}

.text-banner {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
}

.x-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.thank-you h2 {
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 18px;
}

.title-wrapper h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 500;
}

.slide-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 85%;
}

.completion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  background-color: #f57d1f;
  padding: 25px 15px;
  align-items: flex-start;
}

.completion-wrapper .paragraph {
  font-size: 20px;
  font-weight: 500;
}

.completion-wrapper .number-wrapper {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.completion-wrapper .number-wrapper .number-item {
  display: flex;
  background: #fff;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.completion-wrapper .number-wrapper .black-bg {
  background: #000;
}

.default_cursor_css {
  width: 320px;
  font-size: 30px;
  text-align: left!important;
}

.default_cursor_cs {
  font-size: 30px;
  line-height: 1.2;
  background-color: #fcfcfc;
}

.answer_wrap:hover {
  --theme-color-custom-primary: rgb(54, 198, 89) !important;
}

.default_cursor_csss {
  width: 440px;
}

@media (max-width: 768px) {
  .all-text-wrapper {
    max-width: 100%;
  }

  .paragraph-big {
    font-size: 36px;
    line-height: 42px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-wrapper .footer-item:last-of-type {
    grid-column: 1/3;
  }

  /*ul{*/
  /*    width: 70%;*/
  /*}*/
  .result-container {
    flex-direction: column;
  }

  .form-container {
    width: 100%;
  }

  .form-container {
    height: 100%;
  }

  .all-text-wrapper .paragraph {
    max-width: 90%;
  }

  ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 478px) {
  .default_cursor_css {
    max-width: 300px;
    text-align: center !important;
    margin: 0 auto 10px;
    justify-content: center;
  }

  .all-text-wrapper {
    gap: 7.668vw;
  }

  .paragraph-big {
    font-size: 31px;
    line-height: 36px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 4.667vw;
  }

  .footer-wrapper .footer-item:last-of-type {
    grid-column: 1/2;
  }

  h2 {
    width: 100%;
    max-width: fit-content;
  }

  .button-answer {
    max-width: 100%;
    width: 100%;
  }

  ul {
    width: 85%;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    z-index: 2000;
  }

  .cookies-banner {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    margin-bottom: 20px;
  }

  .slide.active {
    gap: 50px;
  }

  .text-banner {
    margin-bottom: 0;
  }

  .text-x {
    flex-direction: row;
    gap: 8px;
  }

  .x-icon {
    width: 28px;
    max-width: 28px;
  }

  .all-text-wrapper .paragraph {
    max-width: 100%;
  }

  .footer-link svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
  }

  .start-quiz {
    padding: 10px 25px;
  }

  .default_cursor_css {
    text-align: center !important;
    margin: 0 auto 10px;
    width: 90%;
  }
}

.link-police {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  padding: 0 4px;
  display: contents;
}

.slide_form_checkbox_text {
  color: #0006;
  font-size: 12px;
  display: flex;
}

.slide_form_checkboxes {
  margin-top: 20px;
}

#privacy_policy_request {
  margin-right: 10px;
}

video {
  width: 100%;
  height: 100%;
}

.block_img {
  margin-top: 80px;
}

.header-back {
  background: #f5f5f5;
  border-bottom: 1px solid #2c2b2b62;
  transition: box-shadow 0.3s ease;
}

.header-shadow {
  box-shadow: 0 4px 10px rgba(44, 43, 43, 0.38);
  /* Тінь, подібна до кольору бордера */
}

.step-first-slide_wrap {
  background-color: #ffffffc4;
}