
  body {
    background-color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 400;
    margin: 0 !important;
    padding: 0;
  }

  .nav-wrapper {
    max-width: 95%;
    margin: 0 auto;
  }

  .form-wraper {
    /* width: 95%; */
    background: #f9dde6;
    margin-bottom: 50px;
    padding: 20px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 2px solid #f9dde6;
  }
  
  .form-control:disabled,
  .form-control[readonly] {
    background-color: #fff;
    opacity: 1;
  }

  .is-invalid {
    color: #f00;
  }
  
  .form-title {
    font-size: 14px;
    /* color: #032b44; */
    padding-bottom: 0.5rem;
    padding: 1rem 0;
    border-bottom: 2px solid #f00;
    font-weight: 900;
    text-transform: uppercase;
  }
  
  .form-navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
  }

  .form-navbar li + li {
    position: relative;
  }
  
  .form-navbar li a {
    padding: 10px 20px 10px 10px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 900;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #045d95;
    text-decoration: none;
  }
  
  .step-count {
    width: 40px;
    height: 40px;
    border: 2px solid #f00;
    justify-content: center;
    border-radius: 20px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #f00;
  }
  
  .form-navbar li a.active span.step-count {
    background: #f00;
    color: #fff;
  }

  .form-navbar li a.active {
    background-color: #f9dde6;
    border: 2px solid #f9dde6;
    border-bottom: 0;
  }

  /*
   * Responsive
   */
  
  @media screen and (max-width: 1199px) {
    .step-text {
      display: none;
    }
  }
  
  @media screen and (max-width: 767px) {
    .step-count {
      width: 30px;
      height: 30px;
    }
  }