/* Global */
:root {
  /* 
  Color */
  --clr-heading: #272727;
  --clr-body: #272727;
  --clr-light: #ededed;
  --clr-dark: #222;
  --clr-teal: #03c1ba;
  --clr-grey: #777777;
  /* 
  Background */
  --bg-light: #f2f2f2;
  --bg-dark: #272727;
  --bg-dark-gradient: linear-gradient(rgba(32 32 32/.85), rgba(32 32 32/.5));
  /* 
  Font */
  --ff-heading: 'TT', sans-serif;
  --ff-body: 'TT', sans-serif;
  /* 
  Styles */
  --round-border-sm: 14px;
  --round-border-md: 20px;
  --border-dark: solid #000;
  --p-font-size: 17px;
  --transition: .5s cubic-bezier(0.17, 0.67, 0, 1.01);
  /* 
  Z index */
  --z-idx-low: 3;
  --z-idx-default: 5;
  --z-idx-high: 7;
  /*
  Sizes */
  --height-header: 80px;
  --width-container: 1280px;
  --width-px: 40px;
  --height-py-md: 10vmin;
  --height-btn-cta: 43px;
  --width-btn-cta: 348px;
  --height-btn-contact: 46px;
  --width-btn-contact: 234px;
}

@media (max-width: 1140px) {
  :root {
    --width-container: 700px;
    --width-px: 16px;
  }
}

@media (max-width: 720px) {
  :root {
    --width-container: 100%;
    --round-border-md: 14px;
    --height-py-md: 6vh;
    --height-header: 60px;
    --height-btn-cta: 43px;
    --width-btn-cta: 88%;
  }
}

* {
  color: inherit;
  font-family: var(--ff-body);
  /*  scroll-margin-top: 25vh;*/
  scroll-margin-top: var(--height-header);
  scroll-behavior: smooth;
}

@media (max-width: 720px) {
  * {
    scroll-margin-top: calc(var(--height-header) + 48px);
  }
}

html,
body {
  background: var(--bg-dark);
  color: var(--clr-dark);
  word-wrap: break-word;
  word-break: break-word;
  hyphens: manual;
  font-size: var(--p-font-size);
  font-family: var(--ff-body);
  overflow-wrap: break-word;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100%;
  -webkit-text-size-adjust: none;
}

textarea {
  resize: vertical
}

picture {
  display: block;
}

img {
  max-width: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background: currentColor;
}

::placeholder {
  opacity: 0.8;
}

::selection {
  background: #0099cc;
  color: #fff;
}

/* Backgrounds */
.bg-light {
  background: var(--bg-light);
}

.bg-dark {
  background: var(--bg-dark);
}

.bg-teal {
  background: var(--clr-teal);
}

.bg-blue {
  background: var(--bg-light-blue);
}

/* Buttons & icons */
.right-arrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
}

.right-arrow .stroke {
  display: block;
  width: 15px;
  height: 1px;
  height: 1.5px;
}

.right-arrow .arrow {
  display: block;
  margin-left: calc(1px - var(--size));
  width: calc(var(--size));
  height: auto;
  background-image: url(../img/nav-arrow-right-black.svg);
  background-position: center;
  background-size: cover;
  --size: 7px;
  aspect-ratio: 7/13;
}

.btn .icon.down-arrow {
  position: relative;
  top: -1.5px;
  transition: all var(--transition);
}

.down-arrow img {
  filter: invert();
  width: auto;
  height: 15px;
  vertical-align: text-bottom;
  margin-left: 2px;
}

.btn:hover .icon.down-arrow {
  top: 1.5px;
}

.btn-one {
  display: inline-grid;
  padding: 0px 16px;
  min-width: max-content;
  width: 188px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-radius: 100vmax;
  background: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: all var(--transition);
  align-items: center;
  grid-template-columns: 1fr auto;
  grid-gap: 0 10px;
}

.btn-one-mobile {
  padding: 0px 30px;
  width: 100%;
  height: 15vmin;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 6.5vmin;
  line-height: 100%;
}

.btn-one-mobile .label {
  position: relative;
  top: -0.3vmin;
}

/*
Button light & dark */
.btn-light {
  color: #fff !important;
}

.btn-light .icon .stroke {
  background: #fff;
}

.btn-light .icon .arrow {
  background-image: url(/wp-content/uploads/2024/02/nav-arrow-right.svg);
}

.btn-light:hover {
  background: rgba(255 255 255/.13);
}

.btn-dark {
  color: #000 !important;
}

.btn-dark .icon .stroke {
  background: #000;
}

.btn-dark .icon .arrow {
  background-image: url(/wp-content/uploads/2024/02/nav-arrow-right-black.svg);
}

.btn-dark:hover {
  background: rgba(0 0 0/.03);
}

/*
Button arrow */
.btn-sm-arrow .icon .stroke {
  width: 15px;
}

.btn-lg-arrow .icon .stroke {
  width: 33px;
}

:is(.btn-one, .btn-two) .icon {
  position: relative;
  left: 0;
  z-index: 5;
  transition: left var(--transition);
}

:is(.btn-one, .btn-two):hover .icon:not(.down-arrow) {
  left: 5px;
}

.btn-md {
  padding: 0px 18px 0px 24px;
  width: max-content;
  height: 43px;
  letter-spacing: 0.8px;
  font-size: 16.5px;
}

.btn-two {
  display: inline-grid;
  padding: 0px 26px;
  width: max-content;
  border: 1.5px solid currentColor;
  border-radius: 100vmax;
  background: none;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  align-items: center;
  height: 46px;
  letter-spacing: 0.8px;
  font-size: 19px;
}

.btn-three {
  display: inline-grid;
  padding: 11px 16px;
  min-width: auto;
  width: auto;
  height: auto;
  border: 1.5px solid currentColor;
  border-radius: 100vmax;
  background: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  transition: all var(--transition);
  align-items: center;
  grid-template-columns: 1fr;
}

.btn-accent {
  border: 0;
  color: #fff !important;
  background: hsl(178, 97%, 36%);
}

.btn-accent:hover {
  background: hsl(178, 97%, 38%);
}

.btn-cta {
  width: var(--width-btn-cta) !important;
  height: var(--height-btn-cta) !important;
}

.btn-contact {
  width: var(--width-btn-contact) !important;
  height: var(--height-btn-contact) !important;
}

/* Card - news */
.card-news {
  text-align: left;
}

.card-news :is(a, picture, .date-published, img, .title, .excerpt) {
  display: block;
}

.card-news picture {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: var(--round-border-md);
  aspect-ratio: 100/59;
}

.card-news picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-news .date-published {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-size: 13px;
}

.card-news .title {
  margin-top: 9px;
  font-weight: 500;
  font-size: 26px;
  line-height: 115%;
}

.card-news .excerpt {
  /*
  display: -webkit-box !important;
  overflow: hidden;
  margin: 11px 0 27px 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  --p-font-size: 15px;
*/
  display: none !important;
}

.card-news .btn {
  /*
  display: grid;
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--clr-dark);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-size: 13px;
  line-height: 90%;
  transition: all var(--transition);
  
*/
  display: none;
}

.card-news a:hover .btn {
  color: var(--clr-teal);
}

.card-news a:hover {
  opacity: 0.8;
}

@media(max-width: 720px) {
  .card-news picture {
    aspect-ratio: 580/424;
  }
}

/* WYSIWYG */
.wysiwyg {
  line-height: 140%;
  --margin-p: 30px;
  --margin-block: 40px;
}

.wysiwyg > *:not(p, h1, h2, h3, h4, h5, h6) {
  margin-bottom: var(--margin-block);
  /*  margin-top: var(--margin-block);*/
}

.wysiwyg > *:not(p, h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0
}

.wysiwyg > *:not(p, h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0
}

.wysiwyg::after {
  display: block;
  clear: both;
  content: '';
}

.wysiwyg a {
  display: inline;
  text-decoration: underline;
}

.wysiwyg a:hover {
  opacity: 0.75;
  color: currentColor;
}

.wysiwyg abbr {
  cursor: help;
  text-decoration-style: dotted;
  text-decoration-line: underline;
}

.wysiwyg cite {
  font-style: italic;
}

.wysiwyg hr {
  display: block;
  margin-top: var(--margin-block);
  margin-bottom: var(--margin-block);
  height: 1px;
  border: none;
  background: #555;
}

.wysiwyg img {
  vertical-align: text-bottom;
}

.wysiwyg ins {
  text-decoration: underline;
}

.wysiwyg mark {
  background-color: #ff0;
}

.wysiwyg small {
  font-size: 0.8em;
}

.wysiwyg strong {
  font-weight: 700;
}

.wysiwyg :is(sub, sup) {
  font-size: 0.8em;
}

.wysiwyg sub {
  vertical-align: sub;
}

.wysiwyg sup {
  vertical-align: super;
}

.wysiwyg :is(p, dl, ol, ul, blockquote, pre, table) {
  margin-bottom: var(--margin-p);
}

.wysiwyg :is(p, dl, ol, ul, blockquote, pre, table):last-child {
  margin-bottom: 0;
}

.wysiwyg :is(p, span, div):empty {
  display: none;
}

.wysiwyg :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
  line-height: 140%;
  margin-top: var(--margin-block);
  margin-bottom: var(--margin-p);
}

.wysiwyg :is(h1, h2, h3, h4, h5, h6) * {
  color: inherit;
  font-size: inherit;
}

.wysiwyg :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.wysiwyg :is(h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0
}

.wysiwyg h1 {
  line-height: 115%;
  font-size: 37px;
}

.wysiwyg h2 {
  line-height: 115%;
  font-size: 34px;
}

.wysiwyg h3 {
  line-height: 115%;
  font-size: 27px;
}

.wysiwyg h4 {
  line-height: 120%;
  font-size: 24px;
}

.wysiwyg h5 {
  line-height: 130%;
  font-size: 21px;
}

.wysiwyg h6 {
  line-height: 130%;
  font-size: 19px;
}

.wysiwyg :is(ol, ul) {
  margin-left: var(--margin-block);
  list-style-position: outside;
}

.wysiwyg ol {
  list-style-type: decimal;
}

.wysiwyg ol ol {
  list-style-type: lower-alpha;
}

.wysiwyg ol ol ol {
  list-style-type: lower-roman;
}

.wysiwyg ol ol ol ol {
  list-style-type: lower-greek;
}

.wysiwyg ol ol ol ol ol {
  list-style-type: decimal;
}

.wysiwyg ol ol ol ol ol ol {
  list-style-type: lower-alpha;
}

.wysiwyg ul {
  list-style-type: disc;
}

.wysiwyg ul ul {
  list-style-type: circle;
}

.wysiwyg ul ul ul {
  list-style-type: square;
}

.wysiwyg ul ul ul ul {
  list-style-type: circle;
}

.wysiwyg ul ul ul ul ul {
  list-style-type: disc;
}

.wysiwyg ul ul ul ul ul ul {
  list-style-type: circle;
}

.wysiwyg blockquote {
  padding: 0.6em 1.2em;
  border-left: 4px solid #e6e6e6;
}

.wysiwyg blockquote p {
  margin-bottom: 0
}

.wysiwyg :is(code, kbd, samp, pre) {
  background-color: #f2f2f2;
  color: #333;
  font-size: 0.9em;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

.wysiwyg :is(code, kbd, samp) {
  padding: 0.1em 0.4em 0.2em;
  border-radius: 3px;
  vertical-align: baseline;
  line-height: 1.77778;
}

.wysiwyg pre {
  overflow: auto;
  padding: 1em 1.2em
}

.wysiwyg pre code {
  background: none;
  font-size: 1em;
  line-height: 1em
}

.wysiwyg figure {
  margin-bottom: var(--margin-block);
}

.wysiwyg figure:first-child {
  margin-top: 0
}

.wysiwyg figure:last-child {
  margin-bottom: 0
}

.wysiwyg :is(figcaption, .wp-caption-text) {
  margin-top: 6px;
  font-size: 15px;
  text-align: left;
  color: #555;
}

.wysiwyg table {
  width: 100%;
}

.wysiwyg table pre {
  white-space: pre-wrap;
}

.wysiwyg :is(th, td) {
  padding: .7em;
  border: 1px solid #e6e6e6;
  font-size: 1em;
  line-height: 1.4;
}

.wysiwyg :is(thead, tfoot) tr {
  background-color: #f5f5f5;
}

.wysiwyg :is(thead, tfoot) :is(th, td) {
  padding: .77778em;
  font-size: .9em;
}

.wysiwyg :is(thead, tfoot) :is(th, td) code {
  background-color: #fff;
}

.wysiwyg tbody tr {
  background-color: #fff;
}

.wysiwyg :is(img, .wp-caption, .alignright, .alignleft, .aligncenter, .alignnone),
.wysiwyg img:is([align="right"], [align="left"], [align="center"]) {
  display: block;
  width: 100% !important;
  height: auto;
  border-radius: var(--round-border-sm);
}

.wysiwyg .gallery {
  display: grid;
  grid-gap: 0 var(--margin-p);
  width: 100%;
  height: auto;
  clear: both;
  margin-bottom: 0;
  grid-template-columns: repeat(2, 1fr);
}

.wysiwyg .gallery br {
  display: none;
}

/* i.e videos */
.wysiwyg iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
  height: auto;
  aspect-ratio: 1.8/1;
}

@media (max-width: 720px) {
  .wysiwyg {
    line-height: 140%;
    --margin-p: 25px;
    --margin-block: 30px;
  }

  .wysiwyg .gallery {
    grid-template-columns: 1fr;
  }
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: var(--height-header);
}

header .row {
  height: 100%;
  grid-template-columns: 1fr auto;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: block;
  max-width: 130px;
  filter: invert();
}

header nav ul {
  grid-auto-flow: column;
  grid-gap: 38px;
}

header nav a {
  padding: 2px 0;
  border-bottom: 1px solid rgba(0 0 0/0);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  line-height: 1;
  transition: all var(--transition);
}

header nav .button {
  margin-left: -6px;
}

header nav .button a {
  display: grid;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 100vmax;
  background: none;
  align-items: center;
}

header nav li:not(.button) a:hover {
  border-bottom: 1px solid rgba(255 255 255/.7);
}

header nav .button a:hover {
  background: rgba(255 255 255/.13);
}

header .menu-button {
  display: none;
}

/* Dark */
@media (min-width: 720px) {
  header.dark .logo {
    filter: none;
  }

  header.dark nav a {
    color: var(--clr-dark) !important;
  }

  header.dark nav .button a {
    border-color: var(--bg-dark) !important;
    background: var(--bg-dark);
    color: #fff !important;
  }

  header.dark nav li:not(.button) a:hover {
    border-bottom: 1px solid rgba(32 32 32/.3);
  }

  header.dark nav .button a:hover {
    background: rgba(32 32 32/.85);
  }
}

@media (max-width: 720px) {
  header {
    position: fixed;
    background: var(--bg-dark);
  }

  header .row {
    background: var(--bg-dark);
  }

  header .menu-button {
    display: block;
    padding: 12px 0 12px 12px;
    border: 0;
    background: none;
  }

  header .menu-button img {
    position: relative;
    top: 1px;
    display: block;
    width: 24px;
    height: auto;
    filter: invert();
  }

  header .menu-button .hamburger {
    margin-top: -2px;
    width: 26px;
  }

  header .logo {
    position: relative;
    max-width: 110px;
  }

  /* Nav */
  header nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: grid;
    visibility: hidden;
    padding: 0px 30px;
    width: 100%;
    height: calc(100% - var(--height-header));
    background: var(--bg-dark);
    opacity: 0;
    transition: all var(--transition);
    align-items: center;
  }

  header nav.opened {
    visibility: visible;
    opacity: 1;
  }

  header nav ul {
    position: relative;
    top: -5vh;
    text-align: center;
    grid-auto-flow: row;
    grid-row-gap: 5vh;
  }

  header nav a {
    padding: 5px;
    border-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 6.5vmin;
    line-height: 1;
  }

  header nav a:hover {
    border: 0 !important;
  }

  header nav .mobile-button {
    position: fixed;
    bottom: 30px;
    left: 24px;
    width: calc(100% - 48px);
    border: 0;
  }
}

/* Footer */
footer {
  display: grid;
  background: var(--bg-dark);
  align-items: center;
}

footer .row {
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

footer .about {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: space-between;
}

footer .logo {
  display: block;
  max-width: 137px;
  filter: invert();
}

footer .menu a,
footer .about :is(a, a *) {
  color: #ccc;
}

footer .about a {
  padding: 5px 0;
}

footer .about .contact {
  margin-top: 10px;
}

footer .about a:hover .email,
footer .menu a:hover {
  color: #fff;
}

footer .about :is(a, a *) {
  font-size: 16.5px;
}

footer .locations {
  display: block;
  margin-top: 10px;
}

footer .menu li + li {
  margin-top: 2px;
}

footer .menu a {
  display: block;
  padding: 5px 0;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14.5px;
}

@media (max-width: 1140px) {
  footer .row {
    grid-template-columns: 38% auto auto auto;
  }
}

@media (max-width: 720px) {
  footer .row {
    text-align: center;
    grid-template-columns: 1fr;
    grid-row-gap: 3vh;
  }

  footer .logo,
  footer .menu a {
    margin: 0 auto;
  }
}

/* Page top hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(400px + var(--height-header));
  width: 100%;
  height: 73vh;
  background-image: url(../../videos/The_Centennial_Collection-video_poster.png);
  background-attachment: scroll;
  background-position: top;
  background-size: cover;
}

.hero.has-video {
  background-position: top !important;
}

.hero.page-home {
  min-height: calc(460px + var(--height-header));
  height: calc(100vh - 110px)
}

.hero .contents {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: var(--bg-dark-gradient);
}

.hero video {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1080;
}

.hero .container {
  position: absolute;
  right: 0;
  bottom: 8.5vmin;
  left: 0;
  margin: 0 auto;
  max-width: calc(var(--width-container) + (var(--width-px) * 2));
  align-items: end;
  grid-gap: 35px 40px;
  grid-gap: 0px 40px;
}

.hero__button {
  margin-top: 35px;
}

.hero .text > * {
  max-width: 640px;
  color: #fff;
}

.hero.page-home .text > * {
  max-width: 870px;
}

.hero.page-case_study .text > * {
  max-width: 100%;
}

.hero .headline {
  margin-top: 20px;
}

.hero .caption {
  margin-top: 24px;
  font-size: 21px;
  line-height: 135%;
}

.hero hr {
  margin: 18px 0 14px 0;
  max-width: 470px;
  background: rgba(255 255 255/.5);
}

.hero .buttons {
  margin-top: clamp(26px, 5vw, 60px);
  grid-gap: 14px 0;
}

.hero .graphic img {
  filter: invert() brightness(100);
}

@media (max-width: 1140px) {
  .hero.page-home br {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero:not(.page-home) {
    min-height: auto;
    height: auto;
  }

  .hero:not(.page-home) .contents {
    padding-top: 230px;
    height: auto;
  }

  .hero:not(.page-home) .container {
    position: relative;
    right: 0;
    bottom: var(--height-py-md);
  }

  .hero.page-home {
    min-height: calc(400px + var(--height-header));
    height: calc(80vh);
  }

  .hero.page-home .container {
    bottom: 45px;
  }

  .hero .caption {
    margin-top: 24px;
    font-size: 19px;
  }
}

/* Page top heading */
.page-top {
  padding-top: 170px;
}

.page-top .headline {
  color: currentColor;
}

.page-top hr,
.page-top--one hr {
  margin-top: 60px;
}

.page-top--two hr {
  margin-top: 40px;
}

@media (max-width: 1140px) {
  .page-top br {
    display: none;
  }

  .page-top .overline {
    margin-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .page-top {
    padding-top: calc(6vh + var(--height-header)) !important;
  }

  .page-top hr {
    margin-top: 6vh !important;
  }

  .page-top__overline {
    font-size: 14px;
  }

  .page-top--two__row {
    grid-row-gap: 15px;
  }

  .page-top--two hr {
    margin-top: 30px !important;
  }
}

.page-top__products {
  margin-top: 35px;
  grid-gap: 0 22px;
  display: inline-grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
}

.page-top__products a {
  display: grid;
  padding: 0 20px;
  width: 100%;
  height: 42px;
  border: 1px solid rgba(0 0 0/.33);
  border-radius: 100vmax;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: center;
}

.page-top__products a:hover {
  background: rgba(0 0 0/.06);
}

/* Call to action bar */
.cta {
  text-align: center;
}

.cta .box {
  position: relative;
  overflow: hidden;
}

.cta video {
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  min-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1920/1080;
}

.cta .content {
  position: relative;
  background: rgba(32 32 32/.88);
  border-radius: var(--round-border-md);
}

.cta .headline {
  margin-top: -8px;
}

.cta :is(.headline, .overline, li) {
  color: #fff;
}

.cta :is(.overline, .includes li) {
  font-size: 21px;
}

.cta .overline {
  margin-top: 40px;
}

.cta .includes {
  margin-top: 16px;
  margin-bottom: 42px;
}

.cta .includes li {
  display: inline-grid;
  margin: 0 10px;
  font-weight: 600;
  transition: all var(--transition);
  grid-template-columns: repeat(2, auto);
  grid-gap: 0 6px;
  align-items: center;
}

.cta .includes li .icon {
  display: block;
  width: 19px;
  position: relative;
  top: 0.5px;
  filter: invert() brightness(100);
}

.cta .btn {
  margin-bottom: -20px;
}

@media (max-width: 1140px) {
  .cta .content {
    padding-left: var(--width-px);
    padding-right: var(--width-px);
  }

  .cta .includes li {
    display: grid;
    margin: 0 auto;
    width: max-content;
    grid-gap: 0 6px;
  }

  .cta .includes {
    margin-top: 20px;
  }

  .cta .includes li + li {
    margin-top: 15px;
  }

  .cta .includes li .icon {
    width: 19px;
  }
}

@media (max-width: 720px) {
  .cta .includes {
    margin-top: 35px;
  }

  .cta :is(.overline, .includes li) {
    font-size: 20px;
  }

  .cta .btn {
    margin-bottom: 0;
  }
}

/* Triple down arrow */
.graphic img {
  display: block;
  width: 48px;
}

/* Animation */
.fadeInUpShort-auto {
  animation: fadeInUpShort 0.6s both;
  -webkit-animation-name: fadeInUpShort 0.6s both;
}