@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #0a0a0a;
  color: #f4f4f4;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 0 5%;
}

.site-header__burger {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 40px;
  height: 40px;
  margin-left: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  appearance: none;
  outline: 0;
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.site-header__logo {
  text-align: center;
  max-height: 76px;
}
.site-header__logo img {
  max-height: 76px;
}

.site-header__lang-select-wrap {
  position: relative;
  justify-self: end;
  margin-right: 12px;
}
.site-header__lang-select-wrap::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #D9D9D9;
  pointer-events: none;
}

.site-header__lang-select {
  min-width: 72px;
  height: 34px;
  padding: 0 28px 0 12px;
  color: #fff;
  font: inherit;
  line-height: 1;
  background: transparent;
  border: 1px solid #D9D9D9;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
}
.site-header__lang-select:hover {
  background: rgba(255, 255, 255, 0.08);
}
.site-header__lang-select:focus-visible {
  outline: 0px;
  outline-offset: 0px;
}
.site-header__lang-select option {
  color: #FFF;
  background: rgba(0, 0, 0, 0.45);
}

.site-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.site-nav__overlay[hidden] {
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  width: min(92vw, 420px);
  height: 100vh;
  padding: 96px 5% 40px;
  background: rgba(0, 0, 0, 0.93);
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease;
  overflow-y: auto;
}
.site-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 6px 0;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: #d9d9d9;
}

.site-nav__close {
  align-self: flex-end;
  margin-bottom: 24px;
  padding: 8px 0;
  color: #fff;
  font: inherit;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.is-nav-open .site-nav__overlay {
  opacity: 1;
  pointer-events: auto;
}
.is-nav-open .site-nav {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.is-nav-open .site-header__burger-line {
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.is-nav-open .site-header__burger-line:first-child {
  transform: translateY(5px) rotate(45deg);
}
.is-nav-open .site-header__burger-line:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 768px) {
  .site-nav {
    width: min(44vw, 500px);
    padding-top: 110px;
  }
}
@media (max-width: 768px) {
  .site-header__logo {
    display: flex;
    padding: 0.5rem 0;
  }
  .site-header__logo img {
    max-width: 185px;
  }
}
.site-footer {
  --footer-overlay: rgba(15, 15, 15, 0.9);
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem) 1rem;
  color: #fff;
  background-color: #0f0f0f;
  isolation: isolate;
}
.site-footer::before, .site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.site-footer::before {
  background: var(--footer-bg-image) center/cover no-repeat;
  z-index: -2;
}
.site-footer::after {
  background: var(--footer-overlay);
  z-index: -1;
}

.site-footer__container {
  width: min(1440px, 90%);
  margin: 0 auto;
}

.site-footer__row {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2.8vw, 2rem) 0;
}
.site-footer__row + .site-footer__row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__row--top,
.site-footer__row--middle,
.site-footer__row--bottom {
  grid-template-columns: 1fr;
}

.site-footer__row--top {
  padding-bottom: 5rem;
}

.site-footer__headline {
  margin: 0;
  line-height: 0.95;
}

.site-footer__headline-light,
.site-footer__headline-strong,
.site-footer__headline-hight-strong {
  display: block;
}

.site-footer__headline-light {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 100;
  letter-spacing: 0.01em;
  padding-left: 40px;
}

.site-footer__headline-strong {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 500;
}

.site-footer__headline-hight-strong {
  font-size: clamp(56px, 5vw, 90px);
  font-weight: 800;
  padding-left: 130px;
}

.site-footer__headline-wrap {
  position: relative;
}

.site-footer__orb {
  width: clamp(4rem, 9vw, 5.7rem);
  aspect-ratio: 1;
  border-radius: 50%;
  margin-top: 1.4rem;
  background: linear-gradient(145deg, #4200ff 12%, #32dbf8 85%);
  box-shadow: 0 0 24px rgba(78, 102, 255, 0.32);
}

.site-footer__intro {
  position: relative;
  margin: 0;
  width: 80%;
  font-size: clamp(1.15rem, 1.5vw, 20px);
  line-height: 1.6;
  text-transform: capitalize;
  padding-bottom: 10%;
}

.site-footer__intro-dash {
  position: absolute;
  top: 16px;
  left: -60px;
  display: inline-block;
  width: 40px;
  height: 2px;
  margin-right: 0.75rem;
  margin-bottom: 0.3rem;
  background-color: rgba(255, 255, 255, 0.85);
  vertical-align: middle;
}

.site-footer__brand {
  text-align: center;
}
.site-footer__brand img {
  width: 100%;
  max-width: 400px;
}

.site-footer__details {
  text-align: center;
  font-size: clamp(0.95rem, 1.4vw, 20px);
  line-height: 1.6;
}
.site-footer__details p {
  margin: 0;
}

.site-footer__email {
  display: inline-block;
  margin-top: 0.75rem;
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-align: center;
  opacity: 0.92;
}

.site-footer__social {
  display: flex;
  justify-content: center;
}

.social-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.social-links__link {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(41, 41, 41, 0.86);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.social-links__link svg {
  width: 0.85rem;
  height: 0.85rem;
}
.social-links__link:hover {
  transform: translateY(-1px);
  background: rgba(68, 68, 68, 0.9);
}
.social-links__link:focus-visible {
  outline: 2px solid rgba(75, 210, 255, 0.95);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.6rem, 5vw, 3rem);
  }
  .site-footer__row--top,
  .site-footer__row--middle,
  .site-footer__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    column-gap: clamp(2rem, 6vw, 6rem);
  }
  .site-footer__headline-wrap {
    max-width: 500px;
  }
  .site-footer__orb {
    position: absolute;
    left: 110%;
    top: 60%;
    margin-top: 0;
  }
  .site-footer__intro {
    margin-left: 60px;
    justify-self: end;
  }
  .site-footer__brand,
  .site-footer__details,
  .site-footer__legal {
    text-align: left;
  }
  .site-footer__details {
    justify-self: end;
    max-width: 320px;
  }
  .site-footer__social {
    justify-content: flex-end;
  }
  .social-links {
    gap: 0.7rem;
  }
  .social-links__link {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  .site-footer__intro {
    margin-left: 60px;
  }
  .site-footer__orb {
    display: flex;
  }
  .site-footer__headline-light {
    padding-left: 20px;
  }
  .site-footer__headline-hight-strong {
    padding-left: 80px;
  }
  .site-footer__row--top {
    padding-bottom: 3rem;
  }
  .site-footer__intro {
    font-size: 1rem;
  }
}
.embla {
  overflow: hidden;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
}

.embla__slide {
  min-width: 100%;
}

.btn {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #fff;
  border-radius: 15px;
  text-decoration: none;
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.home-hero .embla__viewport {
  overflow: hidden;
  height: 100%;
}
.home-hero .embla__container {
  display: flex;
  height: 100%;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide__bg img,
.hero-slide__bg iframe,
.hero-slide__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  border: 0;
  transform: translateY(-8%);
}

.hero-slide__content {
  position: absolute;
  z-index: 3;
  left: 10vw;
  bottom: 8vh;
  width: 40vw;
  max-width: 520px;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-slide__provider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: auto;
}

.hero-slide__provider img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 40px;
}

.hero-slide__title {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
}

.hero-slide__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.hero-slide__content .btn {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-slide__awards {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 6vw, 96px);
  bottom: clamp(24px, 5vw, 72px);
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-slide__awards img {
  width: auto;
  height: 140px;
  opacity: 0.9;
}

.home-hero__bullets {
  position: absolute;
  z-index: 3;
  left: 5vw;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-hero__bullet {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 0.6;
  cursor: pointer;
}
.home-hero__bullet.is-active {
  background: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .home-hero {
    height: auto;
    aspect-ratio: 16/9;
  }
  .hero-slide {
    height: auto;
    aspect-ratio: 16/9;
  }
  .hero-slide__desc {
    display: none;
  }
  .hero-slide .btn {
    width: fit-content;
  }
  .hero-slide__content {
    flex-direction: column;
    left: 60px;
    right: 24px;
    width: auto;
    bottom: 20px;
  }
  .home-hero__bullets {
    left: 5vw;
  }
  .hero-slide__awards {
    right: 24px;
    bottom: 24px;
    gap: 10px;
  }
  .hero-slide__awards img {
    height: 32px;
  }
  .hero-slide__provider img {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 24px;
  }
}
.home-text-art {
  background: #fff;
  color: #101014;
  padding: clamp(1.25rem, 4vw, 2.5rem) 0;
}
.home-text-art__inner {
  width: 80%;
  margin: 0 auto;
}
.home-text-art__row--label h2 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.9rem 0 0.9rem 60px;
}
.home-text-art__row--label h2::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 50px;
  height: 2px;
  background-color: #0F0F0F;
  z-index: 2;
}
.home-text-art__row--headline {
  border-bottom: 1px solid #c7c7c7;
  padding-top: 0.9rem;
  padding-bottom: 3rem;
}
.home-text-art__row--headline h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 70px);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.15;
  max-width: 50%;
}
.home-text-art__row--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
  padding-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #c7c7c7;
}
.home-text-art__row--split h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 6.4vw, 100px);
  line-height: 1.3;
  letter-spacing: -4%;
  color: #0F0F0F;
  font-weight: 800;
}
.home-text-art__row--split h3 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 6.4vw, 100px);
}
.home-text-art__row--split p {
  margin: 0;
  color: #4f4f53;
  font-size: clamp(1.1rem, 1.9vw, 20px);
  line-height: 1.35;
  width: 70%;
}

@media (max-width: 768px) {
  .home-text-art__inner {
    width: 90%;
  }
  .home-text-art__row--label h2 {
    font-size: 14px;
  }
  .home-text-art__row--headline {
    padding-bottom: 2rem;
  }
  .home-text-art__row--headline h3 {
    font-size: 32px;
    max-width: 100%;
  }
  .home-text-art__row--split {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }
  .home-text-art__row--split h2 {
    font-size: 40px;
  }
  .home-text-art__row--split h3 {
    font-size: 40px;
    text-align: end;
  }
  .home-text-art__row--split p {
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
  .home-text-art__row--reverse-mobile p {
    text-align: end;
  }
  .home-text-art__row--reverse-mobile .home-text-art__col:first-child {
    order: 2;
  }
  .home-text-art__row--reverse-mobile .home-text-art__col:last-child {
    order: 1;
  }
}
.home-brands {
  --brands-cols: 6;
  --brands-border-color: #bdbdbd;
  --brands-border-width: 1px;
  background: #ffffff;
  color: #101014;
  overflow: hidden;
}
.home-brands__rows {
  padding-bottom: 5rem;
}

.home-brands__header {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 530px);
  align-items: start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2.5rem) 0;
}
.home-brands__header p {
  margin: 0;
  text-align: right;
  color: #2a2a2e;
  font-size: clamp(1.1rem, 1.9vw, 20px);
  line-height: 1.35;
}

.home-brands__title-wrap h2 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.9rem 0 0.9rem 60px;
}
.home-brands__title-wrap h2::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 50px;
  height: 2px;
  background-color: #0f0f0f;
  z-index: 2;
}

.brands-row {
  overflow: hidden;
  width: 100%;
}
.brands-row:last-child {
  border-bottom: var(--brands-border-width) solid var(--brands-border-color);
}

.brands-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  border-top: var(--brands-border-width) solid var(--brands-border-color);
  animation: brands-marquee 35s linear infinite;
  will-change: transform;
}

.brands-row.is-reverse .brands-track {
  animation-direction: reverse;
}

.brands-item {
  box-sizing: border-box;
  flex: 0 0 calc(100vw / var(--brands-cols));
  width: calc(100vw / var(--brands-cols));
  aspect-ratio: 1/1;
  padding: 2rem;
  border-right: var(--brands-border-width) solid var(--brands-border-color);
}
.brands-item a,
.brands-item span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.5rem);
}
.brands-item img {
  width: 100%;
  max-width: 150px;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  display: block;
}

.brands-item:first-child {
  border-left: var(--brands-border-width) solid var(--brands-border-color);
}

@keyframes brands-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .home-brands {
    --brands-cols: 3;
  }
  .home-brands__title-wrap h2 {
    font-size: 14px;
  }
  .home-brands__header {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
  .home-brands__header p {
    width: 80%;
    text-align: end;
    font-size: 1rem;
    line-height: 1.15;
    justify-self: end;
  }
  .brands-track {
    animation-duration: 26s;
  }
}
.videos-archive {
  background: #0b0b0d;
  color: #fff;
}

.videos-archive__header {
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
}

.videos-archive__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.videos-archive__grid {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0px;
}

.video-card--archive {
  overflow: hidden;
  position: relative;
  background: #121215;
}

.video-card--archive .video-card__link {
  display: grid;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.video-card--archive .video-card__media,
.video-card--archive .video-card__media img {
  width: 100%;
  height: 100%;
}

.video-card--archive .video-card__media {
  position: absolute;
  inset: 0;
}

.video-card--archive .video-card__media img {
  object-fit: cover;
}

.video-card--archive .video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.88) 10%, rgba(8, 8, 10, 0.45) 55%, rgba(8, 8, 10, 0.3) 100%);
}

.video-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  background: #1d1f25;
  color: #c5c7ce;
}

.video-card--archive .video-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 0.85rem;
  padding: clamp(1rem, 3vw, 2rem);
  max-width: 620px;
}

.video-card--archive .video-card__logo img {
  max-height: 58px;
  width: auto;
}

.video-card__title {
  margin: 0;
}

.video-card--archive .video-card__title {
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
}

.video-card__desc,
.video-card__meta {
  margin: 0;
}

.video-card--archive .video-card__desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 50ch;
}

.video-card--archive .video-card__meta {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.video-card__awards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.video-card__awards img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.video-card__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.video-card__link:focus-visible .video-card__cta,
.video-card__link:hover .video-card__cta {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.video-card__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.videos-archive__pagination {
  max-width: 1200px;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

.videos-archive__empty {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 782px) {
  .video-card--archive {
    height: auto;
  }
  .video-card--archive .video-card__overlay {
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.3) 15%, rgba(8, 8, 10, 0.85) 100%);
  }
  .video-card--archive .video-card__content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  body.post-type-archive-axon_video .videos-archive__grid .video-card .hero-slide__bg--video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    inset: auto;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card .hero-slide__bg--video iframe,
  body.post-type-archive-axon_video .videos-archive__grid .video-card .hero-slide__bg--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card .hero-slide__desc {
    display: none;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card .hero-slide__provider {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card:nth-child(odd) .hero-slide__provider {
    justify-content: flex-end;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card:nth-child(even) .hero-slide__provider {
    justify-content: flex-start;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card:nth-child(odd) .btn {
    align-self: flex-end;
    width: fit-content;
  }
  body.post-type-archive-axon_video .videos-archive__grid .video-card:nth-child(even) .btn {
    width: fit-content;
  }
}
.single-video {
  background: #fff;
  color: #0F0F0F;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.single-video__player {
  width: 100%;
}

.single-video__player-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}
.single-video__player-frame iframe,
.single-video__player-frame video {
  width: 100%;
  height: auto;
  border: 0;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.single-video__info,
.single-video__related {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.single-video__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.single-video__info-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-video__info-main img {
  width: fit-content;
  max-height: 100px;
  height: 100px;
}

.single-video__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.single-video__info-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: flex-end;
}

.single-video__awards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.single-video__awards img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.single-video__content {
  padding-top: 15%;
  padding-left: 30%;
}
.single-video__content > *:first-child {
  margin-top: 0;
}
.single-video__content > *:last-child {
  margin-bottom: 0;
}

.single-video__related-title {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.single-video__related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10%;
}

.single-video__related-grid--one {
  grid-template-columns: minmax(0, 50%);
  justify-content: center;
}

.video-card--single-related {
  min-height: auto;
  height: auto;
}
.video-card--single-related .hero-slide__bg {
  position: relative;
  inset: auto;
  aspect-ratio: 4/3;
}
.video-card--single-related .hero-slide__bg iframe,
.video-card--single-related .hero-slide__bg video,
.video-card--single-related .hero-slide__bg img {
  transform: translateX(-14%);
  width: auto;
  height: 100%;
  object-fit: cover;
}
.video-card--single-related .hero-slide__content {
  left: 16px;
  right: 16px;
  bottom: 14px;
  width: auto;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-card--single-related .hero-slide__provider {
  gap: 10px;
}
.video-card--single-related .hero-slide__provider img {
  display: none;
}
.video-card--single-related .hero-slide__title {
  display: none;
}
.video-card--single-related .hero-slide__desc {
  max-width: 35ch;
  font-size: 14px;
  text-align: center;
  margin-inline: auto;
}
.video-card--single-related .btn {
  align-self: center;
  margin-inline: auto;
}
.video-card--single-related .hero-slide__awards {
  display: none;
}

@media (max-width: 768px) {
  .single-video {
    gap: 16px;
    padding-bottom: 24px;
  }
  .single-video__info,
  .single-video__related {
    width: calc(100% - 16px);
  }
  .single-video__info {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .single-video__info-side {
    flex-direction: column-reverse;
  }
  .single-video__related-grid,
  .single-video__related-grid--one {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }
  .video-card--single-related {
    aspect-ratio: 4/3;
  }
  .video-card--single-related .hero-slide__desc {
    display: block;
    text-align: center;
  }
  .video-card--single-related .hero-slide__provider {
    display: none;
  }
  .single-video__player-frame {
    height: auto;
    aspect-ratio: 16/9;
  }
  .single-video__content {
    padding-top: 0;
    padding-left: 20%;
  }
}
.about-page {
  background: #fff;
}
.about-page__row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about-page__row--label h2 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.9rem 0 0.9rem 60px;
}
.about-page__row--label h2::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 50px;
  height: 2px;
  background-color: #0F0F0F;
  z-index: 2;
}

.about-page__hero {
  width: 100%;
  background: #000;
}

.about-page__hero-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about-page__hero-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  border: 0;
  aspect-ratio: 16/9;
  transform: translateY(-9%);
}

.about-page__content {
  background: #000;
  color: #fff;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.about-page__content-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10vh;
}
.about-page__content-inner > *:first-child {
  margin-top: 0;
}
.about-page__content-inner > *:last-child {
  margin-bottom: 0;
}
.about-page__content-inner .wp-block-columns {
  align-items: flex-start;
}
.about-page__content-inner p,
.about-page__content-inner li {
  color: inherit;
}

.about-page__numbers {
  color: #0F0F0F;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.about-page__numbers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6rem;
}

.about-page__kpi-item {
  position: relative;
  text-align: end;
  color: #3567af;
  padding: 1.25rem 1rem;
}
.about-page__kpi-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3rem;
  width: 1px;
  height: 100%;
  background-color: #d8d8d8;
}

.about-page__kpi-prefix,
.about-page__kpi-value,
.about-page__kpi-label {
  margin: 0;
  line-height: 1;
}

.about-page__kpi-prefix {
  font-weight: 200;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0%;
}

.about-page__kpi-value {
  font-weight: 900;
  font-style: Black;
  font-size: 128px;
  line-height: 120px;
  letter-spacing: 0%;
}

.about-page__kpi-label {
  margin-top: 0.35rem;
  font-weight: 200;
  font-size: 64px;
  line-height: 60px;
  letter-spacing: 0%;
}

@media (max-width: 768px) {
  .about-page__numbers-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-page__numbers {
    padding: 5rem 1rem;
    gap: 2;
  }
  .about-page__hero-frame {
    height: auto;
    aspect-ratio: 16/9;
  }
  .about-page__kpi-item {
    padding: 1.75rem 1rem;
  }
  .about-page__kpi-item:not(:last-child)::after {
    top: calc(100% + 2rem);
    right: 0;
    width: 100%;
    height: 1px;
  }
  .about-page__content-inner {
    gap: 2rem;
  }
  .about-page__content {
    padding: 5rem 1rem;
  }
  .about-page__content p {
    text-align: center;
  }
  .about-page__kpi-prefix {
    font-size: 40px;
    line-height: 40px;
  }
  .about-page__kpi-value {
    font-size: 100px;
    line-height: 100px;
  }
  .about-page__kpi-label {
    font-size: 40px;
    line-height: 40px;
  }
}
.axon-cultural-page {
  background: #fff;
  color: #111;
}

.axon-cultural-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 5rem 1.5rem;
  background: #000;
  overflow: hidden;
}

.axon-cultural-hero__flashlight {
  position: absolute;
  top: -25%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 56rem;
  max-height: 56rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 193, 32, 0.5) 0%, rgba(246, 193, 32, 0.2) 35%, rgba(246, 193, 32, 0) 70%);
  filter: blur(20px);
  opacity: 0.75;
  pointer-events: none;
  animation: axon-cultural-flashlight 9s ease-in-out infinite alternate;
}

@keyframes axon-cultural-flashlight {
  0% {
    transform: translate(-8%, -4%) scale(1);
  }
  50% {
    transform: translate(35%, 12%) scale(1.1);
  }
  100% {
    transform: translate(70%, -8%) scale(0.95);
  }
}
.axon-cultural-hero__content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
  color: #fff;
}

.axon-cultural-hero__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.axon-cultural-hero__image img {
  max-width: 90%;
  width: auto;
  height: auto;
  display: block;
}

.axon-cultural-hero__text {
  max-width: 640px;
}

.axon-cultural-projects {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  gap: 3.5rem;
}

.axon-cultural-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: center;
}
.axon-cultural-card__content {
  padding: 2rem;
}

.axon-cultural-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.axon-cultural-card__title {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 50px);
  line-height: 1.05;
  font-weight: 900;
  color: #0F0F0F;
  line-height: 1.1;
  letter-spacing: -1%;
  text-transform: uppercase;
}

.axon-cultural-card__category {
  margin: 0.45rem 0 0.85rem;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 28px);
  line-height: 35px;
  letter-spacing: -1%;
  color: #0F0F0F;
}

.axon-cultural-card__text > :first-child {
  margin-top: 0;
}

.axon-cultural-card__text > :last-child {
  margin-bottom: 0;
}

.axon-cultural-card__text p {
  color: #545454;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

@media (max-width: 900px) {
  .axon-cultural-hero {
    min-height: 100vh;
    padding: 4rem 1.25rem;
  }
  .axon-cultural-hero__flashlight {
    width: 110vw;
    height: 100vh;
    left: -35%;
    top: -10%;
  }
  .axon-cultural-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .axon-cultural-hero__text {
    max-width: 80%;
  }
}
.acquisitions-page {
  width: 100%;
}
.acquisitions-page__list {
  display: grid;
  gap: 4px;
}
.acquisitions-page__item {
  width: 100%;
}
.acquisitions-page__picture {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.acquisitions-page__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .acquisitions-page__picture {
    aspect-ratio: 4/5;
  }
}

.axon-em-breve-page {
  background: #000;
  color: #fff;
}

.axon-em-breve-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 5rem 1.5rem;
  background: #000;
  overflow: hidden;
}

.axon-em-breve-hero__flashlight {
  position: absolute;
  top: -25%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 56rem;
  max-height: 56rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 105, 171, 0.5) 0%, rgba(49, 105, 171, 0.2) 35%, rgba(49, 105, 171, 0) 70%);
  filter: blur(20px);
  opacity: 0.75;
  pointer-events: none;
  animation: axon-em-breve-flashlight 9s ease-in-out infinite alternate;
}

@keyframes axon-em-breve-flashlight {
  0% {
    transform: translate(-8%, -4%) scale(1);
  }
  50% {
    transform: translate(35%, 12%) scale(1.1);
  }
  100% {
    transform: translate(70%, -8%) scale(0.95);
  }
}
.axon-em-breve-hero__content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
  color: #fff;
}

.axon-em-breve-hero__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.axon-em-breve-hero__image img {
  max-width: 90%;
  width: auto;
  height: auto;
  display: block;
}

.axon-em-breve-hero__text {
  max-width: 640px;
}

@media (max-width: 900px) {
  .axon-em-breve-hero {
    min-height: 100vh;
    padding: 4rem 1.25rem;
  }
  .axon-em-breve-hero__flashlight {
    width: 110vw;
    height: 100vh;
    left: -35%;
    top: -10%;
  }
  .axon-em-breve-hero__text {
    max-width: 80%;
  }
}

/*# sourceMappingURL=main.css.map */
