/* ====================================== */
/* SECTION */
/* ====================================== */

.career-section {
  width: 100%;

  background: #f4f5f7;

  padding: 90px 90px 110px;

  overflow: hidden;

  position: relative;
}

/* subtle glow */

.career-section::before {
  content: "";

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      rgba(227,6,19,0.05),
      transparent 70%
    );

  position: absolute;

  top: -180px;
  right: -180px;

  z-index: 0;

  pointer-events: none;
}

/* ====================================== */
/* CONTAINER */
/* ====================================== */

.career-container {
  width: 100%;

  max-width: 1100px;

  margin: 0 auto;

  position: relative;

  z-index: 2;
}

/* ====================================== */
/* HEADING */
/* ====================================== */

.career-heading h2 {
  font-size: 50px;

  line-height: 1.1;

  font-weight: 800;

  color: #10264a;

  margin-top: 75px;

  max-width: 1100px;

  letter-spacing: -1.5px;

  animation:
    fadeUp 0.9s ease;
}

/* line */

.heading-line {
  display: block;

  width: 60px;
  height: 5px;

  background: #e30613;

  border-radius: 100px;

  margin-top: 18px;

  animation:
    fadeUp 1.1s ease;
}

/* ====================================== */
/* CONTENT */
/* ====================================== */

.career-content {
  margin-top: 70px;

  max-width: 860px;

  animation:
    fadeUp 1.2s ease;
}

.career-content p {
  font-size: 22px;

  line-height: 1.8;

  color: #10264a;

  margin-bottom: 34px;

  font-family: Georgia, serif;
}

/* ====================================== */
/* LINKS */
/* ====================================== */

.career-link {
  color: #e30613;

  text-decoration: underline;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.career-link:hover {
  opacity: 0.75;
}

/* ====================================== */
/* ICON */
/* ====================================== */

.contact-icon-box {
  margin-top: 55px;

  animation:
    fadeUp 1.3s ease;
}

.contact-icon {
  width: 74px;
  height: 74px;

  border: 2px solid #10264a;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  color: #10264a;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-icon:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.10);
}

/* ====================================== */
/* CONTACT */
/* ====================================== */

.career-contact {
  margin-top: 50px;

  max-width: 820px;

  animation:
    fadeUp 1.4s ease;
}

.contact-intro {
  font-size: 22px;

  line-height: 1.7;

  color: #10264a;

  margin-bottom: 30px;

  font-family: Georgia, serif;
}

.career-contact h3 {
  font-size: 36px;

  font-weight: 800;

  color: #10264a;

  margin-bottom: 18px;

  line-height: 1.2;
}

.career-contact p {
  font-size: 22px;

  line-height: 1.8;

  color: #10264a;

  margin-bottom: 10px;

  font-family: Georgia, serif;
}

/* ====================================== */
/* RESPONSIBILITY */
/* ====================================== */

.responsibility {
  margin-top: 45px;
}

.responsibility h4 {
  font-size: 24px;

  font-weight: 700;

  color: #10264a;

  margin-bottom: 18px;
}

.responsibility p {
  font-size: 22px;

  line-height: 1.8;

  color: #10264a;
}

/* ====================================== */
/* ANIMATION */
/* ====================================== */

@keyframes fadeUp {

  from {
    opacity: 0;

    transform:
      translateY(40px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}

/* ====================================== */
/* LARGE TABLET */
/* ====================================== */

@media (max-width: 1200px) {

  .career-section {
    padding: 80px 60px 100px;
  }

  .career-heading h2 {
    font-size: 56px;
  }

}

/* ====================================== */
/* TABLET */
/* ====================================== */

@media (max-width: 992px) {

  .career-section {
    padding: 70px 45px 90px;
  }

  .career-heading h2 {
    font-size: 48px;
  }

  .career-content p,
  .career-contact p,
  .contact-intro,
  .responsibility p {
    font-size: 20px;
  }

  .career-contact h3 {
    font-size: 30px;
  }

}

/* ====================================== */
/* MOBILE */
/* ====================================== */

@media (max-width: 768px) {

  .career-section {
    padding: 60px 24px 80px;
  }

  .career-heading h2 {
    font-size: 38px;

    line-height: 1.2;
  }

  .heading-line {
    width: 52px;
    height: 4px;
  }

  .career-content {
    margin-top: 50px;
  }

  .career-content p,
  .career-contact p,
  .contact-intro,
  .responsibility p {
    font-size: 18px;

    line-height: 1.8;
  }

  .career-contact h3 {
    font-size: 28px;
  }

  .responsibility h4 {
    font-size: 22px;
  }

  .contact-icon {
    width: 64px;
    height: 64px;

    font-size: 28px;
  }

}

/* ====================================== */
/* SMALL MOBILE */
/* ====================================== */

@media (max-width: 480px) {

  .career-section {
    padding: 50px 18px 70px;
  }

  .career-heading h2 {
    font-size: 30px;
  }

  .career-content p,
  .career-contact p,
  .contact-intro,
  .responsibility p {
    font-size: 16px;
  }

  .career-contact h3 {
    font-size: 24px;
  }

  .responsibility h4 {
    font-size: 20px;
  }

  .contact-icon {
    width: 58px;
    height: 58px;

    font-size: 24px;

    border-radius: 16px;
  }

}