h1,
h2,
h3,
p {
  margin-bottom: 0;
}

section.banner {
  background: url("../../assets/img/careers/career-bg.png") no-repeat center
    center/cover;

  h1 {
    color: #ffd41c;
    font-weight: 700;
    margin-bottom: 24px;
  }

  p {
    color: #fff;
  }

  @media (min-width: 1200px) {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .content {
    @media (max-width: 1199px) {
      text-align: center;
    }
  }
}

section.career {
  @media (min-width: 1200px) {
    padding-bottom: 94px;
  }
  .career-card {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(33, 37, 41, 0.3);
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;

    @media (max-width: 991px) {
      padding: 30px;
    }
  }

  .career-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .heading {
    color: #000;
    font-size: 24px;
    font-weight: 700;
  }

  .location {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid rgba(20, 79, 111, 0.1);
    background: #effeff;
    width: fit-content;
  }

  .location p {
    color: #144f6f;
    font-size: 12px;
    line-height: 15px;
  }

  .description {

    p {
        color: #212529;
        overflow-wrap: anywhere;
    }
    

    a {
      color: #23868b;
      text-decoration: none;
    }
  }
}


section.questions {
  padding-top: 0;
  padding-bottom: 52px;

  .content {
    padding: 30px;
    min-height: 186px;
    border-radius: 18px;
    background: #144f6f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;

    @media (max-width: 576px) {
      flex-direction: column;
      gap: 20px;
    }
  }

  .p-title {
    font-size: 28px;
    color: var(--bs-white);
  }
}