/*=========================================================
    MIGARA CARE
    CAREER DETAIL PAGE
    Version: 1.0
=========================================================*/

/*=========================================================
    CAREER DETAIL HERO
=========================================================*/

.career-detail-hero {
  position: relative;

  min-height: 470px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(135deg, #fffaf0 0%, #f8f1df 45%, #eef0ef 100%);

  background: url("../images/careers-banner.png") no-repeat;

  background-size: cover;

  isolation: isolate;
}

/*=========================================================
    HERO DECORATIVE SHAPES
=========================================================*/

.career-detail-hero::before {
  content: "";

  position: absolute;

  width: 680px;
  height: 680px;

  left: -330px;
  top: -280px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.14),
    rgba(184, 138, 27, 0.03) 55%,
    transparent 72%
  );

  pointer-events: none;

  z-index: -1;
}

.career-detail-hero::after {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  right: -190px;
  bottom: -240px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.13),
    transparent 70%
  );

  pointer-events: none;

  z-index: -1;
}

/*=========================================================
    HERO OVERLAY
=========================================================*/

.career-detail-hero .hero-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(255, 248, 235, 0.92) 0%,
      rgba(255, 248, 235, 0.65) 35%,
      rgba(255, 248, 235, 0.18) 70%,
      rgba(255, 248, 235, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(255, 255, 255, 0.08) 75%,
      rgba(255, 255, 255, 0) 100%
    );

  pointer-events: none;

  z-index: 0;
}

/*=========================================================
    HERO CONTAINER
=========================================================*/

.career-detail-hero .container {
  position: relative;

  z-index: 5;
}

/*=========================================================
    HERO WRAPPER
=========================================================*/

.career-detail-hero .service-hero-wrapper {
  display: block;

  min-height: 470px;

  position: relative;
}

/*=========================================================
    HERO CONTENT
=========================================================*/

.career-detail-hero .service-hero-content {
  position: relative;

  max-width: 850px;

  padding: 75px 0;

  opacity: 1;

  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/*
    If career-detail.js adds .show,
    the hero smoothly appears.
*/

.career-detail-hero .service-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}

/*
    Fallback:
    If JS is unavailable, keep the content visible.
*/

.no-js .career-detail-hero .service-hero-content {
  opacity: 1;

  transform: none;
}

/*=========================================================
    BREADCRUMB
=========================================================*/

.career-detail-hero .breadcrumb {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 9px;

  margin-bottom: 24px;

  color: #687586;

  font-size: 14px;

  line-height: 1.5;
}

.career-detail-hero .breadcrumb a {
  color: #1f3b57;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.career-detail-hero .breadcrumb a:hover {
  color: #b88a1b;
}

.career-detail-hero .breadcrumb span {
  color: #8b9299;
}

/*=========================================================
    HERO TAG
=========================================================*/

.career-detail-hero .hero-tag {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 24px;

  padding: 10px 20px;

  border-radius: 50px;

  background: #b88a1b;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  box-shadow: 0 8px 24px rgba(184, 138, 27, 0.18);
}

/*=========================================================
    HERO TITLE
=========================================================*/

.career-detail-hero .service-hero-content h1 {
  max-width: 850px;

  margin: 0 0 25px;

  color: #132544;

  font-family: "Poppins", sans-serif;

  font-size: clamp(44px, 5vw, 68px);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -1.5px;
}

/*
    Optional highlighted span.
    This will also work if the PHP is later changed
    to wrap part of the title inside <span>.
*/

.career-detail-hero .service-hero-content h1 span {
  color: #b88a1b;
}

/*=========================================================
    HERO META
=========================================================*/

.career-hero-meta {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 14px 30px;

  margin-top: 25px;
}

.career-hero-meta > span {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #435466;

  font-size: 15px;

  font-weight: 600;
}

.career-hero-meta > span > i {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.14);

  color: #a8780f;

  font-size: 14px;
}

/*=========================================================
    MAIN CAREER DETAIL SECTION
=========================================================*/

.career-detail-intro {
  position: relative;

  padding: 105px 0;

  background: #ffffff;

  overflow: visible;
}

.career-detail-intro::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  left: -350px;
  top: -250px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );

  pointer-events: none;
}

.career-detail-intro::after {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  right: -230px;
  bottom: -230px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.045);

  pointer-events: none;
}

/*=========================================================
    CAREER DETAIL WRAPPER
=========================================================*/

.career-detail-wrapper {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    360px;

  align-items: start;

  gap: 75px;

  z-index: 2;
}

/*=========================================================
    CAREER CONTENT
=========================================================*/

.career-detail-content {
  min-width: 0;
}

/*=========================================================
    CONTENT SECTION
=========================================================*/

.career-detail-section {
  margin-bottom: 65px;

  opacity: 1;

  transform: translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.career-detail-section.show {
  opacity: 1;

  transform: translateY(0);
}

/*
    Fallback when JS is not available.
*/

.no-js .career-detail-section {
  opacity: 1;

  transform: none;
}

.career-detail-section:last-child {
  margin-bottom: 0;
}

/*=========================================================
    SECTION TAG
=========================================================*/

.career-detail-section .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  padding: 11px 21px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: #b88a1b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  line-height: 1.4;

  text-transform: uppercase;
}

.career-detail-section .section-tag::before {
  content: "";

  width: 28px;

  height: 2px;

  background: #b88a1b;
}

/*=========================================================
    SECTION HEADING
=========================================================*/

.career-detail-section h2 {
  margin: 0 0 24px;

  color: #132544;

  font-family: "Poppins", sans-serif;

  font-size: 42px;

  font-weight: 700;

  line-height: 1.18;

  letter-spacing: -0.5px;
}

/*=========================================================
    SECTION PARAGRAPHS
=========================================================*/

.career-detail-section p {
  margin: 0 0 18px;

  color: #5f6c80;

  font-size: 17px;

  line-height: 1.9;
}

.career-detail-section p:last-child {
  margin-bottom: 0;
}

/*=========================================================
    LEAD PARAGRAPH
=========================================================*/

.career-detail-section .career-lead {
  color: #4d5d70;

  font-size: 18px;

  font-weight: 500;

  line-height: 1.85;
}

/*=========================================================
    DETAIL LIST
=========================================================*/

.career-detail-list {
  display: flex;

  flex-direction: column;

  gap: 16px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.career-detail-list li {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 14px;

  padding: 18px 20px;

  border: 1px solid #edf0f3;

  border-radius: 14px;

  background: #ffffff;

  color: #536174;

  font-size: 16px;

  line-height: 1.7;

  box-shadow: 0 7px 24px rgba(19, 37, 68, 0.035);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.career-detail-list li:hover {
  transform: translateX(5px);

  border-color: rgba(184, 138, 27, 0.25);

  box-shadow: 0 12px 30px rgba(19, 37, 68, 0.07);
}

.career-detail-list li i {
  flex: 0 0 auto;

  margin-top: 4px;

  color: #b88a1b;

  font-size: 16px;
}

/*=========================================================
    CAREER SIDEBAR
=========================================================*/

.career-detail-sidebar {
  position: relative;

  align-self: stretch;

  opacity: 1;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.career-detail-sidebar.show {
  opacity: 1;

  transform: translateY(0);
}

.no-js .career-detail-sidebar {
  opacity: 1;

  transform: none;
}

/*=========================================================
    JOB SUMMARY CARD
=========================================================*/
.career-summary-card {
  position: sticky;
  top: 115px;
  width: 100%;
  z-index: 999999;
  background-color: white;
}

.career-summary-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  height: 5px;

  background: #b88a1b;
}

/*=========================================================
    SUMMARY SECTION TAG
=========================================================*/

.career-summary-card .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 15px;

  color: #b88a1b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.career-summary-card .section-tag::before {
  content: "";

  width: 24px;

  height: 2px;

  background: #b88a1b;
}

/*=========================================================
    SUMMARY TITLE
=========================================================*/

.career-summary-card h3 {
  margin: 0 0 27px;

  color: #132544;

  font-family: "Poppins", sans-serif;

  font-size: 24px;

  font-weight: 700;

  line-height: 1.35;
}

/*=========================================================
    SUMMARY ITEM
=========================================================*/

.summary-item {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  padding: 18px 0;

  border-top: 1px solid #edf0f3;
}

.summary-item > i {
  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  border-radius: 13px;

  background: #fff8e8;

  color: #b88a1b;

  font-size: 15px;
}

.summary-item > div {
  display: flex;

  flex-direction: column;

  gap: 4px;

  min-width: 0;
}

.summary-item small {
  color: #7b8794;

  font-size: 12px;

  font-weight: 500;

  line-height: 1.4;
}

.summary-item strong {
  color: #26384b;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.55;
}

/*=========================================================
    APPLY BUTTON
=========================================================*/

.career-summary-card .career-apply-btn {
  width: 100%;

  min-height: 55px;

  margin-top: 23px;

  justify-content: center;
}

.career-apply-btn {
  text-decoration: none;
}

.career-apply-btn i {
  transition: transform 0.3s ease;
}

.career-apply-btn:hover i {
  transform: translateX(4px);
}

/*=========================================================
    BACK TO CAREERS
=========================================================*/

.back-to-careers {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  margin-top: 18px;

  color: #667486;

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.back-to-careers:hover {
  gap: 13px;

  color: #b88a1b;
}

.career-sidebar-note {
  position: relative;

  margin-top: 22px;
}

/*=========================================================
    SIDEBAR NOTE
=========================================================*/

.career-sidebar-note {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-top: 22px;

  padding: 24px;

  border: 1px solid #e6edf1;

  border-radius: 18px;

  background: #f8fafc;

  box-shadow: 0 10px 30px rgba(19, 37, 68, 0.04);

  opacity: 1;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}

.career-sidebar-note.show {
  opacity: 1;

  transform: translateY(0);
}

.no-js .career-sidebar-note {
  opacity: 1;

  transform: none;
}

/*=========================================================
    NOTE ICON
=========================================================*/

.note-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.12);

  color: #b88a1b;

  font-size: 15px;
}

/*=========================================================
    NOTE CONTENT
=========================================================*/

.career-sidebar-note h4 {
  margin: 0 0 7px;

  color: #1f3b57;

  font-family: "Poppins", sans-serif;

  font-size: 17px;

  font-weight: 700;

  line-height: 1.35;
}

.career-sidebar-note p {
  margin: 0;

  color: #687586;

  font-size: 13px;

  line-height: 1.75;
}

/*=========================================================
    CAREER CTA
=========================================================*/

.career-detail-cta {
  position: relative;

  padding: 0 0 100px;

  background: #ffffff;
}

/*=========================================================
    CTA BOX
=========================================================*/

.career-detail-cta-box {
  position: relative;

  overflow: hidden;

  padding: 85px 80px;

  border-radius: 32px;

  background: linear-gradient(135deg, #fffdf8 0%, #fdf7eb 45%, #f8f1df 100%);

  border: 1px solid rgba(184, 138, 27, 0.13);

  text-align: center;

  box-shadow: 0 18px 55px rgba(19, 37, 68, 0.05);

  opacity: 1;

  transform: translateY(50px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.career-detail-cta-box.show {
  opacity: 1;

  transform: translateY(0);
}

.no-js .career-detail-cta-box {
  opacity: 1;

  transform: none;
}

/*=========================================================
    CTA GOLD GLOW
=========================================================*/

.career-detail-cta-box::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  left: -260px;
  top: -280px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.17),
    transparent 72%
  );

  pointer-events: none;
}

/*=========================================================
    CTA DECORATIVE CIRCLE
=========================================================*/

.career-detail-cta-box::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -180px;
  bottom: -180px;

  border-radius: 50%;

  background: rgba(198, 146, 20, 0.07);

  pointer-events: none;
}

/*=========================================================
    CTA CONTENT
=========================================================*/

.career-detail-cta-box .cta-content {
  position: relative;

  z-index: 2;

  max-width: 780px;

  margin: auto;
}

/*=========================================================
    CTA SUB TITLE
=========================================================*/

.career-detail-cta-box .sub-title {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 24px;

  border-radius: 50px;

  background: #c69214;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

/*=========================================================
    CTA HEADING
=========================================================*/

.career-detail-cta-box h2 {
  margin: 0 0 22px;

  color: #132544;

  font-family: "Poppins", sans-serif;

  font-size: 52px;

  font-weight: 700;

  line-height: 1.15;
}

.career-detail-cta-box h2 span {
  display: block;

  margin-top: 7px;

  color: #c69214;
}

/*=========================================================
    CTA DESCRIPTION
=========================================================*/

.career-detail-cta-box p {
  max-width: 650px;

  margin: 0 auto 35px;

  color: #5f6c80;

  font-size: 17px;

  line-height: 1.9;
}

/*=========================================================
    CTA BUTTONS
=========================================================*/

.career-detail-cta-box .cta-buttons {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;
}

.career-detail-cta-box .cta-buttons .btn {
  min-width: 205px;

  min-height: 56px;
}

/*=========================================================
    CTA OUTLINE BUTTON
=========================================================*/

.career-detail-cta-box .cta-buttons .btn-outline {
  background: transparent;

  border: 2px solid #b88a1b;

  color: #b88a1b;
}

.career-detail-cta-box .cta-buttons .btn-outline:hover {
  background: #b88a1b;

  color: #ffffff;
}

/*=========================================================
    JOB NOT FOUND
=========================================================*/

.career-not-found {
  position: relative;

  min-height: 65vh;

  display: flex;

  align-items: center;

  padding: 110px 0;

  background: linear-gradient(135deg, #fffdf8, #f8f1df);

  overflow: hidden;
}

.career-not-found::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  left: -300px;
  top: -250px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.12),
    transparent 72%
  );
}

.career-not-found-content {
  position: relative;

  z-index: 2;

  max-width: 720px;

  margin: auto;

  text-align: center;
}

.career-not-found-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 25px;

  padding: 11px 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: #b88a1b;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.career-not-found-content h1 {
  margin: 0 0 22px;

  color: #132544;

  font-family: "Poppins", sans-serif;

  font-size: 52px;

  font-weight: 700;

  line-height: 1.18;
}

.career-not-found-content h1 span {
  display: block;

  color: #c69214;
}

.career-not-found-content p {
  max-width: 600px;

  margin: 0 auto 32px;

  color: #5f6c80;

  font-size: 17px;

  line-height: 1.85;
}

/*=========================================================
    LARGE DESKTOP
=========================================================*/

@media (max-width: 1200px) {
  .career-detail-wrapper {
    gap: 55px;

    grid-template-columns:
      minmax(0, 1fr)
      330px;
  }

  .career-detail-hero .service-hero-content h1 {
    font-size: 56px;
  }

  .career-detail-section h2 {
    font-size: 38px;
  }

  .career-detail-cta-box h2 {
    font-size: 46px;
  }
}

/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {
  /* HERO */

  .career-detail-hero {
    min-height: auto;

    padding: 85px 0 75px;

    text-align: center;
  }

  .career-detail-hero .service-hero-wrapper {
    min-height: auto;
  }

  .career-detail-hero .service-hero-content {
    max-width: 760px;

    margin: auto;

    padding: 0;
  }

  .career-detail-hero .breadcrumb {
    justify-content: center;
  }

  .career-detail-hero .service-hero-content h1 {
    font-size: 48px;
  }

  .career-hero-meta {
    justify-content: center;
  }

  /* MAIN */

  .career-detail-intro {
    padding: 80px 0;
  }

  .career-detail-wrapper {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  /* SIDEBAR */

  .career-detail-sidebar {
    position: relative;

    top: auto;

    width: 100%;

    max-width: 600px;

    margin: 0 auto;

    align-self: start;
  }

  /* CTA */

  .career-detail-cta {
    padding-bottom: 80px;
  }

  .career-detail-cta-box {
    padding: 70px 50px;

    border-radius: 28px;
  }

  .career-detail-cta-box h2 {
    font-size: 42px;
  }
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 768px) {
  /* HERO */

  .career-detail-hero {
    padding: 70px 0 65px;
  }

  .career-detail-hero .service-hero-content h1 {
    font-size: 40px;

    line-height: 1.15;

    letter-spacing: -0.8px;
  }

  .career-detail-hero .hero-tag {
    margin-bottom: 20px;

    font-size: 11px;

    letter-spacing: 1px;

    padding: 9px 17px;
  }

  .career-detail-hero .breadcrumb {
    font-size: 13px;

    gap: 7px;

    margin-bottom: 20px;
  }

  .career-hero-meta {
    flex-direction: column;

    align-items: center;

    gap: 12px;
  }

  .career-hero-meta > span {
    font-size: 14px;
  }

  /* CONTENT */

  .career-detail-intro {
    padding: 70px 0;
  }

  .career-detail-section {
    margin-bottom: 48px;
  }

  .career-detail-section .section-tag {
    margin-bottom: 18px;

    padding: 10px 18px;

    font-size: 11px;
  }

  .career-detail-section h2 {
    font-size: 32px;

    line-height: 1.25;
  }

  .career-detail-section p,
  .career-detail-section .career-lead {
    font-size: 15px;

    line-height: 1.8;
  }

  /* LIST */

  .career-detail-list {
    gap: 12px;
  }

  .career-detail-list li {
    padding: 16px;

    font-size: 15px;

    line-height: 1.65;
  }

  /* SUMMARY */

  .career-summary-card {
    padding: 28px 24px;

    border-radius: 20px;

    position: sticky;
    top: 115px;
  }

  .career-summary-card h3 {
    font-size: 22px;
  }

  /* NOTE */

  .career-sidebar-note {
    position: relative;
    padding: 21px;
  }

  /* CTA */

  .career-detail-cta {
    padding-bottom: 65px;
  }

  .career-detail-cta-box {
    padding: 55px 28px;

    border-radius: 25px;
  }

  .career-detail-cta-box .sub-title {
    padding: 9px 18px;

    font-size: 11px;
  }

  .career-detail-cta-box h2 {
    font-size: 34px;

    line-height: 1.2;
  }

  .career-detail-cta-box p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;
  }

  .career-detail-cta-box .cta-buttons {
    flex-direction: column;

    width: 100%;
  }

  .career-detail-cta-box .cta-buttons .btn {
    width: 100%;
  }

  /* NOT FOUND */

  .career-not-found {
    min-height: 60vh;

    padding: 80px 0;
  }

  .career-not-found-content h1 {
    font-size: 38px;
  }

  .career-not-found-content p {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .career-summary-card {
    position: relative;

    top: auto;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 576px) {
  /* HERO */

  .career-detail-hero {
    padding: 60px 0 55px;
  }

  .career-detail-hero .service-hero-content h1 {
    font-size: 33px;
  }

  .career-detail-hero .breadcrumb {
    font-size: 12px;
  }

  .career-hero-meta > span {
    font-size: 13px;
  }

  .career-hero-meta > span > i {
    width: 34px;
    height: 34px;
  }

  /* CONTENT */

  .career-detail-intro {
    padding: 60px 0;
  }

  .career-detail-section h2 {
    font-size: 28px;
  }

  .career-detail-list li {
    gap: 11px;

    padding: 15px;

    font-size: 14px;
  }

  /* SUMMARY */

  .career-summary-card {
    padding: 24px 20px;
  }

  .career-summary-card h3 {
    font-size: 20px;
  }

  .summary-item {
    padding: 15px 0;
  }

  .summary-item > i {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  /* NOTE */

  .career-sidebar-note {
    gap: 12px;

    padding: 19px;
  }

  .note-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .career-sidebar-note h4 {
    font-size: 15px;
  }

  .career-sidebar-note p {
    font-size: 12px;
  }

  /* CTA */

  .career-detail-cta-box {
    padding: 45px 20px;

    border-radius: 22px;
  }

  .career-detail-cta-box h2 {
    font-size: 29px;
  }

  .career-detail-cta-box h2 span {
    margin-top: 5px;
  }

  /* NOT FOUND */

  .career-not-found-content h1 {
    font-size: 32px;
  }
}

/*=========================================================
    EXTRA SMALL DEVICES
=========================================================*/

@media (max-width: 400px) {
  .career-detail-hero .service-hero-content h1 {
    font-size: 29px;
  }

  .career-detail-section h2 {
    font-size: 25px;
  }

  .career-detail-cta-box h2 {
    font-size: 26px;
  }

  .career-detail-cta-box .sub-title {
    font-size: 10px;

    letter-spacing: 1.3px;
  }
}
/*=========================================================
    CAREER APPLICATION DRAWER
=========================================================*/

.career-drawer {
  position: fixed;

  top: 0;
  right: 0;

  width: 520px;
  max-width: 100%;

  height: 100vh;

  background: #ffffff;

  z-index: 10000;

  transform: translateX(100%);

  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);

  overflow-y: auto;

  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.career-drawer.active {
  transform: translateX(0);
}

/* Close button */

.career-drawer .drawer-close {
  cursor: pointer;
}

/* Mobile */

@media (max-width: 768px) {
  .career-drawer {
    width: 100%;
  }
}
