h1.home{
  font-size: 25px !important;
  line-height: 35px !important;
}
.faqs-card{
    border: solid 2px var(--tone-yellow);
    background-color: rgba(255,253,181,0.27);
    padding: 15px;
    border-radius: 20px;
}


.card{
    border-radius: 20px !important;
    box-shadow: none !important;
    border: none !important;
}
.card.bg-dark-blue{
    background-color: var(--dark-blue) !important;
    color: white !important;
    border: solid 2px var(--dark-blue) !important;;
}
.card.border-dark-blue{
    background-color: transparent !important;
    border: solid 2px var(--dark-blue) !important;
    color: var(--dark-blue) !important;
}

.notification{
    padding: 15px;
    border-radius: 20px !important;
}
.notification.yellow{
    background-color: var(--tone-yellow);
}
.upload.control{
    width: 100%;
}
.upload .upload-draggable{
    width: 100%;
    border: 2px dashed #074549 !important;
    background: #07454914 !important;
}


.field{
    margin-bottom: 15px;
}
.field .control input, .field .control textarea{
    color: var(--dark-blue) !important;
    height: 60px;
    border-radius: 8px;
    border: solid 2px var(--dark-blue);
    background-color: transparent !important;
}
.field .control input::placeholder, .field .control textarea::placeholder{
    color: #578386  !important;
}

.white-form .field .control input{
    color: white !important;
    height: 60px;
    border-radius: 8px;
    border: solid 2px white;
    background-color: transparent !important;
}



.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
    text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 30px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 30px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
    color: white;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: var(--dark-blue);
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--dark-blue);
  width: 100%;
  top: 30px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}




