@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

a:hover {
  color: #000000;
}

#section-ads {
  padding: 30px 0;
}

.logo-ads-container img {
  filter: brightness(0) invert(1) opacity(0.8);
}

body {
  font-family: 'Nunito';
  background-color: var(--bgColor);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Root */
:root {
  --primaryColorBlue: #00d5ff;
  --primaryColorBlueDark: #00a8ca;
  --primaryColorGreen: #5ced85;
  --primaryColorYellow: #fac26e;
  --bgColor: #031931;
  --secondaryColorVioletDark: #22163c;
  --Gray: #b9bcc2;
  --standardboxshadow: 0 0 25px var(--primaryColorBlue);
  --lightGray: #ecf0f6;
}

h3 {
  color: var(--secondaryColorVioletDark);
}

/* Nav */
.nav {
  background-color: #fff;
}

.nav img {
  max-width: 120px;
  padding-block: 20px;
}

.nav img.img-fluid {
  max-width: 300px;
}

/* Section 0*/
#section-0 {
  min-height: 725px;
  align-content: center;
  padding: 20px 0px 0px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  margin-bottom: 90px;
}

.forms-wrapper {
  z-index: 5;
  filter: blur(0) !important;
}

body.blur-background::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  bottom: 0;
  backdrop-filter: blur(5px) brightness(0.8);
  z-index: 1;
  pointer-events: none;
}

section.navigation.blur-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: 1;
  pointer-events: none;
}

/* Pre form */
.preformStep {
  color: #fff;
  text-wrap: balance;
  margin: 0px auto 0;
  max-width: 1024px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.preformStep img {
  max-width: 450px;
}

.preformStep h1 {
  font-size: 36px;
}

.preformStep h2 {
  font-size: 32px;
  color: #fff;
}
.preformStep h3{
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    text-wrap: balance;
    margin-bottom: 40px;
}
.energized {
  color: #fff;
  text-shadow:
    0 0 5px #00d5ff,
    0 0 10px #00d5ff,
    0 0 20px #00d5ff,
    0 0 40px #00a8ca;
  font-weight: 700;
}

.preformStep button {
  font-size: 36px;
  padding: 10px;
  border: 4px solid #ff004c;
}

.preformStep button.next {
  background-color: transparent;
  border-color: #00eaff;
  color: #00bfff;
  font-weight: 700;
  text-shadow:
    0 0 5px #00eaff;
  transition: all 0.3s ease;
  border-radius: 12px;
  animation: glow-pulse-button 2s ease-in-out infinite;
}

.preformStep button.red-energized {
  border-radius: 12px;
  cursor: url('/img/icons/cancel.png'), not-allowed;
  color: #ff004c;
  border-color: #ff004c;
  text-shadow:
    0 0 5px #ff004c;
  font-weight: 700;
  background-color: transparent;
  animation: glow-pulse-red 2s ease-in-out infinite;
}

.preformStep button:hover {
  transform: scale(1.05);
}

.preformStep button.red-energized:hover {
  transform: scale(1.0);
}

/* Sliders */
.sliderSection {
  text-align: center;
  padding: 55px 0 45px;
  background: #FFF;
  box-shadow: 0 0 120.6px 0 var(--blue, #43CAF9);
}

.sliderSection .slick-slide img {
  margin: auto;
}

.sliderSection h1 {
  color: #031931;
  font-size: 36px;
  font-weight: 800;
  text-wrap: balance;
}

.sliderSection p {
  font-size: 20px;
  text-wrap: balance;
  color: #031931;
}

.sliderSection .row.flex-wrap {
  margin-top: 15px;
  gap: 30px;
}

@keyframes glow-pulse-button {

  0%,
  100% {
    box-shadow: 0 0 10px 5px var(--primaryColorBlue);
  }

  50% {
    box-shadow: 0 0 15px 8px var(--primaryColorBlueDark);
  }
}

@keyframes glow-pulse-red {

  0%,
  100% {
    box-shadow: 0 0 5px 1px #ff004c;
  }

  50% {
    box-shadow: 0 0 10px 5px #ff004c;
  }
}

.tall-assistant {
  width: 100%;
  margin: auto;
  max-width: 420px;
  filter: drop-shadow(0 0 40px var(--primaryColorBlue));
  transform: translateZ(0);
}

/* Form */
.form-content {
  background-color: #fff;
  padding: 25px;
  min-height: 520px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 25px;
  box-shadow: var(--standardboxshadow);
  align-items: center;
  transition: all 0.5s ease;
}

#finalStep {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
}

#transitionFieldset .form-content {
  padding-bottom: 20px;
}

#transitionFieldset h3 {
  font-size: 20px;
  text-wrap: balance;
}

.form-content .radio-options label.col-12 {
  max-width: 170px;
  cursor: pointer;
}

fieldset h1 {
  font-size: 30px;
  font-weight: 700;
  text-wrap: balance;
  color: var(--secondaryColorVioletLight);
}

fieldset h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-size: 26px;
  text-wrap: balance;
  color: var(--bgColor);
  font-weight: 700;
}

fieldset img.assistant {
  max-width: 120px;
  margin: 15px auto 15px;
  display: block;
}

fieldset {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
  text-align: center;
}

fieldset.active {
  display: flex;
}

fieldset.tyPage {
  display: flex;
}

fieldset .radio-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-options {
  margin-top: 10px;
}

.radio-options label.col-12 {
  background-color: #fff;
  box-shadow: 0 0 20px 0px var(--primaryColorBlue);
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #111;
  transition: all 0.5s ease;
}

.radio-options label .path {
  stroke: #b8b8b8;
  transition: all 0.3s;
}

.radio-options label:hover .path {
  stroke: #000;
}

.radio-options label.col-12:hover {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 10px var(--primaryColorBlue);
  }

  50% {
    box-shadow: 0 0 15px var(--primaryColorBlueDark);
  }
}

.radio-options img {
  max-height: 100px;
  display: block;
  margin: 0 auto 20px 0;
  object-fit: contain;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.nombreVal {
  text-transform: capitalize;
}

.radio-group input:checked+label,
.radio-group label:hover {
  background-color: var(--secondaryColorVioletLight);
  color: white;
}

.radio-group label {
  padding: 15px 10px;
  color: var(--secondaryColorVioletLight);
  transition: all 0.2s ease;
  border-radius: 15px;
  background-color: #fff;
  border: 2px solid var(--secondaryColorVioletLight);
}

.img-label .label-mob {
  justify-content: center;
}

.img-label .col-md-5.col-lg-3 img {
  width: 100%;
  margin: 0;
}

.img-label {
  row-gap: 20px !important;
}

.radio-options label.col-12 img {
  width: 60px;
  transition: filter 0.5s ease-in-out;
}

.radio-options label.col-12:has(input:checked) img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(38%) saturate(517%) hue-rotate(353deg) brightness(108%) contrast(96%);
}

.radio-options h3,
.radio-options p {
  text-align: left;
  margin-bottom: 0;
  color: var(--secondaryColorVioletDark);
}

.radio-options h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.radio-options h5 {
  text-align: left;
  color: var(--secondaryColorVioletDark);
  font-weight: 700;
}

.radio-options p {
  font-size: 12px;
  line-height: 1.2;
}

.many-options .check {
  margin-bottom: 15px;
}

.many-options .label-mob {
  display: flex;
  align-items: center;
}

.many-options .label-mob img {
  margin: auto;
}

/* Custom checkboxes */
label.check {
  cursor: pointer;
  width: 100%;
  margin-bottom: -20px;
  display: flex;
  justify-content: flex-end;
}

label.check input {
  display: none;
}

label.check svg {
  overflow: visible;
}

.path {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease;
  stroke-dasharray: 0 0 240 9999999;
  stroke-dashoffset: 1;
  scale: -1 1;
  transform-origin: center;
  animation: hi 0.5s;
}

label.check input:checked~svg .path {
  stroke-dasharray: 0 262 70 9999999;
  transition-delay: 0s;
  scale: 1 1;
  stroke: var(--primaryColorYellow);
  animation: none;
}

@keyframes hi {
  0% {
    stroke-dashoffset: 20;
  }

  to {
    stroke-dashoffset: 1;
  }
}

label.error {
  color: red;
  margin-top: 10px;
  font-size: 11px;
}

.btn-row {
  margin-top: 40px;
  gap: 15px;
  align-items: center;
}

.btn-form {
  background: linear-gradient(90deg, var(--primaryColorBlue) 0%, var(--primaryColorBlue) 10%, rgba(92, 237, 133, 1) 150%);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 5px 20px;
  font-size: 26px;
  width: 170px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 0 20px 0 var(--primaryColorBlue);
  transition: all 0.2s ease;
}

.btn-form:hover {
  transform: scale(1.2);
  color: #fff;
  box-shadow: 0 0 10px var(--primaryColorBlueDark);
}

.fi-rr-arrow-left:before {
  top: 3px;
  position: relative;
}

.btn-prev {
  background-color: #fff;
  border-radius: 10px;
  height: 50px;
  width: 50px;
  border: 1px solid transparent;
}

.btn-prev:hover {
  border: 1px solid var(--secondaryColorVioletDark);
}

fieldset .navigation {
  width: 100%;
  padding: 20px;
  margin-top: auto;
}

section.navigation {
  width: 100%;
  padding: 10px;
  margin-top: auto;
  background-color: #ebeff6;
  align-items: center;
  position: relative;
}

section.navigation img {
  max-width: 400px;
}

section.navigation p {
  font-size: var(--bgColor);
  font-size: 20px;
  margin: 0;
  width: auto;
  font-weight: 700;
}

.passosContainer {
  color: #fff;
  font-weight: 600;
}

.passosContainer p {
  font-size: 24px;
  margin: 0 0 5px 0;
}

.navigation img.back {
  max-width: 50px;
  transform: rotate(90deg);
  transition: all 0.2s ease;
}

.navigation img.back:hover {
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(69%) sepia(38%) saturate(517%) hue-rotate(353deg) brightness(108%) contrast(96%);
}

/* Input custom */
::placeholder {
  color: #b8b8b8;
}

input:-internal-autofill-selected {
  appearance: none;
  background-color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--bgColor);
  transition: background-color 5000s ease-in-out 0s;
}

.input,
.select2-container--default .select2-selection--single {
  height: 60px;
  max-width: 450px;
  font-size: 15px;
  padding: 12px;
  opacity: 0;
  border-radius: 12px;
  border: 2px solid var(--bgColor);
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

.input:hover {
  box-shadow: var(--standardboxshadow);
}

.input:active,
.selection:active {
  transform: scale(0.95);
}

.input:focus {
  border: 2px solid var(--primaryColorBlue);
  box-shadow: var(--standardboxshadow);
}

.input.correct,
.correct {
  box-shadow: 0 0 10px 2px var(--primaryColorGreen) !important;
  border: 2px solid var(--primaryColorGreen) !important;
  transform: translateZ(0);
}

.input.incorrect,
.incorrect {
  box-shadow: 0 0 10px 2px #ff004c !important;
  border: 2px solid #ff004c !important;
}

.img-label label {
  box-shadow: 0 0 4px var(--primaryColorBlue);
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 160px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.selection {
  width: 100%;
  max-width: 450px;
  height: 60px;
}

.select2-container--default .select2-selection--single {
  padding: 0 0 0 3px;
  text-align: left;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 2px solid var(--bgColor);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primaryColorBlueDark);
}

.select2 {
  margin-top: 20px;
}

.select2-container {
  width: 100% !important;
  max-width: 450px;
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  transform: translate(-40%, -50%);
  top: 50%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 7px 6px 0 6px;
}

.img-label label img {
  max-width: 100px;
}

.img-label label.next:hover {
  animation: glow-pulse 2s ease-in-out infinite;
  border: 2px solid var(--primaryColorBlue);
}

select {
  height: 50px;
  max-width: 450px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #b8b8b8;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
  -webkit-appearance: none;
  background-image: url(/img/icons/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 95% center;
}

select:hover {
  border: 2px solid lightgrey;
  box-shadow: 0px 0px 20px -17px;
}

/* Disclaimer */
.disclaimer {
  min-height: 50px;
  justify-content: center;
  max-width: 450px;
  background-color: var(--bgColor);
  border-radius: 15px;
  margin-top: 20px;
  align-items: center;
}

.disclaimer label.check {
  margin-bottom: 0;
}

.disclaimer img {
  max-width: 90px;
  max-height: 60px;
  object-fit: contain;
}

.disclaimer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.disclaimer p {
  color: #fff;
  font-weight: 300;
}

.disclaimer .path,
.disclaimer label.check input:checked~svg .path {
  stroke: #fff;
}

.disclaimer svg {
  margin-right: 15px;
}

.terms-box p {
  margin: 0;
}

#comparing-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

#comparing-box img {
  width: 140px;
  padding: 5px;
  height: auto;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  animation: highlight 2.5s infinite;
}

#comparing-box img:nth-child(1) {
  animation-delay: 0s;
}

#comparing-box img:nth-child(2) {
  animation-delay: 0.3s;
}

#comparing-box img:nth-child(3) {
  animation-delay: 0.6s;
}

#comparing-box img:nth-child(4) {
  animation-delay: 0.9s;
}

#comparing-box img:nth-child(5) {
  animation-delay: 1.2s;
}

#comparing-box img:nth-child(6) {
  animation-delay: 1.5s;
}

#comparing-box img:nth-child(7) {
  animation-delay: 1.8s;
}

#comparing-box img:nth-child(8) {
  animation-delay: 2.1s;
}

#comparing-box img:nth-child(9) {
  animation-delay: 2.4s;
}

#comparing-box img:nth-child(10) {
  animation-delay: 2.7s;
}

#comparing-box img:nth-child(11) {
  animation-delay: 3s;
}

@keyframes highlight {

  0%,
  80%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* TY page */
.animationTransition {
  position: relative;
}

.animationTransition::after {
  content: '';
  border-bottom: 4px dotted var(--primaryColorBlue);
  height: 1px;
  position: absolute;
  bottom: 50%;
  width: 0;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transition: width 1s ease-in-out, opacity 0.5s ease-in-out;
}

.animationTransition.show-connector::after {
  width: 80%;
  left: 10%;
  opacity: 1;
}

.spinner-container {
  display: none;
  background-color: #fff;
  padding: 15px;
  border-radius: 100px;
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
}

.spinner .dot {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.spinner .dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgb(12, 180, 231);
}

.progress {
  margin-top: 25px;
  overflow: visible;
  height: 30px;
  border-radius: 50px;
}

.progress-stacked {
  min-width: 30px;
  height: 30px;
  border-radius: 50px;
  transition: all 0.8s ease-in-out;
  background-color: var(--primaryColorBlue);
  border: 3px solid var(--primaryColorBlue);
  box-shadow: 0 0 20px 0 var(--blue, #43CAF9);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner .dot {
  animation: spin 2s infinite;
}

.spinner .dot:nth-child(2) {
  animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
  animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
  animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
  animation-delay: 400ms;
}

.modal .btn.btn-block {
  background-color: var(--primaryColorGreen);
  width: 200px;
  color: #fff;
  margin: auto;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.modal .btn.btn-block:hover {
    transform: scale(1.1);
  background-color: var(--primaryColorBlue);
}

.extrah2 a {
  text-decoration: none;
  color: #fff;
  background-color: var(--secondaryColorVioletLight);
  padding: 10px;
  margin: 15px auto 0;
  display: block;
  width: 180px;
  transition: all 0.3s ease;
}

.extrah2 a:hover {
  background-color: var(--primaryColorBlue);
  transform: scale(1.2);
}

#finalStep h3 {
  font-size: 22px;
  text-wrap: balance;
}

.ty #finalStep {
  height: 500px;
}

.ty h1 {
  color: var(--primaryColorBlue);
}

@media (max-width: 1400px) {
  .tall-assistant {
    max-width: 280px;
  }
}

@media (max-width: 1200px) {
  .tall-assistant {
    max-width: 200px;
  }

  #finalStep {
    max-width: 100%;
  }

  .nav .col-md-8 img {
    padding: 5px;
    max-width: 210px;
  }
}

/* Menor do que LG */
@media (max-width: 1024px) {
  .radio-options p {
    margin: 0;
  }

  #progressbar {
    margin-bottom: 20px;
  }

  .tall-assistant {
    display: none !important;
  }

  #finalStep,
  .form-content {
    width: 620px;
    justify-content: flex-start;
    min-width: unset;
    padding: 20px 10px;
  }

  #finalStep h3 {
    font-size: 18px;
    text-wrap: balance;
  }

  .ty #finalStep {
    height: auto;
    padding: 30px;
  }

  .nav .col-md-8 {
    padding-block: 15px;
  }
}

/* Menor do que MD */
@media (max-width: 768px) {
  #section-0{
    min-height: 300px;
  }
  .label-mob {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .nav .col-md-8 p {
    display: none;
  }

  .nav img {
    margin-top: 10px;
    padding-block: 5px;
  }

  .nav .col-md-8 {
    padding: 0 0 5px;
  }

  .nav * {
    justify-content: center !important;
  }

  .nav .col-md-8 .img-fluid {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .radio-options h5 {
    margin: 0;
  }

  .radio-options p {
    margin-inline: auto;
  }

  .offerFinal {
    font-size: 20px;
  }

  #comparing-box img {
    width: 80px;
  }

  #finalStep {
    height: auto;
    justify-content: center;
  }

  .input,
  .select2-container--default .select2-selection--single {
    height: 40px;
    max-width: 300px;
  }

  .select2-container--default .select2-selection--single {
    margin: auto;
  }

  .form-content .radio-options label.col-12 {
    max-width: 270px;
    width: 100%;
    padding-block: 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .radio-options img {
    max-height: 65px;
  }

  #finalStep {
    width: 100%;
    max-width: 380px;
  }

  #finalStep h2 {
    font-size: 18px;
  }

  fieldset img.assistant {
    margin-bottom: 10px;
  }

  .radio-options label.col-12 img {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .many-options label {
    max-width: 200px;
  }

  .many-options h3 {
    font-size: 20px;
  }

  .radio-options h3,
  .many-options .check {
    margin-bottom: 0 !important;
  }

  .many-options .check {
    margin-bottom: 5px !important;
  }

  .many-options label.col-12 img {
    margin: 0 0 10px 0;
  }

  .disclaimer {
    justify-content: center;
    gap: 10px;
  }

  fieldset h2 {
    font-size: 20px;
  }

  fieldset h1 {
    font-size: 24px;
  }

  .form-content {
    width: 90%;
  }

  .radio-options label.col-12 img {
    margin-left: 0;
  }

  .sliderSection h1 {
    font-size: 26px;
  }

  .sliderSection p {
    font-size: 16px;
    line-height: 1;
  }
  .sliderSection .slick-slide img{
      width: 100%;
      padding: 5px;
  }
}

/* Menor do que SM */
@media (max-width: 575px) {
  .preformStep h1 {
    font-size: 26px;
  }
    
  .preformStep img {
    max-width: 300px;
  }

  #progressbar {
    width: 300px;
    padding: 0;
    margin-bottom: 20px;
  }

  .preformStep {
    margin-top: 30px;
  }

  fieldset h1 {
    font-size: 26px;
  }

  fieldset h2 {
    font-size: 22px;
  }

  .form-content {
    --bs-gutter-x: 15px;
  }

  .radio-options img {
    max-height: 70px;
    margin: 0 auto 0 auto;
  }

  .terms-box img {
    display: none;
  }

  .radio-options h3,
  .radio-options p {
    text-align: left;
  }

  .radio-options label.col-12 {
    max-width: 370px;
  }


  .many-options .check {
    margin: 0 !important;
    display: inline;
    width: 20px;
  }

  .radio-options.many-options label.col-12 {
    display: flex;
    gap: 15px;
  }

  .many-options h3 {
    margin: 0;
  }

  .disclaimer {
    max-width: 300px;
    justify-content: center;
  }

  .disclaimer p {
    margin: 0;
  }

  .disclaimer h4 {
    font-size: 18px;
  }

  .terms-box label.check {
    flex-wrap: wrap;
  }

  .terms-box img {
    margin: auto;
  }

  fieldset .terms-box {
    justify-content: center;
    padding: 15px 0 !important;
  }

  .radio-options h3,
  .radio-options p {
    width: 100%;
    margin: auto;
  }

  .radio-options h5 {
    margin: auto 15px auto;
  }

  .form-content {
    min-height: auto;
  }

  fieldset .radio-options {
    gap: 1rem !important;
  }

  .preformStep h2 {
    font-size: 24px;
  }
}

@media (max-width: 450px) {
  .img-label label.next {
    max-width: 130px;
    padding: 5px;
  }

  .many-options .label-mob img {
    max-width: 100px;
  }

  .nav img:not(.img-fluid) {
    width: 100px;
  }

  #finalStep {
    justify-content: center;
  }

  fieldset img.assistant {
    max-width: 80px;
  }

  .nav img {
    padding: 10px;
  }

  fieldset img.assistant {
    margin-top: 0;
  }

  fieldset h1 {
    font-size: 22px;
  }

  fieldset h2,
  fieldset h3 {
    font-size: 18px;
    text-wrap: balance;
  }

  #lastH2 {
    font-size: 14px;
    margin-top: 20px !important;
  }

  .radio-options label.col-12 {
    max-width: 350px;
    padding-top: 10px;
  }

  label.check {
    position: relative;
  }

  .many-options label {
    max-width: 120px;
  }

  .radio-options.many-options label.col-12 {
    padding-top: 15px;
    padding-bottom: 15px;
    align-items: center;
  }

  .radio-options.many-options label.col-12 img {
    width: 50px;
  }

  .radio-options.many-options label.col-12 {
    margin: auto;
  }

  .img-label .label-mob {
    margin: auto;
  }

  .radio-options.img-label label.col-12 img {
    width: 100px;
  }

  section.navigation p {
    text-align: center;
  }

  .many-options .label-mob {
    gap: 15px;
  }

  fieldset .terms-box {
    justify-content: center;
    padding: 20px 0 !important;
  }

  .many-options label.check,
  .terms-box label.check {
    bottom: 0;
  }

  .radio-options h5 {
    max-width: 90%;
    text-align: left;
    font-size: 18px;
  }

  .many-options .label-mob {
    gap: 5px;
  }

  .radio-options.many-options label.col-12.col-md-3 {
    max-width: 300px;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .radio-options label.col-12 img {
    width: 50px;
    margin-right: 15px;
  }

  fieldset h1,
  .radio-options h3 {
    font-size: 20px;
  }

  #finalStep {
    height: auto;
  } 
}
.modal .modal-content{
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 15px; 
    box-shadow: var(--standardboxshadow);
}
.modal button.close{
    color: #000 !important;
}
.modal .modal-header{
    padding:10px 30px;
}