@view-transition {navigation: auto;}
*, ::after, ::before {padding: 0; margin: 0; box-sizing: border-box;}
html {font-size: 18px; scroll-behavior: smooth; scroll-padding-top: 3rem;}
body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    font-size: 0.95rem; 
    font-weight: 300; 
    line-height: 1.5; 
    color: rgb(28,28,28); 
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: rgb(28,28,28);
    text-decoration-color: rgba(6, 16, 60, 0.8);
    text-underline-offset: 0.15rem;
    transition: 0.2s opacity ease-in-out;
}
a:not(.logo):hover {opacity: 0.5;}
a[href^="mailto:"] {text-decoration: none;}
p {margin-bottom: 1.6em;}
p:last-child, ul:last-child {margin-bottom: 0;}
img {max-width: 100%; display: block;}
h1 {font-size: 3rem; font-weight: 500; line-height: 1; margin-bottom: 1rem;}

h2 {
    font-size: 1.2rem;
    font-family: 'Sometype Mono', monospace;  
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.4);
    font-weight: normal;
    margin-bottom: 2.25rem;
    padding-bottom: 0.4rem;
    letter-spacing: 0.025em;
    margin-top: 3rem;
}
h2:first-child {margin-top: 0;}
main ul {
    list-style: none;
    position: relative;
    margin-bottom: 1.6em;
}
main ul li {padding-block: 0.25rem;}
main ul + h2 {margin-top: 6rem;}
main ul:not(.tabs-nav) li {
    padding-left: 1.1rem;
}
main ul:not(.tabs-nav) li::before {
    content: '>';
    display: block;
    position: absolute;
    margin-left: -1.1rem;
}
h3, .list .title {font-size: 2rem; font-weight: 500; line-height: 1.2; margin-block: 4rem 1.5rem;}
.list {position: relative; }
.list .title {margin-top: 0; width: 15em; max-width: 45%; position: absolute;}
.list .title + ul {margin-left: 50%; border-top: 1px solid rgba(255,255,255,0.4);}
.list .title + ul li {padding-block: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.4);}
@media (max-width: 1000px) {
    .list .title {width: 100%; max-width: 100%; position: relative; font-size: 1rem; font-weight: 300;}
    .list .title + ul {margin-left: 0;}
}
hr {border: none; border-top: 1px solid rgb(28,28,28); margin-block: 3.5rem 3.75rem;}
.container {max-width: 100rem; margin: 0 auto; padding: 0 3.25rem;}
.logo {text-decoration: none;}
.logo img, .logo svg {display: block; height: 2.4rem; width: auto;}
.btn {
    display: inline-block;
    background: #1c1c1c;
    color: #f5f5f5!important;
    text-decoration: none;
    border-radius: 1.5rem;
    line-height: 2.25rem;
    padding-inline: 1.35rem;
    border: 1px solid #1c1c1c;
    transition: 0.25s all ease-in-out;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.btn:hover {
    background: transparent;
    color: rgb(28,28,28)!important;
}
.btn.reversed {
    background: transparent;
    color: rgb(28,28,28)!important;
}
.btn.reversed:hover {
    background: #1c1c1c;
    color: #f5f5f5!important;
}

/* HEADER */

header {
    background: #fff;
    color: #070708;
    padding-block: 1.1rem 0.75rem;
    font-size: 0.85rem;
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: transform 0.3s ease;
}
main {padding-top: 4rem;}
body.header-hidden header {transform: translateY(-100%);}
header .container {padding-inline: 2.25rem;}
header .container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .container nav ul {
    display: flex;
    gap: 2rem;
}
header a {text-decoration: none; font-weight: 500; user-select: none;}
header nav ul {
    list-style: none;
    padding-top: 1.1rem; 
}
header button {
    display: none;
    background: transparent;
    border: none;
    height: 2.4rem;
    width: 2.4rem;
    background: url(/img/menu.svg) center center / contain no-repeat;
    color: transparent;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    left: 0.4rem;
}
body.menuopen header button {
    background: url(/img/close.svg) center center / contain no-repeat;
}
@media (max-width: 1000px) {
    header button {display: block;}
    header .container nav ul {
        background: white;
        display: flex;
        position: absolute;
        top: 4.5rem;
        left: 0;
        transform: none;
        margin: 0;
        width: 100%;
        text-align: center;
        padding-block: 0 1rem;
        height: 0rem;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        transition: height 0.15s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }
    header .container nav ul li {
        opacity: 0;
        pointer-events: none;
        transition: none;
        transition-delay: 0s;
    }
    body.menuopen header .container nav ul {opacity: 1; height: 21rem; pointer-events: all;}
    body.menuopen header .container nav ul li {opacity: 1; pointer-events: all; transition: opacity 0.3s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out; transition-delay: 0.15s;}
    header .container nav ul li a {
        display: block;
        padding-block: 0.35rem;
        font-size: 1.25rem;
    }

}

@keyframes slideDown {
    from {transform: translate(-50%, -100%);}
    to {transform: translate(-50%, 0%);}
}



/* SECTIONS */

section {
    padding-block: 6rem;
    overflow: clip;
    background: #f5f5f5;
}
section .container > p:first-child,
section:not(.page,:has(p:first-child, .numbers)) h2 + p:not(:has(img)) {
    font-size: 1.92rem;
    line-height: 1.4;
    max-width: 33.5em;
    font-weight: 500;
    margin-bottom: 1.75em;
}
section .container > p:first-child {max-width: 28em;}
section > .container:has(> p:first-child) h2 ~ p:not(:has(+ .blocks)) {
    margin-left: 50%;
}
section > .container:has(> p:first-child) h2 + p:has(+ .blocks) {max-width: 38rem;}
section:has(h3):not(:has(.numbers, .accordion, .blocks, .leadership)) .container > *:not(p:has(img), h2, h3, .bigtext, .tabs) {
    padding-left: 50%;
}
section.white:nth-child(odd) {background: white;}

/* DARK SECTIONS */
section:nth-child(odd):not(:first-child,.white), section:has(.bigtext), section.page {
    background: #1c1c1c; color: #f5f5f5;
    & + & {background: black;}
    a {color: #f5f5f5;}
    .tabs ul.tabs-nav {border-color: rgba(255, 255, 255, 0.4);}
    .tabs ul.tabs-nav li.active a {border-color: #f5f5f5;}
    h2 {border-color: rgba(255, 255, 255, 0.4)!important;}
    ul.accordion > li:first-child > li {border-color: rgba(255,255,255,0.5);}
    ul.accordion > li > * > button::after {filter: invert(0);}
}

/* SECTION IMAGE */
.parallax:has(+ .container:empty) {margin-bottom: 0;}
.container:empty + .parallax:has(+ .container:empty) {margin-top: 0;}
section:has(.container:empty:first-child + .parallax) {padding-top: 0;}
section > .container:empty:first-child + .parrallax {margin-top: 0;}
section:has(.container:empty:last-child) {padding-bottom: 0rem;}
h2 + .tabs ul.tabs-nav {border: 0;}
section .container > h2:first-child:has(+ .bigtext) {margin-top: -2rem;}

h3 {position: absolute; max-width: calc(50% - 6.5rem); margin: 0;}
p img {margin-block: 2rem 3rem;}


.tabs ul.tabs-nav {
    margin-block: 6rem 1rem; 
    list-style: none; 
    display: flex; 
    gap: 2.25em;
    position: relative;
}
.tabs ul.tabs-nav a {
    opacity: 0.3; 
    text-decoration: none; 
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 0.3rem;
    line-height: 1.6;
    display: block;
    border-bottom: 2px solid transparent;
    user-select: none;
}
.tabs ul.tabs-nav a:hover {color: inherit;}
.tabs ul.tabs-nav li {position: relative; top: 1px; padding-block: 0;}
.tabs ul.tabs-nav li.active a {opacity: 1; border-bottom: 2px solid #1c1c1c;}
.tabs .tab-content {display: none; padding-top: 1.35rem;}
.tabs .tab-content.active {display: block;}
.tabs .tab-content h3 {display: none;}
.tabs .tab-content img {width: 100%; aspect-ratio: 1.9; object-fit: cover;}


.blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    cursor: pointer;

    h3 {position: relative; max-width: 100%;}
    & > * {background: #1c1c1c; aspect-ratio: 1; color: #f5f5f5; padding: 1.75rem 1.25rem; position: relative; display: flex; justify-content: flex-end; flex-direction: column;}
    & > *:nth-child(2) {grid-column: span 2; aspect-ratio: auto;}
    & > * > * {position: relative; z-index: 2;}
    & > * > h3 {margin-bottom: 0;}
    & > * > .block-content {height: 0; overflow: hidden; transition: height 0.4s ease;}
    & > * > .block-content > :first-child {padding-top: 1rem;}
    & > * > .parallax {position: absolute; left: 0; top: 0; z-index: 1; width: 100%; height: 100%; opacity: 0!important; transition: opacity 0.4s ease!important;}
    & > * > .parallax::before {content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(28,28,28,1) 0%, rgba(28,28,28,0) 75%);}
    & > *.is-hovered > .parallax {opacity: 1!important;}
}
@media screen and (max-width: 1500px) {
    .blocks {
        display: flex;
        flex-wrap: wrap;

        & > * {flex: 1; min-width: min(30rem, 100%);}
    }
}

.leadership {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem 1rem;

    li {padding: 0!important;}
    li::before {content: none!important;}
    li h3 {position: relative; font-size: 1.3rem; max-width: 100%; font-weight: 600;}
    li img {width: 100%; height: auto; margin-bottom: 0.81rem;}
}


section:has(#our-fleet) .bigtext:not(:first-child) {padding-top: 23rem;}
section:has(#our-fleet) {
    background: #1c1c1c url(/img/map.svg) center calc(100% - 2rem) / 81rem auto no-repeat;
}

.numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.2rem 1.1rem;
    margin-bottom: 7rem;
}
.numbers > div {background: #1c1c1c; color: white; padding: 2rem 1.25rem 1.25rem;}
.numbers .title {font-weight: 500; margin-bottom: 0.75rem; font-size: 4rem; line-height: 1;}
.numbers .description {font-size: 0.95rem; line-height: 1.4; margin-top: -0.5rem;}
.numbers .parallax {margin-top: 1.35rem;}
.numbers .parallax img {
    width: 100%; 
    object-fit: cover; 
    aspect-ratio: 1.9;
}
@media (min-width: 850px) and (max-width: 1240px) {
    .numbers {grid-template-columns: 1fr 1fr;}
}
@media (min-width: 1240px) and (max-width: 1620px) {
    .numbers {grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));}
}


.card {
    background: white;
    position: relative;
    height: 23rem;
    padding: 1.5rem 2.25rem 1rem;
    padding-left: calc(51% + 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
}
.card h4 {margin: 0 0 2.25rem; font-size: 2rem; font-weight: 500;}
.card div.parallax {
    position: absolute;
    left: 0; 
    top: 0;
    width: 51%!important;
    display: block;
    margin: 0;
    background-color: #e5e5e5;
}
.card div.parallax img {
    margin: 0;
    height: 23rem;
    object-fit: cover;
    width: 100%;
    opacity: 0!important;
}


section:has(.card) {
    padding-bottom: 1rem;
    position: relative;
}
section:has(.card) {
    background-image: linear-gradient(to bottom, #f5f5f5 calc(100% - 9rem), #1c1c1c calc(100% - 9rem));
}

.edgecards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.2rem 1.1rem;
    padding-top: 0;
}
.edgecards > div {
    padding: 2rem 1.5rem 0.25rem; 
    position: relative;
}
.edgecards > div::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    --border-width: 1px;
    --corner-offset: 2rem;
    --mask: polygon(
        0 0,
        calc(100% - var(--corner-offset)) 0,
        100% var(--corner-offset),
        100% 100%,
        0 100%,
        0 0,

        var(--border-width) var(--border-width),
        var(--border-width) calc(100% - var(--border-width)),
        calc(100% - var(--border-width)) calc(100% - var(--border-width)),
        calc(100% - var(--border-width)) calc(var(--corner-offset) + var(--border-width) / 2),
        calc(100% - var(--corner-offset) - var(--border-width) / 2) var(--border-width),
        var(--border-width) var(--border-width)
    );
    -webkit-clip-path: var(--mask);
    clip-path: var(--mask);
}

.edgecards .title {font-size: 1.95rem; line-height: 1.2; font-weight: 500; height: 7.75rem; max-width: 80%;}
.edgecards ul {font-size: 0.85rem; line-height: 1.8;}
@media (min-width: 1240px) and (max-width: 1620px) {
    .edgecards {grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));}
}

.parallax {background: url() center center / cover no-repeat; position: relative; overflow: hidden; display: block;}
section > div.parallax {margin-block: 3rem 3.5rem; aspect-ratio: 3;}
.parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0!important;
}
.parallax.inline {margin-bottom: 3rem; padding: 0!important;}
.parallax.inline img {
    aspect-ratio: 2.5;
}
@keyframes parallax {
  from { 
    background-position: center bottom;
  }
  to {
    background-position: center top;
  }
}
.parallax {
  animation: parallax linear;
  animation-fill-mode: none;
  animation-timeline: view();
}


/* BIGTEXT */
.bigtext {
    padding-block: 7rem 0.5rem;
}

h2 + .bigtext {padding-top: 12rem;}
.bigtext p {
    font-size: 3rem!important;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 2.38rem;
    max-width: 25em!important;
}
.bigtext-word {
    color: #494949;
    transition: color 1s; 
}


/* SECTION PAGE */

body.menuopen:has(section.page) header .container nav ul,
body:has(section.page), body:has(section.page) header {background: #1c1c1c;}
body:has(section.page) header a {color: #f5f5f5; font-weight: 400;}
body.menuopen:has(section.page) header a {font-weight: 500;}
body:has(section.page) header button,
body:has(section.page) header .logo img, body:has(section.page) header .logo svg {filter: invert(1);}
section.page .container {max-width: 45rem; padding-bottom: 3rem;}
section.page h1 {margin-block: 3rem 4rem;}
section.page h2 {
    font-size: 1.7rem; 
    margin-block: 5rem 1.5rem; 
    border: 0;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-weight: 500;
    line-height: 1.2;
}
section.page h1 + h2 {margin-top: 0rem;}


section:has(.accordion) .container > *:not(p:first-child) {margin-left: 30%;}
section:has(.accordion) .container > p:not(:first-child),
section:has(.accordion) ul.accordion > li > div > div > * {max-width: 55rem;}
@media (max-width: 1200px) {
    section:has(.accordion) .container > * {margin-left: 0!important;}
}
@media (max-width: 600px) {
    section.page {padding-top: 4rem;}
}

/* SECTION HEADER */

section.header {
    padding-block: 0;
    background: white;
}
section.header .container {
    padding-inline: 2.25rem;
}
section.header .header-video {
    margin-bottom: 2.5rem;
}
section.header + section {
    padding-top: 2.5rem;
}
section.header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: 50% 50%;
    aspect-ratio: 1.85;
    animation: header-parallax linear;
    animation-fill-mode: none;
    animation-timeline: view();
}
@keyframes header-parallax {
    from { object-position: center bottom; }
    to   { object-position: center top; }
}


div.facility {
    display: grid; grid-template-columns: 1fr 20rem; padding: 0 !important; align-items: flex-start; grid-gap: 1rem; 
     
    & figure {position: relative; display: flex; align-items: flex-start;  }
    & img { width: 100%;  }
    
    & .dots {  position: absolute; top: 0; left: 0; width: 100%; height: 100%;  }
    & .dots li { position: absolute; left: var(--left); top: var(--top);  padding: 0; width: 1rem; height: 1rem; clip-path: none;
        &::before { display: none; }
        & button { position: relative; width: 100%; height: 100%;  transform: translate(-50%, -50%); border-radius: 50%; background: #494949; transition: background 333ms;  border: none; cursor: pointer; }
        & button::before { position: absolute; top: 50%; left: 50%; width: 160%; height: 160%; border-radius: 50%; border: 1px solid #CB4520; content: ""; transform: translate(-50%, -50%) scale(var(--scale, 0)); transition: transform 333ms, border-color 333ms; }
        & button::after { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 150%; height: 150%; border-radius: 50%; content: ""; }
        & button:is(:hover,.active) { background: #CB4520; }
        &:has(button.active) { z-index: 2; }
    }
    & .dots li button.active::before { --scale: 1;  }
    
    & .captions { height: 100%;  margin-inline: auto;  width: 100%; }
    & .captions > li { padding: 1rem .5rem; height: 100%; animation: fade-in 500ms forwards;   display: none; }
    & .captions > li.active {  display: block;  }
    & .captions > li::before { display: none; }
    & .captions > li > * {padding-inline: .5rem;}
    & .captions > li h3 { max-width: unset; margin-block: unset; position: relative;  font-size: 1rem; font-weight: 600;}
    & .captions > li h2 { padding-block: .5rem 2rem; margin-bottom: 1rem; padding-right: 2rem;  display: flex; }
    & .captions > li h2::before { position: relative; display: block; margin-right: 1rem; margin-top: .5rem;  content: ""; flex-shrink: 0; width: .9rem; height: .9rem;  border-radius: 50%; background: #CB4520; box-shadow: 0 0 0 4px #1c1c1c, 0 0 0 5px #CB4520;}
    & .captions > li hr { padding-block: 1rem; margin-block: auto; height: 1px; border-top: 1px solid rgba(255, 255, 255, 0.4); }

    .buttons { position: absolute; bottom: 0.25rem; right: 0.25rem;  display: flex; gap: .25rem; }
    .buttons button { width: 1.8rem; height: 1.8rem; padding: 0.4rem;  display: grid; place-items: center; cursor: pointer; }
    .buttons button:hover { background: #494949; }

    @media only screen and (min-width: 1024px) {
        .mobile { display: none; }
    }
    @media only screen and (max-width: 1024px) {
         grid-template-columns: 1fr;
        & .dots li { width: 0.8rem; height: 0.8rem; }
    }
}

.buttons { position: absolute; bottom: 0.25rem; right: 0.25rem;  display: flex; gap: .25rem; }
.buttons button { width: 1.8rem; height: 1.8rem; padding: 0.4rem;  display: grid; place-items: center; cursor: pointer; }
.buttons button:hover { background: #494949; }

.cut-corner { position: relative;  --border-width: 1px; --corner-offset: 3rem; }
.cut-corner::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.4); z-index: -1;  clip-path: polygon( 0 0, calc(100% - var(--corner-offset)) 0, 100% var(--corner-offset), 100% 100%, 0 100%, 0 0, var(--border-width) var(--border-width), var(--border-width) calc(100% - var(--border-width)), calc(100% - var(--border-width)) calc(100% - var(--border-width)), calc(100% - var(--border-width)) calc(var(--corner-offset) + var(--border-width) / 2), calc(100% - var(--corner-offset) - var(--border-width) / 2) var(--border-width), var(--border-width) var(--border-width) ) }

@keyframes fade-in  {
    from { opacity: 0; transform: translateY(1rem);}
    to { opacity: 1; transform: none;}
}

/* =========================================================== */
/* ======================== ZOALS DIT ======================== */
/* =========================================================== */

/* --------------- CARROUSEL --------------- */
section:has(.curtain-carousel) {  padding-block: 0; background: #1c1c1c;  }
section:has(.curtain-carousel) .container { padding-inline: 0;}
figure.curtain-carousel { display: flex; position: relative; flex-direction: column;   padding-left: 0 !important;   

    & .slider { position: relative; }
    & .slider ul { display: flex; overflow: auto; scroll-snap-type: x mandatory;  margin: 0;  -ms-overflow-style: none; scrollbar-width: none;  scroll-behavior: smooth;}
    & .slider ul::-webkit-scrollbar { display: none; } 
    & li { padding: 0 !important; flex-shrink: 0; width: 100%; scroll-snap-align: center;  }
    & .slider li img { user-select: none;}
    & .slider li::before { display: none !important; }
    & .buttons { position: relative; }
    & .indicators { position: absolute; left: 0; right: 0; margin: 0 auto; z-index: 2; bottom: .8em;  display: flex; justify-content: center; gap: .6em;  pointer-events: none; }
    & .indicators > button { --_size: .8em; width: var(--_size); height: var(--_size);  border-radius: 50%;  transition: transform 500ms; pointer-events: all; position: relative; border: none; background: #f5f5f5;   opacity: .5; cursor: pointer; }
    & .indicators > button::before { content: ""; position: absolute;  --_excess: -0.15em; top: var(--_excess); left: var(--_excess); width: calc(100% - var(--_excess) * 2); height: calc(100% - var(--_excess) * 2); }
    & .indicators > button[data-active=true] {  transform: scale(1.3);   opacity: 1;}
    & .bottom { display: grid; grid-template-columns: 1fr auto; color: #f5f5f5; padding: 2rem 3.25rem;  }
    & .bottom .buttons { margin-top: 1.5rem; gap: 1rem;  }
    & .bottom .buttons button { width: 2.25rem; height: 2.25rem; background: transparent; border: 1px solid; }
    & .bottom .buttons button:hover { background: #f5f5f5; border: 1px solid #f5f5f5;}
    & .bottom .buttons button svg { width: 1.25rem; height: auto; }
    & .bottom .buttons button path { fill: currentColor;}
    & .bottom h3 { position: relative; max-width: unset; }
    & .bottom > ul { position: relative; margin: 0;  }
    & .bottom > ul > li { position: absolute; bottom: 0; left: 0; max-width: 35rem; opacity: 0; transition: opacity 333ms 125ms;}
    & .bottom > ul > li[data-active=true] { opacity: 1; transition: opacity 333ms 0ms}
    
    &[data-pos="left"] .bottom .buttons button:first-of-type {opacity: .3; pointer-events: none;}
    &[data-pos="right"] .bottom .buttons button:last-of-type {opacity: .3; pointer-events: none;}

    & .slider::before,
    & .slider::after { content: ""; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: #1c1c1c;  z-index: 3;  transition: transform 500ms;}
    & .slider::after { right: 0; left: unset;}
    &.in-view .slider::before { transform: translateX(-100%);}
    &.in-view .slider::after { transform: translateX(100%);}
}


/* FORMS */

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
}
.input-group > label {display: block;}
.input-group > textarea,
.input-group > select,
.input-group > input:not(.btn) {
    border: 0; 
    border-bottom: 1px solid rgba(6, 16, 60, 0);
    background-color: rgba(6, 16, 60, 0.07);
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: 0.1s all ease-in-out;
    color: rgb(28,28,28);
    line-height: 1.4;
    border-radius: 0;
}
.input-group > textarea {
    resize: none;
    overflow-y: hidden;
    height: calc(3.7rem + 1px);
}
.input-group > input:placeholder-shown,
.input-group > textarea:placeholder-shown {
    background: transparent;
    border-color: rgb(28,28,28);
}
form button.btn {min-width: 10rem; margin-top: 0.25rem;} 

@media (max-width: 600px) {
.input-group > textarea,
.input-group > select,
.input-group > input:not(.btn) {
    background-color: rgba(6, 16, 60, 0.07)!important;
    border-color: transparent!important;
}
}


/* FOOTER */

footer {
    background: black;
    padding-block: 0rem 2rem;
    color: #f5f5f5;
    border-top: 1px solid rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
footer a {color: #f5f5f5; text-decoration: none;}
footer ul {list-style: none;}
footer h3 {position: relative; max-width: 100%;}
footer > div:first-child .container {display: flex; justify-content: space-between;}
footer > div:last-child {font-size: 0.8rem;}

footer .left {line-height: 2; display: flex; flex-direction: column; justify-content: space-between;}
footer .left .logo {display: inline-block; margin-bottom: 3rem; filter: invert(1);}
footer .left .logo img, footer .left .logo svg {height: 3.75rem;}
footer .left h3 {font-size: 0.95rem; font-weight: 500; line-height: 2;}
footer .left .companies {
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    padding: 2rem 6rem 0rem 0;
}
footer .left .verticalsplit {display: flex; justify-content: space-between;}
footer .left .verticalsplit strong {font-weight: 500;}
footer .left .verticalsplit em {font-style: normal; opacity: 0.6;}
footer .left .verticalsplit > div:first-child {line-height: 1.6; display: flex; flex-direction: column; justify-content: flex-end;}
footer .left .companies ul li:first-child {font-weight: 500; font-size: 110%;}
footer .left, footer .right {flex: 1; padding: 3rem 3rem 4rem 0;}
footer .right {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: -3.25rem;
    padding: 0;
}
footer .right .horizontalsplit {display: flex; flex-direction: column; height: 100%;}
footer .right .horizontalsplit > div {flex: 1; position: relative;}
footer .right .horizontalsplit > div a {font-size: 3rem; font-weight: 400; line-height: 1; padding: 3rem; display: block;}
footer .right .horizontalsplit > div a::after {
    content: '';
    position: absolute;
    width: 4rem; 
    height: 3.5rem;
    background: url(/img/arrow-right-new.svg) center center / contain no-repeat;
    display: inline-block;
    right: 3.25rem;
    top: 3rem;
}
footer .right .horizontalsplit > div:first-child {border-bottom: 1px solid rgba(255, 255, 255, 0.4); position: relative;}
footer .right .horizontalsplit > div:first-child::after {
    bottom: 0;
    height: 1px;
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.4);
    width: max(0px, calc(50vw - 50rem));
    margin-bottom: -1px;
    left: 100%; 
}

/* Footer dark bar */

footer > div:not(:last-child) {
    background: #1c1c1c;
}
footer > div:last-child .container {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
}
footer > div:last-child .container ul {
    display: flex;
    gap: 1rem 2rem;
}


/* REVEAL */

@media (min-width: 1000px) {
    html.js section.page .container { opacity: 0; }
}

.reveal .line-wrap {
    display: block;
    overflow: hidden;
}
.reveal .line-inner {
    display: block;
    white-space: nowrap;
    transform: translateY(110%);
}
.reveal.visible .line-inner {
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
.reveal h2 {
    border-color: transparent;
}
.reveal.visible h2 {
    border-color: rgba(0, 0, 0, 0.4);
    transition: border-color 2s ease var(--delay, 0s);
}
section:nth-child(odd).reveal.visible h2 {
    border-color: rgba(255, 255, 255, 0.4);
}
.reveal .fade-in {
    opacity: 0;
}
html.js .reveal.visible .fade-in,
.reveal.visible .fade-in {
    opacity: 1;
    transition: opacity 0.8s ease var(--delay, 0s);
}
main .reveal li {
    clip-path: inset(0);
}
main .reveal li::before {
    transform: translateY(110%);
}
main .reveal.visible li::before {
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}


/* LENIS */

html.lenis, html.lenis body {height: auto;}
.lenis.lenis-smooth {scroll-behavior: auto !important;}
.lenis.lenis-smooth [data-lenis-prevent] {overscroll-behavior: contain;}
.lenis.lenis-stopped {overflow: hidden;}
.lenis.lenis-smooth iframe {pointer-events: none;}
 
@media (max-width: 1000px) {
    header .container,
    section.header .container {
        padding-inline: 1.25rem;
    }
    .container {
        padding-inline: 1.25rem;
    }
    section > .container:has(> p:first-child) h2 ~ p {
        margin-left: 0;
    }
    h3 {position: relative; max-width: 100%; margin-bottom: 2rem;}
    section:has(h3):not(:has(.numbers, .accordion)) .container > :not(p:has(img), h2, h3, .bigtext, .tabs) {
        padding-left: 0;
    }
    footer > div:first-child .container {flex-direction: column;} 
    footer .right {border-left: none; padding: 0 0 3rem 0; margin-inline: -1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.4);}
    footer .right h3 {padding-block: 1rem;}
    footer .left h3 {margin-bottom: 0.15rem;}
    footer .left .logo {margin-top: 2rem;}
    footer .left .companies {
        align-items: flex-start;
        padding: 0;
    }
    footer .right .horizontalsplit > div:first-child::after {content: none;}
    footer .right .horizontalsplit > div a {padding-inline: 1.25rem; padding-bottom: 4rem;}
    footer .right .horizontalsplit > div a::after {right: 1.25rem;}

    .bigtext {padding-block: 2rem;}
    .bigtext p {font-size: 2rem!important;}
    h2 + .bigtext {padding-top: 5rem;}
    section:has(#our-fleet) .tab-content:not(:last-child) .bigtext:not(:first-child) {padding-block: 7rem;}
    section:has(#our-fleet) .tab-content:last-child .bigtext:not(:first-child) {padding-block: 7rem 0;}
    h3,
    .edgecards .title,
    section .container > p:first-child, 
    section:not(.page, :has(p:first-child, .numbers)) h2 + p:not(:has(img)) {
        font-size: 1.5rem;
    }
    .edgecards .title {height: auto; padding-bottom: 1.35rem;}
    h2 {font-size: 1.15rem;}
    section:has(#our-fleet) {background-image: none;}
    .card {height: auto; padding-inline: 1.25rem; margin-inline: -1.25rem; font-size: 0.85rem;}
    .tab-content:first-of-type .card {padding-top: 3.5rem; margin-top: 4.5rem;}
    .tab-content:last-of-type .card {padding-bottom: 4.5rem;}
    .card div.parallax {position: relative; width: 100%!important; margin-bottom: 1rem; display: none;}
    .card h4 {margin-bottom: 1rem; font-size: 1.5rem;}
    .tabs ul.tabs-nav {display: none;}
    .tabs .tab-content {display: block; padding: 0; min-height: 0!important;}
    .tabs .tab-content:not(:has(.card)) h3 {display: block; margin-top: 4rem;}
    .tabs .tabs h3 {font-size: 1.1rem;}
    .card div.parallax img {height: auto; aspect-ratio: 1.9;}
    section > div.parallax,
    section.header video,
    .parallax.inline img {aspect-ratio: 1.9;}
    section.header .header-video {margin-bottom: 1.65rem;}
}


@media (max-width: 600px) {
    .edgecards {
        display: flex;
        flex-direction: column;
    }
    footer > div:last-child .container ul {gap: 1rem}
    footer .right {font-size: 0.85rem;}
    .numbers {grid-template-columns: 1fr;}
    .numbers > div {margin-inline: -1rem;}
    .numbers .title {font-size: 3rem;}
    section > div.parallax {aspect-ratio: 1;}
    section.header video {aspect-ratio: 0.9;}
}
@media (max-width: 450px) {
    html {font-size: 4vw;}
}
