.projeto-top{
    padding-top: 150px !important;
  }
  
  .projeto-bottom{
    background-color: #28285E;
    color: #FFF;
    overflow: hidden;
  }
  
  .projeto-step:last-child .eretz-btn{
    margin: 0 auto;
    display: inline-block;
  }
  
  .inscription-fields > label{
    display: block;
    margin-bottom: 50px;
  }
  
  .inscription-fields > label > span{
    display: block;
  }
  
  .inscription-fields > label > span:first-child{
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: 500;
    color: #D4D4DF;
  }
  
  .inscription-fields .d-flex{
    gap: 30px;
  }
  
  .field-required{
    color: #F37032;
  }
  
  .projeto-step h2{
    color: #3CA7F8;
    font-weight: bold;
    font-size: 2.6em;
    margin-bottom: 40px;
  }
  
  .eretz-radio, .eretz-checkbox{
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer !important;
  }
  
  .eretz-radio label, .eretz-checkbox label{
    margin: 0;
    font-size: 1.4em;
    cursor: pointer;
    white-space: nowrap;
  }
  
  .field-form .message{
    font-size: 1.2em;
    display: none;
    color: red;
    font-weight: 600;
    margin-top: 10px;
  }
  
  .inscription-fields input, 
  .inscription-fields select{
    font-size: 1.2em;
    padding: 16px 14px;
    outline: none !important;
    width: 100%;
    border-radius: 5px;
    border: solid 1px #DDD;
  }
  
  .inscription-fields select{
    background: #FFF url(../img/ico_select.svg) no-repeat center center;
    background-position: calc(100% - 15px) center;
    background-size: 20px 20px;
    -webkit-appearance: none;
    cursor: pointer;
  }
  
  [type="radio"]:checked,
  [type="radio"]:not(:checked) {
      position: absolute;
      visibility: hidden;
  }
  [type="radio"]:checked + label,
  [type="radio"]:not(:checked) + label
  {
      position: relative;
      padding-left: 28px;
  }
  [type="radio"]:checked + label:before,
  [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -9px;
      width: 18px;
      height: 18px;
      border: 1px solid #ddd;
      border-radius: 100%;
      background: transparent;
  }
  [type="radio"]:checked + label:after,
  [type="radio"]:not(:checked) + label:after {
      content: '';
      top: 50%;
      margin-top: -6px;
      width: 12px;
      height: 12px;
      background: #FFF;
      position: absolute;
      left: 3px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease;
  }
  [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  
  [type="checkbox"]:checked,
  [type="checkbox"]:not(:checked) {
      position: absolute;
      visibility: hidden;
  }
  [type="checkbox"]:checked + label,
  [type="checkbox"]:not(:checked) + label
  {
      position: relative;
      padding-left: 28px;
  }
  [type="checkbox"]:checked + label:before,
  [type="checkbox"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -9px;
      width: 18px;
      height: 18px;
      border: 1px solid #ddd;
      border-radius: 1px;
      background: transparent;
  }
  [type="checkbox"]:checked + label:after,
  [type="checkbox"]:not(:checked) + label:after {
      content: '';
      top: 50%;
      margin-top: -6px;
      width: 12px;
      height: 12px;
      background: url(../img/ico_checkbox_white.svg) no-repeat center center;
      position: absolute;
      left: 3px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease;
      background-size: 100% 100%;
  }
  [type="checkbox"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  [type="checkbox"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  
  .projeto-sucesso img{
    border-radius: 15px;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .projeto-steps{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .projeto-etapa{
    width: 100%;
    text-align: center;
    border: solid 1px #3CA7F8;
    color: #3CA7F8;
    background-color: transparent;
    transition: all 300ms;
    font-weight: 500;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    padding: 15px 5px;
    position: relative;
  }
  
  .projeto-etapa:not(:last-child){
    margin-right: 20px;
  }
  
  .projeto-etapa::before{
    content: '';
    border: solid 1px #3CA7F8;
    width: 18px;
    height: 18px;
    border-radius: 50%;
  }
  
  .projeto-etapa.active{
    background-color: #3CA7F8;
    color: #FFF;
  }
  
  .projeto-etapa.active::before{
    content: '';
    background: #FFF url(../img/ico_checkbox_blue.svg) no-repeat center center;
    background-position: 3px 3px;
    background-size: 60% 60%;
    border-color: #FFF;
  }
  
  .projeto-etapa:not(:last-child)::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #FFF;
    left: 100%;
    margin-left: 1px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .projeto-etapa.active:not(:last-child)::after{
    background-color: #008FCB;
  }
  
  .projeto-step:not(.active){
    display: none;
  }
  
  .projeto-top h1{
    color: #28285E;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px; /* 130% */
    letter-spacing: -0.8px;
    display: block;
    margin-bottom: 48px;
  }
  
  .projeto-top p{
    color: #181838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  
  .projeto-top p:only-child{
    font-size: 1.2em;
  }
  
  .projeto-top {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  
  .projeto-top li:not(:last-child){
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .inscription-back.disabled,
  .inscription-next.disabled,
  .inscription-finish.disabled{
    display: none;
  }
  
  .inscription-controls{
    gap: 20px;
  }
  
  .projeto-sucesso h3{
    color: #3CA7F8;
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .projeto-sucesso p{
    font-size: 1.4em;
  }
  
  .projeto-next{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 30px;
  }
  
  .projeto-next li{
    display: flex;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #28285E;
    align-items: center;
    gap: 15px;
    background-color: #FFF;
    border-radius: 5px;
  }
  
  .projeto-next b{
    color: #3CA7F8;
    font-size: 1.6em;
  }
  
  .projeto-form.loading .projeto-step,
  .projeto-form.loading .inscription-controls{
    display: none !important;
  }
  
  .projeto-form.loading::after{
    content: '';
    display: block;
    margin: 100px auto;
    width: 48px;
    height: 48px;
    border: 5px solid #181838;
    border-bottom-color: #3ca7f8;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @media(max-width: 1199px){
    .projeto-steps{
      flex-wrap: wrap;
    }
    .projeto-etapa:not(:last-child){
      margin-right: 0;
      margin-bottom: 20px;
    }
    .projeto-etapa:not(:last-child)::after{
      top: 100%;
      margin-left: 0;
      margin-top: 1px;
      height: 20px;
      width: 1px;
      left: 50%;
      transform: translateX(-50%);
    }
  }