body {
    font-family: ;
  }
  h3{
    font-family: 'Poppins',sans-serif;
  }
  p {
    font-size: 14px;
    font-family: Arial,sans-serif;
  }
  .error-message {
    background-color: #ffcccc;
    border: 1px solid #ff6666;
    padding: 10px;
    color: #ff3333;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .hero-section-careers {
    position: relative;
    min-height: 267px;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/careers/at-the-job-interview.jpg);
    background-position: center;
  }
  .hero-section-careers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
  }
  .hero-section-careers h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
  }  
  .hero-section-careers p {
    font-size: 1.125rem;
    color: #ff7800;
  }
  .form-item p {
    display: block;
    font-size: 1rem;
    font-weight: 400;
  }
  .form-item input{
    width: 100%;
    border-style: none;
    border: 1px solid #818a91;
    box-shadow: none;
    padding: 1rem 1.8rem;
    margin-bottom: 8px;
    border-width: 0px 0px 1px 0px;
    border-radius: 3px;
  }
  .form-item input:hover{
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
  }
  .form-item input:focus{
    outline: none;
    border: 1px solid #818a91;
  }
  .form-item textarea{
    width: 100%;
    border-style: none;
    border: 1px solid #818a91;
    box-shadow: none;
    padding: 0rem 0.6rem;
    margin-bottom: 8px;
    border-width: 0px 0px 1px 0px;
    height: 8rem;
    border-radius: 3px;
  }
  .form-item textarea:hover{
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
  }
  .form-item textarea:focus{
    outline: none;
    border: 1px solid #818a91;
  }
  .btn-primary{
    background-color: #ff7800;
    color: #fff;
    margin-top: 10px;
    width: 100%;  
    font-weight: 600;
    border-style: none;
  }
  .btn-primary:hover{
    background-color: #ffF;
    color: #ff7800;
    text-decoration: underline;
    
  }

  @media (min-width: 767px) {
    .hero-section-careers {
      min-height: 445px;
    }
  
    .hero-section-careers h1 {
      font-size: 3rem;
    }
  }
  @media (max-width: 1030px) {
    .hero-section-careers {
      background-position: unset;
    }
  }