.top-wrapper {
  padding-top: 60px;
  margin-bottom: 20px;
  text-align: center;
}
.top-wrapper h1 {
  font-size: 3.5rem;
  color: var(--logoBrown);
  width: 85%;
  margin: 0 auto 20px auto;
  line-height: 3.5rem;
}
.top-wrapper h2 {
  font-size: 2.3rem;
  color: var(--buttonSelect);
  margin-bottom: 40px;
}

.top-wrapper p {
  width: 85%;
  margin: 0 auto 20px auto;
}

.career-video {
  width: 100%;
  position: relative;
  left: 50%;
  margin-top: 30px;

  transform: translateX(-50%);
}

.staff-wellbeing-section {
  padding-top: 70px;
}

.staff-wellbeing {
  text-align: center;
  margin-bottom: 30px;
}

.staff-wellbeing h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--logoBrown);
}

.staff-wellbeing p {
  width: 80%;
  margin: 0 auto;
}

.employee-assistance {
  margin-top: 70px;
  background-color: #f9f9f9;
  padding: 30px 0;
}

.text-and-image .text-wrapper {
  padding: 70px 70px 70px 70px;
}
.text-and-image .text-wrapper h3 {
  font-size: 3rem;
  color: var(--logoBrown);
  margin-bottom: 20px;
}

.text-and-image .img-wrapper {
  background-image: url(media/careers/employee-assistance.png);
  background-size: cover;
}

.benefits {
  padding: 50px 0;
  margin-bottom: 40px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.benefit-card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-1);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.benefit-card img {
  width: 75px;
  height: auto;
  margin-bottom: 18px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  text-align: center;
  color: var(--logoBrown);
}
.benefit-card p {
  margin: 0;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.bottom-wrapper {
  margin-top: 30px;
  display: flex;
}

.img {
  flex-basis: 50%;
}

.img {
  position: relative;
}

.bottom-wrapper .text-wrapper {
  box-sizing: border-box;
  flex-basis: 50%;
  padding: 0 30px;
}

.point {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  position: relative;
}

.point i {
  flex-basis: 5%;
  font-size: 1.5rem;
  color: var(--buttonSelect);
}
.point p {
  margin-top: 20px;
  flex-basis: 95%;
  font-size: 0.9rem;
  position: relative;

  padding-left: 10px;
}

.bottom-wrapper .text-wrapper .custom-btn {
  margin-top: 50px;
  display: block;
  background-color: var(--stndBrown);
}
.bottom-wrapper .text-wrapper .custom-btn:hover {
  display: block;
  background-color: var(--buttonSelect);
}

.apply {
  margin-top: 120px;
  margin-bottom: 30px;
}

.apply h3 {
  font-size: 2.3rem;
  color: var(--logoBrown);
  text-align: center;
  margin-bottom: 100px;
}

.form-wrapper {
  width: 40%;
  margin: 0 auto 150px auto;
  font-weight: 400;
  padding: 10px 20px 30px 20px;
  background-color: rgb(249, 250, 250);
  border: 0.2px dashed #d6d6d6;
}

label {
  display: block;
  margin-bottom: 10px !important;
  font-size: 0.9rem;
}

.iti {
  width: 100%;
}

form input,
.iti input,
form textarea {
  box-sizing: border-box;
  padding: 10px 0 10px 20px;
}

form input,
form textarea {
  background-color: rgb(227, 246, 252);
  width: 100%;
  border: none;
}

.form-group {
  margin-bottom: 18px;
}
form label {
  display: inline-block;
  margin-bottom: 2px;
}

form .form-btn {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 15px 5px;
  margin-top: 40px;
  margin-bottom: 20px;
  border: none;
  background-color: var(--logoBrown);
  color: white;
}

form .form-btn:hover {
  cursor: pointer;
  background-color: var(--buttonSelect);
  transition: 0.15s ease-in;
}

.apply p {
  text-align: center;
  width: 70%;
  margin: 0 auto 15px auto;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 994px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-wrapper {
    width: 80%;
  }
}
@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .text-and-image .text-wrapper {
    text-align: center;
  }

  .bottom-wrapper {
    display: block;
  }

  .benefits {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bottom-wrapper .text-wrapper {
    box-sizing: border-box;
    flex-basis: 50%;
    padding: 50px 30px;
  }

  .img img {
    width: 100%;
  }
}
