.page-root {
  color-scheme: light;
  --sorbo-orange: #ee7700;
  --sorbo-dark: #2c2c2c;
  --sorbo-muted: #999;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-page-duration: 0.52s;
  --motion-soft-duration: 0.68s;
  --motion-media-duration: 0.8s;
  --motion-interaction-fast: 0.18s;
  --motion-interaction: 0.28s;
  --motion-interaction-slow: 0.45s;
  --motion-reveal-distance: 18px;
  --motion-shadow-hover: 0 12px 28px rgba(56, 45, 36, 0.14);
}

html:has(.page-root) {
  scroll-behavior: smooth;
}

.page-root[data-motion-page].is-motion-loaded {
  animation: pageFadeIn var(--motion-page-duration) var(--motion-ease) both;
}

.page-root .motion-page-fade {
  animation: pageFadeIn var(--motion-page-duration) var(--motion-ease) both;
}

.page-root .motion-soft-reveal {
  animation: softReveal var(--motion-soft-duration) var(--motion-ease) both;
}

.page-root .motion-media-reveal {
  animation: mediaReveal var(--motion-media-duration) var(--motion-ease) both;
}

.page-root .motion-interactive {
  transition: color var(--motion-interaction) var(--motion-ease),
    background-color var(--motion-interaction) var(--motion-ease),
    border-color var(--motion-interaction) var(--motion-ease),
    box-shadow var(--motion-interaction) var(--motion-ease),
    opacity var(--motion-interaction) var(--motion-ease),
    transform var(--motion-interaction) var(--motion-ease);
}

.page-root .motion-hover-lift:focus-visible {
  transform: translateY(-3px);
}

.page-root .motion-focus-ring:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

html.motion-js .page-root [data-motion-reveal] {
  opacity: 0;
  transform: translateY(var(--motion-reveal-distance));
  transition: opacity var(--motion-soft-duration) var(--motion-ease) var(--motion-delay, 0ms),
    transform var(--motion-soft-duration) var(--motion-ease) var(--motion-delay, 0ms);
}

html.motion-js .page-root [data-motion-reveal="fade"] {
  transform: none;
}

html.motion-js .page-root [data-motion-reveal="scale"] {
  transform: scale(0.98);
}

html.motion-js .page-root [data-motion-reveal].is-motion-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .page-root .motion-hover-lift:hover {
    transform: translateY(-3px);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes softReveal {
  from {
    filter: blur(8px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes mediaReveal {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-root[data-motion-page].is-motion-loaded {
    animation: none;
  }

  .page-root,
  .page-root *,
  .page-root *::before,
  .page-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.motion-js .page-root [data-motion-reveal] {
    opacity: 1;
    transform: none;
  }
}

@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/junj/assets/fonts/Outfit-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/junj/assets/fonts/Outfit-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/junj/assets/fonts/Outfit-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/junj/assets/fonts/Outfit-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/junj/assets/fonts/Outfit-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

.page-root,
.page-root * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.page-root a,
.page-root a:hover,
.page-root a:focus {
  color: inherit;
  text-decoration: none;
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.page-root a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

body:has(.page-root) {
  font-family: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  background: #f5f1ee;
}

.page-root {
  width: 100%;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 975fr) minmax(0, 945fr);
  width: 100%;
  background: var(--sorbo-dark);
}

.about-hero__panel {
  min-width: 0;
}

.about-hero__content {
  width: auto;
  max-width: 648px;
  margin-inline: max(24px, calc((100vw - 1602px) / 2)) 24px;
  padding-block: 98px 112px;
}

.about-hero__title {
  display: block;
  width: fit-content;
  margin: 0;
  background: linear-gradient(90deg, #ffa41b 0%, #fe3829 100%);
  color: #ff7b20;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero__tagline {
  margin-top: 16px;
  color: #f0f0f2;
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0;
}

.about-hero__nav {
  margin-top: 57px;
  border-top: 1px solid #999;
}

.about-hero__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  border-bottom: 1px solid #999;
  color: var(--sorbo-muted);
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0;
  transition: color var(--motion-interaction) var(--motion-ease);
}

.about-hero__nav-link > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.about-hero__nav-link,
.about-hero__nav-link:link,
.about-hero__nav-link:visited,
.about-hero__nav-link:active {
  color: #999 !important;
}

.about-hero__nav-link.is-active,
.about-hero__nav-link.is-active:link,
.about-hero__nav-link.is-active:visited,
.about-hero__nav-link.is-active:active {
  color: #ee7700 !important;
}

.sorbo-arrow-control {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
  transition: background-color var(--motion-interaction) var(--motion-ease),
    transform var(--motion-interaction) var(--motion-ease);
}

.about-hero__nav-link.is-active .sorbo-arrow-control {
  background: var(--sorbo-orange);
}

.sorbo-arrow-control img {
  display: block;
  width: 78.571429%;
  height: auto;
  transition: transform var(--motion-interaction-fast) var(--motion-ease);
}

.about-hero__media {
  position: relative;
  align-self: start;
  margin: 0;
  aspect-ratio: 945 / 800;
}

.about-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.sorbo-play-control {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(238, 119, 0, 0.94);
  transform: translate(-50%, -50%);
}

.sorbo-play-control.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.sorbo-play-triangle {
  width: 34px;
  height: 42px;
  margin-left: 5px;
  background: #fff;
  clip-path: path("M 4.5 0 C 2 0 0 2 0 4.5 L 0 37.5 C 0 40.5 3.2 42.4 5.7 40.8 L 32 23.6 C 34.7 21.8 34.7 19.2 32 17.4 L 5.7 0.9 C 5.3 0.6 4.9 0.4 4.5 0 Z");
}

.about-intro {
  width: 100%;
  background: #f5f1ee;
  color: #383838;
}

.about-intro__inner {
  width: calc(100% - 48px);
  max-width: 1602px;
  margin-inline: auto;
  padding-block: 157px 90px;
}

.about-intro__title {
  color: #000;
  font-size: 82px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.about-intro__title span {
  color: var(--sorbo-orange);
}

.about-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 922fr) minmax(0, 565fr);
  align-items: start;
  column-gap: 115px;
  margin-top: 70px;
}

.about-intro__media {
  margin: 0;
  padding-top: 1px;
}

.about-intro__media img {
  margin-top: 100px;
  display: block;
  width: 100%;
  height: auto;
}

.about-intro__copy {
  min-width: 0;
  padding-top: 0px;
}

.about-intro__mark {
  display: block;
  width: auto;
  height: auto;
}

.about-intro__mark {
  margin-left: 1px;
}

.about-intro__copy h3 {
  margin-top: 39px;
  margin-left: 2px;
  color: var(--sorbo-orange);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.about-intro__copy p {
  width: calc(100% + 11px);
  max-width: 576px;
  margin-top: 37px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.about-intro__copy p + p {
  margin-top: 28px;
}

.about-stats {
  width: 100%;
  background: #f5f1ee;
  color: #383838;
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  width: calc(100% - 48px);
  max-width: 1602px;
  margin-inline: auto;
  padding-block: 85px 80px;
}

.about-stat {
  aspect-ratio: 121 / 147;
  padding: 50px 19px 0;
  border: 1px solid #d8d6d4;
  border-radius: 20px;
}

.about-stat--featured {
  border-color: #f57900;
  background: #f57900;
  color: #fff;
  box-shadow: 0 14px 30px rgba(56, 45, 36, 0.12);
}

.about-stat__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.about-stat__metric strong {
  font-size: 42px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0;
}

.about-stat__suffix {
  color: var(--sorbo-orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.about-stat__suffix--plus {
  font-size: 36px;
}

.about-stat__suffix--unit {
  color: #fff;
  font-weight: 900;
}

.about-stat p {
  margin-top: 108px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0;
}

.about-service {
  display: grid;
  grid-template-columns: minmax(0, 975fr) minmax(0, 945fr);
  width: 100%;
  padding-block: 83px 129px;
  background: #f5f1ee;
  color: #383838;
}

.about-service__copy {
  width: calc(100% - 48px);
  max-width: 657px;
  margin-inline: auto;
  padding-top: 12px;
}

.about-service__title {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0;
}

.about-service__copy p {
  max-width: 650px;
  margin-top: 23px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.about-service__copy p + p {
  max-width: 640px;
  margin-top: 12px;
}

.about-service__certifications {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin-top: 35px;
  margin-left: 7px;
}

.about-service__media {
  width: 100%;
  max-width: 816px;
  margin: 0;
}

.about-service__media img {
  display: block;
  width: 100%;
  height: auto;
}

.cooperative-brands {
  width: 100%;
  padding-block: 63px 99px;
  background: #f5f1ee;
}

.cooperative-brands__title {
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(90deg, #ff9f55 0%, #ff3b2e 100%);
  color: #ff7040;
  font-size: 82px;
  font-weight: 400;
  line-height: 98px;
  letter-spacing: 0;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cooperative-brands__carousel {
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
}

.cooperative-brands__track {
  width: 100%;
  max-width: 1602px;
  margin-inline: auto;
  overflow: visible;
  cursor: grab;
}

.cooperative-brands__track:active {
  cursor: grabbing;
}

.cooperative-brands__track:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px var(--sorbo-orange);
}

.cooperative-brands__track .swiper-wrapper {
  transition-timing-function: linear !important;
}

.cooperative-brands__column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cooperative-brands__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 121 / 65;
  margin: 0;
  border-radius: 10px;
  background: #fff;
}

.cooperative-brands__card:first-child {
  align-self: flex-start;
  transform: translateX(-25%);
}

.cooperative-brands__card + .cooperative-brands__card {
  margin-top: 20px;
  align-self: flex-end;
  transform: translateX(25%);
}

.cooperative-brands__card img {
  display: block;
  width: auto;
  max-width: calc(100% - 24px);
  height: auto;
  max-height: calc(100% - 16px);
  user-select: none;
}

.about-values {
  width: 100%;
  padding-block: 50px 155px;
  background: #f5f1ee;
  color: #383838;
}

.about-values__inner {
  width: calc(100% - 48px);
  max-width: 1602px;
  margin-inline: auto;
}

.about-values__title {
  color: #000;
  font-size: 82px;
  font-weight: 400;
  line-height: 98px;
  letter-spacing: 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 59px;
}

.about-value {
  width: 100%;
  aspect-ratio: 262 / 81;
  padding: 49px 48px 0;
  border-radius: 20px;
  background: #fff;
}

.about-value--right {
  padding-inline: 58px 48px;
}

.about-value--lower {
  padding-top: 43px;
}

.about-value h3 {
  color: var(--sorbo-orange);
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.about-value p {
  max-width: 638px;
  margin-top: 24px;
  margin-left: 2px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.about-value--lower p {
  margin-top: 22px;
}

.company-history {
  --company-history-gutter: max(24px, calc((100vw - 1600px) / 2));
  position: relative;
  isolation: isolate;
  width: 100%;
  padding-block: 151px 252.015625px;
  overflow: hidden;
  background: var(--sorbo-dark);
  color: #d9d9d9;
}

.company-history__globe {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: block;
  width: 58.28125%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.company-history__heading,
.company-history__track {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 1602px;
  margin-inline: auto;
}

.company-history__heading {
  max-width: 1600px;
}

.company-history__title {
  width: fit-content;
  background: linear-gradient(90deg, #ffa55e 0%, #ff3b2e 100%);
  color: #ff7040;
  font-size: 96px;
  font-weight: 400;
  line-height: 106px;
  letter-spacing: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-history__carousel {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--company-history-gutter));
  margin-top: 92px;
  margin-left: var(--company-history-gutter);
  overflow: hidden;
}

.company-history__carousel::before {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  border-top: 2px dotted rgba(153, 153, 153, 0.28);
  content: "";
}

.company-history__track {
  width: min(1600px, calc(100vw - var(--company-history-gutter) - var(--company-history-gutter)));
  margin-inline: 0;
  overflow: visible;
}

.company-history__track,
.company-history__track .swiper-wrapper,
.company-history__track .swiper-slide {
  height: auto;
}

.company-history__track {
  cursor: grab;
}

.company-history__track:active {
  cursor: grabbing;
}

.company-history__track:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px var(--sorbo-orange);
}

.company-history__card {
  width: 100%;
}

.company-history__year {
  color: var(--sorbo-muted);
  font-size: 36px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: 0;
  transition: color var(--motion-interaction) var(--motion-ease);
}

.company-history__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 17px;
  border-radius: 6px;
  background: #383838;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  transition: background-color var(--motion-interaction) var(--motion-ease),
    color var(--motion-interaction) var(--motion-ease),
    transform var(--motion-interaction) var(--motion-ease);
}

.company-history__body {
  min-width: 0;
}

.company-history__card--media .company-history__body {
  margin-top: 46px;
}

.company-history__card--text .company-history__body {
  margin-top: 60px;
}

.company-history__media {
  width: 100%;
  aspect-ratio: 203 / 68;
  margin: 0;
  overflow: hidden;
}

.company-history__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-history__body h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0;
  transition: color var(--motion-interaction) var(--motion-ease);
}

.company-history__media + h3 {
  margin-top: 24px;
}

.company-history__body p {
  margin-top: 18px;
  color: #d9d9d9;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.company-history__card--text .company-history__body p {
  margin-top: 23px;
}

.company-history__card--media .company-history__body p {
  margin-top: 16px;
}

.company-history__track .swiper-slide-active .company-history__year,
.company-history__track .swiper-slide-active .company-history__body h3 {
  color: var(--sorbo-orange);
}

.company-history__track .swiper-slide-active .company-history__marker {
  background: var(--sorbo-orange);
  color: #383838;
}

.about-display {
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.about-display__showcase {
  position: relative;
  background: #000;
}

.about-display__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.about-display__header {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 1602px;
  margin-inline: auto;
  padding-top: 63px;
}

.about-display__title {
  color: #fff;
  font-size: 96px;
  font-weight: 400;
  line-height: 120px;
  letter-spacing: 0;
}

.about-display__filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 39px 30px;
  margin-top: 33px;
}

.about-display__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--motion-interaction) var(--motion-ease),
    border-color var(--motion-interaction) var(--motion-ease),
    color var(--motion-interaction) var(--motion-ease),
    transform var(--motion-interaction-fast) var(--motion-ease);
}

.about-display__filter.is-active,
.about-display__filter.is-active:hover,
.about-display__filter.is-active:focus,
.about-display__filter.is-active:focus-visible,
.about-display__filter.is-active:active {
  background: #fff !important;
  color: var(--sorbo-orange) !important;
  font-weight: 500;
}

.about-display__filter:focus-visible {
  background: #fff;
  color: var(--sorbo-orange);
  transform: translateY(-2px);
}

.about-display__carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
}

.about-display__track {
  width: 100%;
  overflow: visible;
}

.about-display__track,
.about-display__track .swiper-wrapper,
.about-display__track .swiper-slide {
  height: auto;
}

.about-display__slide {
  width: 100%;
  aspect-ratio: 257 / 165;
  margin: 0;
}

.about-display__slide img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.82;
  transition: opacity var(--motion-interaction-slow) var(--motion-ease);
  user-select: none;
}

.about-display__track .swiper-slide-active .about-display__slide img {
  opacity: 1;
}

.export-strength {
  position: relative;
  background: #000;
}

.export-strength__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 158px;
  width: calc(100% - 48px);
  max-width: 1744px;
  margin-inline: auto;
  padding-block: 109px 104px;
}

.export-strength__media {
  width: 100%;
  aspect-ratio: 793 / 803;
  margin: 0;
}

.export-strength__media img {
  display: block;
  width: 100%;
  height: auto;
}

.export-strength__content {
  min-width: 0;
  padding-top: 128px;
}

.export-strength__title {
  width: fit-content;
  background: linear-gradient(90deg, #ff9400 0%, #ff3b2e 100%);
  color: var(--sorbo-orange);
  font-size: 82px;
  font-weight: 400;
  line-height: 98px;
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.export-strength__summary {
  max-width: 700px;
  margin-top: 26px;
  margin-left: 2px;
  color: var(--sorbo-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.export-strength__stats {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 82px 127px;
  margin-top: 70px;
  margin-left: 5px;
}

.export-strength__stat {
  min-width: 0;
}

.export-strength__metric {
  display: flex;
  align-items: baseline;
  min-height: 98px;
  color: var(--sorbo-orange);
  white-space: nowrap;
}

.export-strength__metric strong {
  align-self: flex-end;
  font-size: 64px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 77px;
  letter-spacing: 0;
}

.export-strength__metric--with-unit {
  min-height: 77px;
}

.export-strength__metric--with-unit strong {
  align-self: baseline;
}

.export-strength__stat--countries .export-strength__metric strong {
  font-size: 82px;
  line-height: 98px;
}

.export-strength__metric span {
  margin-left: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
}

.export-strength__stat p {
  margin-top: 4px;
  color: #fafafa;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  white-space: nowrap;
}

.export-strength__wordmark {
  position: absolute;
  right: 1px;
  bottom: -1px;
  z-index: 0;
  display: block;
  width: 41.09375%;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.about-hero__nav-link:hover,
.about-hero__nav-link:focus-visible {
  color: #ee7700 !important;
}

.about-hero__nav-link:hover .sorbo-arrow-control,
.about-hero__nav-link:focus-visible .sorbo-arrow-control {
  background: var(--sorbo-orange);
}

@media (hover: hover) and (pointer: fine) {
  .about-hero__nav-link:hover .sorbo-arrow-control,
  .about-hero__nav-link:focus-visible .sorbo-arrow-control {
    transform: translateX(2px);
  }

  .about-hero__nav-link:hover .sorbo-arrow-control img,
  .about-hero__nav-link:focus-visible .sorbo-arrow-control img {
    transform: translateX(1px);
  }

  .about-display__filter:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
  }

  .about-display__filter.is-active:hover {
    background: #fff;
  }
}

@media (max-width: 1440px) {
  .about-intro__layout {
    column-gap: 56px;
  }

  .about-stats__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-block: 72px;
  }

  .about-stat {
    aspect-ratio: auto;
    padding: 36px 28px;
  }

  .about-stat p {
    margin-top: 48px;
  }

  .about-service {
    column-gap: 40px;
  }

  .cooperative-brands__title,
  .about-values__title {
    font-size: 64px;
    line-height: 76px;
  }

  .cooperative-brands__card:first-child {
    transform: translateX(-18%);
  }

  .cooperative-brands__card + .cooperative-brands__card {
    transform: translateX(18%);
  }

  .about-values__grid {
    gap: 24px;
  }

  .about-value,
  .about-value--right,
  .about-value--lower {
    aspect-ratio: auto;
    padding: 40px 36px;
  }

  .company-history {
    padding-block: 120px 180px;
  }

  .company-history__title {
    font-size: 72px;
    line-height: 82px;
  }

  .company-history__carousel {
    margin-top: 80px;
  }

  .export-strength__inner {
    column-gap: 64px;
  }

  .export-strength__content {
    padding-top: 72px;
  }

  .export-strength__title {
    font-size: 64px;
    line-height: 76px;
  }

  .export-strength__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
    margin-top: 56px;
  }

  .export-strength__metric {
    min-height: 77px;
  }

  .export-strength__metric strong {
    font-size: 48px;
    line-height: 58px;
  }

  .export-strength__metric--with-unit {
    min-height: 58px;
  }

  .export-strength__stat--countries .export-strength__metric strong {
    font-size: 64px;
    line-height: 77px;
  }

  .export-strength__metric span {
    margin-left: 6px;
    font-size: 16px;
    line-height: 20px;
  }

  .export-strength__stat p {
    white-space: normal;
  }
}

@media (max-width: 1108px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__content {
    max-width: none;
    margin-inline: 24px;
    padding-block: 64px 72px;
  }

  .about-hero__media {
    width: 100%;
  }

  img {
    max-width: 100%;
  }

  .about-intro__inner {
    padding-block: 96px 72px;
  }

  .about-intro__title {
    font-size: 56px;
    line-height: 68px;
  }

  .about-intro__layout {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .about-intro__media,
  .about-intro__copy {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .about-intro__copy {
    padding-top: 48px;
  }

  .about-intro__copy p {
    width: 100%;
    max-width: none;
  }

  .about-stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-block: 64px;
  }

  .about-service {
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding-block: 72px 88px;
  }

  .about-service__copy {
    max-width: 760px;
    padding-top: 0;
  }

  .about-service__media {
    margin-inline: auto;
  }

  .cooperative-brands {
    padding-block: 56px 72px;
  }

  .cooperative-brands__title,
  .about-values__title {
    font-size: 48px;
    line-height: 58px;
  }

  .cooperative-brands__carousel {
    margin-top: 48px;
  }

  .about-values {
    padding-block: 56px 88px;
  }

  .about-values__grid {
    gap: 20px;
    margin-top: 48px;
  }

  .company-history {
    padding-block: 96px 120px;
  }

  .company-history__title {
    font-size: 56px;
    line-height: 67px;
  }

  .company-history__carousel {
    margin-top: 64px;
  }

  .about-display__header {
    padding-top: 48px;
  }

  .about-display__backdrop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .about-display__title {
    font-size: 56px;
    line-height: 68px;
  }

  .about-display__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
  }

  .about-display__filter {
    min-height: 52px;
    font-size: 20px;
    line-height: 26px;
  }

  .about-display__carousel {
    margin-top: 48px;
    background: #000;
  }

  .export-strength__inner {
    grid-template-columns: 1fr;
    row-gap: 48px;
    padding-block: 72px 80px;
  }

  .export-strength__media {
    max-width: 760px;
    margin-inline: auto;
  }

  .export-strength__content {
    padding-top: 0;
  }

  .export-strength__title {
    font-size: 56px;
    line-height: 68px;
  }

  .export-strength__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 32px;
    margin-left: 0;
  }

  .export-strength__wordmark {
    width: 60%;
  }
}

@media (max-width: 852px) {
  .about-hero__content {
    margin-inline: 20px;
    padding-block: 48px 56px;
  }

  .about-hero__title,
  .about-intro__title,
  .cooperative-brands__title,
  .about-values__title,
  .company-history__title,
  .about-display__title,
  .export-strength__title {
    font-size: 20px;
    line-height: 26px;
  }

  .about-hero__tagline {
    margin-top: 14px;
    font-size: 16px;
    line-height: 24px;
  }

  .about-hero__nav {
    margin-top: 36px;
  }

  .about-hero__nav-link {
    gap: 16px;
    min-height: 64px;
    font-size: 16px;
    line-height: 24px;
  }

  .sorbo-arrow-control {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .sorbo-play-control {
    width: 64px;
    height: 64px;
  }

  .about-intro__inner,
  .about-stats__inner,
  .about-values__inner,
  .about-display__header,
  .export-strength__inner {
    width: calc(100% - 40px);
  }

  .about-intro__inner {
    padding-block: 56px;
  }

  .about-intro__layout {
    margin-top: 32px;
  }

  .about-intro__copy {
    padding-top: 32px;
  }

  .about-intro__copy h3 {
    margin-top: 24px;
    font-size: 20px;
    line-height: 26px;
  }

  .about-intro__copy p,
  .about-service__copy p,
  .about-value p,
  .company-history__body p,
  .export-strength__summary,
  .about-stat p,
  .export-strength__stat p {
    font-size: 14px;
    line-height: 22px;
    overflow-wrap: anywhere;
  }

  .about-intro__copy p {
    margin-top: 24px;
  }

  .about-intro__copy p + p {
    margin-top: 20px;
  }

  .about-stats__inner {
    gap: 12px;
    padding-block: 48px;
  }

  .about-stat {
    padding: 24px 16px;
  }

  .about-stat__metric strong {
    font-size: 32px;
  }

  .about-stat__suffix {
    font-size: 16px;
  }

  .about-stat__suffix--plus {
    font-size: 28px;
  }

  .about-stat p {
    margin-top: 32px;
  }

  .about-service {
    row-gap: 32px;
    padding-block: 56px 64px;
  }

  .about-service__copy {
    width: calc(100% - 40px);
  }

  .about-service__title {
    font-size: 20px;
    line-height: 28px;
  }

  .about-service__copy p {
    margin-top: 18px;
  }

  .about-service__copy p + p {
    margin-top: 12px;
  }

  .about-service__certifications {
    margin-top: 24px;
    margin-left: 0;
  }

  .cooperative-brands {
    padding-block: 48px 64px;
  }

  .cooperative-brands__carousel {
    margin-top: 32px;
  }

  .cooperative-brands__card + .cooperative-brands__card {
    margin-top: 12px;
  }

  .about-values {
    padding-block: 48px 64px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .about-value,
  .about-value--right,
  .about-value--lower {
    padding: 24px;
  }

  .about-value h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .about-value p,
  .about-value--lower p {
    margin-top: 16px;
    margin-left: 0;
  }

  .company-history {
    --company-history-gutter: 20px;
    padding-block: 64px 80px;
  }

  .company-history__carousel {
    margin-top: 40px;
  }

  .company-history__carousel::before {
    top: 65px;
  }

  .company-history__track {
    width: calc(100% - var(--company-history-gutter));
  }

  .company-history__year {
    font-size: 24px;
    line-height: 30px;
  }

  .company-history__marker {
    width: 36px;
    height: 36px;
    margin-top: 16px;
    font-size: 16px;
  }

  .company-history__card--media .company-history__body,
  .company-history__card--text .company-history__body {
    margin-top: 36px;
  }

  .company-history__body h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .company-history__media + h3,
  .company-history__body p,
  .company-history__card--text .company-history__body p,
  .company-history__card--media .company-history__body p {
    margin-top: 16px;
  }

  .about-display__header {
    padding-top: 48px;
  }

  .about-display__filters {
    gap: 12px;
    margin-top: 20px;
  }

  .about-display__filter {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .about-display__carousel {
    margin-top: 32px;
  }

  .export-strength__inner {
    row-gap: 32px;
    padding-block: 56px 64px;
  }

  .export-strength__summary {
    margin-top: 16px;
    margin-left: 0;
  }

  .export-strength__stats {
    gap: 32px 16px;
    margin-top: 32px;
  }

  .export-strength__metric {
    min-height: 58px;
  }

  .export-strength__metric strong {
    font-size: 40px;
    line-height: 48px;
  }

  .export-strength__metric--with-unit {
    min-height: 48px;
  }

  .export-strength__stat--countries .export-strength__metric strong {
    font-size: 48px;
    line-height: 58px;
  }

  .export-strength__metric span {
    margin-left: 6px;
    font-size: 16px;
    line-height: 20px;
  }

  .export-strength__stat p {
    white-space: normal;
  }

  .export-strength__wordmark {
    width: 75%;
  }
}

@media (max-width: 575px) {
  .about-hero__content {
    margin-inline: 16px;
    padding-block: 40px 48px;
  }

  .about-hero__nav {
    margin-top: 32px;
  }

  .about-hero__nav-link {
    min-height: 58px;
    font-size: 14px;
    line-height: 20px;
  }

  .about-intro__inner,
  .about-stats__inner,
  .about-values__inner,
  .about-display__header,
  .export-strength__inner,
  .about-service__copy {
    width: calc(100% - 32px);
  }

  .about-stats__inner {
    padding-block: 40px;
  }

  .company-history {
    --company-history-gutter: 16px;
    padding-block: 48px 64px;
  }

  .company-history__carousel {
    margin-top: 32px;
  }

  .shared-video-modal {
    padding: 16px;
  }

  .shared-video-modal__close {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 389px) {
  .about-stats__inner,
  .about-display__filters,
  .export-strength__stats {
    grid-template-columns: 1fr;
  }

  .about-stat p {
    margin-top: 24px;
  }

}

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .cooperative-brands__carousel {
    overflow: visible;
  }

  .cooperative-brands__track {
    overflow: visible;
    cursor: default;
  }

  .cooperative-brands__track .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transform: none !important;
    transition: none !important;
  }

  .cooperative-brands__track .swiper-slide {
    flex: 1 1 180px;
  }

  .about-display__filter:focus-visible {
    transform: none;
  }
}
