html {
  scroll-behavior: smooth;
}

.element:not(:focus-within) .label {
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.top05rem {
  top: 0.5rem !important;
  font-size: 12px !important;
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
}
.element:not(:focus-within) .suffix_inner {
  display: none;
}

.element:focus-within .suffix {
  display: none;
}

.background {
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.background:before {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.background:after,
.background:before {
  aspect-ratio: 1;
  background: #faf8f6;
  border-radius: 50%;
  content: "";
  position: absolute;
  width: 50%;
  z-index: -2;
}

.background:after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

@font-face {
  font-display: swap;
  font-family: Public Sans;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Public_Sans-400-3.-BfcnxYs.woff2) format("woff2");
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1,
    u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329,
    u+1ea0-1ef9, u+20ab;
}

@font-face {
  font-display: swap;
  font-family: Public Sans;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Public_Sans-400-3.-BfcnxYs.woff2) format("woff2");
  unicode-range: u+0100-02af, u+0304, u+0308, u+0329, u+1e00-1e9f, u+1ef2-1eff,
    u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}

@font-face {
  font-display: swap;
  font-family: Public Sans;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Public_Sans-400-3.-BfcnxYs.woff2) format("woff2");
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da,
    u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+2074, u+20ac, u+2122, u+2191,
    u+2193, u+2212, u+2215, u+feff, u+fffd;
}

:root {
  --brand-color: #d82a2b;
  --vc-clr-primary: #000;
  --vc-clr-secondary: #090f207f;
  --vc-clr-white: #fff;
  --vc-icn-width: 1.2em;
  --vc-nav-width: 30px;
  --vc-nav-height: 30px;
  --vc-nav-border-radius: 0;
  --vc-nav-color: var(--vc-clr-primary);
  --vc-nav-color-hover: var(--vc-clr-secondary);
  --vc-nav-background: transparent;
  --vc-pgn-width: 12px;
  --vc-pgn-height: 4px;
  --vc-pgn-margin: 4px;
  --vc-pgn-border-radius: 0;
  --vc-pgn-background-color: var(--vc-clr-secondary);
  --vc-pgn-active-color: var(--vc-clr-primary);
}

.carousel__next,
.carousel__prev {
  align-items: center;
  background: transparent;
  background: var(--vc-nav-background);
  border: 0;
  border-radius: 0;
  border-radius: var(--vc-nav-border-radius);
  box-sizing: content-box;
  color: #000;
  color: var(--vc-nav-color);
  cursor: pointer;
  display: flex;
  font-size: 30px;
  font-size: var(--vc-nav-height);
  height: 30px;
  height: var(--vc-nav-height);
  justify-content: center;
  margin: 0 10px;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  width: var(--vc-nav-width);
}

.carousel__next:hover,
.carousel__prev:hover {
  color: #090f207f;
  color: var(--vc-nav-color-hover);
}

.carousel__next--disabled,
.carousel__prev--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel__prev {
  left: 0;
}

.carousel__next {
  right: 0;
}

.carousel--rtl .carousel__prev {
  left: auto;
  right: 0;
}

.carousel--rtl .carousel__next {
  left: 0;
  right: auto;
}

.carousel {
  box-sizing: border-box;
  overscroll-behavior: none;
  position: relative;
  text-align: center;
  touch-action: pan-y;
}

.carousel.is-dragging {
  touch-action: none;
}

.carousel * {
  box-sizing: border-box;
}

.carousel__track {
  display: flex;
  padding: 0 !important;
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
}

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

.carousel__icon {
  height: 1.2em;
  height: var(--vc-icn-width);
  width: 1.2em;
  width: var(--vc-icn-width);
  fill: currentColor;
}

.carousel__pagination {
  display: flex;
  justify-content: center;
  line-height: 0;
  list-style: none;
  margin: 10px 0 0;
}

.carousel__pagination-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 4px;
  padding: var(--vc-pgn-margin);
}

.carousel__pagination-button:after {
  background-color: #090f207f;
  background-color: var(--vc-pgn-background-color);
  border-radius: 0;
  border-radius: var(--vc-pgn-border-radius);
  content: "";
  display: block;
  height: 4px;
  height: var(--vc-pgn-height);
  width: 12px;
  width: var(--vc-pgn-width);
}

.carousel__pagination-button--active:after,
.carousel__pagination-button:hover:after {
  background-color: #000;
  background-color: var(--vc-pgn-active-color);
}

.carousel__slide {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  position: relative;
  scroll-snap-stop: auto;
  transform: translateZ(0);
}

.step {
  display: none;
}
.activeStep {
  display: block;
}
.step1hidden {
  display: none !important;
}
.start-btn {
  padding-bottom: 1rem;
  padding-top: 1rem;
  display: block;
}

.hide-quiz-section {
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  padding: 0 !important;
}

.elementor-button.elementor-hidden,
.elementor-hidden {
  display: none;
}

.quiz-label {
  color: #fff;
}

.section-set {
  padding-bottom: 20px;
  border: none !important;
  color: #000;
  background-color: #fff;
}

.section-set__container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 1120px;
}

.set-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: calc(100% / 3);
}

.set-title {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 36px;
  font-size: 30px;
}

.elementor-widget-container img {
  display: block;
  margin: 0 auto;
}

.set-subtitle {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}

.set-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.elementor-icon-list-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 15px 0 0;
}

.elementor-icon-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  line-height: 20px;
}

.set-item-icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.set-item-icon svg path {
  fill: rgb(34, 197, 94);
}

.set-country {
  margin-bottom: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #7a7a7a7a;
}

.set-price {
  justify-content: center !important;
}

.set-block-price {
  border: none;
  padding: 10px;
}

.set-price-value {
  margin-bottom: 5px;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}

.set-package {
  margin-bottom: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #000;
}

.set-total {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
}

.elementor-button {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  fill: #ffffff;
  color: #ffffff;
  background-color: transparent;
  background: #000;
  border-radius: 38px 38px 38px 38px;
  padding: 10px 0px 10px 0px;
  border: 1px solid transparent;
  width: 100%;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}

.elementor-button:hover {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.elementor-button:focus {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
}

.set-icon-lock {
  flex-shrink: 0;
}

.set-icon-lock svg {
  width: 14px;
  height: 14px;
}

.set-icon-lock svg path {
  fill: #be0022;
}

.set-footer {
  font-size: 13px;
  font-weight: 400;
  color: #be0022;
}

.section-property {
  margin: 0;
  padding: 40px 0;
  color: #000;
  background-color: #fff;
}

.section-property__container {
  max-width: 1120px;
  margin: 0 auto;
}

.size-5 {
  width: 20px;
  height: 20px;
}

.section-order {
  color: #000;
  background-color: #fff;
}

.section-order__container {
  max-width: 1120px;
  margin: 0 auto;
}

.wfacp-left-panel {
  display: flex !important;
  gap: 20px;
}

.wfacp-section__left,
.wfacp-section__right {
  flex-basis: 50%;
}

.form__button {
  display: inline-block;
  font-weight: 400;
  color: #c36;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid #c36;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.form__button:focus,
[type="submit"]:focus,
.form__button:focus {
  outline: 5px auto -webkit-focus-ring-color;
}
.form__button:focus,
.form__button:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover {
  color: #fff;
  background-color: #c36;
  text-decoration: none;
}
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

ul.payment_methods label[for*="payment_method_stripe"]:after {
  clear: right;
  content: "";
  display: block;
}

.flex-width {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 1025px) {
  .section-set__container {
    flex-direction: column;
    margin: 0 10px;
  }

  .elementor-element.elementor-element-9f373b3 > .elementor-element-populated,
  .elementor-element.elementor-element-4e0d78b > .elementor-element-populated,
  .elementor-element.elementor-element-1a2414b > .elementor-element-populated {
    max-width: 700px;
    width: 100%;
  }

  .wfacp-left-panel {
    flex-direction: column;
  }

  .elementor-element.elementor-element-9c0eea3 #wfacp-e-form .wfacp-section {
    padding: 0;
  }
}

@media (max-width: 450px) {
  .elementor-element.elementor-element-6693755 > .elementor-element-populated {
    padding: 10px;
  }

  body #wfacp-e-form #add_payment_method #payment ul.payment_methods li,
  body #wfacp-e-form .woocommerce-cart #payment ul.payment_methods li,
  body #wfacp-e-form .woocommerce-checkout #payment ul.payment_methods li {
    padding: 11px 5px;
  }

  body #wfacp-e-form #add_payment_method #payment div.payment_box,
  body #wfacp-e-form .woocommerce-cart #payment div.payment_box,
  body #wfacp-e-form .woocommerce-checkout #payment div.payment_box {
    padding: 5px;
  }

  .StripeElement {
    padding: 10px 5px !important;
  }

  #wfacp-e-form .woocommerce-checkout #payment div.payment_box p {
    font-size: 11px;
  }
}

.gradient-border {
  border: 3px solid #000 !important;
}

.start-btn {
  text-align: center;
  cursor: pointer;
}

.btn-quiz {
  cursor: pointer;
}

.section-quiz {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 40px;
  height: calc(100vh - 40px);
  background: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0)) 0%  0% / cover, url(../img/bg1.jpg) center center no-repeat;
  background-size: cover;
}

.section-quiz__title {
  margin-bottom: 32px;
  font-family: 'Cooper', sans-serif;
  font-size: 40px;
  font-style: italic;
  color: #fff;
}

.section-quiz__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  width: 100%;
}

.section-quiz__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.section-quiz__input {
  padding: 12px 12px;
  width: 100%;
  border: 1px solid transparent;
  color: #000;
}

.section-quiz__btn  {
  display: block;
  padding: 16px 5px;
  width: 100%;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  border-radius: 30px;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  background-color: rgb(216, 42, 43);
}

.section-quiz__answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

.section-quiz__answer:hover {
  color: #fff;
  background-color: #d82a2b;
}

.section-quiz__answer svg path {
  transition: fill .3s ease-in-out
}

.section-quiz__answer:hover svg path {
  fill: #fff;
}

.section-quiz__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.section-quiz__result {
  margin-top: 24px;
  font-weight: 500;
  font-size: 24px;
}

.second-page {
  position: relative;
}
