@charset "UTF-8";
/**
* Theme/Project Name
* ==================
* Design: PROJECT NAME
* Author: True Market
* Version 1.0
*
* Table of Contents
* =================
Custom Properties
Mixins
Fonts
Reset
Pages
Typography
Layouts
Components

*/
:root {
  font-size: 62.5%;
  /* Colours */
  --white: #fff;
  --black: #092036;
  --navy: #162B40;
  --red: #D72F2C;
  --grey: #EFEFEF;
  --light-grey: #F7F8F9;
  /* Box Shadow */
  --box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  /* Transitions */
  /* Spacing */
  --bottom-spacing: 3rem;
  --padding-inline: 4rem;
  --raas-padding-inline: 12%;
  /* Other */
  --button-hover: translateX(0.35rem);
}

@media all and (max-width: 1100px) {
  :root {
    font-size: 50%;
    --raas-padding-inline: 6%;
  }
}
@media all and (max-width: 800px) {
  :root {
    --padding-inline: 3rem;
    --raas-padding-inline: 6%;
  }
}
.large-text {
  font-size: var(--text-30);
  font-weight: 700;
  line-height: 1.2;
}

.red-text {
  color: var(--red);
}

.text-align-center::after {
  margin: 1rem auto;
}

.text-align-right::after {
  margin: 1rem 0;
}

.text-highlight-block {
  padding-block: 1.5rem;
  padding-inline-start: 4rem;
}
@media screen and (max-width: 360px) {
  .text-highlight-block {
    padding-inline-start: 3rem;
  }
}

.text-red {
  color: var(--red);
}

.decoration-line {
  position: relative;
}
.decoration-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0;
  background-color: var(--red);
}

.decoration-line--horizontal::before {
  display: none;
}
.decoration-line--horizontal::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background-color: var(--red);
  margin-block-start: 2.5rem;
}

.decoration-line--centered::after {
  margin: 2.5rem auto 0;
}

.decoration-line--is-visible::before {
  animation: horizontal-line-draw 1s ease forwards;
}
.decoration-line--is-visible::after {
  animation: vertical-line-draw 1s ease forwards;
}

@keyframes horizontal-line-draw {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes vertical-line-draw {
  from {
    width: 0%;
  }
  to {
    width: 174px;
  }
}
.blurred-bg-image {
  backdrop-filter: blur(10px) brightness(1.1);
  padding: clamp(2rem, 3vw, 4.5rem);
  border-radius: 5rem;
  border: 1px solid rgba(211, 211, 211, 0.3019607843);
  width: clamp(260px, 30vw, 510px);
}
@media screen and (max-width: 680px) {
  .blurred-bg-image {
    border-radius: 2rem;
  }
}
@media screen and (max-width: 375px) {
  .blurred-bg-image {
    max-width: 180px;
  }
}

.menu-main-menu-container .hide-in-main-menu {
  display: none;
}

@media screen and (max-width: 800px) {
  .single .page-wrapper {
    padding-block: 1rem 10rem;
  }
}

.typography {
  --base: 6vw;
  --text-12: clamp(0.6rem, var(--base), 1.2rem);
  --text-16: clamp(0.8rem, var(--base), 1.6rem);
  --text-18: clamp(0.9rem, var(--base), 1.8rem);
  --text-20: clamp(1rem, var(--base), 2rem);
  --text-22: clamp(1.2rem, var(--base), 2.2rem);
  --text-24: clamp(1.35rem, var(--base), 2.4rem);
  --text-26: clamp(1.45rem, var(--base), 2.6rem);
  --text-28: clamp(1.475rem, var(--base), 2.8rem);
  --text-30: clamp(1.5rem, var(--base), 3rem);
  --text-32: clamp(1.65rem, var(--base), 3.2rem);
  --text-34: clamp(1.75rem, var(--base), 3.4rem);
  --text-40: clamp(2rem, var(--base), 4rem);
  --text-44: clamp(3.25rem, var(--base), 4.4rem);
  --text-50: clamp(3.5rem, var(--base), 5rem);
  --text-93: clamp(4.5rem, 7vw, 9.3rem);
  --font-regular: "DM Sans", system-ui, sans-serif;
  font-family: var(--font-regular);
  font-size: var(--text-20);
  font-weight: normal;
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  display: block;
}

h1 {
  font-size: var(--text-93);
}

h2 {
  font-size: var(--text-50);
}

h3 {
  font-size: var(--text-40);
}

h4 {
  font-size: var(--text-30);
}

h5 {
  font-size: var(--text-24);
}

h6 {
  font-size: var(--text-20);
}

p {
  line-height: 1.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: clip;
  min-width: 300px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 10rem;
}
@media screen and (max-width: 1100px) {
  html,
  body {
    font-size: 87.5%;
  }
}

a {
  text-decoration: none;
  color: var(--red);
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
button:hover, button:active, button:focus {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
}

img,
picture,
video,
canvas,
iframe,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  font-style: italic;
}

figure {
  margin: 0;
}

figcaption {
  margin-block-start: 1rem;
}

#root, #__next {
  isolation: isolate;
}

.front-page-wrapper {
  background-color: var(--white);
  border-radius: 4rem 4rem 0 0;
  margin-block-start: -4rem;
  position: relative;
}
.front-page-wrapper .section-title {
  font-size: var(--text-44);
}
.front-page-wrapper .section-title--centered {
  text-align: center;
}

.home-hero {
  padding-inline: 4rem;
  padding-block: 30rem 26rem;
  background-color: var(--black);
  color: var(--white);
  background-image: url("../../images/bg-home-landing-aircraft-maintenance.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .home-hero {
    padding-block: 20rem 24rem;
  }
}
@media screen and (max-width: 680px) {
  .home-hero {
    padding-block: 20rem 20rem;
  }
}
@media screen and (max-width: 500px) {
  .home-hero {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 360px) {
  .home-hero {
    padding-inline: 0;
  }
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent linear-gradient(72deg, rgba(11, 22, 54, 0.8588235294) 0%, rgba(0, 0, 0, 0.5490196078) 100%);
}
.home-hero::after {
  content: url("../../images/logo-section-divide-element-2-optimized.svg");
  position: absolute;
  bottom: -14px;
  right: 15%;
  transition: all 0.2s ease;
  z-index: 5;
  max-width: 420px;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .home-hero::after {
    max-width: 300px;
    bottom: 0;
  }
}
@media screen and (max-width: 1100px) {
  .home-hero::after {
    max-width: 280px;
    bottom: -5px;
  }
}
@media screen and (max-width: 960px) {
  .home-hero::after {
    max-width: 160px;
    bottom: 9px;
    right: 20%;
  }
}
@media screen and (max-width: 680px) {
  .home-hero::after {
    max-width: 120px;
    bottom: 13px;
    right: 10%;
  }
}

.home-hero__video {
  position: fixed;
  inset: 0;
}
.home-hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent linear-gradient(72deg, rgba(11, 22, 54, 0.8588235294) 0%, rgba(0, 0, 0, 0.5490196078) 100%);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  bottom: 10%;
  right: 6rem;
  z-index: 5;
  font-size: var(--text-24);
}
@media screen and (max-width: 680px) {
  .vertical-text {
    display: none;
  }
}

.vertical-text__item {
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.vertical-text__item:nth-child(1) {
  animation-delay: 0.75s;
}
.vertical-text__item:nth-child(2) {
  animation-delay: 1.25s;
}
.vertical-text__item:nth-child(3) {
  animation-delay: 1.5s;
}

.vertical-line {
  position: absolute;
  height: 325px;
  z-index: 5;
}
@media screen and (max-width: 680px) {
  .vertical-line {
    display: none;
  }
}
.vertical-line::before {
  content: "";
  height: 0;
  width: 4px;
  background-color: var(--red);
  animation-name: draw-line;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  position: absolute;
  top: 0;
  bottom: 0;
}

.vertical-line--home-hero {
  bottom: -8rem;
  right: 14rem;
}

.home-hero__container {
  position: relative;
}

.home-hero__title {
  margin: 0 0 3rem;
  line-height: 1.2;
  max-width: 1100px;
  letter-spacing: -3px;
}
@media screen and (max-width: 1100px) {
  .home-hero__title {
    letter-spacing: 0;
  }
}

.home-hero__subtitle {
  display: block;
  font-size: clamp(1.9rem, 2.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.home-hero__content-container {
  max-width: 690px;
  padding-inline-start: 6%;
}
@media screen and (max-width: 1100px) {
  .home-hero__content-container {
    max-width: 500px;
  }
}
@media screen and (max-width: 680px) {
  .home-hero__content-container {
    padding-inline-start: 0;
    padding-inline-end: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .home-hero__content-container {
    padding-inline-end: 2rem;
  }
}

.home-hero__text {
  margin: 0 0 4rem;
  font-weight: 300;
  opacity: 0.9;
}

.home-hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.bg-airplane {
  position: absolute;
  top: 3%;
  left: 0;
  opacity: 0.1;
  pointer-events: none;
  width: clamp(150px, 16vw, 300px);
}
@media screen and (max-width: 800px) {
  .bg-airplane {
    display: none;
  }
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
}

.blog .post-list,
.archive .post-list {
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
}
@media screen and (max-width: 1100px) {
  .blog .post-list,
  .archive .post-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.error404 .footer {
  border-radius: 0;
}
.error404 .hero--404 {
  display: grid;
  place-content: center;
  padding: 24rem 4rem;
}
.error404 .hero--404 .hero__title {
  font-size: var(--text-50);
}
.error404 .hero--404 .hero__container {
  padding-inline-end: 0;
}
@media screen and (max-width: 800px) {
  .error404 .hero--404 .hero__container {
    padding: 0;
  }
}
.error404 .hero--404 .hero__text {
  max-width: 600px;
}
.error404 .hero--404::before {
  display: none;
}

/**
 * This template is mostly using existing styles from other components,
 * I am just adding some template-specific overrides here.
 */
.front-page-wrapper--raas {
  margin-block-end: -16rem;
  padding-block-end: 6rem;
}
@media screen and (max-width: 1300px) {
  .front-page-wrapper--raas::before {
    right: 5%;
  }
}

.home-hero--raas {
  padding-block: 22rem 16rem;
  background-image: url("../../images/bg-landing-fallback-jet-e.jpg");
}
@media screen and (max-width: 500px) {
  .home-hero--raas {
    padding-block-end: 24rem;
  }
}
.home-hero--raas::after {
  max-width: 340px;
  bottom: -5px;
  right: 10%;
}
@media screen and (max-width: 1400px) {
  .home-hero--raas::after {
    max-width: 280px;
    bottom: 2px;
    right: 5%;
  }
}
@media screen and (max-width: 1100px) {
  .home-hero--raas::after {
    max-width: 200px;
    bottom: 4px;
  }
}
@media screen and (max-width: 500px) {
  .home-hero--raas::after {
    max-width: 140px;
    bottom: 11px;
    right: 10%;
  }
}
.home-hero--raas .home-hero__video {
  top: -30%;
}
.home-hero--raas .home-hero__title {
  font-size: var(--text-50);
  letter-spacing: 0;
}
.home-hero--raas .home-hero__content-container {
  max-width: 860px;
}
.home-hero--raas .home-hero__text {
  padding-inline-end: 25%;
}
@media screen and (max-width: 500px) {
  .home-hero--raas .home-hero__text {
    padding-inline-end: 0;
  }
}

.hero__section-graphic {
  position: absolute;
  bottom: -13.5rem;
  right: 6%;
  width: 300px;
  z-index: 10;
}

.raas-marquee-section {
  padding-block: 16rem;
}
@media screen and (max-width: 800px) {
  .raas-marquee-section {
    padding-block: 10rem;
  }
}
.raas-marquee-section .marquee {
  --gap: 3rem;
  margin-inline: auto;
  margin-block-start: 0;
  max-width: 1560px;
}

.raas-unified {
  padding-block: 6rem;
  position: relative;
}
.raas-unified .mission__app-red-rectangle {
  top: 0;
  width: clamp(150px, 16vw, 324px);
  height: clamp(290px, 35vw, 600px);
  background: transparent linear-gradient(140deg, #D72F2C 0%, #6C1816 100%) 0% 0% no-repeat padding-box;
  border-radius: 5rem 0 0 5rem;
}
@media screen and (max-width: 800px) {
  .raas-unified .mission__app-red-rectangle {
    display: block;
    top: -30px;
    right: -70px;
  }
}
.raas-unified .mission__app-screenshot {
  top: 30%;
  z-index: 5;
}
@media screen and (max-width: 1300px) {
  .raas-unified .mission__app-screenshot {
    top: 20%;
  }
}
@media screen and (max-width: 1100px) {
  .raas-unified .mission__app-screenshot {
    top: 55%;
  }
}
@media screen and (max-width: 800px) {
  .raas-unified .mission__app-screenshot {
    top: 10%;
  }
}
.raas-unified .mission__flex {
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 1100px) {
  .raas-unified .mission__flex {
    gap: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .raas-unified .mission__decoration-images {
    margin-block-end: 0;
  }
}
@media screen and (max-width: 800px) {
  .raas-unified .mission__mobile-image {
    top: -8rem;
  }
}
.raas-unified .mission__airplane {
  max-width: 1100px;
  width: 100%;
  min-width: 500px;
  margin-inline-end: 0;
  margin-inline-start: auto;
  scale: initial;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1100px) {
  .raas-unified .mission__airplane {
    min-width: 350px;
  }
}

.raas-unified__logo {
  margin-block-end: 2rem;
  width: 210px;
  max-width: 100%;
}

.raas-slider {
  padding-block: 12rem;
  padding-inline-start: var(--raas-padding-inline);
}
.raas-slider .swiper {
  overflow: visible;
  padding-inline-end: 16%;
  margin-block-end: 3rem;
}
.raas-slider .swiper-slide {
  height: auto;
}

.raas-key-stats {
  padding-block: 0 20rem;
  padding-inline: var(--raas-padding-inline);
  background-color: var(--grey-light);
}
.raas-key-stats .stats__container {
  padding-inline: 0;
}

.bg-airplane-3 {
  position: absolute;
  top: 60%;
  left: 0;
  width: clamp(260px, 30vw, 490px);
  opacity: 0.1;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .bg-airplane-3 {
    top: 50%;
    top: unset;
    bottom: -18rem;
  }
}
@media screen and (max-width: 800px) {
  .bg-airplane-3 {
    bottom: -12%;
  }
}

.raas-cta {
  padding-block-end: 12rem;
  padding-inline: 4rem;
}

.raas-cta__container {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.raas-cta__container .parallax-bg-image {
  top: 0;
}

.raas-unified__logo--cta-section {
  margin-inline: auto;
}

.raas-faq {
  margin-block-end: 10rem;
  position: relative;
  z-index: 5;
}

.raas-faq__container {
  position: relative;
  z-index: 5;
}

:root {
  --max-width: 1680px;
}

.tm-container {
  max-width: var(--max-width);
  padding-inline: var(--padding-inline);
}

.tm-container--center {
  margin: 0 auto;
}

.page-wrapper {
  padding-block: var(--padding-inline);
  padding-block: 10rem;
  position: relative;
}

.has-sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}

.page-content {
  grid-column: span 2;
}

@media screen and (max-width: 800px) {
  .sidebar {
    grid-column: span 3;
  }
  .page-content {
    grid-column: span 3;
  }
}
.block-wrapper {
  margin: 0 0 3rem;
  position: relative;
  z-index: 1;
  height: auto;
}

.dropdown-group {
  margin-block-end: var(--bottom-spacing);
}

.dropdown {
  --padding: 3rem;
  margin-block-end: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  overflow: clip;
  position: relative;
  background-color: var(--light-grey);
}
.dropdown:last-child {
  margin-block-end: 0;
}
.dropdown::marker {
  content: none;
}
.dropdown::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 130px;
  background-color: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
  transition: all 0.3s ease;
  z-index: 0;
  pointer-events: none;
  min-height: 80px;
}
@media screen and (max-width: 680px) {
  .dropdown::after {
    max-width: 100px;
  }
}
@media screen and (max-width: 360px) {
  .dropdown::after {
    max-width: 80px;
  }
}
.dropdown[open] .dropdown__icon svg {
  transform: rotate(180deg);
}
.dropdown[open]::after {
  height: 60%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
}
@media screen and (max-width: 680px) {
  .dropdown[open]::after {
    height: 40%;
  }
}
@media screen and (max-width: 500px) {
  .dropdown[open]::after {
    height: 20%;
  }
}
@media screen and (max-width: 360px) {
  .dropdown[open]::after {
    height: 15%;
  }
}

.dropdown::details-content {
  display: block;
  block-size: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-property: block-size, content-visibility, opacity;
  transition-duration: 0.3s;
  transition-behavior: allow-discrete;
  opacity: 0;
}

.dropdown[open]::details-content {
  block-size: auto;
  block-size: calc-size(auto, size);
  opacity: 1;
}

.dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  cursor: pointer;
  padding-inline: 3rem;
  padding-block: 2rem;
  position: relative;
  font-size: var(--text-24);
  font-weight: 700;
  letter-spacing: -1.25px;
}
@media screen and (max-width: 360px) {
  .dropdown__toggle {
    padding-inline: 2rem;
  }
}

.dropdown__icon svg {
  width: 28px;
  stroke: var(--white);
  stroke-width: 2px;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .dropdown__icon svg {
    width: 24px;
  }
}
@media screen and (max-width: 500px) {
  .dropdown__icon svg {
    width: 20px;
  }
}

.dropdown__content {
  transition: all 0.3s ease;
  padding: 1rem 10rem 3rem 3rem;
}
@media screen and (max-width: 680px) {
  .dropdown__content {
    padding-inline-end: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .dropdown__content {
    padding-inline: 2rem 4rem;
  }
}
.dropdown__content p {
  margin: 0 0 1rem;
}
.dropdown__content p:last-child {
  margin: 0;
}

.dropdown__inner {
  border-left: 2px solid var(--red);
  padding-inline-start: 3rem;
}

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: var(--bottom-spacing);
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}

.quote {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  border-radius: 1rem;
  padding: 4rem;
  clear: both;
  margin: 0;
  margin-block-end: var(--bottom-spacing);
  overflow: clip;
}

.quote__content {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 10vw, 8rem);
}

.quote__text {
  font-size: var(--text-28);
}
.quote__text p {
  line-height: 1.4;
}

.quote__graphic {
  margin-inline-end: -5%;
  margin-block: -5%;
}
@media screen and (max-width: 1100px) {
  .quote__graphic {
    margin-inline-end: -15%;
  }
}
@media screen and (max-width: 960px) {
  .quote__graphic {
    margin-inline-end: -25%;
  }
}
@media screen and (max-width: 800px) {
  .quote__graphic {
    display: none;
  }
}

.quote__attribution {
  color: var(--red);
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1.12px;
  font-size: var(--text-16);
}

/**  List Styles **/
.text-block {
  clear: both;
}
.text-block ul,
.text-block ol {
  list-style: none;
  padding: 0;
  clear: both;
  margin: 0;
  margin-block-end: var(--bottom-spacing);
  margin-block-start: 3rem;
}
.text-block ul li,
.text-block ol li {
  position: relative;
  margin: 2rem 0 0;
  border-bottom: 2px solid rgba(248, 209, 209, 0.5);
  padding-block-end: 1.5rem;
}
.text-block ul li:last-child,
.text-block ol li:last-child {
  border-bottom: none;
}
.text-block ul li::before,
.text-block ol li::before {
  left: 0;
}
.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
  margin-top: 1rem;
  padding-inline-start: 2.5rem;
}
.text-block ul ul li,
.text-block ul ol li,
.text-block ol ul li,
.text-block ol ol li {
  border-bottom: none;
  padding-block-end: 0;
  padding-inline-start: 0;
}
.text-block ul li {
  padding-inline-start: 3.5rem;
}
@media screen and (max-width: 1100px) {
  .text-block ul li {
    padding-inline-start: 3.25rem;
  }
}
.text-block ul li::before {
  content: url("../../images/icon-bullet-arrow-circle.svg");
  display: block;
  position: absolute;
  width: 20px;
  top: 3px;
}
@media screen and (max-width: 1100px) {
  .text-block ul li::before {
    width: 16px;
    top: 2px;
  }
}
.text-block ul li ul {
  margin: 0;
  list-style: disc;
}
.text-block ul li ul li::before {
  display: none;
}
.text-block ul li ul ul {
  list-style: circle;
}
.text-block ol {
  counter-reset: item;
}
.text-block ol li {
  counter-increment: item;
  padding-inline-start: 3rem;
}
.text-block ol li::before {
  content: counter(item);
  display: block;
  position: absolute;
  padding-right: 1rem;
  font-weight: 700;
  color: var(--black);
  font-size: var(--text-20);
}
.text-block ol ol {
  margin: 0;
  list-style: lower-latin;
}
.text-block ol ol li::before {
  display: none;
}
.text-block ol ol ol {
  list-style: lower-roman;
}

/**  Text Styles **/
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5 {
  margin: 0;
  margin-block-end: var(--bottom-spacing);
}
.text-block h2 {
  position: relative;
  font-size: var(--text-44);
}
.text-block h2::after {
  content: "";
  display: block;
  width: 174px;
  height: 4px;
  background: var(--red);
  margin-block-start: 1.5rem;
}
.text-block h3 {
  font-size: var(--text-32);
}
.text-block h4 {
  font-size: var(--text-24);
}
.text-block h5 {
  font-size: var(--text-20);
}

.image-block {
  margin-block-end: var(--bottom-spacing);
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
}
.image-block a {
  display: block;
  height: 100%;
}
.image-block img {
  -o-object-fit: cover;
     object-fit: cover;
}

.image-block--ratio-default img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-block--ratio-landscape img {
  aspect-ratio: 4/3;
}

.image-block--ratio-wide-landscape img {
  aspect-ratio: 16/9;
}

.image-block--ratio-square img {
  aspect-ratio: 1/1;
}

.image-block--full-height {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  border-radius: 2rem;
}
@media screen and (max-width: 800px) {
  .image-block--full-height {
    background-image: none !important;
  }
}
.image-block--full-height img {
  display: none;
}
@media screen and (max-width: 800px) {
  .image-block--full-height img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.image-block--ratio-landscape img,
.image-block--ratio-wide-landscape img,
.image-block--ratio-square img {
  width: 100%;
  height: 100%;
}

.spacer {
  display: block;
  clear: both;
}

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-block-end: var(--bottom-spacing);
}

.button-group--align-center {
  justify-content: center;
}

.button-group--align-right {
  justify-content: flex-end;
}

.media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  background-color: var(--light-grey);
  padding: 4rem 3rem;
  border-radius: 2rem;
  cursor: pointer;
  margin-block-end: var(--bottom-spacing);
}
@media screen and (max-width: 500px) {
  .media {
    padding: 3rem;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.media:hover .media__icon {
  transform: scale(1.05);
}
.media a {
  color: inherit;
  flex: 50;
}

.media__icon {
  transition: all 0.3s ease;
}

.media--pdf .media__icon {
  width: 75px;
}
@media screen and (max-width: 500px) {
  .media--pdf .media__icon {
    width: 50px;
  }
}

.media--video .media__icon {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .media--video .media__icon {
    width: 60px;
  }
}
@media screen and (max-width: 360px) {
  .media--video .media__icon {
    width: 40px;
  }
}

.media__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.media__pretitle {
  margin-block-end: 1rem;
  text-transform: uppercase;
  font-family: var(--font-regular);
  font-weight: 700;
  font-size: var(--text-16);
  letter-spacing: 2.4px;
}
@media screen and (max-width: 500px) {
  .media__pretitle {
    display: none;
  }
}

.media__pretitle--mobile {
  display: none;
  margin-block-end: 0;
}
@media screen and (max-width: 500px) {
  .media__pretitle--mobile {
    display: block;
  }
}

.media__title {
  margin: 0;
  font-size: var(--text-30);
}

.slider-block .swiper {
  overflow: visible;
  margin-block-end: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  clear: both;
  color: var(--black);
  font-weight: 700;
  transition: all 0.2s ease;
  letter-spacing: -1px;
  cursor: pointer;
}
.button::after {
  content: "";
  min-width: 34px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid var(--red);
  transition: all 0.2s ease;
  background-image: url("../../images/arrow-button-red.svg");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: top 48% left 50%;
}
@media screen and (max-width: 1100px) {
  .button::after {
    min-width: 24px;
    min-height: 24px;
    padding: 0.1rem 0.45rem;
  }
}
.button:hover::after {
  transform: var(--button-hover);
  background-color: var(--red);
  border-color: var(--red);
  background-image: url("../../images/arrow-button-white.svg");
}

.button--white {
  color: var(--white);
}
.button--white::after {
  background-image: url("../../images/arrow-button-white.svg");
  border-color: rgba(255, 255, 255, 0.5);
  filter: none;
}

.button--red {
  color: var(--white);
}
.button--red::after {
  background-image: url("../../images/arrow-button-white.svg");
  background-color: var(--red);
  border-color: var(--red);
}
.button--red:hover::after {
  background-color: var(--black);
  border-color: var(--black);
}

.article {
  background-color: var(--grey);
  color: var(--color-body-text);
  border-radius: 5rem;
  overflow: hidden;
  width: 100%;
  max-width: 620px;
}

.article--sidebar {
  margin: 0 0 2rem;
}

.article__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 525px;
}
.article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__body {
  padding: 4.5rem;
}
@media screen and (max-width: 1100px) {
  .article__body {
    padding: 3.5rem;
  }
}

.article__title {
  margin: 0 0 2rem;
}
.article__title a {
  color: var(--black);
}

.article__subtext {
  display: inline-block;
}

.article__category::after {
  content: ", ";
}
.article__category:last-child::after {
  display: none;
}

.article__excerpt {
  margin: 2rem 0 0;
}
.article__excerpt p {
  margin: 0;
}

.article__button {
  margin: 2rem 0 0;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding-block: 16rem 12rem;
  padding-inline: 12rem;
  position: relative;
  z-index: 5;
  border-radius: 5rem 5rem 0 0;
  overflow: clip;
  margin-block-start: -4rem;
}
@media screen and (max-width: 1100px) {
  .footer {
    padding-inline-start: 6%;
    padding-block: 12rem 8rem;
  }
}
@media screen and (max-width: 680px) {
  .footer {
    padding-block-end: 60%;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding-block-start: 8rem;
    padding-block-end: 55rem;
  }
}
@media screen and (max-width: 360px) {
  .footer {
    padding-block-end: 45rem;
  }
}
.footer a {
  transition: color 0.2s ease;
}
.footer a:hover {
  opacity: 1;
  color: var(--white);
}
.footer .decoration-line::before {
  width: 3px;
  top: 8rem;
}

.footer--show-footer-cta {
  margin-block-start: -20rem;
}

.footer__logo {
  display: inline-flex;
  margin-block-end: 12rem;
}
@media screen and (max-width: 1100px) {
  .footer__logo {
    margin-block-end: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__logo {
    justify-self: center;
    margin-block-end: 6rem;
  }
}
.footer__logo img {
  width: 250px;
}

.footer__columns {
  margin-block-end: 12rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  padding-inline-end: 28rem;
}
@media screen and (max-width: 1400px) {
  .footer__columns {
    padding-inline-end: 12rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer__columns {
    margin-block-end: 10rem;
  }
}
@media screen and (max-width: 800px) {
  .footer__columns {
    gap: 1rem;
    padding-inline-end: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer__columns {
    margin-block-end: 6rem;
  }
}

.footer__column {
  position: relative;
  overflow: hidden;
}
.footer__column a {
  color: #C9C9D8;
}

.footer__column-title {
  font-size: var(--text-24);
  margin-block-end: 3rem;
}
.footer__column-title a {
  color: var(--white);
}

.footer__links-container {
  height: 75%;
}
@media screen and (max-width: 1100px) {
  .footer__links-container {
    height: 70%;
  }
}
@media screen and (max-width: 800px) {
  .footer__links-container {
    height: 65%;
  }
}

.footer__links {
  list-style: none;
  padding-block: 1rem 0;
}

.footer__link {
  display: block;
  margin-block-end: 2.8rem;
}
.footer__link:last-child {
  margin-block-end: 0;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  row-gap: 2rem;
  font-size: var(--text-16);
  position: relative;
  z-index: 5;
  padding-inline-end: 28%;
}
@media screen and (max-width: 680px) {
  .footer__meta {
    padding-inline-end: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__meta a {
  color: var(--white);
}

.footer__meta-link {
  opacity: 0.5;
}

.footer__truemarket {
  font-family: var(--font-regular);
  font-size: var(--text-16);
  font-weight: 300;
  opacity: 0.5;
  margin: 0;
}

.footer__copy {
  margin: 0;
}

.footer__bg-logo {
  position: absolute;
  bottom: -1rem;
  right: -8rem;
}
.footer__bg-logo img {
  width: 640px;
}
@media screen and (max-width: 1500px) {
  .footer__bg-logo img {
    width: 500px;
  }
}
@media screen and (max-width: 1100px) {
  .footer__bg-logo img {
    width: 400px;
  }
}
@media screen and (max-width: 375px) {
  .footer__bg-logo {
    bottom: -3rem;
    right: 0;
    left: 0;
  }
}

form input,
form textarea,
form select {
  display: block;
  padding: 1rem 2rem;
  width: 100%;
  font-size: inherit;
  color: var(--navy);
  margin-block-end: 1rem;
  border: none;
  border-radius: 2rem;
  background-color: var(--grey);
}
form input::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: inherit;
}
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  transition: opacity 0.3s ease;
  font-size: inherit;
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder, form select:focus::-moz-placeholder {
  opacity: 0;
}
form input:focus::placeholder,
form textarea:focus::placeholder,
form select:focus::placeholder {
  opacity: 0;
}
form select {
  color: var(--navy);
  background-image: url("../../images/icon-blue-chevron.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
form textarea {
  resize: none;
}
form label {
  font-size: inherit;
  font-family: var(--font-regular);
}
form input[type=checkbox] {
  display: inline;
  width: auto;
}

.asterisk {
  color: red;
}

/* Visually hide the labels */
.forminator-label {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; /* added line */
  width: 1px;
}

.forminator-grouped-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .forminator-grouped-fields {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.forminator-row,
.forminator-col {
  margin: 0 !important;
  padding: 0 !important;
}

.forminator-row {
  gap: 1.5rem;
}

.forminator-error-message {
  display: block;
  color: #f94e5f;
  font-size: 70%;
  margin-block-end: 1rem;
}

@media all and (max-width: 800px) {
  .forminator-2-col .forminator-grouped-fields {
    grid-template-columns: 1fr;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 4rem 0;
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 0 0 3rem 3rem;
}
@media screen and (max-width: 1100px) {
  .header {
    position: absolute;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  gap: 4rem;
}

.header__navigation {
  display: flex;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 999;
  color: var(--black);
}
.header__logo h3 {
  margin: 0;
}

.header__logo--mobile {
  display: none;
  position: absolute;
  top: 3rem;
  left: 3rem;
}

.is-header-scrolled .header {
  background-color: var(--black);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1019607843);
  padding: 1rem 0;
}
.is-header-scrolled .header .button:hover::after {
  background-color: var(--red);
  border-color: var(--red);
}
.is-header-scrolled .header .header__logo--mobile {
  display: block;
}
.is-header-scrolled .header .sub-menu {
  border-radius: 0 0 3.3rem 3.3rem;
}
@media screen and (max-width: 1100px) {
  .is-header-scrolled .header {
    background-color: transparent;
    box-shadow: none;
  }
}
@media screen and (max-width: 1100px) {
  .is-header-scrolled .header .burger {
    transform: translateY(-2rem);
  }
}
@media screen and (max-width: 680px) {
  .is-header-scrolled .header .burger {
    transform: translateY(-4rem);
  }
}
.is-header-scrolled .burger {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(9, 32, 54, 0.6);
}
.is-header-scrolled .mobile-navigation {
  padding-block: 13rem 6rem;
}

.hero {
  background-color: var(--grey);
  padding: 24rem 0 14rem;
  background-image: url("../../images/bg-home-cta.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-block-end: 4rem;
}
@media screen and (max-width: 800px) {
  .hero {
    padding-block-end: 8rem;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent linear-gradient(75deg, rgba(11, 22, 54, 0.8588235294) 0%, rgba(0, 0, 0, 0.5490196078) 100%) 0% 0% no-repeat;
}
.hero::before {
  content: url("../../images/logo-section-divide-element-2-optimized.svg");
  position: absolute;
  bottom: -4.2rem;
  right: 10%;
  transition: all 0.2s ease;
  z-index: 5;
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .hero::before {
    max-width: 200px;
    bottom: -3.35rem;
  }
}
@media screen and (max-width: 800px) {
  .hero::before {
    display: none;
  }
}

.hero__container {
  position: relative;
  z-index: 5;
  color: var(--white);
}
@media screen and (max-width: 1700px) {
  .hero__container {
    padding-inline-end: 40%;
  }
}
@media screen and (max-width: 800px) {
  .hero__container {
    padding-inline-end: 10%;
    padding-block-end: 6rem;
  }
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  margin: 0;
  font-size: var(--text-44);
  margin-block-end: 3rem;
}

.hero__category {
  display: inline-block;
  margin-block-end: 1rem;
  font-weight: 700;
  font-size: var(--text-24);
}

.hero__date {
  font-size: var(--text-18);
  margin-block-end: 3rem;
}

.desktop-navigation {
  --menu-font-size: clamp(1.5rem, 1.5vw, 2.2rem);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 4rem);
}
@media screen and (max-width: 1100px) {
  .desktop-navigation {
    display: none;
  }
}
.desktop-navigation .button {
  color: var(--white);
  font-size: var(--menu-font-size);
  transform: translateY(0.15rem);
}
.desktop-navigation .menu-main-menu-container {
  display: flex;
}
.desktop-navigation .menu-item {
  margin-left: 2rem;
  position: relative;
  cursor: pointer;
}
.desktop-navigation .menu-item a {
  color: var(--white);
  position: relative;
}
.desktop-navigation .menu-item-has-children {
  position: relative;
}
.desktop-navigation .menu-item-has-children::before {
  content: "";
  display: block;
  height: 50px;
  width: 100%;
  position: absolute;
  top: 1rem;
}
.desktop-navigation .menu-item-has-children a::after {
  bottom: 0.35rem;
}
.desktop-navigation .menu-item-has-children:hover a::after {
  transform: rotate(180deg) translateY(-0.7rem);
}
.desktop-navigation .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.desktop-navigation .menu-item-has-children:hover .sub-menu::after {
  transform: translateY(5rem);
  opacity: 1;
}
.desktop-navigation .sub-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 5rem;
  left: 50%;
  right: 50%;
  padding: 3rem 3rem 0 3rem;
  width: 300px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  background: var(--black);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  z-index: 990;
  list-style: none;
  border-radius: 3.3rem;
  text-align: center;
  z-index: -1;
  overflow: clip;
}
.desktop-navigation .sub-menu::after {
  content: url("../../images/favicon.png");
  display: block;
  margin: -4rem auto 0;
  scale: 0.6;
  transform: translateY(10rem);
  opacity: 0;
  transition: all ease 0.8s;
  transition-delay: 0.1s;
}
.desktop-navigation .sub-menu .sub-menu {
  position: relative;
  box-shadow: none;
  top: 0;
  width: 100%;
  padding: 1.5rem 0 0 1.5rem;
}

.menu-item-has-children a {
  padding-right: 2rem;
}
.menu-item-has-children a::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.06 6.59"><path d="m10.53.53-5 5-5-5" style="fill:none;stroke:%23fff;stroke-miterlimit:10;stroke-width:1.5px"/></svg>');
  display: block;
  width: 10px;
  position: absolute;
  right: 0;
  opacity: 0.5;
  transition: 0.2s ease all;
}
@media screen and (max-width: 1100px) {
  .menu-item-has-children a::after {
    right: -1rem;
  }
}
.menu-item-has-children a:not(.sub-menu a) {
  pointer-events: none;
  position: relative;
}

.navigation {
  margin: 0;
  list-style: none;
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 4rem);
  padding: 0;
}
.navigation .menu-item {
  margin: 0;
  font-size: var(--menu-font-size);
}

.sub-menu .menu-item {
  margin: 0 0 1.5rem;
}
.sub-menu .menu-item a {
  transition: color 0.2s ease;
}
.sub-menu .menu-item a:hover {
  color: var(--red);
}
.sub-menu .menu-item:last-child {
  margin: 0;
}
.sub-menu .menu-item::before {
  display: none;
}
.sub-menu .menu-item a::after {
  display: none;
}

.mobile-navigation {
  display: none;
  position: fixed;
  z-index: 995;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15rem 0 8rem 0;
  background: var(--black);
  color: var(--white);
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.1607843137);
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease, opacity 0.4s ease;
  overflow: clip;
  border-radius: 0 0 3rem 3rem;
}
@media screen and (max-width: 1100px) {
  .mobile-navigation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-inline-start: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .mobile-navigation {
    padding-inline-start: 3rem;
  }
}
.mobile-navigation::after {
  content: url("../../images/logo-section-divide-element.svg");
  position: absolute;
  bottom: -12rem;
  right: -8rem;
  scale: 0.75;
  transform: translateX(35%);
  transition: all 0.8s ease;
  transition-delay: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 680px) {
  .mobile-navigation::after {
    display: none;
  }
}
.mobile-navigation .button {
  font-size: var(--text-30);
}
.mobile-navigation .button::after {
  width: 34px;
  height: 34px;
}
.mobile-navigation .button:hover::after {
  background-color: var(--red);
  border-color: var(--red);
}
.mobile-navigation .menu-item {
  position: relative;
  flex-direction: column;
  font-size: var(--text-30);
  margin: 0 0 3rem;
}
.mobile-navigation .menu-item a {
  color: var(--color-body-text);
}
.mobile-navigation .menu-item-has-children a::after {
  bottom: 0.5rem;
}
.mobile-navigation .sub-menu {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s ease;
  list-style: none;
  padding-inline-start: 3rem;
  padding-block-start: 0;
}
.mobile-navigation .sub-menu .menu-item {
  margin: 0 0 3rem;
}
.mobile-navigation .sub-menu .menu-item:last-child {
  margin: 0;
}

.menu {
  list-style: none;
  padding: 0;
}
.menu li::before {
  display: none;
}

.is-submenu-open .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding-block: 3rem 1rem;
}
.is-submenu-open a::after {
  transform: rotate(180deg) translateY(-1rem);
}

.is-menu-open .mobile-navigation {
  opacity: 1;
  transform: translateY(0%);
}
.is-menu-open .mobile-navigation::after {
  transform: translateX(0);
  opacity: 0.8;
}

.sidebar__category {
  display: block;
  margin: 0 0 2rem;
}
.sidebar__category:last-child {
  margin: 0;
}

.burger {
  display: none;
  width: 75px;
  height: 75px;
  padding: 3rem;
  border-radius: 3rem;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
@media screen and (max-width: 1100px) {
  .burger {
    display: flex;
    position: relative;
    z-index: 999;
    position: fixed;
    top: 4rem;
    right: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .burger {
    width: 60px;
    height: 60px;
    padding: 2rem;
    border-radius: 1.5rem;
    right: 2rem;
    scale: 0.8;
    top: 5rem;
  }
}

.burger__line {
  display: block;
  width: 60%;
  height: 2px;
  background-color: var(--grey);
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  margin-inline: auto;
}
.burger__line:nth-child(1) {
  transform: translateY(-14px);
}
.burger__line:nth-child(2) {
  opacity: 1;
}
.burger__line:nth-child(3) {
  transform: translateY(14px);
}

/* 🔹 When opening */
.is-burger-active .burger__line:nth-child(1) {
  animation: burger-slide-down-rotate 0.5s ease forwards;
}
.is-burger-active .burger__line:nth-child(2) {
  animation: burger-fade-out 0.5s ease forwards;
}
.is-burger-active .burger__line:nth-child(3) {
  animation: burger-slide-up-rotate 0.5s ease forwards;
}

/* 🔹 When closing */
.burger:not(.is-burger-active) .burger__line:nth-child(1) {
  animation: burger-slide-down-rotate-reverse 0.5s ease forwards;
}
.burger:not(.is-burger-active) .burger__line:nth-child(2) {
  animation: burger-fade-in 0.5s ease forwards;
}
.burger:not(.is-burger-active) .burger__line:nth-child(3) {
  animation: burger-slide-up-rotate-reverse 0.5s ease forwards;
}

/* === Animations === */
@keyframes burger-slide-down-rotate {
  0% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes burger-slide-up-rotate {
  0% {
    transform: translateY(14px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes burger-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* === Reverse Animations === */
@keyframes burger-slide-down-rotate-reverse {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-14px);
  }
}
@keyframes burger-slide-up-rotate-reverse {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(14px);
  }
}
@keyframes burger-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.category__item--is-active {
  background-color: var(--grey);
  padding: 1rem;
}

.horizontal-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 1rem;
  grid-column: span 3;
  margin-block-end: 6rem;
}

.horizontal-categories__title {
  margin: 0;
}

.horizontal-categories__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.modal {
  display: block; /** <-- Required to make the animation work */
  max-width: 1400px;
  width: 90%;
  opacity: 0;
  transform: translateY(15%);
  transition: transform 0.4s ease, opacity 0.2s ease;
  border: none;
  visibility: hidden;
  overflow: visible;
}
@media screen and (max-width: 500px) {
  .modal {
    width: 94%;
  }
}

.modal::backdrop {
  background: rgba(30, 68, 103, 0.8);
  backdrop-filter: blur(2px);
}

.modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 0;
  right: -5rem;
  cursor: pointer;
  width: 25px;
}
@media screen and (max-width: 1100px) {
  .close-modal {
    top: -6rem;
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  .close-modal {
    width: 20px;
    top: -4rem;
  }
}

.modal--video {
  padding: 0;
}
.modal--video .modal__content {
  aspect-ratio: 16/9;
}
.modal--video iframe {
  width: 100%;
  height: 100%;
}

.gallery {
  display: grid;
  gap: 1rem;
  margin-block: 3rem;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

@media screen and (max-width: 1400px) {
  .gallery-columns-2, .gallery-columns-3, .gallery-columns-4, .gallery-columns-5, .gallery-columns-6, .gallery-columns-7, .gallery-columns-8, .gallery-columns-9 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.stats {
  padding: 14rem 4rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .stats {
    padding-block: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .stats {
    padding-inline: 2rem;
  }
}

.stats__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-content: center;
  padding-inline: 14rem;
}
@media screen and (max-width: 1400px) {
  .stats__container {
    padding-inline: 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .stats__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .stats__container {
    padding-inline: 0;
  }
}

.stats__container--block {
  padding-inline: 0;
  display: flex;
  flex-wrap: wrap;
}
.stats__container--block .stats__text {
  margin-inline: clamp(4rem, 6vw, 8rem);
}

.stats__item:first-child .stats__bg-image {
  opacity: 0.1;
  width: clamp(70px, 6vw, 100px);
  top: -1rem;
}
.stats__item:nth-of-type(2) .stats__bg-image {
  opacity: 0.2;
  width: clamp(180px, 14vw, 240px);
  top: 1%;
}
.stats__item:nth-of-type(3) .stats__bg-image {
  opacity: 0.1;
  width: clamp(90px, 7vw, 144px);
  top: -10%;
}
@media screen and (max-width: 1100px) {
  .stats__item:nth-of-type(3) .stats__bg-image {
    top: -3rem;
  }
}
.stats__item:nth-of-type(4) .stats__value {
  letter-spacing: 3px;
}
.stats__item:nth-of-type(4) .stats__bg-image {
  opacity: 0.1;
  width: 100%;
  max-width: 300px;
  top: -0.5rem;
}
@media screen and (max-width: 1400px) {
  .stats__item:nth-of-type(4) .stats__bg-image {
    max-width: 260px;
  }
}

.stats__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}
@media screen and (max-width: 1100px) {
  .stats__bg-image {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

.stats__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(7rem, 6vw, 10rem);
  text-align: center;
  margin: 0;
  padding-block: 1rem;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .stats__value {
    padding-block: 4rem;
  }
}
.stats__value::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--grey);
  height: 3px;
}

.stats__text {
  margin: 0;
  text-align: center;
  padding-block: 1rem;
  margin-inline: 6rem;
  position: relative;
  font-size: var(--text-26);
}
@media screen and (max-width: 1400px) {
  .stats__text {
    margin-inline: 3rem;
  }
}
.stats__text::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  right: 0;
  background-color: var(--red);
  height: 3px;
  width: 200px;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .stats__text::before {
    width: 140px;
  }
}

.mission {
  padding-block: 12rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .mission {
    padding-block: 0;
  }
}

.mission__wrapper {
  padding-inline-start: 12%;
}
@media screen and (max-width: 1100px) {
  .mission__wrapper {
    padding-inline-start: 4%;
  }
}

.mission__flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .mission__flex {
    flex-direction: column-reverse;
  }
}

.mission__container {
  max-width: 620px;
  position: relative;
  z-index: 5;
}

.mission__text {
  margin-block-end: 3rem;
}

.mission__title {
  margin: 0 0 2rem;
}

.mission__app-red-rectangle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: clamp(150px, 20vw, 280px);
}
@media screen and (max-width: 1700px) {
  .mission__app-red-rectangle {
    top: -8rem;
  }
}
@media screen and (max-width: 1500px) {
  .mission__app-red-rectangle {
    max-height: 500px;
    top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .mission__app-red-rectangle {
    max-height: 400px;
    top: 5%;
  }
}
@media screen and (max-width: 800px) {
  .mission__app-red-rectangle {
    max-height: 300px;
    top: 10%;
    display: none;
  }
}

.mission__airplane {
  scale: 1.35;
  position: relative;
  bottom: 6rem;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .mission__airplane {
    bottom: 0;
    scale: 1.5;
    right: -3rem;
  }
}
@media screen and (max-width: 800px) {
  .mission__airplane {
    scale: initial;
    right: -16rem;
    bottom: -6rem;
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .mission__airplane {
    right: -6rem;
  }
}

@media screen and (max-width: 800px) {
  .mission__decoration-images {
    margin-block-end: -4rem;
  }
}
@media screen and (max-width: 500px) {
  .mission__decoration-images {
    margin-block-end: 0;
  }
}

.mission__mobile-image {
  display: none;
}
@media screen and (max-width: 800px) {
  .mission__mobile-image {
    display: block;
    position: relative;
  }
}

.mission__app-screenshot {
  position: absolute;
  top: 20%;
  right: 6rem;
  z-index: 3;
}
@media screen and (max-width: 1400px) {
  .mission__app-screenshot {
    max-width: 300px;
    padding: 2rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 1300px) {
  .mission__app-screenshot {
    top: 6%;
    z-index: 2;
  }
}
@media screen and (max-width: 500px) {
  .mission__app-screenshot {
    max-width: 180px;
    padding: 2rem;
    top: 6rem;
  }
}

.marquee {
  --gap: 6rem;
  max-width: 1320px;
  width: 100%;
  margin-block-start: -6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: var(--gap);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1700px) {
  .marquee {
    margin-block-start: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .marquee {
    --gap: 4rem;
    margin-block: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .marquee {
    --gap: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .marquee {
    transform: scale(1.5);
  }
}
.marquee:hover .marquee__inner {
  animation-play-state: paused;
}
.marquee::before, .marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
}
.marquee::before {
  content: url("../../images/client-logo-edge-fade-left.png");
  left: -1rem;
}
@media screen and (max-width: 375px) {
  .marquee::before {
    left: -10rem;
  }
}
.marquee::after {
  content: url("../../images/client-logo-edge-fade-right.png");
  right: -0.5rem;
}
@media screen and (max-width: 375px) {
  .marquee::after {
    right: -10rem;
  }
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  animation: scroll-left 60s linear infinite;
  min-width: 100%;
}

.marquee__logo {
  width: 100%;
}
.marquee__logo img {
  margin-inline: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes draw-line {
  from {
    height: 0;
  }
  to {
    height: 325px;
  }
}
.slider {
  padding-block: 6rem;
  padding-inline-start: 12%;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .slider {
    padding-inline-start: 4%;
  }
}
@media screen and (max-width: 800px) {
  .slider {
    padding-block: 0 6rem;
  }
}
.slider .swiper-button-next,
.slider .swiper-button-prev {
  position: static;
}
.slider .swiper {
  overflow: visible;
  padding-inline-end: 15%;
  margin-block-end: 3rem;
}
.slider .swiper-slide {
  height: auto;
}

.slider__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
}

.slide {
  border-radius: 5rem;
  overflow: clip;
  background-color: #F8F8F9;
}

.slide__image {
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 525px;
}
.slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide__body {
  padding: 4.5rem;
}
@media screen and (max-width: 500px) {
  .slide__body {
    padding: 3.5rem;
  }
}

.slide__pretitle {
  color: var(--red);
  font-size: var(--text-22);
  font-weight: 700;
  display: block;
  margin-block-end: 1rem;
}

.slide__title {
  margin: 0 0 1rem;
  font-size: var(--text-32);
  letter-spacing: -1.4px;
}

.slide__text p {
  margin: 0;
  font-size: var(--text-18);
}

.slider__nav-button {
  cursor: pointer;
  background-color: var(--grey);
  border-radius: 50%;
  padding: 2rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__nav-button svg {
  width: 33px;
}

.slider__nav-button--prev svg {
  transform: scaleX(-1);
}

.swiper-button-disabled {
  pointer-events: none;
}
.swiper-button-disabled svg {
  opacity: 0.3;
}

.solutions {
  --left-offset: -12rem;
  padding-block: 8rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .solutions {
    --left-offset: 0;
  }
}

.bg-airplane-2 {
  position: absolute;
  top: -8%;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
  width: clamp(240px, 20%, 492px);
}
@media screen and (max-width: 960px) {
  .bg-airplane-2 {
    top: -15%;
  }
}
@media screen and (max-width: 800px) {
  .bg-airplane-2 {
    top: 40%;
  }
}
@media screen and (max-width: 680px) {
  .bg-airplane-2 {
    top: 30%;
  }
}

.solutions__container {
  display: flex;
  align-items: center;
  gap: 8rem;
  margin-inline-start: var(--left-offset);
}
@media screen and (max-width: 800px) {
  .solutions__container {
    flex-direction: column;
  }
}

.solutions__image {
  position: relative;
}
@media screen and (max-width: 800px) {
  .solutions__image {
    padding-inline-end: 10%;
  }
}
@media screen and (max-width: 500px) {
  .solutions__image {
    padding-inline-end: 2%;
  }
}

.solutions__software-screenshot {
  position: absolute;
  top: 25%;
  left: calc(6rem - var(--left-offset));
  width: clamp(300px, 25vw, 510px);
}
@media screen and (max-width: 800px) {
  .solutions__software-screenshot {
    left: auto;
    right: 25%;
  }
}
@media screen and (max-width: 680px) {
  .solutions__software-screenshot {
    padding: 2rem;
    border-radius: 3rem;
    width: 250px;
  }
}
@media screen and (max-width: 375px) {
  .solutions__software-screenshot {
    right: 10%;
  }
}

.solutions__title {
  max-width: 500px;
}

.solutions__content {
  max-width: 810px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .solutions__content {
    padding-inline: 4rem;
  }
}
@media screen and (max-width: 375px) {
  .solutions__content {
    padding-inline: 3rem;
  }
}

.solutions__card {
  display: flex;
  align-items: center;
  gap: 8rem;
  background: transparent linear-gradient(255deg, rgba(255, 255, 255, 0.6862745098) 0%, rgba(237, 239, 240, 0.4941176471) 100%) 0% 0%;
  padding-block: 4.5rem;
  padding-inline: 10rem;
  border-radius: 5rem;
  margin-block-end: 3rem;
  position: relative;
  z-index: 1;
  color: var(--black);
}
@media screen and (max-width: 500px) {
  .solutions__card {
    padding: 3rem 4rem;
    gap: 3rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 375px) {
  .solutions__card {
    padding: 2rem 3rem;
    gap: 2rem;
  }
}
.solutions__card:last-child {
  margin-block-end: 0;
}
.solutions__card:hover .solutions__card-icon--fleet-operators .fleet-operators-location,
.solutions__card:hover .solutions__card-icon--fleet-operators .fleet-operators-airplane {
  fill: var(--red);
}
.solutions__card:hover .solutions__card-icon--fleet-operators .fleet-operators-globe,
.solutions__card:hover .solutions__card-icon--fleet-operators .fleet-operators-border {
  opacity: 0.8;
}
.solutions__card:hover .button::after {
  transform: var(--button-hover);
  background-color: var(--red);
  background-image: url("../../images/arrow-button-white.svg");
}
.solutions__card:hover .solutions__card-icon--mro {
  animation: rotating 10s linear infinite;
}

.solutions__card-icon {
  width: 84px;
}
@media screen and (max-width: 500px) {
  .solutions__card-icon {
    width: 50px;
  }
}
.solutions__card-icon svg path {
  transition: all 0.2s ease;
}

.solutions__card-title {
  margin: 0 0 1rem;
}

.solutions__card-text {
  margin: 0;
}

.solutions__card-button {
  font-size: var(--text-24);
}

@keyframes rotating {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.news-slider {
  padding-block: 4rem;
  margin-block-end: 8rem;
}
.news-slider .news-swiper {
  width: 100%;
  overflow: visible;
  padding-inline: 10%;
}
.news-slider .news-swiper .swiper-slide {
  height: auto;
  width: clamp(300px, 30%, 460px);
  position: relative;
}
.news-slider .news-swiper .swiper-slide .button--arrow {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
}
.news-slider .news-swiper .swiper-slide .button--arrow::after {
  min-width: 40px;
  background-position: top 50% left 50%;
}

.news-slider__title-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.news-slider__title-container img {
  position: absolute;
  top: -14rem;
  opacity: 0.1;
}

.news-slider__title {
  padding-inline: 8rem;
  text-align: center;
}
.news-slider__title::after {
  margin-block-start: 4rem;
}

.swiper-slide--news .slide__image {
  aspect-ratio: 16/9;
}
.swiper-slide--news .slide__title {
  font-size: var(--text-28);
}
.swiper-slide--news .slide__title,
.swiper-slide--news .slide__text {
  color: var(--black);
}
.swiper-slide--news .slide__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin-block-end: 6rem;
}
@media screen and (max-width: 500px) {
  .swiper-slide--news .slide__text {
    margin-block-end: 8rem;
  }
}
.swiper-slide--news .button {
  display: flex;
  justify-self: flex-end;
}
.swiper-slide--news:hover .button::after {
  transform: translateX(0.35rem);
  background-color: var(--red);
  border-color: var(--red);
  background-image: url("../../images/arrow-button-white.svg");
}

.slider__navigation--news {
  justify-content: center;
  margin-block-start: 3rem;
}

.footer-cta__bg-images {
  width: 100%;
  position: relative;
  margin-block-start: -14%;
}
@media screen and (max-width: 680px) {
  .footer-cta__bg-images {
    margin-block-end: 0;
  }
}

.footer-cta__title {
  font-size: var(--text-44);
}

.footer-cta__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .footer-cta__image {
    margin-block-end: 10%;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta__image {
    margin-block-end: 20%;
  }
}

.footer-cta__screenshot-image {
  position: absolute;
  bottom: 40%;
  right: 8rem;
}
@media screen and (max-width: 1100px) {
  .footer-cta__screenshot-image {
    scale: 0.9;
    right: 2rem;
    bottom: 35%;
  }
}
@media screen and (max-width: 960px) {
  .footer-cta__screenshot-image {
    scale: 0.65;
  }
}
@media screen and (max-width: 800px) {
  .footer-cta__screenshot-image {
    right: -6rem;
    scale: 0.5;
    padding: 0;
    backdrop-filter: none;
  }
}
@media screen and (max-width: 680px) {
  .footer-cta__screenshot-image {
    scale: 0.5;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta__screenshot-image {
    right: -10rem;
    scale: 0.4;
  }
}
@media screen and (max-width: 375px) {
  .footer-cta__screenshot-image {
    scale: 0.35;
  }
}

.footer-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-inline: 4rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 680px) {
  .footer-cta__container {
    margin-block-end: 10%;
  }
}
@media screen and (max-width: 500px) {
  .footer-cta__container {
    margin-block-end: 20%;
  }
}

.footer-cta__button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.alternating-sections {
  padding-block: 0 12rem;
  position: relative;
}
.alternating-sections .bg-airplane-outline {
  position: absolute;
  top: -1vh;
  right: -5rem;
  width: clamp(280px, 20vw, 460px);
  z-index: 5;
  opacity: 0.1;
}
@media screen and (max-width: 1400px) {
  .alternating-sections .bg-airplane-outline {
    top: -10vh;
  }
}

.alternating-sections__section {
  display: flex;
  align-items: center;
  margin-block-end: 10rem;
  gap: 10rem;
}
@media screen and (max-width: 1100px) {
  .alternating-sections__section {
    gap: 6rem;
    margin-block-end: 16rem;
  }
}
@media screen and (max-width: 960px) {
  .alternating-sections__section {
    flex-direction: column !important;
    padding-inline: 4rem;
    margin-block-end: 6rem;
  }
  .alternating-sections__section .alternating-sections__image {
    border-radius: 2rem !important;
  }
  .alternating-sections__section .alternating-sections__content {
    padding-inline: 2rem !important;
  }
}
@media screen and (max-width: 375px) {
  .alternating-sections__section {
    padding-inline: 2rem;
  }
}
.alternating-sections__section:nth-child(even) {
  flex-direction: row-reverse;
}
.alternating-sections__section:nth-child(even) .alternating-sections__image {
  border-radius: 5rem 0 0 5rem;
}
.alternating-sections__section:nth-child(even) .alternating-sections__content {
  padding-inline-start: var(--raas-padding-inline);
  padding-inline-end: 0;
}
@media screen and (max-width: 1100px) {
  .alternating-sections__section:nth-child(even) .alternating-sections__content {
    padding-inline-start: 4rem;
  }
}

.alternating-sections__image-wrapper {
  position: relative;
}
.alternating-sections__image-wrapper .blurred-bg-image {
  padding-inline: 2.2rem;
}
@media screen and (max-width: 680px) {
  .alternating-sections__image-wrapper .blurred-bg-image {
    padding-inline: 1rem;
  }
}

.alternating-sections__image {
  aspect-ratio: 16/9;
  border-radius: 0 5rem 5rem 0;
  max-width: 900px;
  width: 100%;
  overflow: clip;
  flex: 100%;
}
.alternating-sections__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.alternating-sections__secondary-image {
  position: absolute;
  bottom: -6rem;
  left: 25%;
}
@media screen and (max-width: 960px) {
  .alternating-sections__secondary-image {
    left: auto;
    right: 2rem;
    bottom: 0;
  }
}

.alternating-sections__content {
  padding-inline-end: 4rem;
  flex: 50%;
}

.alternating-sections__title {
  margin: 0 0 3rem;
}

.alternating-sections__pretitle {
  margin: 0 0 0.5rem;
  color: var(--red);
}

.alternating-sections__text {
  max-width: 650px;
}

.table-container {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-block-end: 4rem;
  width: 100%;
}

thead {
  background-color: var(--light-grey);
  text-align: left;
}

th,
td {
  padding: 1.5rem;
  border: 1px solid var(--grey);
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-pagenavi {
  display: flex;
  gap: 1rem;
}

.flexible-layout-wrapper {
  position: relative;
  margin-block-end: 18rem;
}

.flexible-section {
  --border-radius: 4rem;
  position: relative;
  padding-block: 12rem;
  padding-inline: var(--padding-inline);
  /* Remove bottom margin from last block in a column */
}
@media screen and (max-width: 1100px) {
  .flexible-section {
    padding-block: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section {
    padding-block: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section {
    padding-inline: 0;
    padding-block: 4rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 360px) {
  .flexible-section {
    border-radius: 0;
  }
}
.flexible-section .block-wrapper:last-of-type {
  margin-bottom: 0;
}
.flexible-section .post-list {
  margin-block-end: 4rem;
}
.flexible-section .button {
  color: inherit;
}

.flexible-section--light,
.flexible-section--dark {
  margin-inline-end: 15rem;
  padding-inline-start: 5%;
  border-radius: 0 4rem 4rem 0;
}
@media screen and (max-width: 1700px) {
  .flexible-section--light,
  .flexible-section--dark {
    padding-inline-start: var(--padding-inline);
  }
}
@media screen and (max-width: 1300px) {
  .flexible-section--light,
  .flexible-section--dark {
    margin-inline-end: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section--light,
  .flexible-section--dark {
    margin-inline-end: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--light,
  .flexible-section--dark {
    padding-inline-start: 0;
  }
}

.flexible-section--light::before {
  left: calc(var(--padding-inline) + 5%);
}
@media screen and (max-width: 1700px) {
  .flexible-section--light::before {
    left: calc(var(--padding-inline) + var(--padding-inline));
  }
}
@media screen and (max-width: 1100px) {
  .flexible-section--light::before {
    width: 80px;
    top: -55px;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section--light::before {
    width: 60px;
    top: -40px;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--light::before {
    width: 50px;
    top: -35px;
    left: var(--padding-inline);
  }
}
@media screen and (max-width: 1100px) {
  .flexible-section--light {
    padding-block-start: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--light {
    padding-block-start: 8rem;
  }
}
.flexible-section--light .flexible-section__container {
  position: relative;
}

.flexible-section--dark::before {
  right: calc(var(--padding-inline) * 2);
}
@media screen and (max-width: 500px) {
  .flexible-section--dark::before {
    right: var(--padding-inline);
  }
}

.flexible-section--light::before,
.flexible-section--dark::before {
  content: url("../../images/edge-logo-small-compressed.svg");
  position: absolute;
  top: -83px;
  width: 120px;
}
@media screen and (max-width: 1100px) {
  .flexible-section--light::before,
  .flexible-section--dark::before {
    width: 80px;
    top: -55px;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section--light::before,
  .flexible-section--dark::before {
    width: 60px;
    top: -40px;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--light::before,
  .flexible-section--dark::before {
    width: 50px;
    top: -35px;
  }
}

.edit-section-btn {
  position: absolute;
  top: 3rem;
  right: 4rem;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  transition: all 0.2s ease;
}
.edit-section-btn img {
  width: 20px;
}
.edit-section-btn:hover {
  background: rgb(255, 255, 255);
  opacity: 0.9;
}

.parallax-bg-image {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 80%;
  max-width: 500px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
}

/* ============= OPTIONS ============= */
.flexible-section--remove-bottom-spacing {
  margin-block-end: 0;
  padding-block-end: 0;
}

.flexible-section--remove-top-spacing {
  padding-block-start: 0;
  margin-block-start: 0 !important;
}

.flexible-section--reduce-width .flexible-section__container {
  max-width: 1100px;
}
@media screen and (max-width: 1100px) {
  .flexible-section--reduce-width .flexible-section__container {
    max-width: 100%;
  }
}

.flexible-section--show-dark-bg-graphic::after {
  content: url("../../images/onDark-plane-headon-compressed.svg");
  width: 100%;
  max-width: 600px;
  opacity: 0.5;
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media screen and (max-width: 800px) {
  .flexible-section--show-dark-bg-graphic::after {
    max-width: 400px;
  }
}

.flexible-section--hide-top-graphic::before {
  display: none;
}

.flexible-section--centered .flexible-section__container {
  margin-inline: auto;
}

.flexible-section__title {
  margin-block-end: 5rem !important;
}

.flexible-section__title--align-left {
  text-align: left;
}

.flexible-section__title--align-center {
  text-align: center;
}
.flexible-section__title--align-center::after {
  margin-inline: auto;
}

.flexible-section__title--align-right {
  text-align: right;
}
.flexible-section__title--align-right::after {
  margin-inline-start: auto;
}

.flexible-section--full-width {
  max-width: 100%;
  border-radius: 0;
  margin-inline-end: 0;
}

/* ============= COLOURS ============= */
/* LIGHT & DARK --------------------------------------------------------------------------------------------------------------- */
.flexible-section--light .dropdown,
.flexible-section--dark .dropdown {
  background-color: var(--white);
}

/* LIGHT --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--light {
  background-color: var(--light-grey);
  margin-block-start: 6rem;
}
.flexible-section--light .media {
  background: var(--white);
}

/* DARK --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--dark {
  background-color: var(--black);
  color: var(--white);
  margin-block-start: 4rem;
  padding-block-start: 8rem;
}
.flexible-section--dark .text-block ul li,
.flexible-section--dark .text-block ol li {
  border-color: rgba(248, 209, 209, 0.1);
}
.flexible-section--dark .text-block ol li::before {
  color: var(--white);
}
.flexible-section--dark .quote,
.flexible-section--dark .media {
  background-color: var(--navy);
}
.flexible-section--dark .button:not(.article .button, .dropdown__label, .dropdown__inner) {
  border-color: var(--white);
  color: var(--white);
}
.flexible-section--dark .button:not(.article .button, .dropdown__label, .dropdown__inner)::after {
  background-image: url("../../images/arrow-button-white.svg");
  background-color: var(--red);
  border-color: var(--red);
}
.flexible-section--dark .dropdown {
  background-color: var(--navy);
}
.flexible-section--dark .dropdown::after {
  background-color: var(--white);
  opacity: 0.15;
}
.flexible-section--dark .dropdown__toggle svg {
  stroke: var(--white);
}
.flexible-section--dark .article .article__excerpt,
.flexible-section--dark .article .button {
  color: var(--black);
}

/* ============= COLUMN HANDLING ============= */
.flexible-section__container--center {
  align-items: center;
}

.flexible-section__container--flex-end {
  align-items: flex-end;
}

@media screen and (max-width: 800px) {
  .flexible-section__container--reverse .flexbile-section__column:first-child {
    order: 2;
  }
  .flexible-section__container--reverse .flexbile-section__column:last-child {
    order: 1;
  }
}

.flexible-section__container--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 800px) {
  .flexible-section__container--2-cols {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--3-cols,
.flexible-section__container--2-thirds-1-third,
.flexible-section__container--1-third-2-thirds {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 800px) {
  .flexible-section__container--3-cols,
  .flexible-section__container--2-thirds-1-third,
  .flexible-section__container--1-third-2-thirds {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1100px) {
  .flexible-section__container--3-cols,
  .flexible-section__container--4-cols,
  .flexible-section__container--2_thirds_1_third,
  .flexible-section__container--1_third_2_thirds {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .flexible-section__container--3-cols,
  .flexible-section__container--4-cols,
  .flexible-section__container--2_thirds_1_third,
  .flexible-section__container--1_third_2_thirds {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--2-thirds-1-third .flexbile-section__column:nth-child(1) {
  grid-column: span 2;
}

.flexible-section__container--1-third-2-thirds .flexbile-section__column:nth-child(2) {
  grid-column: span 2;
}

.flexible-section__container--2-cols,
.flexible-section__container--3-cols,
.flexible-section__container--4-cols,
.flexible-section__container--2_thirds_1_third,
.flexible-section__container--1_third_2_thirds {
  display: grid;
  gap: clamp(2rem, 4vw, 12rem);
}
.flexible-section__container--2-cols .quote__graphic,
.flexible-section__container--3-cols .quote__graphic,
.flexible-section__container--4-cols .quote__graphic,
.flexible-section__container--2_thirds_1_third .quote__graphic,
.flexible-section__container--1_third_2_thirds .quote__graphic {
  display: none;
}

.hidden {
  display: none;
}

.hidden--visually {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; /* added line */
  width: 1px;
}

.alignleft {
  float: left;
  margin: 0 2rem 2rem 0;
}

.alignright {
  float: right;
  margin: 0 0 2rem 2rem;
}

.aligncenter {
  margin: 3rem auto;
}
