.careers {
  padding: 60px 0 30px 0;
}

.top-wrapper {
  margin-bottom: 20px;
  text-align: center;
}
.top-wrapper h2 {
  font-size: 3.5rem;
  color: var(--logoBlue);
  width: 85%;
  margin: 0 auto 20px auto;
  line-height: 3.5rem;
}
.top-wrapper h1 {
  font-size: 2.3rem;
  color: var(--logoRed);
  margin-bottom: 40px;
}

.staff-wellbeing-section {
  padding-top: 100px;
  background-color: #f4f4f4;
}

.staff-wellbeing {
  text-align: center;
  margin-bottom: 30px;
}

.staff-wellbeing h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--logoBlue);
}

.staff-wellbeing p {
  width: 80%;
  margin: 0 auto;
}

.cv-contact p {
  margin-bottom: 0;
  padding-bottom: 10px;
  text-align: center;
}
.top-wrapper p {
  width: 85%;
  margin: 0 auto 20px auto;
}

.career-video {
  position: relative;
  left: 50%;
  margin-top: 30px;

  transform: translateX(-50%);
}

.text-and-image .text-wrapper {
  padding: 70px 50px 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-and-image .text-wrapper h3 {
  font-size: 3rem;
  color: var(--logoBlue);
  margin-bottom: 20px;
}

.text-and-image .img-wrapper {
  background-image: url(media/careers/child-with-pan.png);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
}

.benefits {
  margin-top: 40px;
  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);
  text-align: center;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.benefit-card img {
  width: 56px;
  height: auto;
  margin-bottom: 18px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  text-align: center;
  color: var(--logoBlue);
}

.apply {
  margin-top: 80px;
  margin-bottom: 30px;
}

.apply h3 {
  font-size: 2.3rem;
  color: var(--logoBlue);
  text-align: center;
  margin-bottom: 30px;
}

.form-wrapper {
  width: 40%;
  margin: 0 auto 40px 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(--logoBlue);
  color: white;
}

form .form-btn:hover {
  cursor: pointer;
  background-color: var(--logoRed);
  transition: 0.15s ease-in;
}

.apply p {
  text-align: center;
  width: 70%;
  margin: 0 auto 15px auto;
}

.bottom-wrapper {
  margin-top: 30px;
  display: flex;
}

.img {
  flex-basis: 50%;
}

.img {
  position: relative;
}
.img img {
  width: 85%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}

.bottom-wrapper .text-wrapper {
  box-sizing: border-box;
  flex-basis: 50%;
  padding: 30px;
}

.point {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  position: relative;
}

.point i {
  flex-basis: 5%;
  font-size: 1.5rem;
  color: var(--feetGreen);
}
.point p {
  margin-top: 20px;
  flex-basis: 95%;
  font-size: 0.9rem;
  position: relative;

  padding-left: 10px;
}

.bottom-wrapper .text-wrapper .custom-btn {
  display: block;
  background-color: var(--logoRed);
}
.bottom-wrapper .text-wrapper .custom-btn:hover {
  display: block;
  background-color: var(--feetGreen);
}

@media (max-width: 994px) {
  .bottom-wrapper {
    display: block;
  }

  .benefits {
    padding: 0 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .form-wrapper {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .health {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}
