/* Might cause issues... */
.col img { max-width: 100%; }
.swiper-slide { opacity: 1 }

/* Magic spacing fix */
/* 
 * The tl;dr is there is conflicting code that has been hacked with 
 * with countless one-offs to the point where I'm afraid to modify it. 
 * Yeah, one of those. Ive started using this on new "sections" of the
 * site and seems to override and flow items just about right as long 
 * as you follow `section(?\.bg--gradient)>div.inner>div.card` for markup
 * Note: That ? syntax isnt an emmet thing, I used a emmet/regex hrbrid
 *
 * <section (optional class="bg--gradient")>
 *   <div class="inner">
 *     <div class="card">
 *
 */
section:not(.bg--gradient) + section:not(.bg--gradient):not([class*=banner]) > .inner {
  padding-top: 0;
}
@media only screen and (min-width: 1024px) {
  section + section > .inner > .card {
    margin-bottom: 0;
  }
}

/* Scroll Support */
section[id] {
  scroll-margin-top: 80px;
  scroll-margin-block-start: 80px;
  /* scroll-snap-margin-top: calc(50vh + 80px); */
}

strong { font-family: 'OpenSans-SemiBold', sans-serif; }
[lang="ko"] strong { font-family: 'NotoSans-Bold', sans-serif; }

/* Home Banner */ 
.careers-home-banner {
  background: center bottom / cover no-repeat  black;
  box-shadow: 0 8px 12px rgb(0 0 0 / 15%);
}

.careers-home-banner .inner {
  padding: 2rem;
}

.careers-home-banner picture img {
  width: 100%;
  object-fit: contain;
  max-height: 18rem;
}

.careers-home-banner * {
  color: white;
}

.careers-home-banner [class*="plus-"] {
  left: auto;
  margin-right: 1rem;
}

.careers-home-banner h1,
.careers-home-banner h3 {
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}

.careers-home-banner .btn {
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}

.careers-home-banner a {
  border: 1px solid transparent;
}

.careers-home-banner a + a {
  background-color: transparent;
  border: 1px solid #007BC6;
}

.careers-home-banner a + a:hover {
  background-color: #02588D;
  border-color: #02588D;
}

/* BG Gradient */
.bg--gradient .inner {
  padding-left: 2rem; padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .bg--gradient .inner {
    padding-left: 3rem; padding-right: 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  .bg--gradient .inner {
    padding-left: 4rem; padding-right: 4rem;
  }
}
@media only screen and (min-width: 1480px) {
  .bg--gradient .inner {
    padding-left: 5rem; padding-right: 5rem;
  }
}


/* Aspect ratio (for iframes) */
[class*="aspect-ratio-"] {
  position: relative;
}
[class*="aspect-ratio-"] * {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
}
.aspect-ratio-45 { padding-bottom: 45%; }
.aspect-ratio-56 { padding-bottom: 56.3%; }


/* Shared nav */
.secondary-nav-wrapper {
  z-index: 1;
  position: relative;
}
.secondary-nav-wrapper .inner { padding: 0; }
.secondary-nav {
  padding: 1.5rem 2rem;
}
.secondary-nav {
  position: relative;
  z-index: 1;
}
.secondary-nav.active .nav-content { max-height:  100vh; }
.secondary-nav.active .toggler { transform: rotate(180deg) }
.secondary-nav .select { margin-top: 2rem;}
.secondary-nav select {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: 'OpenSans-SemiBold', sans-serif;
  margin-bottom: 0;
  padding: 1rem;
}
[lang="ko"] .secondary-nav select {
  font-family: 'NotoSans-Bold', sans-serif;
}
.secondary-nav select option { color: #0C0C12 }
.secondary-nav .select:after { content: url('../../images/icons/arrow-down-blue.svg'); top: 1.2rem;}
.btn--tertiary.external:after { content: url('../../images/icons/external-light.svg'); opacity: 0.5; display: inline-block }
.secondary-nav nav a, 
.secondary-nav nav a:visited:not(.active) { 
  color: white; 
  font-family: 'OpenSans-SemiBold', sans-serif;
  width: fit-content;
}
[lang="ko"] .secondary-nav nav a:visited:not(.active) {
  font-family: 'NotoSans-Bold', sans-serif;
}
.secondary-nav nav a,
.secondary-nav nav div:first-of-type { margin-bottom: 2rem; }
.secondary-nav nav a:hover { opacity: 0.5; color: white; }
.secondary-nav .active,
.secondary-nav a.active :visited { color: #D395E8; border-bottom: solid 6px #D395E8;}
.secondary-nav a:not(.active, .btn--alt)  { border-bottom: solid 6px transparent;}
.secondary-nav nav a:first-of-type:after { top: 0; }

.banner .col:first-of-type {
  margin: -2rem -2rem 0;
}

.careers-edge-image img {
  display: block;
  width: 100%;
  position: relative;
  right: -2rem;
}

section:not(.careers-swiper-single) .careers-swiper figure {
  display: flex;
  margin: 2rem 0;
}

section:not(.careers-swiper-single) .careers-swiper figure img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

section:not(.careers-swiper-single) .careers-swiper blockquote,
#testimonials blockquote {
  margin: 0 0 1.5rem;
}

section:not(.careers-swiper-single) .careers-swiper cite,
#testimonials cite {
  display: block;
  font-style: normal;
}

section:not(.careers-swiper-single) .careers-swiper, .careers-slider-details hr,
#testimonials hr {
  margin: 2rem 0;
}

/* Experiences Slider */
.exp-img {
  object-fit: cover;
  aspect-ratio: 3 /2 ;
  cursor: pointer;
  max-width: 70%;
  width: 70%;
  display: block;
  margin-inline: auto;
  margin-block-start: 20px;
}

.experiences-swiper .exp-img {
  aspect-ratio: 67 / 37.5;
}

/* Active Slide */
.experiences-swiper .swiper-slide-active .exp-img:nth-child(1){
  aspect-ratio: 67 / 45;
}

.experiences-swiper .swiper-slide-active .exp-img:nth-child(2){
  aspect-ratio: 67 / 30;
}

.experiences-swiper .swiper-slide-active .exp-img:nth-child(3){
  aspect-ratio: 67 / 37.5;
}

.experiences-swiper .swiper-slide-active .exp-img:nth-child(4){
  aspect-ratio: 67 / 37.5;
}

/* Prev Slide */
.experiences-swiper .swiper-slide-prev .exp-img:nth-child(1){
  aspect-ratio: 67 / 37.5;
}

.experiences-swiper .swiper-slide-prev .exp-img:nth-child(2){
  aspect-ratio: 67 / 37.5;
}

.experiences-swiper .swiper-slide-prev .exp-img:nth-child(3){
  aspect-ratio: 67 / 45;
}

.experiences-swiper .swiper-slide-prev .exp-img:nth-child(4){
  aspect-ratio: 67 / 30;
}

/* Next Slide */
.experiences-swiper .swiper-slide-next .exp-img:nth-child(1){
  aspect-ratio: 67 / 37.5;
}

.experiences-swiper .swiper-slide-next .exp-img:nth-child(2){
  aspect-ratio: 67 / 37.5;
}

.experiences-swiper .swiper-slide-next .exp-img:nth-child(3){
  aspect-ratio: 67 / 45;
}

.experiences-swiper .swiper-slide-next .exp-img:nth-child(4){
  aspect-ratio: 67 / 30;
}

.experiences-pagination.swiper-pagination {
  bottom: -5rem !important;
}

.gallery-swiper-wrapper {
  overflow: hidden;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  display: flex;
  /* padding: 0; */
  align-items: center;
}

.hide {
  display: none;
}

.modal-content {
  max-height: 90vh;
  overflow: auto;
  overflow-x: hidden;
  background-color: #fefefe;
  margin: 0 auto;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  position: relative;
}

#modalClose, .exp-close {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  right: 1rem;
  top: 1rem;
  font-size: 20px;
}

/* Experiences Modal */
.exp-modal-content {
  background: transparent;
  text-align: center;
  box-shadow: none;
  max-height: 90vh;
  display: flex;
  align-items: center;
}

.exp-swiper .swiper-wrapper {
  align-items: center;
}

.exp-single-img {
  max-width: 100%;
}

.sharing-exp {
  margin-bottom: 4rem;
}

.sharing-exp .swiper-button-next,
.sharing-exp .swiper-button-prev {
  top: 65%;
}

.swiper-button-next, .swiper-button-prev {
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-image: url(/wp-content/themes/kla-wp/assets/images/icons/arrow-white.svg);
  background-size: 8px;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.exp-modal-content .swiper-button-next,
.exp-modal-content .swiper-button-prev {
  background-color: rgba(0,0,0,0.6);
  width: 35px;
  height: 35px;
  background-size: 11px;
}

.exp-modal-content .swiper-button-next {
  right: 0;
}

.exp-modal-content .swiper-button-prev {
  left: 0;
}

.exp-close {
  background: rgba(0,0,0,0.3);
  padding: 7px 9px 4px 9px;
  border-radius: 50%;
}

.exp-close *, #modalClose * {
  pointer-events: none;
}

body.fixed {
  position: fixed !important;
}

.swiper-slide iframe {
  aspect-ratio: 3 / 2;
}

.careers-swiper-single .swiper-pagination {
  left: 0;
  width: 100%;
  bottom: 0;
  margin-bottom: 2rem !important;
}

.careers-swiper-single .swiper-container {
  min-height: 200px;
}


.swiper-pagination {
  bottom: 0 !important;
  top: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.careers-swiper-single img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 2rem;
}

/* Alternate Careers Slider */
.careers-swiper-alt {
  background: white;
  box-shadow: 0 8px 12px rgb(0 0 0 / 15%);
  margin-bottom: 2rem;
}

.careers-swiper-alt .swiper-slide {
  padding: 2rem;
  margin-bottom: 0;
  overflow: hidden;
}

.careers-swiper-alt figure {
  display: block !important;
  margin: 0 !important;
}

.careers-slider-details {
  z-index: 10;
  margin: 0 !important;
}

.careers-slider-employee_full-right,
.careers-slider-employee_full-left,
.careers-slider-employee_portrait-right,
.careers-slider-employee_portrait-left,
.be-part-of-a-team-full  {
  width: 100%;
}

:where(.be-part-of-a-team-full, .careers-slider-employee_full-right, .careers-slider-employee_full-left, .careers-slider-employee_portrait-right, .careers-slider-employee_portrait-left) img{
  display: block;
}

.careers-swiper-alt .swiper-pagination {
  bottom: 5rem !important;
}

/* Our Videos Section */
.video-playlist-wrapper .youtube {
  width: 100%;
  height: 0;
  padding-bottom: 55.9%;
  position: relative;
}

.video-playlist-wrapper .youtube iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
}

.video-playlist {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.video-playlist button {
  padding: 20px 0;
  background: #fff;
  display: flex;
  margin-top: 0;
  text-align: left;
  border-top: 1px solid #DBDBDC;
  outline: none;
  cursor: pointer;
}

.video-playlist button img { margin-right: 2rem; }

.video-playlist button.active {
  display: block;
  order: -1;
  padding-top: 0;
  border-top: none;
}

.video-playlist button.active::before {
  display: block;
  content: 'Now Playing';
  color: #FF6400;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}

.video-playlist button.active img { display: none; }

.video-playlist button.active h3 {
  font-size: 3rem;
  font-family: 'OpenSans-Light', sans-serif;
}

.video-playlist button .video-length { color: #0C0C12; }


.grid {
  display: grid;
}

.g-g-50 {
  grid-gap: 20px 0;
}

.pic-with-words {
  margin-block-start: 3rem;
}

ol {
  margin-left: 3rem;
}

ol li {
  list-style: decimal;
}

.narrow-video {
  width: 80%;
  margin: 0 auto;
}

/* Quote */
.quotes-grey::before {
  content: "";
  background: url(/wp-content/themes/kla-wp/assets/images/icons/quotes-grey.svg) no-repeat center / contain;
  width: 30px;
  height: 25px;
  display: inline-block;
  flex-shrink: 0;
}

#values details summary h3 {
  margin-block: 2rem;
}

#values details summary::-webkit-details-marker {
  display: none;
}

#values details {
  border-bottom: rgba(255,255,255, .4) solid 1px;
  cursor: pointer;
}

#values details:first-of-type {
  border-top: rgba(255,255,255, .4) solid 1px;
}

#values summary::after {
  content: "+";
  font-size: 2.6rem;
  line-height: 3.0rem;
  letter-spacing: 0.01rem;
  margin-block: 2rem;
}

#values details[open] summary::after {
  content: "—";
  font-size: 1.46rem;
}

.secondary-nav-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 11;
}

#global-locations option {
  background-color: white;
}

#social ul {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .secondary-nav { padding: 1.5rem; }
  .secondary-nav .select {margin-top: 0; min-width: 18rem; }
  .secondary-nav .select:after { top: 2.2rem; }
  .secondary-nav select { margin-block: 10px; }
  .secondary-nav nav a { padding-block: 2rem;}
  .secondary-nav nav a:not(:first-of-type) { margin-left: 2rem; }
  .secondary-nav nav a,
  .secondary-nav nav div:first-of-type { margin-bottom: 0; }
  .secondary-nav nav { margin: 0; margin-right: auto; align-items: center; }
  .secondary-nav .btn { flex-basis: auto; margin: 0 0 0 2rem; white-space: nowrap }
  .careers-home-banner {
    background-image: url('/images/2022/careers/career-main.png');
    height: 50rem;
    background-position: center;
    margin-bottom: 0;
  }

  .careers-home-banner .inner > *:not(a) {
    width: 50%;
  }

  .careers-home-banner a + a {
    margin-inline-start: 1rem;
  }
  .banner .col:first-of-type {
    margin: -3rem -3rem -3.8rem;
  }
  .banner .col:first-of-type img {
    height: 100%;
    max-width: initial;
    position: absolute;
    /*left: calc(40vw - 50rem);*/
  }
  .careers-edge-image img {
    right: -5.2rem;
  }

  #values summary::after {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  #values details[open] summary::after {
    font-size: 1.6rem;
  }

  .g-c-2 {
    grid-template-columns: 1fr 1fr;
  }

  .g-r-2 {
    grid-template-rows: 1fr 1fr;
  }

  .pic-with-words {
    margin-block-start: 0;
    margin-inline-start: 3rem;
  }

  #modalClose {
    right: 2rem;
    top: 2rem;
   }

  .modal-content {
    width: 690px;
  }

  .exp-swiper {
    margin: 0 50px;
  }

  .sharing-exp {
    margin-bottom: 1rem;
  }

  .strong-img.full-width-img {
    background-color: #000;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .careers-swiper-single .swiper-pagination {
    margin-bottom: 3rem !important;
  }

  /* Alternate Careers Slider */
  .careers-swiper-alt {
    height: 650px;
    margin-bottom: 1rem;
  }

  .careers-swiper-alt .swiper-slide {
    padding: 3rem;
  }

  .careers-swiper-alt .banner .col.col-t-1-2 {
    max-width: calc( (100% / 2 ) - 3rem);
  }

  .be-part-of-a-team-full {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
  }

  .careers-slider-employee_full-right,
  .careers-slider-employee_portrait-right  {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    align-items: flex-end;
  }

  .careers-slider-employee_full-left,
  .careers-slider-employee_portrait-left {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: flex-end;
  }

  .be-part-of-a-team-full img {
    margin-right: auto;
    height: 100%;
  }

  .careers-slider-employee_full-right img {
    margin-left: -15rem;
    margin-right: auto;
    height: 100%;
  }

  .careers-slider-employee_full-left img {
    margin-left: -15rem;
    margin-right: auto;
    height: 100%;
  }

  .careers-slider-employee_portrait-right img {
    margin-left: auto;
    height: 80%;
  }

  .careers-slider-employee_portrait-left img {
    height: 80%;
  }

  /* Experiences Slider */
  .experiences-swiper .flex {
    max-height: 550px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
  }

  .experiences-swiper {
    width: 80%;
    max-width: 95.8rem;
    overflow: visible;
    margin-block-end: 8rem;
  }

  .experiences-swiper .swiper-slide-prev {
    position: relative;
    right: 50px;
    opacity: .5;
  }

  .experiences-swiper .swiper-slide-next {
    position: relative;
    left: 50px;
    opacity: .5;
  }

  .exp-img {
    max-width: calc(50% - 25px);
    width: calc(50% - 25px);
    margin-block-start: 0;
    margin-inline: 0;
  }
}


@media only screen and (min-width: 1024px) {
  .secondary-nav { padding: 0 4rem; }
  .secondary-nav .select { min-width: 22rem; }
  .banner .col:first-of-type {
    margin: -4rem -4rem -4.8rem;
  }

  .secondary-nav nav a:not(:first-of-type) {
    margin-left: 3rem;
  }

  section:not(.careers-swiper-single) .careers-swiper figure {
    margin: 3rem 0;
  }

  .careers-home-banner {
    height: auto;
    background-size: auto;
    min-height: 554px;
    margin-block-start: 4rem;
  }
  .careers-home-banner h1 + .btn {
    margin-top: 0;
  }

  .careers-home-banner .inner, .sharing-exp .inner {
    padding: 8rem 4rem;
  }

  .careers-home-banner .inner > *:not(a) {
    width: 50%;
  }

  .careers-swiper figure img,
  .careers-swiper-single img {
    width: 80px;
    height: 80px;
  }
  .modal-content {
    width: 850px;
  }

  .experiences-swiper .flex {
    max-height: 740px;
  }

  .exp-modal-content {
    width: 958px;
    overflow: hidden;
  }

  .exp-swiper {
    margin: 0 60px;
  }

  .exp-close {
    right: 3rem;
  }

  .sharing-exp {
    margin-bottom: 3rem;
  }
  .careers-swiper-single .swiper-pagination {
    margin-bottom: 4rem !important;
  }

  .careers-slider-employee_full-right,
  .careers-slider-employee_full-left {
    width: 45%;
  }

  /* Alternate Careers Slider */
  .careers-swiper-alt {
    height: 550px;
    margin-bottom: 0;
  }

  .careers-swiper-alt .swiper-slide {
    padding: 4rem;
  }

  .be-part-of-a-team-full img {
    margin-left: auto;
    margin-right: 0;
  }

  .careers-slider-employee_portrait-right img {
    margin-left: auto;
    margin-right: 0;
  }

  .careers-slider-employee_portrait-left img {
    margin-right: 0;
  }

  /* Video Playlist */
  .video-playlist-wrapper {
    display: flex;
  }

  .video-playlist {
    margin-top: 0;
    overflow: auto;
    max-height: 390px;
  }
}


@media only screen and (min-width: 1480px) {
  .col-hd-1-4 {
    max-width: calc(25% - 2.5rem);
    flex-basis: calc(25% - 2.5rem);
  }
  .col-hd-3-4 {
    max-width: calc(75% - 2.5rem);
    flex-basis: calc(75% - 2.5rem);
  }

  .col-hd-4-5 {
    flex-basis: calc((400% / 5) - 5rem); 
    max-width: calc((400% / 5) - 5rem);
  }

  .col-hd-1-5 {
    justify-content: flex-end; 
    flex-basis: calc((100% / 4) - 5rem); 
    max-width: calc((100% / 5) - 3rem);
  }

  .secondary-nav { padding-inline: 5rem;}
  .secondary-nav .select { min-width: 30rem; }
  .secondary-nav .select::after { top: 2.8rem; }
  .secondary-nav select { padding: 1.5rem 2rem; margin-block: 10px; }

  .careers-home-banner {
    margin-block-start: 5rem;
  }

  .banner .col:first-of-type {
    margin: -5rem -5rem -5.8rem;
  }
  .banner .col:first-of-type img {
    left: 0;
  }
  .careers-edge-image img {
    right: -6.2rem;
  }

  #values summary::after {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  #values details[open] summary::after {
    font-size: 1.7rem;
  }

  #values .bg--gradient .inner {
    padding-block-end: 4rem;
  }

  section:not(.careers-swiper-single) .careers-swiper figure {
    margin: 4rem 0;
  }
  section:not(.careers-swiper-single) .careers-swiper figure img {
    width: 100px;
    height: 100px;
  }
  .modal-content {
    width: 1130px;
  }
  #modalClose {
    right: 5rem;
    top: 5rem;
  }

  .exp-single-img {
    max-height: 800px;
  }

  .experiences-swiper {
    width: 139rem;
    max-width: 139rem;
    margin-block-end: 10rem;
  }

  .exp-modal-content {
    width: 1390px;
  }

  .experiences-swiper .flex {
    max-height: 1000px;
  }

  .exp-swiper {
    margin: 0 184px;
  }

  .exp-close {
    right: 12rem;
  }

  .exp-modal-content .swiper-button-next,
  .exp-modal-content .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-size: 16px;
  }

  .careers-swiper-alt {
    height: 500px;
  }

  .careers-swiper-single img {
    width: 120px;
    height: 120px;
    margin-right: 3rem;
  }

  .careers-swiper-single .swiper-pagination {
    margin-bottom: 5rem !important;
  }

  /* Alternate Careers Slider */
  .careers-swiper-alt .swiper-slide {
    padding: 5rem;
  }

  .careers-slider-employee_full-left img {
    margin-left: auto;
  }

  .careers-slider-employee_portrait-right img,
  .careers-slider-employee_portrait-left img {
    height: 100%;
  }

  /* Video Playlist */
  .video-playlist {
    max-height: 464px;
  }

  .greater-good-img {
    margin-top: -2rem;
  }

  #testimonials .careers-slider-employee_full-right img {
    margin-left: 0;
  }

  #social ul {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1479px) {
  .video-playlist-wrapper .col-d-2-3 { max-width: 500px; }
  .video-playlist-wrapper .col-d-1-3 { max-width: 338px; }
  #global-locations {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  #careers-subnav-toggle + label + div {
    align-items: stretch;
  }
  .secondary-nav .btn { text-align: center; }
  #careers-subnav-toggle:not(:checked) + label + div {
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  #careers-subnav-toggle:checked + label svg {
    transform: rotate(0.5turn);
    transform-origin: center;
  }

  .secondary-nav-wrapper {
    margin-block: 0;
  }

  .secondary-nav-wrapper.bg--gradient {
    padding: 0;
  }

  #global {
    margin-block-start: 0;
  }

  .sharing-exp {
    padding: 2rem;
  }

  .experiences-swiper {
    width: 285px;
  }

  .talent-swiper h2 {
    margin-bottom: 4rem;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: auto;
    /* top: 395px; */
  }

  /* Alternate Careers Slider */
  .careers-swiper-alt .banner > .flex,
  #testimonials > .inner > .card > .flex {
    flex-direction: column-reverse;
  }

  .be-part-of-a-team-full img {
    height: 300px;
  }

  :where(.careers-slider-employee_full-right, .careers-slider-employee_portrait-right) img {
    height: 300px;
    margin: -2rem -2rem 2rem auto;
  }

  :where(.careers-slider-employee_full-left, .careers-slider-employee_portrait-left) img {
    height: 300px;
    margin: -2rem auto 2rem -2rem;
  }

  .careers-swiper-alt .swiper-pagination {
    top: 260px !important;
  }
}

@media only screen and (max-width: 767px) {
  #careers-subnav-toggle:not(:checked) + label #subnav-mobile-current {
    color: white;
    display: block;
    font-family: 'OpenSans-SemiBold', sans-serif;
  }
  #careers-subnav-toggle:checked + label #subnav-mobile-current {
    display: none;
  }
  #careers-subnav-toggle:not(:checked) + label {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
