@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: var(--my-soft-black);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    min-height: 100dvh;
}
:root {
    /* Base colors */
    --my-soft-black: #1c1c1c;
    --my-soft-white: #f5f5f5;

    /* Neutrals */
    --my-white: #FFF;
    --my-black: #000000;
    --my-dark-gray: #63686f;
    --my-body: #808080;
    --my-gray: #b4b8bd;

    /* Helsinki brand accent */
    --my-glacial: #d8e4ee;
    --my-steel: #8aaec6;
    --my-slate: #2e4755;
    --my-yellow: #e8c84a;

    /* White fades */
    --my-white-40: rgba(255, 255, 255, 0.4);
    --my-white-50: rgba(255, 255, 255, 0.5);

    /* Black fades */
    --my-black-15: rgba(0, 0, 0, 0.15);
    --my-black-20: rgba(0, 0, 0, 0.2);
    --my-black-40: rgba(0, 0, 0, 0.4);

    /* Slate fades */
    --my-slate-0: rgba(46, 71, 85, 0);
    --my-slate-7: rgba(46, 71, 85, 0.07);
    --my-slate-80: rgba(46, 71, 85, 0.8);
}
a {
    color: var(--my-soft-black);
    text-decoration-color: var(--my-slate-80);
    text-underline-offset: 0.15rem;
    transition: 0.2s opacity ease-in-out;
}
a:not(.logo, .btn):hover {opacity: 0.5;}
a[href^="mailto:"], a[href^="tel:"] {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;  
    border-bottom: 1px solid var(--my-black-40);
    font-weight: normal;
    margin-bottom: 3.5rem;
    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 var(--my-white-40);}
.list .title + ul li {padding-block: 1.2rem; border-bottom: 1px solid var(--my-white-40);}
@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 var(--my-soft-black); 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: 3rem; width: auto;}
.btn {
    --bg-color: var(--my-soft-black); 
    --text-color: var(--my-white); 
    display: inline-flex;
    align-items: center; 
    position: relative; 
    background: transparent;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: .5em calc(1.45em + 2.5em) .5em 1em;
    border: none; 
    transition: 0.25s all ease-in-out;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    isolation: isolate;
}
.btn::before { content: "";  z-index: -1; background: var(--bg-color); height: 100%; width: calc(100% - 3em); position: absolute; top: 0; left: 0;   border-radius: .25em; transition: border-radius 250ms, width 250ms; }
.btn::after { content: ""; height: 2.5em; width: 2.5em; display: inline-flex; justify-content: center; align-items: center; background: var(--bg-color) url('/img/news_arrow_right.svg') 51% 50% / .9rem auto no-repeat;  position: absolute; right: 0; border-radius: 50%; transition: border-radius 250ms, transform 250ms, background-position 250ms; }
.btn:hover { opacity: 1;}
.btn:hover::before {  border-radius: .25em 0 0 .25em; width: calc(100% - 1.7em); }
.btn:hover::after { border-radius: 0 .25em .25em 0; background-position-x: 55%;  transform: translateX(-33%);}

.btn.reversed {
    --bg-color: var(--my-soft-white); 
    --text-color: var(--my-soft-black); 
}
.btn.transparent {
    --bg-color: transparent; 
    --text-color: var(--my-soft-black); 
}

/* HEADER */

header {
    background: #fff;
    color: var(--my-soft-black);
    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: 5rem;}
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: .55rem; 
}
header nav .lang { align-self: flex-start; margin: 0 auto 0 2rem; padding-top: 0.25rem; }
header nav .lang select { border: none; padding: .5rem 1.5rem .5rem 1rem; appearance: none; -webkit-appearance: none; background: var(--my-glacial) url('/img/dropdown-arrow.svg') calc(100% - .6rem) 52% / .4rem .4rem no-repeat; cursor: pointer; }
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 {
    position: relative;
    padding-block: 4rem 5rem;
    overflow: clip;
}
section:nth-of-type(2n + 1) { background: var(--my-soft-white);}
section .container > p:first-child,
section:not(.page,:has(p:first-child, .numbers)) h2 + p:not(:has(img)) {
    font-size: 2.5rem;
    line-height: 1.2;
    max-width: 33.5em;
    font-weight: 500;
    margin-bottom: 1.75em;
}
section .container > p:first-child {max-width: 29.5em;}
section .container p:empty { display: none; }
section .container > p:only-child { margin-bottom: 0;}
section > .container:has(> p:first-child) h2 ~ :is(p:not(:has(+ .blocks)), ul:not([class])) {
    margin-left: 50%;
}
section > .container:has(> p:first-child) h2 + p:has(+ .blocks) {max-width: 38rem;}
section:has(h3):not(.milestone, :has(.numbers, .accordion, .blocks, .leadership)) .container > *:not(p:has(img), h2, h3, .bigtext, .tabs) {
    padding-left: 50%;
}
section > .container:has(> p:first-child) h2 ~ p a { font-weight: 500;}
section.news_section, section.news_page,
section.white:nth-child(odd) {background: white;}

section .container ul:has(li a[href$=".pdf"]):not(:has(li a:not([href$=".pdf"]))) {
    margin-left: 30%;
    & li { padding: 0; border-bottom: 1px solid var(--my-black); }
    & li a { display: block;  text-decoration: none; font-size: 1.4rem; background: url('/img/download.svg') calc(100% - .2rem) 50% / 1.8rem 1.8rem no-repeat; padding-block: 2rem; padding-right: 2.5rem; margin: 0; font-weight: 500;  }
    & li:first-of-type { border-top: 1px solid var(--my-black);}
    & li::before { display: none;  }
 }
section .container > p:has(~ ul li a[href$=".pdf"]) {
    margin-left: 30%!important;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 100%;
}

/* DARK SECTIONS */
section.dark, section.page, section.darkgray {
    background: var(--my-soft-black); color: var(--my-soft-white);
    a {color: var(--my-soft-white);}
    .tabs ul.tabs-nav {border-color: var(--my-white-40);}
    .tabs ul.tabs-nav li.active a {border-color: var(--my-soft-white);}
    h2 {border-color: var(--my-white-40)!important;}
    ul.accordion > li:first-child > li {border-color: var(--my-white-50);}
    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;}


/* SECTION PAGE */
section.page h1 + p {font-size: 1.5rem; font-weight: 500; line-height: 1.4;}


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 var(--my-soft-black);}
.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(24rem, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    cursor: pointer;

    h3 {position: relative; max-width: 100%;}
    & > * {background: var(--my-soft-black); aspect-ratio: 1; color: var(--my-soft-white); padding: 1.75rem 1.25rem; position: relative; display: flex; justify-content: flex-end; flex-direction: column;}
    &:not(:has(:nth-child(6))) > *: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, var(--my-soft-black) 0%, transparent 75%);}
    & > *.is-hovered > .parallax {opacity: 1!important;}
}
@media screen and (max-width: 1450px) {
   .blocks {grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));}
}
@media screen and (max-width: 1250px) {
    .blocks {
        display: flex;
        flex-wrap: wrap;

        & > * {flex: 1; min-width: min(20rem, 100%); aspect-ratio: 1!important;}
    }
}


/* NEWS SECTION AND NEWS PAGE */

section.news_page {
    margin-inline: auto;
    max-width: 58rem;
    .meta {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
        margin-bottom: 4rem;
        margin-top: -3rem;
    }
    h1 {margin-bottom: 3rem;}
    h2, h3 {
        position: relative;
        max-width: 100%;
        margin-block: 3rem 1rem;
        font-size: 1.5rem;
    }
}

section.news_section {
    margin-inline: auto;
    max-width: 80rem;
}
section.news_page, section.news_section, .news_blocks {
    .type, .date, .author {
        font-size: 0.9rem; 
        font-family: 'Sometype Mono', monospace; 
        letter-spacing: 0.025em;
        line-height: 1.3;
    }
    .author {margin-block: 4rem; line-height: 1.4;}
    .author img {border-radius: 100%; width: 4.5rem; margin-bottom: 1rem; display: block;}
    .date, .author_info {opacity: 0.5;}
    .author_info {margin-top: 0.15rem;}
    .type {text-transform: capitalize;}
} 

.news_blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;

    & > div {
        background: var(--my-soft-white); 
        color: var(--my-soft-black);
        display: grid;
        grid-gap: 1rem .5rem ;
        grid-template-columns: auto 1fr auto;
        align-items: flex-start; 
        justify-content: flex-start; 
        position: relative;
        padding: 1.75rem 1.75rem 4rem;
        text-decoration: none;
        grid-template-rows: auto 1fr;
    }
    & .type { font-weight: 600;}
    & > div > div:first-of-type { display: flex; flex-direction: column; align-self: center; font-family: system-ui; }
    & > div > div:first-of-type * { font-family: inherit !important;}
    & .markdown { grid-column: -1/1;}
    & .linkedin { color: var(--my-white); background:  #0072b1; width: 1.75rem; height: 1.75rem; padding: 0.25rem; border-radius: .1em;}
    & .linkedin svg { width: 100%; height: auto; }
    & .linkedin::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; content: ""; }
    & img { max-width: 3rem; height: auto; border-radius: 50%;}
    & > *::after {
        content: "";
        position: absolute;
        bottom: 1.75rem;
        right: 1.75rem;
        width: 2.5rem;
        height: 2.5rem;
        background: white url(/img/news_arrow_right.svg) 53% center / 0.9rem auto no-repeat;
        border-radius: 100%;
    }
    & > .news-hidden {display: none;}
    & > * .title  {
        font-weight: 500; 
        font-size: 1.75rem;
        line-height: 1.2;
        padding-top: 1.4rem;
        padding-bottom: 3rem;
        grid-column: -1/1;
    }
    &.is-shortcode > * { 
        aspect-ratio: auto;
    }
}
#news-show-all-wrap {margin-top: 2rem; text-align: center;}



/* LEADERSHIP */

.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: var(--my-soft-black) url(/img/map.svg) center calc(100% - 2rem) / 81rem auto no-repeat;
}

.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: var(--my-gray);
}
.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, var(--my-soft-white) calc(100% - 9rem), var(--my-soft-black) 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: var(--my-white-50);
    --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;
}
.parallax video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative; z-index: 4; 
}

@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: var(--my-dark-gray);
    transition: color 1s; 
}


/* SECTION PAGE */

body.menuopen:has(section.page) header .container nav ul,
body:has(section.page), body:has(section.page) header {background: var(--my-soft-black);}
body:has(section.page) header a {color: var(--my-soft-white); 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) brightness(1.08);}
section.page .container {max-width: 52rem; 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;
    position: relative; 
}
section.header button { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--my-white);  border: none; display: grid;place-items: center; position: absolute; bottom: 1.4rem; right: 1.4rem; cursor: pointer; }  
section.header button img { display: none; width: .8rem; height: auto; }
section.header video:not([data-playing]) + button { display: none; }
section.header video[data-playing=true] + button img:nth-of-type(1) { display: block; }
section.header video[data-playing=false] + button img:nth-of-type(2) { display: block; margin-left: .1em; }
/* 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: var(--my-dark-gray); 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 var(--my-yellow); 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: var(--my-yellow); }
        &: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: var(--my-yellow); box-shadow: 0 0 0 4px var(--my-soft-black), 0 0 0 5px var(--my-yellow);}
    & .captions > li hr { padding-block: 1rem; margin-block: auto; height: 1px; border-top: 1px solid var(--my-white-40); }

    .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: var(--my-dark-gray); }

    @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: var(--my-dark-gray); }

.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: var(--my-white-40); 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 --------------- */
.has-horizontal-scroll {  -ms-overflow-style: none; scrollbar-width: none;  scroll-behavior: smooth;}
.has-horizontal-scroll::-webkit-scrollbar { display: none; } 
section:has(.curtain-carousel) {  padding-block: 0; background: var(--my-soft-black);  }
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; }
    & li { padding: 0 !important; flex-shrink: 0; width: 100%; scroll-snap-align: center;  }
    & .slider li img { user-select: none;}
    & ul 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: var(--my-soft-white);   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: var(--my-soft-white); 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: var(--my-soft-white); border: 1px solid var(--my-soft-white);}
    & .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: var(--my-soft-black);  z-index: 3;  transition: transform 500ms 500ms;}
    & .slider::after { right: 0; left: unset;}
    &.in-view .slider::before { transform: translateX(-100%);}
    &.in-view .slider::after { transform: translateX(100%);}

    @media only screen and (max-width: 768px) {
        & .bottom { padding: 1rem;  align-items: flex-end; gap: 1rem; }
        & .bottom h3 { margin-bottom: .8rem;}
        & .bottom h3:last-child { margin-bottom: 0; }
        & .bottom ul {min-height: var(--min-height); }
    }
}


/* 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 var(--my-slate-0);
    background-color: var(--my-slate-7);
    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: var(--my-soft-black);
    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: var(--my-soft-black);
}
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: var(--my-slate-7)!important;
    border-color: transparent!important;
}
}


/* FOOTER */

footer {
    background: black;
    padding-block: 0rem 2rem;
    color: var(--my-soft-white);
    border-top: 1px solid var(--my-white-40);
    font-size: 0.85rem;
}
footer a {color: var(--my-soft-white); 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: 0 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;}
ul.socials {display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; padding: 0; --icon-size: 1.75rem;}
ul.socials li {position: relative; display: flex; justify-content: center; align-items: center;}
ul.socials li a {width: var(--icon-size); height: var(--icon-size); display: flex; justify-content: center; align-items: center; color: var(--my-soft-white); opacity: 0.85; transition: opacity 0.2s ease; border: 1px solid white;  border-radius: 50%;}
ul.socials li a:hover {opacity: 1;}
ul.socials li svg {width: 50%; height: 50%;}
footer .left .companies ul li:first-child {font-weight: 500; font-size: 110%; margin-top: -.4em;}
footer .left, footer .right {flex: 1; padding: 3rem 3rem 4rem 0;}
footer .right {
    border-left: 1px solid var(--my-white-40);
    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 p { padding: 3rem; } 
footer .right .horizontalsplit > div p a { text-decoration: underline;}
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:not(:last-child) {border-bottom: 1px solid var(--my-white-40); position: relative;}
footer .right .horizontalsplit > div:first-child::after {
    bottom: 0;
    height: 1px;
    position: absolute;
    content: '';
    background: var(--my-white-40);
    width: max(0px, calc(50vw - 50rem));
    margin-bottom: -1px;
    left: 100%; 
}

/* Footer dark bar */

footer > div:not(:last-child) {
    background: var(--my-soft-black);
}
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: var(--my-black-20);
    transition: border-color 2s ease var(--delay, 0s);
}
.reveal.visible .container > h2:first-child { text-transform: uppercase;}

.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(-1px -1px -1px -1pxc);
}
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) {

    section { padding-block: 2rem;}
    section.header .container {
        padding-inline: 1.25rem;
    }
    .container {
        padding-inline: 1.25rem;
    }
    section > .container:has(> p:first-child) h2 ~ :is(p:not(:has(+ .blocks)), ul:not([class])) { 
        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 var(--my-white-40);}
    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 > p {padding-inline: 1.25rem; padding-bottom: 0rem;}
    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; margin-bottom: 2rem;}
    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;}
    section > div.parallax {aspect-ratio: 1;}
    section.header video {aspect-ratio: 0.9;}

    header { padding-block: 0;}
    header .container { padding: 1.5rem 1.25rem; }
    main { padding-top: 5.4rem; }
}
@media (max-width: 450px) {
    html {font-size: 4vw;}
}

/* ======================== MILESTONE ======================== */
section.milestone { overflow: unset; z-index: 3;  }
section.milestone div:has(> img[alt="Ship outline"]) { position: static;  opacity: 1; margin-bottom: 0; }
section.milestone h3 { position: relative; width: 55%; margin-bottom: 3rem; }
section.milestone h2 ~ * { width: 55%; max-width: 40rem;  }
section.milestone p strong { font-weight: 600;}

@media only screen and (min-width: 768px) {
    section.milestone img[alt="Ship outline"] { position: absolute; width: 55%; height: auto; top: 20%; right: 0; opacity: .2 !important;  aspect-ratio: unset; }
}

@media only screen and (max-width: 768px) {
    section.milestone h2 ~ * { width: 100%;  }
    section.milestone div:has(> img[alt="Ship outline"]) { position: relative;  background: none; transform: translateX(1.25rem); }
    section.milestone img[alt="Ship outline"] { aspect-ratio: unset; width: 80%; margin-left: auto; position: relative; height: auto; opacity: .5 !important; }
}

/* ======================== HAS-TEXAS ======================== */
section.has-texas { overflow: unset;}
section.has-texas .container { isolation: isolate;}
section.has-texas img[src$="texas.svg"] { position: absolute; width: 55%; right: 5%; height: auto; top: -10%;  opacity: 1 !important;  aspect-ratio: unset; z-index: -1; }
section.has-texas div:has(img[src$="texas.svg"]) { position: static; opacity: 1; }

@media only screen and (max-width: 768px) {
    section.has-texas img[src$="texas.svg"] { width: 80%; right: 2%; top: 50%; translate: 0 -50%; }
}

/* ======================== GENERAL ======================== */
section ul.exclude { padding: 0; }
section ul.exclude > li {padding: 0; }
section ul.exclude > li::before { display: none; }


/* ======================== NUMBERS ======================== */
p + ul.numbers { margin-top: 5rem;}
ul.numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); grid-gap: .8rem; margin-right: 1px; }  
ul.numbers.numbers li { padding: 2rem 1.33rem; background: var(--my-soft-white); display: flex; flex-direction: column; }
ul.numbers li strong { font-size: 3.5rem; font-weight: 500; margin-top: 1rem;  }
ul.numbers li img { margin-top: auto; } 
/* ul.numbers li p { max-width: 11em; } */

section.visible:has(ul.numbers) h2 { text-transform: uppercase;}


@media only screen and (min-width: 768px) and (max-width: 885px) {
    ul.numbers > li:nth-of-type(1) { grid-column: -1/1;}
}

@media only screen and (max-width: 768px) {
    ul.numbers.numbers li { padding: 2rem 1rem; }
    ul.numbers li strong { font-size: 2.5rem; }
    ul.numbers { grid-template-columns: 1fr; margin-bottom: 2rem;  }
    p + ul.numbers { margin-top: 4rem; }
    /* ul.numbers > li:last-of-type:nth-of-type(odd) { grid-column: -1/1;} */
    /* ul.numbers > li:last-of-type:nth-of-type(odd) p { max-width: 12em;} */
} 


/* ======================== OVERLAY ======================== */
section.overlay .container > img  { position: absolute; top: 0; left: 0; width: 100%; height: 100%;  object-fit: cover; }
section.overlay .container > div { background: var(--my-soft-black); position: relative; color: var(--my-soft-white);  padding: 2rem; max-width: 22rem; margin-block: clamp(10rem, 25vw, 15rem); 
    & p { margin-bottom: 0;}
    & h2 { font-size: 1.5rem; font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; line-height: 1.2; letter-spacing: -2%; margin: .5rem 0 1rem; border: none; text-transform: none; }
}

@media only screen and (max-width: 768px) {
    section.overlay { padding-top: 0; }
    section.overlay .container {padding-inline: 0; }
    section.overlay .container > img  { position: relative; height: auto; }
    section.overlay .container > div { padding-inline: 1.25rem; margin: 0 auto; width: 100%; max-width: 100%; } 
    
}

/* ======================== NEWS ======================== */
section:has(.news_blocks.is-shortcode) h2 { border: none;  margin-bottom: 0; padding-bottom: 0; }
section:has(.news_blocks.is-shortcode) { background: var(--my-white);}
section:has(.news_blocks.is-shortcode) .container { display: grid; grid-template-columns: 1fr auto; align-items: flex-end; }
section:has(.news_blocks.is-shortcode) h2 ~ *:not(.btn) { grid-column: -1/1;}
section .news_blocks.is-shortcode { margin-top: 0; padding-top: 2.5rem; border-top: 1px solid var(--my-black-20);  margin-top: .5rem; }


/* ======================== CONTACT ======================== */
section.contact .container { max-width: 80rem;color: var(--my-body);}
section.contact h1 { font-size: 5rem;  color: var(--my-soft-black);}
section.contact h1 ~ :not(div) { max-width: 30em; }
section.contact .get-in-touch { max-width: 20rem;  float: right;  }
section.contact .get-in-touch a:not(.btn) { color: inherit; transition: color 250ms;}
section.contact .get-in-touch a:not(.btn):hover { text-decoration: underline; color: var(--my-soft-black); opacity: 1;}
section.contact .get-in-touch a.btn { margin-top: 1rem;  }
section.contact .get-in-touch h2 { color: var(--my-soft-black); border-bottom: none; font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;; font-weight: 500; letter-spacing: -2%; margin-bottom: .5em;}
section.contact ul.accordions { clear: both; }

section:has(.contact-accordion) { background: var(--my-white);}
section:has(.contact-accordion) .container { max-width: 80rem; margin: 0 auto;  }
section:has(.contact-accordion) .container ul { margin: 0 auto !important; max-width: unset;  width: 100%; }
ul.accordion.contact-accordion > li:first-child { border-top: none;}

.contact-accordion .inner  { padding-top: 2rem; max-width: unset !important; padding-bottom: 5rem;}
.contact-accordion.accordion > li { border-bottom: none;}
.contact-accordion h3 button { font-family: 'Sometype Mono', monospace !important; text-transform: uppercase !important; font-weight: 400 !important; font-size: .95rem !important;  border-bottom: 1px solid var(--my-black-40) !important; padding-block: 1.2rem !important;}
.contact-accordion .locations { display: grid; grid-gap: 2rem; }
.contact-accordion .locations > div { display: grid; grid-template-columns: 1fr 1fr; width: 100%;   align-items: center; }
.contact-accordion address { font-style: normal;}
.contact-accordion h4 { font-weight: 500; font-size: 1.6rem;}
.contact-accordion address a { display: block; max-width: max-content; }

.contact-accordion .h1 { font-size: 3rem; margin-bottom: .5em; }
.contact-accordion div.contacts ul { display: grid; grid-template-columns: repeat(4,1fr); grid-gap: 1rem;}
.contact-accordion div.contacts li { padding: 1rem; border: 1px solid var(--my-black-15); color: var(--my-body); }
.contact-accordion div.contacts li strong { color: var(--my-black);}
.contact-accordion div.contacts li p { margin: 0; }
.contact-accordion div.contacts li a { color: inherit; margin-top: 0; display: block; }
.contact-accordion div.contacts > p { margin-left: auto; max-width: 22em; margin-top: 2rem;  font-size: 1.2rem; color: var(--my-body);}

.contact-accordion div.text { display: grid;  grid-template-columns: 1fr 1fr; grid-gap: 4rem; }
.contact-accordion div.text ul + p { margin-top: 1.4rem;}
.contact-accordion div.text div { color: var(--my-body);}
.contact-accordion div.text div a { color: inherit;}
.contact-accordion div.text div :is(h4,strong) { color: var(--my-black);}
.contact-accordion div.text div h4 { margin-bottom: 0.5em;}
.contact-accordion article { padding: 1.5rem; background: var(--my-soft-white); }
.contact-accordion article p { max-width: 20em; color: var(--my-body);} 
.contact-accordion article .btn { --bg-color: var(--my-white); margin-left: auto; display: flex; max-width: max-content; margin-top: 1.5rem;}