.jobs {
    width: 90%;
    max-width: 1122px;
    margin: 110px auto 0;
  }

  #section03 .jobs {
    margin: 60px auto;
  }

  #section03 {
    padding-bottom: 10px;
  }

  .jobs__lead {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
  }

  .jobs__label {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0c6f3e;
    text-align: center;
    margin-bottom: 40px;
  }

  .jobs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .jobs__link {
    box-shadow: 0 3px 5px rgb(0 0 0 / 25%);
    border-radius: 5px;
    padding: 28px 28px 18px;
    transition: all 0.3s ease-in-out 0s;
    background: #fff;
  }

  .jobs__heading {
    font-size: 2.4rem;
    margin-bottom: 12px;
    /*    color: #29c936;*/
    color: #222222d9;
  }

  .jobs__tag {
    background: #29c936;
    color: #fff;
    font-weight: 500;
    padding: 5px 7px;
    margin-right: 4px;
    margin-bottom: 4px;
    display: inline-block;
    font-size: 1.4rem;
  }

  .jobs__description {
    line-height: 1.8;
    margin-top: 10px;
  }

  .jobs__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    font-weight: 700;
    color: #29c936;
    margin-top: 12px;
  }

  .jobs__cta::after {
    font-family: "fontello";
    content: "";
    color: #29c936;
    font-size: 1.2rem;
    margin-left: 6px;
    margin-top: 3px;
    display: block;
  }

  @media only screen and (max-width: 768px) {
    .jobs {
      margin-top: 40px!important;
    }
    .jobs__inner {
      grid-template-columns: 1fr;
    }
    .jobs__label {
      font-size: 3.6rem;
      margin-bottom: 26px;
    }
    .jobs__link {
      padding: 20px 18px 14px;
    }
    .jobs__heading {
      font-size: 3.6rem;
    }
    .jobs__tag {
      font-size: 2.6rem;
    }
    .jobs__lead, .jobs__description {
      font-size: 2.8rem;
    }
    .jobs__cta {
      font-size: 2.8rem;
      margin-top: 6px;
    }
    .jobs__cta::after {
      font-family: "fontello";
      content: "";
      color: #29c936;
      font-size: 2rem;
    }
  }

  @media (hover: hover) {
    .jobs__link:hover {
      box-shadow: 0 3px 12px rgb(0 0 0 / 30%);
      /* background: #29c9360d;*/
    }
  }