@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
}

body,
.case-study-tab {
  --text-primary: #13322b;
  --bkg-color: #ffffff;
  --bkg-color-2: #f5f5f5;
  --bkg-color-pale: #f0f9f1;
  --accent-color: #62d10a;
  --heading-color: #13322b;
  --text-grey: #979797;
  --line-color: #13322b;
}

body.dark-mode {
  --text-primary: #ffffff;
  --bkg-color: #13322b;
  --bkg-color-2: #13322b;
  --bkg-color-pale: #f0f9f1;
  --accent-color: #62d10a;
  --heading-color: #ffffff;
  --text-grey: #62d10a;
  --line-color: #979797;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }
}

.container-wide {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .container-wide {
    max-width: 792px;
  }
}
@media (min-width: 992px) {
  .container-wide {
    max-width: 1056px;
  }
}
@media (min-width: 1300px) {
  .container-wide {
    max-width: 1287px;
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1617px;
  }
}

.container-desktop {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1300px) {
  .container-desktop {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container-desktop {
    max-width: 1470px;
  }
}

.container-tablet {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .container-tablet {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-tablet {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container-tablet {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container-tablet {
    max-width: 1470px;
  }
}
@media (min-width: 768px) {
  .container-tablet {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

@keyframes banner-perspective {
  to {
    perspective: 100vw;
  }
}
@keyframes banner-perspective-rotate {
  to {
    transform: rotateX(3deg);
  }
}
.line {
  background-color: #73817d;
  display: block;
  z-index: 5;
  transition: transform 1.2s;
  transition-timing-function: ease-in-out;
}
.line--lr {
  width: 100%;
  height: 1px;
}
.line--lr:not(.static) {
  transform: scaleX(0);
  transform-origin: left;
}
.line--lr.in-view {
  transform: scaleX(1);
}
.line--tb {
  width: 1px;
  height: 100%;
  transform-origin: top;
}
.line--tb:not(.static) {
  transform: scaleY(0);
  transform-origin: top;
}
.line--tb.in-view {
  transform: scaleY(1);
}
.line--abs {
  position: absolute;
}
.line--abs.right {
  right: 0;
}
.line--abs.top {
  top: 0;
}
.line--abs.left {
  left: 0;
}
.line--abs.bottom {
  bottom: 0;
}
.line--100vw {
  width: 100vw;
  left: -20px !important;
}
@media (min-width: 1300px) {
  .line--100vw {
    width: calc(100vw - var(--case-study-bar-width));
  }
}
@media (min-width: 768px) {
  .line--100vw {
    left: calc((100vw - 720px + 40px - var(--scrollbar-width)) / 2 * -1) !important;
  }
}
@media (min-width: 992px) {
  .line--100vw {
    left: calc((100vw - 960px + 40px - var(--scrollbar-width)) / 2 * -1) !important;
  }
}
@media (min-width: 1300px) {
  .line--100vw {
    left: calc((100vw - 1170px + 40px - var(--scrollbar-width) - var(--case-study-bar-width)) / 2 * -1) !important;
  }
}
@media (min-width: 1600px) {
  .line--100vw {
    left: calc((100vw - 1470px + 40px - var(--scrollbar-width) - var(--case-study-bar-width)) / 2 * -1) !important;
  }
}
@media (min-width: 768px) {
  .line--mobile {
    display: none;
  }
}
.line--tablet {
  display: none;
}
@media (min-width: 768px) {
  .line--tablet {
    display: block;
  }
}
@media (min-width: 1300px) {
  .line--tablet {
    display: none;
  }
}
.line--desktop {
  display: none;
}
@media (min-width: 1300px) {
  .line--desktop {
    display: block;
  }
}
.line--md {
  display: none;
}
@media (min-width: 992px) {
  .line--md {
    display: block;
  }
}
.line[data-speed="0"] {
  transition-duration: calc(2s - (0.3s * 0));
}
.line[data-speed="1"] {
  transition-duration: calc(2s - (0.3s * 1));
}
.line[data-speed="2"] {
  transition-duration: calc(2s - (0.3s * 2));
}
.line[data-speed="3"] {
  transition-duration: calc(2s - (0.3s * 3));
}
.line[data-speed="4"] {
  transition-duration: calc(2s - (0.3s * 4));
}
.line[data-speed="5"] {
  transition-duration: calc(2s - (0.3s * 5));
}

.line-group {
  position: relative;
}
.line-group .line[data-order="0"] {
  transition-delay: calc(0.2s * 0);
}
.line-group .line[data-order="1"] {
  transition-delay: calc(0.2s * 1);
}
.line-group .line[data-order="2"] {
  transition-delay: calc(0.2s * 2);
}
.line-group .line[data-order="3"] {
  transition-delay: calc(0.2s * 3);
}
.line-group .line[data-order="4"] {
  transition-delay: calc(0.2s * 4);
}
.line-group .line[data-order="5"] {
  transition-delay: calc(0.2s * 5);
}
.line-group .line[data-order="6"] {
  transition-delay: calc(0.2s * 6);
}
.line-group .line[data-order="7"] {
  transition-delay: calc(0.2s * 7);
}
.line-group .line[data-order="8"] {
  transition-delay: calc(0.2s * 8);
}
.line-group .line[data-order="9"] {
  transition-delay: calc(0.2s * 9);
}
.line-group .line[data-order="10"] {
  transition-delay: calc(0.2s * 10);
}
.line-group.in-view .line--lr[data-order] {
  transform: scaleX(1);
}
.line-group.in-view .line--tb[data-order] {
  transform: scaleY(1);
}

.split-animate {
  font-kerning: none;
}
.split-animate .char {
  opacity: 0;
  transform: translateY(15%);
  transition: 0.5s;
}

.split-animate-0 {
  transition-delay: 0s !important;
}
@media (min-width: 1300px) {
  .split-animate-0 {
    transition-delay: 0.5s !important;
  }
}

.split-animate-1 {
  transition-delay: 0.1s !important;
}
@media (min-width: 1300px) {
  .split-animate-1 {
    transition-delay: 0.6s !important;
  }
}

.split-animate-2 {
  transition-delay: 0.2s !important;
}
@media (min-width: 1300px) {
  .split-animate-2 {
    transition-delay: 0.7s !important;
  }
}

.split-animate-3 {
  transition-delay: 0.3s !important;
}
@media (min-width: 1300px) {
  .split-animate-3 {
    transition-delay: 0.8s !important;
  }
}

.split-animate-4 {
  transition-delay: 0.4s !important;
}
@media (min-width: 1300px) {
  .split-animate-4 {
    transition-delay: 0.9s !important;
  }
}

.split-animate-5 {
  transition-delay: 0.5s !important;
}
@media (min-width: 1300px) {
  .split-animate-5 {
    transition-delay: 1s !important;
  }
}

.split-animate-6 {
  transition-delay: 0.6s !important;
}
@media (min-width: 1300px) {
  .split-animate-6 {
    transition-delay: 1.1s !important;
  }
}

.split-animate-7 {
  transition-delay: 0.7s !important;
}
@media (min-width: 1300px) {
  .split-animate-7 {
    transition-delay: 1.2s !important;
  }
}

.split-animate-8 {
  transition-delay: 0.8s !important;
}
@media (min-width: 1300px) {
  .split-animate-8 {
    transition-delay: 1.3s !important;
  }
}

.split-animate-9 {
  transition-delay: 0.9s !important;
}
@media (min-width: 1300px) {
  .split-animate-9 {
    transition-delay: 1.4s !important;
  }
}

.split-animate-10 {
  transition-delay: 1s !important;
}
@media (min-width: 1300px) {
  .split-animate-10 {
    transition-delay: 1.5s !important;
  }
}

.geometry-footer {
  display: flex;
  justify-content: center;
  position: relative;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .geometry-footer {
    height: auto;
    height: 340px;
  }
}
@media (min-width: 992px) {
  .geometry-footer {
    height: 400px;
  }
}
@media (min-width: 1300px) {
  .geometry-footer {
    height: 450px;
  }
}
@media (min-width: 1600px) {
  .geometry-footer {
    height: 550px;
  }
}
.geometry-footer svg {
  display: block;
  height: 100%;
  width: auto;
  overflow: visible;
}
.geometry-footer svg path {
  stroke-width: 1px;
}
@media (min-width: 1600px) {
  .geometry-footer svg path {
    stroke-width: 0.7px;
  }
}
.geometry-footer .line {
  position: absolute;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition-duration: 1s;
}
@media (min-width: 768px) {
  .geometry-footer .line {
    transition-duration: 1.4s;
  }
}
.geometry-footer .line-top {
  top: 0;
  left: 0;
  transition-delay: 0.4s;
}
@media (min-width: 768px) {
  .geometry-footer .line-top {
    transition-delay: 0s;
  }
}
.geometry-footer .line-bottom {
  bottom: 0;
  left: 0;
  transition-delay: 0.65s;
}
.geometry-footer.animation-start .line {
  transform: scaleX(1);
}

[data-order="0"] #divider-lines line {
  transition-delay: calc(0.2s * 0) !important;
}

[data-order="1"] #divider-lines line {
  transition-delay: calc(0.2s * 1) !important;
}

[data-order="2"] #divider-lines line {
  transition-delay: calc(0.2s * 2) !important;
}

[data-order="3"] #divider-lines line {
  transition-delay: calc(0.2s * 3) !important;
}

[data-order="4"] #divider-lines line {
  transition-delay: calc(0.2s * 4) !important;
}

[data-order="5"] #divider-lines line {
  transition-delay: calc(0.2s * 5) !important;
}

[data-order="6"] #divider-lines line {
  transition-delay: calc(0.2s * 6) !important;
}

[data-order="7"] #divider-lines line {
  transition-delay: calc(0.2s * 7) !important;
}

[data-order="8"] #divider-lines line {
  transition-delay: calc(0.2s * 8) !important;
}

[data-order="9"] #divider-lines line {
  transition-delay: calc(0.2s * 9) !important;
}

[data-order="10"] #divider-lines line {
  transition-delay: calc(0.2s * 10) !important;
}

.line-group #divider-lines line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
}

.in-view #divider-lines line {
  stroke-dashoffset: 0 !important;
}

@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl.eot");
  src: url("../../fonts/SuisseIntl.eot?#iefix") format("embedded-opentype"), url("../../fonts/SuisseIntl.woff2") format("woff2"), url("../../fonts/SuisseIntl.woff") format("woff"), url("../../fonts/SuisseIntl.ttf") format("truetype"), url("../../fonts/SuisseIntl.svg#SuisseIntl") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Book.eot");
  src: url("../../fonts/SuisseIntl-Book.eot?#iefix") format("embedded-opentype"), url("../../fonts/SuisseIntl-Book.woff2") format("woff2"), url("../../fonts/SuisseIntl-Book.woff") format("woff"), url("../../fonts/SuisseIntl-Book.ttf") format("truetype"), url("../../fonts/SuisseIntl-Book.svg#SuisseIntl-Book") format("svg");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Medium.eot");
  src: url("../../fonts/SuisseIntl-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/SuisseIntl-Medium.woff2") format("woff2"), url("../../fonts/SuisseIntl-Medium.woff") format("woff"), url("../../fonts/SuisseIntl-Medium.ttf") format("truetype"), url("../../fonts/SuisseIntl-Medium.svg#SuisseIntl-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Light.eot");
  src: url("../../fonts/SuisseIntl-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/SuisseIntl-Light.woff2") format("woff2"), url("../../fonts/SuisseIntl-Light.woff") format("woff"), url("../../fonts/SuisseIntl-Light.ttf") format("truetype"), url("../../fonts/SuisseIntl-Light.svg#SuisseIntl-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-UltraLight.eot");
  src: url("../../fonts/SuisseIntl-UltraLight.eot?#iefix") format("embedded-opentype"), url("../../fonts/SuisseIntl-UltraLight.woff2") format("woff2"), url("../../fonts/SuisseIntl-UltraLight.woff") format("woff"), url("../../fonts/SuisseIntl-UltraLight.ttf") format("truetype"), url("../../fonts/SuisseIntl-UltraLight.svg#SuisseIntl-UltraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --scrollbar-width: 0px;
  --buffer-section: 50px;
}
@media (min-width: 768px) {
  :root {
    --left-indent: 40px;
    --buffer-section: 80px;
    --container-indent: calc(((100vw - 720px + 40px) / 2));
  }
}
@media (min-width: 992px) {
  :root {
    --buffer-section: 100px;
    --container-indent: calc(((100vw - 960px + 40px) / 2));
  }
}
@media (min-width: 1300px) {
  :root {
    --left-indent: 50px;
    --buffer-section: 120px;
    --container-indent: calc(((100vw - 1170px + 40px) / 2));
  }
}
@media (min-width: 1600px) {
  :root {
    --left-indent: 60px;
    --container-indent: calc(((100vw - 1470px + 40px) / 2));
  }
}

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  font-size: 15px;
}
@media (min-width: 768px) {
  html,
  body {
    font-size: 16px;
  }
}

body {
  min-width: 320px;
  text-wrap: pretty;
  font-family: "Suisse Int'l", sans-serif;
  line-height: 1.4;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bkg-color);
  color: var(--text-primary);
  font-weight: 300;
}
@media (min-width: 1300px) {
  body {
    line-height: 1.5;
  }
}
body.no-scroll {
  overflow: hidden;
}

body {
  min-height: 100vh;
  height: 100dvh;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img {
  display: block;
}

h1, h2, h3, h4, h5 {
  text-wrap: balance;
}

p:not(:first-of-type) {
  margin-top: 1em;
}

.buffer-section {
  height: 60px;
  position: relative;
}
@media (min-width: 768px) {
  .buffer-section {
    height: 70px;
  }
}
@media (min-width: 1300px) {
  .buffer-section {
    height: 90px;
  }
}

.content-area {
  line-height: 1.6;
}
.content-area > *:not(:first-child) {
  margin-top: 1.6em;
}
.content-area a {
  color: #62d10a;
}

.underline {
  display: inline-block;
  transition: 0.2s;
  position: relative;
}
.underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.underline::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.underline--green::after {
  background-color: #62d10a;
}

.top-buffer {
  position: relative;
  height: 70px;
}
@media (min-width: 768px) {
  .top-buffer {
    height: 60px;
  }
}
@media (min-width: 1300px) {
  .top-buffer {
    height: 90px;
  }
}

.geometry {
  overflow: hidden;
  height: 350px;
  position: relative;
}
@media (min-width: 768px) {
  .geometry {
    height: auto;
  }
}
.geometry svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .geometry svg {
    position: unset;
    transform: unset;
    width: 100%;
    height: auto;
  }
}
.geometry svg line,
.geometry svg path,
.geometry svg rect {
  stroke: var(--line-color);
}

.elipsis {
  display: block;
  position: absolute;
  border-radius: 686.125px;
  opacity: 0.200000003;
  background: #62d10a;
  filter: blur(200px);
  width: 700px;
  height: 300px;
  z-index: 3;
}
@media (min-width: 768px) {
  .elipsis {
    width: 80%;
  }
}

.image-wrapper-style {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 5px 15px 0px rgba(19, 50, 43, 0.25);
  position: relative;
}
.image-wrapper-style img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.main-copy table {
  text-align: left;
  border: 1px solid #000000;
}
.main-copy table tr {
  border-bottom: 1px solid #000000;
}
.main-copy table tr th {
  font-weight: 600;
  padding: 10px 15px;
  background-color: #F8FCF8;
  border-right: 1px solid #000000;
}
.main-copy table tr th:last-of-type {
  border-right: 0px;
}
.main-copy table tr td {
  padding: 10px 15px;
  border-right: 1px solid #000000;
}
.main-copy table tr td:last-of-type {
  border-right: 0px;
}
.main-copy table tr td ul {
  padding-left: 15px !important;
  margin: 0px 0px !important;
}
.main-copy table tr:last-of-type {
  border-bottom: 0px;
}

.h2 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.014em;
  margin-bottom: 20px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .h2 {
    font-size: 46px;
  }
}
@media (min-width: 1300px) {
  .h2 {
    font-size: 60px;
    margin-bottom: 30px;
    line-height: 1;
  }
}
@media (min-width: 1600px) {
  .h2 {
    font-size: 70px;
  }
}
@media (min-width: 768px) {
  .h2--block {
    font-size: 42px;
  }
}
@media (min-width: 1600px) {
  .h2--block {
    font-size: 50px;
  }
}
.h2 .green,
.h2 strong {
  font-weight: inherit;
  color: #62d10a;
}
.h2.trigger {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.2s, transform 1.2s;
}
.h2.trigger.in-view {
  opacity: 1;
  transform: translateX(0);
}

.h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.014em;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 80px;
  }
}
@media (min-width: 1300px) {
  .h1 {
    font-size: 100px;
  }
}

.button {
  font-size: 16px;
  border: 1px solid var(--text-primary);
  padding: 0.7em 1.25em;
  padding-top: 0.8em;
  color: var(--text-primary);
  border-radius: 3px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 240px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  font-weight: 400;
  cursor: pointer;
}
.button:hover::after {
  transform: translateX(30%);
}
.button::after {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  background-image: url("../../img/icons/arrow-right-green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -0.15em;
  transition: 0.3s;
}
.button--back {
  min-width: unset;
  gap: 20px;
}
.button--back:hover::after {
  transform: scaleX(-1) translateX(30%);
}
.button--back::after {
  order: -1;
  transform: scaleX(-1);
}
.button--dark {
  background-color: #13322b;
  color: #ffffff;
}
.button--dark::after {
  background-image: url("../../img/icons/arrow-right-white.svg");
}

@keyframes bounce-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
  }
}
.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}
.arrow-button::after {
  content: "";
  display: block;
  height: 40%;
  width: 50%;
  background-image: url("../../img/icons/arrow-right-green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body {
  --case-study-bar-width: 0px;
}
@media (min-width: 1300px) {
  body {
    --case-study-bar-width: 50px;
  }
}

.fullpage-wrapper {
  display: flex;
}

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: calc(100% - var(--case-study-bar-width));
  transition: left 1s;
  left: 0;
}
.page-wrapper::after {
  content: "";
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body.overlay-active .page-wrapper {
  left: -100%;
}
body.overlay-active header {
  left: 0;
}
@media (min-width: 992px) {
  body.overlay-active header {
    left: -100%;
  }
}
body.overlay-active .main-menu {
  left: 0%;
  z-index: 10000;
}

.page-wrapper-main {
  flex-grow: 1;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-wrapper-main {
    padding-top: 100px;
  }
}

.single-view .page-wrapper-main,
.single-news .page-wrapper-main,
.page-template-page-generic .page-wrapper-main {
  overflow: unset;
}

.video-wrapper {
  position: relative;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-aspect-ratio: 1/1) {
  .video-wrapper video.video-mobile {
    display: none;
  }
  .video-wrapper video.video-desktop {
    display: block;
  }
}
@media (max-aspect-ratio: 1/1) {
  .video-wrapper video.video-mobile {
    display: block;
  }
  .video-wrapper video.video-desktop {
    display: none;
  }
}

@media (min-width: 1300px) {
  .page-template-page-news .banner-section-v2 .banner-heading-wrapper {
    width: 60%;
  }
  .page-template-page-news .banner-section-v2 .banner-heading-wrapper .banner-heading {
    max-width: unset;
  }
}

.banner-section-v2 {
  padding: 20px;
  color: #ffffff;
  padding-top: 10px;
  perspective: 100vw;
  transition: perspective 0.5s;
}
@media (min-width: 768px) {
  .banner-section-v2 {
    height: calc(100vh - 100px);
  }
}
.banner-section-v2 .banner-card {
  box-shadow: 0px 10px 15px 0px rgba(19, 50, 43, 0.25);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s;
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-card {
    height: 100%;
  }
}
.banner-section-v2 .banner-image-wrapper {
  aspect-ratio: 1/1;
  max-height: 500px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-image-wrapper {
    max-height: none;
    aspect-ratio: unset;
    width: 100%;
    flex-grow: 1;
  }
}
.banner-section-v2 .banner-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-aspect-ratio: 1/1) {
  .banner-section-v2 .banner-image-wrapper img.mobile {
    display: none;
  }
  .banner-section-v2 .banner-image-wrapper img.desktop {
    display: block;
  }
}
@media (max-aspect-ratio: 1/1) {
  .banner-section-v2 .banner-image-wrapper img.mobile {
    display: block;
  }
  .banner-section-v2 .banner-image-wrapper img.desktop {
    display: none;
  }
}
.banner-section-v2 .banner-image-wrapper img.centre-top {
  -o-object-position: center top;
     object-position: center top;
}
.banner-section-v2 .banner-content {
  position: relative;
  padding: 20px;
  background-color: #0f1c19;
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-content {
    padding: 30px;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-content {
    padding: 60px 7%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    background-color: unset;
  }
}
@media (min-width: 1600px) {
  .banner-section-v2 .banner-content {
    padding: 80px 7%;
  }
}
.banner-section-v2 .banner-content > * {
  z-index: 2;
}
.banner-section-v2 .banner-content::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  background: linear-gradient(180deg, rgba(240, 249, 241, 0) 0%, #13322b 60.94%, #000 100%);
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0.7;
}
.banner-section-v2 .banner-heading-wrapper {
  position: absolute;
  padding: 20px 20px 0;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
}
.banner-section-v2 .banner-heading-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(240, 249, 241, 0) 0%, #020504 90%, #020504 100%);
  mix-blend-mode: multiply;
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-heading-wrapper::before {
    content: unset;
  }
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-heading-wrapper {
    padding: 20px 30px 0;
  }
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-heading-wrapper {
    position: unset;
    background: unset;
    padding: 0;
    width: 45%;
    display: flex;
    align-items: flex-end;
  }
}
.banner-section-v2 .banner-heading {
  line-height: 1;
  font-size: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-heading {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-heading {
    font-size: 60px;
    margin-bottom: -0.07em;
  }
}
@media (min-width: 1600px) {
  .banner-section-v2 .banner-heading {
    font-size: 74px;
    max-width: 8.4em;
    margin-bottom: -0.08em;
  }
}
.banner-section-v2 .banner-content-right {
  position: relative;
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-content-right {
    max-width: 48%;
    align-self: end;
  }
}
@media (min-width: 1600px) {
  .banner-section-v2 .banner-content-right {
    font-size: 18px;
  }
}
.banner-section-v2 .banner-button {
  border-color: #ffffff;
  color: #ffffff;
  margin-top: 20px;
}
.banner-section-v2 .banner-copy {
  position: relative;
}
.banner-section-v2 .banner-copy strong {
  font-weight: 500;
}
.banner-section-v2 .banner-copy p:not(:first-of-type) {
  margin-top: 1.2em;
}
.banner-section-v2 .banner-copy sup {
  vertical-align: super;
  font-size: 70%;
}
@media (min-width: 768px) {
  .banner-section-v2 .banner-copy {
    max-width: 750px;
  }
}
@media (min-width: 1300px) {
  .banner-section-v2 .banner-copy {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .banner-section-v2 .banner-copy {
    font-size: 20px;
  }
}

.cookie-consent {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  bottom: 0;
  left: 0;
  position: fixed;
  padding: 20px 0;
  width: 100%;
  color: #000000;
  transform: translateY(100%);
  transition: 1s;
  z-index: 99999;
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-consent .cookie-consent-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-consent .cookie-consent-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 0.8rem;
  }
}
.cookie-consent .cookies-text {
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-consent .cookies-text {
    text-align: left;
  }
}
.cookie-consent .cookies-text a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-consent .cookies-buttons {
  display: flex;
  margin-top: 14px;
  gap: 10px;
}
@media (min-width: 768px) {
  .cookie-consent .cookies-buttons {
    margin-left: 2em;
    margin-top: 0;
  }
}
.cookie-consent .cookie-consent-button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #13322b;
  outline-offset: -1px;
  width: 8em;
  padding: 0.6em 2em;
  padding-top: 0.7em;
  cursor: pointer;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 400;
}
.cookie-consent .cookie-consent-button--agree {
  background-color: #13322b;
  color: #ffffff;
}
.swiper-buttons {
  display: flex;
  gap: 12px;
}

.swiper-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.swiper-button-prev {
  transform: rotate(180deg);
}
.swiper-button:hover img,
.swiper-button:hover svg {
  transform: scale(0.85);
}
.swiper-button img,
.swiper-button svg {
  display: block;
  width: 18px;
  height: auto;
  transition: 0.2s;
}
.swiper-button svg path {
  stroke: var(--heading-color);
}

.swiper-pagination {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.fullpage-swiper-container {
  position: relative;
}
.fullpage-swiper-container .fullpage-swiper-container-inner {
  position: relative;
}
@media (min-width: 768px) {
  .fullpage-swiper-container .fullpage-swiper-container-inner-inner {
    position: relative;
  }
}
.fullpage-swiper-container .carousel-divider {
  display: none;
}
@media (min-width: 768px) {
  .fullpage-swiper-container .carousel-divider {
    display: block;
    left: -30px;
  }
}
.fullpage-swiper-container .fullpage-swiper {
  position: relative;
}
.fullpage-swiper-container .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.fullpage-swiper-container .swiper-slide.swiper-slide-next .slide-below {
  transform: translateX(20px);
}
@media (min-width: 768px) {
  .fullpage-swiper-container .swiper-slide.swiper-slide-next .slide-below {
    transform: none;
  }
}
.fullpage-swiper-container .slide-image {
  width: 100%;
  position: relative;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .fullpage-swiper-container .slide-image {
    padding-top: 30px;
  }
}
.fullpage-swiper-container .slide-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  box-shadow: 0px 5px 15px 0px rgba(19, 50, 43, 0.25);
  border-radius: 3px;
  overflow: hidden;
}
.fullpage-swiper-container .line.below-images {
  top: 280px;
}
@media (min-width: 768px) {
  .fullpage-swiper-container .line.below-images {
    top: 300px;
  }
}
@media (min-width: 992px) {
  .fullpage-swiper-container .line.below-images {
    top: 340px;
  }
}
@media (min-width: 1600px) {
  .fullpage-swiper-container .line.below-images {
    top: 380px;
  }
}
.fullpage-swiper-container .slide-image-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fullpage-swiper-container .slide-below {
  padding-bottom: 30px;
  font-weight: 300;
  position: relative;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}
.fullpage-swiper-container .slide-below-content {
  flex-grow: 1;
}
.fullpage-swiper-container .slide-heading {
  color: var(--text-primary);
  font-size: 32px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .fullpage-swiper-container .slide-heading {
    font-size: 40px;
  }
}
.fullpage-swiper-container .slide-copy {
  margin-top: 8px;
}
.fullpage-swiper-container .slide-link {
  color: inherit;
}
.fullpage-swiper-container .button {
  margin-top: 1.2em;
}

.page-break,
.page-break-content {
  display: block;
  width: 100%;
  overflow: hidden;
}

.page-break.in-view .page-break-content svg line {
  stroke-dashoffset: 0;
}

.page-break-content {
  height: 50px;
}
@media (min-width: 768px) {
  .page-break-content {
    height: auto;
  }
}
.page-break-content svg {
  display: block;
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .page-break-content svg {
    width: 100%;
    height: auto;
  }
}
.page-break-content svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s ease;
}

.card-style {
  position: relative;
}
@media (min-width: 768px) {
  .card-style {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .card-style {
    width: calc((100% - (var(--card-columns) - 1) * var(--column-gap)) / var(--card-columns));
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  .card-style.swiper-slide {
    --column-gap: 40px;
    padding: calc(var(--column-gap) / 2) 0;
  }
}
@media (min-width: 768px) {
  .card-style.swiper-slide .card-carousel-divider {
    display: block;
    left: calc(-0.5 * var(--column-gap));
  }
}
.card-style.swiper-slide .card-snippet {
  margin-top: unset;
}
.card-style:first-of-type .card-carousel-divider {
  display: none;
}
.card-style .card-carousel-divider {
  display: none;
}
@media (min-width: 992px) {
  .card-style .card-carousel-divider {
    display: block;
    left: calc(-0.5 * var(--column-gap));
  }
}
.card-style .card-image {
  position: relative;
}
@media (min-width: 992px) {
  .card-style .card-image {
    flex-grow: 0;
    flex-shrink: 0;
  }
}
.card-style .card-image-wrapper {
  aspect-ratio: 3/2;
  width: 100%;
}
.card-style .card-tags {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  z-index: 3;
}
.card-style .card-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 11px;
  background-color: rgba(231, 233, 233, 0.7);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 6px 11px;
  line-height: 1;
  color: inherit;
}
.card-style .card-tag--link {
  transition: background-color 0.2s;
}
.card-style .card-tag--link:hover {
  background-color: rgba(231, 233, 233, 0.9);
}
.card-style .card-tag svg,
.card-style .card-tag img {
  height: 1.2em;
  width: auto;
}
.card-style .tag-label {
  display: block;
  margin-bottom: -0.2em;
}
.card-style .card-below {
  margin-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .card-style .card-below {
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .card-style .card-below {
    margin-top: 40px;
  }
}
.card-style .card-below-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-style .card-heading {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .card-style .card-heading {
    font-size: 40px;
  }
}
.card-style .card-heading .green {
  color: #62d10a;
}
.card-style .card-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  margin-top: auto;
}
@media (min-width: 992px) {
  .card-style .card-snippet {
    font-size: 15px;
  }
}
@media (min-width: 1300px) {
  .card-style .card-snippet {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .card-style .card-snippet {
    -webkit-line-clamp: 3;
  }
}
.card-style .card-link {
  margin-top: 20px;
}
.card-style .card-phone {
  color: inherit;
}
.card-style .card-date {
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
}
.card-style .card-button {
  margin-top: 0.3em;
}
@media (min-width: 768px) {
  .card-style--multi-row {
    width: calc((100% - (var(--card-columns) - 1) * var(--column-gap)) / var(--card-columns));
    padding: 0;
  }
}
.card-style--multi-row .card-carousel-divider {
  display: none !important;
}
.card-style--multi-row .card-heading {
  margin-bottom: 10px !important;
}
.card-style--multi-row .card-snippet {
  font-weight: 300;
  -webkit-line-clamp: unset;
}
@media (min-width: 768px) {
  .card-style--news-list {
    width: calc((100% - (var(--card-columns) - 1) * var(--column-gap)) / var(--card-columns));
    padding: 0;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .card-style--news-list:nth-of-type(2n + 4)::after {
    content: "";
    display: block;
    top: calc(-0.5 * var(--column-gap));
    position: absolute;
    left: -100vw;
    width: 200vw;
    height: 1px;
    background-color: #73817d;
  }
}
.card-style--news-list .card-carousel-divider {
  display: none !important;
}
.card-style--news-list .card-snippet {
  margin-top: auto;
}
@media (min-width: 768px) {
  .card-style--case-study-pullout {
    width: calc((100% - (var(--card-columns) - 1) * var(--column-gap)) / var(--card-columns));
    padding: 0;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .card-style--case-study-pullout:nth-of-type(2n + 4)::after {
    content: "";
    display: block;
    top: calc(-0.5 * var(--column-gap));
    position: absolute;
    left: -100vw;
    width: 200vw;
    height: 1px;
    background-color: #73817d;
  }
}
.card-style--case-study-pullout .card-carousel-divider {
  display: none !important;
}
@media (min-width: 992px) {
  .card-style--case-study-pullout .card-heading {
    min-height: 66px;
  }
}
@media (min-width: 1300px) {
  .card-style--case-study-pullout .card-heading {
    min-height: 90px;
  }
}
.card-style--case-study-pullout .card-snippet {
  font-weight: 300;
}
@media (min-width: 768px) {
  .card-style--pullout {
    padding: calc(var(--column-gap) / 2) 0;
    width: unset;
    flex: 1 0 280px;
    position: relative;
    aspect-ratio: 5.5/10;
    max-width: 400px;
  }
}
@media (min-width: 1600px) {
  .card-style--pullout .card-snippet {
    -webkit-line-clamp: 4 !important;
  }
}
@media (min-width: 768px) {
  .card-style--pullout:not(:first-of-type) .card-carousel-divider {
    height: 100%;
    display: block !important;
    left: calc(var(--column-gap) / 2 * -1);
  }
}

.news-section--views .swiper-slide .card-snippet {
  margin-top: auto;
}

.card-section {
  margin: var(--buffer-section) 0;
  position: relative;
  overflow: hidden;
}
.card-section.no-top-margin {
  margin: 0 0 var(--buffer-section) 0;
}
.card-section .card-section-top {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .card-section .card-section-top {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .card-section .card-section-top {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .card-section .card-section-top .h2 {
    margin: 0;
  }
}
.card-section .card-section-top .button {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .card-section .card-section-top .button {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .card-section .card-section-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.card-section .card-section-case-studies-inner {
  --card-columns: 3;
  --column-gap: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .card-section .card-section-case-studies-inner {
    flex-direction: row;
    -moz-column-gap: var(--column-gap);
         column-gap: var(--column-gap);
    padding: 0;
  }
}

.quote-block-section-v3--margin-top {
  margin-top: var(--buffer-section);
}
.quote-block-section-v3 .quote-block-section-inner {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  font-weight: 300;
  padding: 150px 0;
  overflow: hidden;
  height: unset;
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-block-section-inner {
    padding: 0 24%;
  }
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-block-section-inner:hover .quote-line--1 {
    translate: -30px 0;
  }
  .quote-block-section-v3 .quote-block-section-inner:hover .quote-line--2 {
    translate: 30px 0;
  }
  .quote-block-section-v3 .quote-block-section-inner:hover .quote-line--3 {
    translate: -30px 0;
  }
}
.quote-block-section-v3 .quote-block-section-inner:hover .quote-main {
  color: #62d10a;
}
.quote-block-section-v3 .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote {
    padding: 80px 0;
    min-height: 300px;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .quote-block-section-v3 .quote {
    min-height: 400px;
  }
}
@media (min-width: 1300px) {
  .quote-block-section-v3 .quote {
    padding: 100px 0;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v3 .quote {
    padding: 120px 0;
  }
}
.quote-block-section-v3 .quote--smaller .quote-main {
  font-size: 21px;
}
@media (min-width: 992px) {
  .quote-block-section-v3 .quote--smaller .quote-main {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .quote-block-section-v3 .quote--smaller .quote-main {
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v3 .quote--smaller .quote-main {
    font-size: 32px;
  }
}
.quote-block-section-v3 .quote-main {
  font-size: 26px;
  line-height: 1.3;
  transition: color 0.4s;
}
@media (min-width: 992px) {
  .quote-block-section-v3 .quote-main {
    font-size: 30px;
  }
}
@media (min-width: 1300px) {
  .quote-block-section-v3 .quote-main {
    font-size: 34px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v3 .quote-main {
    font-size: 40px;
  }
}
.quote-block-section-v3 .quote-author {
  margin-top: 20px;
  font-size: 16px;
}
@media (min-width: 992px) {
  .quote-block-section-v3 .quote-author {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v3 .quote-author {
    font-size: 20px;
  }
}
.quote-block-section-v3 .quote-lines {
  position: absolute;
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines {
    top: 0;
    height: 100%;
    width: 100%;
  }
}
.quote-block-section-v3 .quote-lines--before {
  bottom: 100%;
  height: 150px;
  width: 100%;
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines--before {
    right: 100%;
    bottom: unset;
    height: 100%;
    width: 100%;
  }
}
.quote-block-section-v3 .quote-lines--after {
  top: 100%;
  height: 150px;
  width: 100%;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines--after {
    top: 0;
    height: 100%;
    width: 100%;
    left: 100%;
    transform: scaleX(-1);
  }
}
.quote-block-section-v3 .quote-line {
  background-color: #73817d;
  position: absolute;
  width: 1px;
  height: 100%;
  bottom: 0;
  transform-origin: bottom;
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-line {
    bottom: unset;
    transform-origin: unset;
  }
}
.quote-block-section-v3 .quote-lines .quote-line--1 {
  right: 25%;
  transform: skewX(50deg);
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines .quote-line--1 {
    top: 0;
    right: 0;
    transform-origin: top;
    transform: skewX(-35deg);
  }
}
.quote-block-section-v3 .quote-lines .quote-line--2 {
  left: 60%;
  transform: skewX(-50deg);
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines .quote-line--2 {
    left: unset;
    bottom: 0;
    right: 5%;
    transform-origin: bottom;
    transform: skewX(35deg);
  }
}
.quote-block-section-v3 .quote-lines .quote-line--3 {
  left: 0;
  transform: skewX(-50deg);
}
@media (min-width: 768px) {
  .quote-block-section-v3 .quote-lines .quote-line--3 {
    left: unset;
    bottom: 0;
    right: 27%;
    transform-origin: bottom;
    transform: skewX(35deg);
  }
}
.quote-block-section-v3 .quote-line {
  height: 0;
  transition: height 2s, translate 0.5s;
}
.quote-block-section-v3 [data-order="0"] .quote-line {
  transition: height 2s calc(0.2s * 0), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="1"] .quote-line {
  transition: height 2s calc(0.2s * 1), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="2"] .quote-line {
  transition: height 2s calc(0.2s * 2), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="3"] .quote-line {
  transition: height 2s calc(0.2s * 3), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="4"] .quote-line {
  transition: height 2s calc(0.2s * 4), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="5"] .quote-line {
  transition: height 2s calc(0.2s * 5), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="6"] .quote-line {
  transition: height 2s calc(0.2s * 6), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="7"] .quote-line {
  transition: height 2s calc(0.2s * 7), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="8"] .quote-line {
  transition: height 2s calc(0.2s * 8), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="9"] .quote-line {
  transition: height 2s calc(0.2s * 9), translate 0.5s 0s !important;
}
.quote-block-section-v3 [data-order="10"] .quote-line {
  transition: height 2s calc(0.2s * 10), translate 0.5s 0s !important;
}
.quote-block-section-v3.in-view .quote-line {
  height: 100%;
}

.get-in-touch-footer {
  background: #f0f9f1;
  color: #13322b;
  position: relative;
  margin-bottom: var(--buffer-section);
}
.get-in-touch-footer--margin-top {
  margin-top: var(--buffer-section);
}
.get-in-touch-footer .get-in-touch-footer-inner {
  position: relative;
}
.get-in-touch-footer .get-in-touch-footer-content {
  position: relative;
}
@media (min-width: 1300px) {
  .get-in-touch-footer .get-in-touch-footer-content {
    display: flex;
    justify-content: space-between;
  }
}
.get-in-touch-footer .col-1 {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .get-in-touch-footer .col-1 {
    padding: 60px 0;
    padding-bottom: 40px;
  }
}
@media (min-width: 1300px) {
  .get-in-touch-footer .col-1 {
    width: 70%;
    padding: 80px var(--left-indent);
  }
}
.get-in-touch-footer .col-2 {
  padding-bottom: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .get-in-touch-footer .col-2 {
    padding-bottom: 50px;
  }
}
@media (min-width: 1300px) {
  .get-in-touch-footer .col-2 {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
.get-in-touch-footer .text {
  font-weight: 400;
}
@media (min-width: 768px) {
  .get-in-touch-footer .text {
    max-width: 75ch;
  }
}
.get-in-touch-footer .get-in-touch-footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .get-in-touch-footer .get-in-touch-footer-links {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1300px) {
  .get-in-touch-footer .get-in-touch-footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
.get-in-touch-footer .button {
  color: #13322b;
  border-color: #13322b;
}

.header {
  height: 60px;
  background: #ffffff;
  color: #000000;
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - var(--case-study-bar-width));
  z-index: 10001;
  transition: height 0.5s;
  font-weight: 400;
  transition: left 1s, transform 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .header {
    height: 100px;
  }
}
.header::after {
  content: "";
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0px;
  background: #ffffff;
  transition: height 0.5s;
}
.header.extended::after {
  height: 40px;
}
.header .container {
  height: 100%;
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .header-logo-wrapper {
  display: block;
}
.header .header-logo {
  height: 26px;
}
@media (min-width: 768px) {
  .header .header-logo {
    height: 30px;
  }
}
.header .header-nav {
  display: none;
}
@media (min-width: 1300px) {
  .header .header-nav {
    display: flex;
    height: 100%;
  }
}
.header .header-nav .menu {
  display: flex;
  gap: 30px;
  align-items: center;
  height: 100%;
}
@media (min-width: 1600px) {
  .header .header-nav .menu {
    gap: 50px;
  }
}
.header .header-nav .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.1s;
}
.header .header-nav .menu-item:not(.menu-item-has-children) a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .header-nav .menu-item:not(.menu-item-has-children) a::after {
  content: "";
  width: 100%;
  position: absolute;
  transform: scaleX(0);
  margin-top: 10px;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #62d10a;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.header .header-nav .menu-item.defocus {
  opacity: 0.3;
}
.header .header-nav .menu-item-has-children.active .sub-menu {
  opacity: 1;
  pointer-events: all;
}
.header .header-nav .menu-item-has-children.active .sub-menu::before {
  transform: scaleX(1);
}
.header .header-nav .sub-menu {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  gap: 28px;
  padding: 14px 0;
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 9;
}
@media (min-width: 1600px) {
  .header .header-nav .sub-menu {
    gap: 50px;
  }
}
.header .header-nav .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  z-index: 10;
  background-color: #62d10a;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.45s 0.05s;
}
.header .header-nav .sub-menu .menu-item {
  box-sizing: content-box;
  white-space: nowrap;
}
.header .header-nav .expand-icon {
  display: none;
}
.header .header-nav a {
  color: inherit;
  display: inline-block;
  transition: 0.2s;
  position: relative;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .header .header-right {
    gap: 30px;
  }
}
.header .language-selector {
  display: none;
}
@media (min-width: 768px) {
  .header .language-selector {
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .header .language-selector {
    order: 100;
    display: flex;
  }
}
.header .hamburger-menu {
  position: relative;
  width: 34px;
  height: 22px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1300px) {
  .header .hamburger-menu {
    display: none;
  }
}
.header .hamburger-menu span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #000000;
  opacity: 1;
}
.header .hamburger-menu span:nth-child(1) {
  top: 0px;
}
.header .hamburger-menu span:nth-child(2), .header .hamburger-menu span:nth-child(3) {
  top: 10px;
}
.header .hamburger-menu span:nth-child(4) {
  top: 20px;
}
.header .hamburger-menu.open span:nth-child(1) {
  top: 10px;
  right: 50%;
  width: 0%;
}
.header .hamburger-menu.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header .hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header .hamburger-menu.open span:nth-child(4) {
  top: 11px;
  right: 50%;
  width: 0%;
}
.header .mode-toggle {
  cursor: pointer;
  order: -1;
}
.header .mode-toggle.active svg .main-circle {
  fill: #13322b;
}
.header .mode-toggle.active svg .circle-2 {
  stroke: #ffffff;
}
.header .mode-toggle.active svg .path-1 {
  stroke: #ffffff;
}
.header .mode-toggle.active svg .path-2 {
  fill: #ffffff;
}
.header .mode-toggle svg {
  display: block;
  height: 31px;
  width: auto;
}
.header .mode-toggle svg circle,
.header .mode-toggle svg path {
  transition: 0.1s;
}
.header.open {
  transform: translate3d(0);
}
.header.open .header-right {
  gap: 10px;
}

.lang-item {
  padding: 2px 12px;
}
.lang-item:first-of-type {
  padding-left: 6px;
}
.lang-item:last-of-type {
  padding-right: 6px;
}
.lang-item:not(:first-of-type) {
  border-left: 1px solid #d9d9d9;
}
.lang-item a {
  color: #000000;
  text-transform: uppercase;
  padding: 0.3em 0.5em;
  font-weight: 500;
  display: block;
  line-height: 1;
  font-size: 14px;
  padding-top: 0.45em;
  background: #e9e9e9;
  border: none;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: outline-color 0.2s;
}
@media (min-width: 768px) {
  .lang-item a {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .lang-item a {
    font-size: 14px;
  }
}
.lang-item a:hover {
  outline-color: black;
}
.lang-item.current-lang a {
  color: #62d10a;
  background: #e2f2cd;
}
.lang-item.current-lang a:hover {
  outline-color: #62d10a;
}

.main-menu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: #13322b;
  z-index: 9998;
  padding-top: 60px;
  transition: opacity 0.3s, left 1s;
}
@media (min-width: 768px) {
  .main-menu {
    padding-top: 100px;
  }
}
@media (min-width: 1300px) {
  .main-menu {
    display: none;
  }
}
.main-menu.case-header .button-open-sidebar {
  display: none;
}
@media (min-width: 992px) {
  .main-menu.case-header .button-open-sidebar {
    display: flex;
  }
}
.main-menu .container {
  height: 100%;
}
.main-menu.open {
  opacity: 1;
  pointer-events: all;
  overflow-y: auto;
}
.main-menu .main-menu-content {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-bottom: 40px;
}
.main-menu .arrow-button {
  border-color: #13322b;
  transition: 0.5s;
}
.main-menu .arrow-button::after {
  background-image: url("../../img/icons/arrow-right-dark-green.svg");
}
.main-menu .button-open-sidebar {
  margin-top: 40px;
  width: 100%;
  font-size: 20px;
}
@media (min-width: 768px) {
  .main-menu .button-open-sidebar {
    margin-top: 50px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .main-menu .button-open-sidebar {
    font-size: 30px;
  }
}
.main-menu .language-selector {
  display: flex;
  align-self: center;
  margin-top: 40px;
}
.main-menu .menu-nav .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .main-menu .menu-nav .menu {
    gap: 40px;
  }
}
.main-menu .menu-nav .menu-item {
  position: relative;
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .main-menu .menu-nav .menu-item {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .main-menu .menu-nav .menu-item {
    font-size: 40px;
  }
}
.main-menu .menu-nav .menu:has(.menu-item.open) > .menu-item:not(.open) {
  opacity: 0.3;
}
.main-menu .menu-nav .menu-item-has-children > a::after {
  content: unset;
}
.main-menu .menu-nav .menu-item-has-children > a .arrow-button::after {
  background-image: url("../../img/icons/plus-dark-green.svg");
}
.main-menu .menu-nav .menu-item-has-children.open > a .arrow-button {
  transform: rotate(-45deg);
}
.main-menu .menu-nav .sub-menu {
  position: relative;
  padding-top: 30px;
  padding-left: 30px;
  display: none;
  flex-direction: column;
  gap: 30px;
}
.main-menu .menu-nav .sub-menu a::before {
  content: unset;
}
.main-menu .menu-nav a {
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: 400;
}
.main-menu .menu-nav a:hover::after {
  transform: translateX(30%);
}
@media (min-width: 768px) {
  .main-menu .news-tiles {
    display: flex;
    gap: 14px;
    padding: 0 calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .main-menu .news-tiles {
    gap: 20px;
    padding: 0 calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 768px) {
  .main-menu .news-tile {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .main-menu .news-tile:nth-of-type(1) .news-image::before {
    width: 100vw;
    left: calc((100vw - 720px + 40px) / 2 * -1);
  }
}
@media (min-width: 992px) {
  .main-menu .news-tile:nth-of-type(1) .news-image::before {
    left: calc((100vw - 960px + 40px) / 2 * -1);
  }
}
.main-menu .news-tile:nth-of-type(2) {
  display: none;
}
@media (min-width: 768px) {
  .main-menu .news-tile:nth-of-type(2) {
    display: block;
  }
}
.main-menu .news-tile:nth-of-type(2) .news-image::before {
  content: unset;
}
.main-menu .news-image {
  height: 180px;
  position: relative;
}
@media (min-width: 768px) {
  .main-menu .news-image {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .main-menu .news-image {
    height: 280px;
  }
}
.main-menu .news-image::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #000000;
  z-index: 2;
}
.main-menu .news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-menu .news-title {
  color: #13322b;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-menu .news-title {
    font-size: 40px;
  }
}
.main-menu .news-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.5em;
}
.main-menu .news-bottom {
  padding: 30px 20px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .main-menu .news-bottom {
    padding: 40px 0;
    padding-right: 5%;
  }
}
.main-menu .news-button {
  margin-top: 20px;
}

.scroll-down header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - var(--case-study-bar-width));
  transform: translate3d(0, -100%, 0);
}

.scroll-up header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - var(--case-study-bar-width));
}

.footer {
  background: #f5f5f5;
  color: #6d6d6d;
  position: relative;
  z-index: 10;
}
.footer .footer-top {
  padding: 30px 0;
}
@media (min-width: 1300px) {
  .footer .footer-top {
    padding: 34px 0;
    padding-bottom: 40px;
  }
}
@media (min-width: 1300px) {
  .footer .footer-top-inner {
    display: flex;
    justify-content: space-between;
  }
}
.footer .footer-top-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}
@media (min-width: 1300px) {
  .footer .footer-top-main {
    width: 70%;
    margin: 0;
  }
}
.footer .footer-logo {
  display: inline-block;
}
.footer .footer-logo img {
  width: 140px;
}
@media (min-width: 1300px) {
  .footer .footer-logo img {
    width: 200px;
  }
}
.footer .footer-nav ul {
  display: grid;
  gap: 15px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
}
@media (min-width: 768px) {
  .footer .footer-nav ul {
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (min-width: 1300px) {
  .footer .footer-nav ul {
    -moz-column-gap: 80px;
         column-gap: 80px;
    row-gap: 20px;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 1600px) {
  .footer .footer-nav ul {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
.footer .footer-nav .sub-menu {
  display: none;
}
.footer .footer-nav a {
  color: #13322b;
}
.footer .footer-links {
  display: inline-grid;
  width: auto;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  -moz-column-gap: 44px;
       column-gap: 44px;
  row-gap: 20px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer .footer-links {
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    margin: 0;
  }
}
.footer .footer-link {
  color: #6d6d6d;
  font-weight: 300;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  line-height: 1.1;
}
.footer .footer-link img {
  margin-right: 0px;
  height: 15px;
  width: auto;
}
.footer .footer-link:hover::after {
  transform: translate(30%, -30%);
}
.footer .footer-link::after {
  content: "";
  background-image: url("../../img/icons/arrow-top-right-green.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 0.8em;
  width: 0.8em;
  transition: 0.2s;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(109, 109, 109, 0.15);
  padding: 30px 0;
}
.footer .footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-weight: 300;
  gap: 8px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .footer .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .footer .footer-bottom-content {
    font-size: 14px;
  }
}
.footer .footer-bottom-content a {
  color: inherit;
}
.footer .bottom-1 {
  display: flex;
  gap: 0.5em;
}
@media (min-width: 768px) {
  .footer .bottom-1 {
    order: 2;
  }
}

.page-template-page-our-approach-subpage .image-block .image-wrapper {
  aspect-ratio: 16/9;
}
@media (min-width: 992px) {
  .page-template-page-our-approach-subpage .image-block .image-wrapper {
    aspect-ratio: unset;
    height: 100%;
  }
}
.page-template-page-our-approach-subpage .image-block .image-wrapper.contain-image {
  aspect-ratio: unset;
}
.page-template-page-our-approach-subpage .image-block .image-wrapper.contain-image img {
  position: relative;
  width: 100%;
  height: auto;
}

.text-image-block {
  position: relative;
}
@media (min-width: 992px) {
  .text-image-block {
    display: flex;
  }
}
.text-image-block:nth-of-type(2n) .image-block {
  order: -1;
}
.text-image-block:nth-of-type(2n) .image-block .line--md {
  right: 0;
  left: unset;
}
.text-image-block:first-of-type .top-line {
  display: none;
}
@media (min-width: 992px) {
  .text-image-block .text-block {
    width: 55%;
  }
}
@media (min-width: 992px) {
  .text-image-block .text-block {
    display: flex;
    flex-direction: column;
  }
}
.text-image-block .text-block-outer {
  padding: 20px;
  padding-top: 30px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .text-image-block .text-block-outer {
    padding: 50px var(--left-indent);
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .text-image-block .text-block-outer {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: auto;
    padding: 60px var(--left-indent);
  }
}
.text-image-block .text-block-lines {
  display: none;
}
@media (min-width: 1600px) {
  .text-image-block .text-block-lines {
    display: block;
    overflow: hidden;
    position: relative;
  }
}
.text-image-block .text-block-lines svg {
  display: block;
  height: 70px;
  width: auto;
}
.text-image-block .text-block-lines svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
}
.text-image-block .h2 {
  margin-bottom: 20px;
}
@media (min-width: 1300px) {
  .text-image-block .h2 {
    margin-bottom: 40px;
  }
}
.text-image-block .intro-copy {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.text-image-block .text-block-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .text-image-block .text-block-buttons {
    margin-top: 30px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .text-image-block .text-block-buttons {
    flex-direction: column;
  }
}
@media (min-width: 1300px) {
  .text-image-block .text-block-buttons {
    margin-top: 40px;
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .text-image-block .text-block-buttons {
    gap: 40px;
  }
}
.text-image-block .image-block {
  padding: 20px;
  position: relative;
  overflow: hidden;
  perspective: 100px;
}
@media (min-width: 992px) {
  .text-image-block .image-block {
    width: 45%;
    display: flex;
    align-items: center;
  }
}
.text-image-block .image-block svg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 150%;
  height: auto;
  z-index: -1;
}
@media (min-width: 992px) {
  .text-image-block .image-block svg {
    display: none;
  }
}
.text-image-block .image-block svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
  stroke-width: 2px;
}
@media (min-width: 768px) {
  .text-image-block .image-block svg line {
    stroke-width: 1px;
  }
}
.text-image-block .image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 10px 15px 0px rgba(19, 50, 43, 0.25);
}
@media (min-width: 768px) {
  .text-image-block .image-wrapper {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 992px) {
  .text-image-block .image-wrapper {
    aspect-ratio: 1/1;
  }
}
.text-image-block .image-wrapper img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.text-image-block .image-wrapper.trigger-reverse {
  transform: translateZ(-4px);
  transition: transform 1s;
}
.text-image-block .image-wrapper.in-view {
  transform: translateZ(0);
}
.text-image-block.in-view svg line {
  stroke-dashoffset: 0 !important;
}

.x-404-page {
  position: relative;
}
@media (min-width: 1300px) {
  .x-404-page {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .x-404-page .x-404-page-content {
    display: flex;
    height: 100%;
    max-height: calc(100vh - 100px);
    overflow: hidden;
  }
}
.x-404-page .x-404-left {
  position: relative;
}
@media (min-width: 1300px) {
  .x-404-page .x-404-left {
    width: 50%;
    padding-left: calc((100% - 1170px + 40px) / 2);
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-left {
    padding-left: calc((100% - 1470px + 40px) / 2);
  }
}
.x-404-page .x-404-right {
  display: none;
}
@media (min-width: 1300px) {
  .x-404-page .x-404-right {
    display: block;
    width: 50%;
    max-height: calc(100vh - 100px);
  }
}
@media (min-width: 1300px) {
  .x-404-page .x-404-right-inner {
    position: relative;
    max-height: 100%;
    padding: 40px;
    height: 100%;
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-right-inner {
    padding: 60px;
  }
}
.x-404-page .x-404-block-1 {
  padding: 30px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .x-404-page .x-404-block-1 {
    padding: 60px calc((100% - 720px + 40px) / 2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .x-404-page .x-404-block-1 {
    padding: 60px calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .x-404-page .x-404-block-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0;
    padding-left: calc((200% - 1170px + 40px) / 2);
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-block-1 {
    padding-left: calc((200% - 1470px + 40px) / 2);
  }
}
.x-404-page .x-404-left-1 {
  position: relative;
}
@media (min-width: 1300px) {
  .x-404-page .x-404-left-1 {
    padding: 70px 0;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-left-1 {
    padding-top: 80px;
  }
}
.x-404-page .x-404-left-1 .line--desktop {
  width: 50vw;
}
.x-404-page .x-404-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .x-404-page .x-404-buttons {
    margin-top: 0;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-buttons {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .x-404-page .x-404-buttons .button {
    width: 240px;
  }
}
.x-404-page .x-404-block-2 {
  padding: 30px 20px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .x-404-page .x-404-block-2 {
    padding: 0 calc((100% - 720px + 40px) / 2);
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .x-404-page .x-404-block-2 {
    padding: 0 calc((100% - 960px + 40px) / 2);
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .x-404-page .x-404-block-2 {
    margin-top: 70px;
    padding: 0;
    padding-right: 80px;
    padding-left: calc((200% - 1170px + 40px) / 2);
    overflow-y: auto;
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-block-2 {
    padding-left: calc((200% - 1470px + 40px) / 2);
  }
}
@media (min-width: 768px) {
  .x-404-page .x-404-right-2 {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .x-404-page .content-area {
    max-width: 47em;
  }
}
.x-404-page .x-404-block-3 {
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .x-404-page .x-404-block-3 {
    padding: 0 calc((100% - 720px + 40px) / 2);
    padding-bottom: 80px;
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .x-404-page .x-404-block-3 {
    padding: 0 calc((100% - 960px + 40px) / 2);
    padding-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .x-404-page .x-404-block-3 {
    padding: 0;
    padding-right: 80px;
    padding-bottom: 80px;
    padding-left: calc((200% - 1170px + 40px) / 2);
    overflow-y: auto;
  }
}
@media (min-width: 1600px) {
  .x-404-page .x-404-block-3 {
    padding-left: calc((200% - 1470px + 40px) / 2);
  }
}
.x-404-page .x-404-image-wrapper-outer {
  position: relative;
  height: 100%;
}
.x-404-page .x-404-image-wrapper {
  height: 0;
  padding-bottom: 100%;
}
@media (min-width: 1300px) {
  .x-404-page .x-404-image-wrapper {
    min-height: 500px;
    padding: 0;
  }
}
.x-404-page .x-404-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.generic-template {
  height: 100%;
}
.generic-template .container {
  height: 100%;
}
@media (min-width: 1300px) {
  .generic-template .generic-template-inner {
    display: flex;
    align-items: flex-start;
    height: 100%;
  }
}
.generic-template .generic-left-block {
  padding-top: 20px;
}
@media (min-width: 1300px) {
  .generic-template .generic-left-block {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding: 0;
    position: sticky;
    top: 100px;
  }
}
.generic-template .generic-bottom-left-block {
  position: relative;
  padding: 30px 0;
}
@media (min-width: 1300px) {
  .generic-template .generic-bottom-left-block {
    padding: 80px 50px;
    padding-left: 0;
    position: relative;
  }
}
@media (min-width: 1600px) {
  .generic-template .generic-bottom-left-block {
    padding: 80px 60px;
    padding-left: 0;
  }
}
.generic-template .generic-bottom-left-block .middle-line {
  width: 50vw !important;
  z-index: 1;
}
.generic-template .generic-bottom-left-block-inner {
  display: flex;
  justify-content: space-between;
}
.generic-template .generic-buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .generic-template .generic-buttons {
    flex-direction: row;
  }
}
@media (min-width: 1300px) {
  .generic-template .generic-buttons {
    flex-direction: column;
  }
}
.generic-template .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.generic-template .social-link {
  display: block;
  height: 22px;
}
.generic-template .social-link img {
  height: 100%;
}
.generic-template .generic-top-left-block {
  position: relative;
}
@media (min-width: 1300px) {
  .generic-template .generic-top-left-block {
    order: -1;
    padding: 80px 50px;
    padding-left: 0;
  }
}
@media (min-width: 1600px) {
  .generic-template .generic-top-left-block {
    padding: 80px 60px;
    padding-left: 0;
  }
}
.generic-template .generic-top-left-block-inner {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .generic-template .generic-top-left-block-inner {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .generic-template .generic-top-left-block-inner {
    padding: 0;
  }
}
.generic-template .date {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .generic-template .date {
    margin-top: 20px;
  }
}
.generic-template .generic-h1 {
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 992px) {
  .generic-template .generic-h1 {
    font-size: 50px;
  }
}
.generic-template .generic-right-block {
  padding-top: 20px;
  padding-bottom: 30px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .generic-template .generic-right-block {
    padding-top: 30px;
    padding-bottom: 40px;
    max-width: 75ch;
  }
}
@media (min-width: 992px) {
  .generic-template .generic-right-block {
    padding-top: 40px;
  }
}
@media (min-width: 1300px) {
  .generic-template .generic-right-block {
    width: 60%;
    padding: 40px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    min-height: 100%;
  }
}
@media (min-width: 1600px) {
  .generic-template .generic-right-block {
    padding: 50px;
  }
}
.generic-template .image-wrapper {
  aspect-ratio: 3/2;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .generic-template .image-wrapper {
    margin-bottom: 30px;
    aspect-ratio: 2/1;
  }
}
@media (min-width: 992px) {
  .generic-template .image-wrapper {
    margin-bottom: 40px;
  }
}
.generic-template .main-copy strong {
  font-weight: 500;
}
.generic-template .main-copy h2,
.generic-template .main-copy h3 {
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 0.8em;
  margin-top: 2em;
}
.generic-template .main-copy ul {
  list-style: disc outside;
  padding-left: 2em;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.home-banner {
  position: relative;
  background: #13322b;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 60px);
}
@media (min-width: 768px) {
  .home-banner {
    min-height: calc(100dvh - 100px);
  }
}
.home-banner .sound-icon {
  z-index: 30;
  width: 100px;
  height: 100px;
  background-color: transparent;
  position: absolute;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
}
.home-banner .mute-video {
  background: transparent;
  background-size: 32px;
  border: 0;
  width: 32px;
  height: 32px;
}
.home-banner .mute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f028";
  color: #ffffff;
}
.home-banner .unmute-video {
  background: transparent;
  background-size: 32px;
}
.home-banner .unmute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f6a9";
  color: #ffffff;
}
.home-banner .img-placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-banner .video-wrapper {
  flex-grow: 1;
  background: #13322b;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}
.home-banner .home-banner-content {
  padding: 50px 0;
  background: #13322b;
  position: relative;
  z-index: 1;
}
.home-banner .home-banner-content-inner {
  font-weight: 300;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}
.home-banner .home-banner-content-inner strong {
  color: #62d10a;
  font-weight: inherit;
}
@media (min-width: 768px) {
  .home-banner .home-banner-content-inner {
    max-width: 45ch;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .home-banner .home-banner-content-inner {
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  .home-banner .home-banner-content-inner {
    font-size: 40px;
  }
}
.home-banner .home-banner-content-inner p br {
  display: none;
}
@media (min-width: 992px) {
  .home-banner .home-banner-content-inner p br {
    display: block;
  }
}
.home-banner .elipsis {
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.opportunity-mobile {
  position: relative;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .opportunity-mobile {
    padding: 0 calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .opportunity-mobile {
    padding: 0 calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .opportunity-mobile {
    display: none;
  }
}
.opportunity-mobile .h2 .green {
  display: block;
}
.opportunity-mobile .opportunity-mobile-inner {
  position: relative;
}
.opportunity-mobile .intro-block {
  padding: 30px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .opportunity-mobile .intro-block {
    padding: 50px 30px;
  }
}
.opportunity-mobile .opportunity-link {
  font-weight: 200;
  color: inherit;
  font-size: 32px;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .opportunity-mobile .opportunity-link {
    padding: 30px;
    outline: 1px solid transparent;
    outline-offset: -1px;
    z-index: 6;
    transition: outline-color 0.2s;
  }
}
@media (min-width: 768px) {
  .opportunity-mobile .opportunity-link .line {
    z-index: -1;
  }
}
.opportunity-mobile .opportunity-link .link-label {
  max-width: 85%;
}
@media (min-width: 768px) {
  .opportunity-mobile .opportunity-link:hover {
    outline-color: rgba(255, 255, 255, 0.7);
    outline-offset: -1px;
  }
}

.opportunity-desktop {
  display: none;
  position: relative;
}
@media (min-width: 1300px) {
  .opportunity-desktop {
    display: block;
  }
}
.opportunity-desktop .opportunity-desktop-inner {
  display: flex;
  position: relative;
}
.opportunity-desktop .intro-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  width: 40%;
}
@media (min-width: 1600px) {
  .opportunity-desktop .intro-block {
    padding: 60px;
    width: 30%;
  }
}
@media (min-width: 1300px) {
  .opportunity-desktop .h2 {
    max-width: 8em;
  }
}
.opportunity-desktop .h2 .green {
  display: block;
}
.opportunity-desktop .opportunity-block {
  width: 60%;
  position: relative;
}
@media (min-width: 1600px) {
  .opportunity-desktop .opportunity-block {
    width: 70%;
  }
}
.opportunity-desktop .opportunity {
  width: 100%;
  display: flex;
  position: relative;
}
.opportunity-desktop .opportunity:nth-of-type(2n) .opportunity-title {
  order: -1;
}
.opportunity-desktop .opportunity:nth-of-type(2n) .mask-line,
.opportunity-desktop .opportunity:nth-of-type(2n) .opportunity-image-outer {
  left: unset;
  right: 0;
}
.opportunity-desktop .opportunity:nth-of-type(2n) .opportunity-image {
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%);
}
.opportunity-desktop .opportunity:nth-of-type(2n) .arrow-button {
  right: unset;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.opportunity-desktop .opportunity:hover .opportunity-image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
}
.opportunity-desktop .opportunity:hover .opportunity-title {
  opacity: 1;
}
.opportunity-desktop .opportunity:hover .mask-line {
  width: 100%;
}
.opportunity-desktop .opportunity:hover .arrow-button {
  opacity: 1;
  pointer-events: all;
}
.opportunity-desktop .opportunity-title {
  padding: 40px 30px;
  font-weight: 200;
  font-size: 50px;
  letter-spacing: -0.05em;
  min-width: 40%;
  opacity: 0.2;
  line-height: 1;
  position: relative;
  transition: 0.5s;
}
@media (min-width: 1600px) {
  .opportunity-desktop .opportunity-title {
    font-size: 80px;
    padding: 46px 40px;
  }
}
.opportunity-desktop .opportunity-image-wrapper {
  flex: 1;
  position: relative;
}
.opportunity-desktop .mask-line {
  height: 100%;
  position: absolute;
  left: 0;
  width: 80%;
  transition: width 0.5s;
}
.opportunity-desktop .opportunity-image-outer {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
}
.opportunity-desktop .opportunity-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  -webkit-clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);
}
.opportunity-desktop .opportunity-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.opportunity-desktop .arrow-button {
  position: absolute;
  background-color: #13322b;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  transition: 0.5s;
  z-index: 10;
}

.home-about {
  position: relative;
}
@media (min-width: 768px) {
  .home-about {
    padding: 0;
  }
}
.home-about .home-about-content {
  padding-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .home-about .home-about-content {
    display: flex;
    padding: 0;
  }
}
.home-about .about-left {
  width: 90%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .home-about .about-left {
    width: 55%;
    padding: 80px 60px 80px calc((100vw - 720px + 20px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .home-about .about-left {
    padding-left: calc((100vw - 960px + 20px) / 2);
  }
}
@media (min-width: 1300px) {
  .home-about .about-left {
    width: 45%;
    padding: 90px 60px 90px 0;
  }
}
@media (min-width: 1600px) {
  .home-about .about-left {
    padding: 130px 160px 130px 0;
  }
}
@media (min-width: 768px) {
  .home-about .about-copy {
    max-width: 22em;
  }
}
.home-about .button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-about .button {
    max-width: 240px;
    margin-top: 40px;
  }
}
.home-about .about-right {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 768px) {
  .home-about .about-right {
    width: 45%;
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .home-about .about-right {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .home-about .home-about-swiper-container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .home-about .home-about-swiper-container {
    flex-direction: row;
  }
}
.home-about .home-about-swiper-container .swiper-buttons {
  padding: 16px;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .home-about .home-about-swiper-container .swiper-buttons {
    padding: 20px;
  }
}
@media (min-width: 1300px) {
  .home-about .home-about-swiper-container .swiper-buttons {
    flex-direction: column;
    border-top: none;
  }
}
.home-about .home-about-swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-about .home-about-swiper {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .home-about .home-about-swiper .swiper-wrapper {
    height: 100%;
  }
}
.home-about .home-about-swiper .swiper-slide {
  width: 100%;
  height: 340px;
  position: relative;
}
@media (min-width: 768px) {
  .home-about .home-about-swiper .swiper-slide {
    height: 100%;
  }
}
.home-about .home-about-swiper .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-geometry {
  height: 350px;
}
@media (min-width: 768px) {
  .home-geometry {
    height: auto;
  }
}

.home-our-assets {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .home-our-assets {
    padding: 100px 0;
  }
}
@media (min-width: 1300px) {
  .home-our-assets {
    padding: 110px 0;
  }
}
.home-our-assets .our-assets-content {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .home-our-assets .our-assets-content {
    padding: 90px 60px;
  }
}
@media (min-width: 992px) {
  .home-our-assets .our-assets-content {
    padding: 90px 80px;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .our-assets-content {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .home-our-assets .content-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .content-inner {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .home-our-assets .h2 {
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .h2 {
    white-space: nowrap;
    width: 60%;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .h2 .breaker {
    display: none;
  }
}
.home-our-assets .our-assets-copy {
  width: 90%;
}
@media (min-width: 768px) {
  .home-our-assets .our-assets-copy {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .our-assets-copy {
    width: 40%;
  }
}
.home-our-assets .stat-blocks {
  position: relative;
}
@media (min-width: 768px) {
  .home-our-assets .stat-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .stat-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home-our-assets .stat-block {
  position: relative;
}
@media (min-width: 1300px) {
  .home-our-assets .stat-block {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .home-our-assets .stat-block:last-of-type {
    grid-column: span 2;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .stat-block:last-of-type {
    grid-column: auto;
  }
}
.home-our-assets .stat-block.in-view .split-animate .char {
  opacity: 1;
  transform: translateY(0);
}
.home-our-assets .stat-block-inner {
  padding: 30px 20px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .home-our-assets .stat-block-inner {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .home-our-assets .stat-block-inner {
    padding: 40px 80px;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .stat-block-inner {
    padding: 40px;
  }
}
.home-our-assets .stat-block-heading {
  color: var(--text-grey);
  font-size: 22px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home-our-assets .stat-block-heading {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .home-our-assets .stat-block-heading {
    margin-bottom: 80px;
  }
}
.home-our-assets .stat {
  font-size: 60px;
}
@media (min-width: 768px) {
  .home-our-assets .stat {
    font-size: 75px;
  }
}
.home-our-assets .stat-description {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  max-width: 8em;
}
.home-our-assets .stat-description span {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .home-our-assets .stat-description {
    max-width: 65%;
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .home-our-assets .stat-description {
    max-width: 55%;
  }
}
@media (min-width: 1300px) {
  .home-our-assets .stat-description {
    max-width: 80%;
  }
}
@media (min-width: 1600px) {
  .home-our-assets .stat-description {
    max-width: 65%;
  }
}

.home-what-we-do {
  position: relative;
}
@media (min-width: 1300px) {
  .home-what-we-do {
    display: flex;
  }
}
.home-what-we-do .what-we-do-col-1 {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .home-what-we-do .what-we-do-col-1 {
    padding: 70px calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .home-what-we-do .what-we-do-col-1 {
    padding: 70px calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-col-1 {
    padding: 160px 0;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    min-height: 35vw;
  }
}
@media (min-width: 768px) {
  .home-what-we-do .what-we-do-content {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-content {
    flex-direction: column;
    max-width: 25em;
  }
}
@media (min-width: 768px) {
  .home-what-we-do .h2 {
    margin-bottom: 0;
    width: 40%;
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .h2 {
    margin-bottom: 0.35em;
    width: auto;
  }
}
.home-what-we-do .what-we-do-copy {
  max-width: 90%;
}
@media (min-width: 768px) {
  .home-what-we-do .what-we-do-copy {
    order: -1;
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-copy {
    order: 1;
    width: auto;
    max-width: unset;
  }
}
.home-what-we-do .what-we-do-col-2 {
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-what-we-do .what-we-do-col-2 {
    padding: 70px 60px;
  }
}
@media (min-width: 992px) {
  .home-what-we-do .what-we-do-col-2 {
    padding: 70px 80px;
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-col-2 {
    order: -1;
    padding: 160px 0;
    border: none;
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.home-what-we-do .what-we-do-links {
  display: grid;
  font-size: 28px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .home-what-we-do .what-we-do-links {
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    -moz-column-gap: 60px;
         column-gap: 60px;
    font-size: 37px;
  }
}
@media (min-width: 992px) {
  .home-what-we-do .what-we-do-links {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-links {
    grid-template-rows: unset;
    grid-auto-flow: row;
    font-size: 58px;
    display: inline-grid;
  }
}
.home-what-we-do .what-we-do-link {
  display: flex;
  justify-content: space-between;
  color: inherit;
  align-items: center;
  position: relative;
  padding: 0.4em 0;
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-link {
    gap: 50px;
    transition: 0.2s;
  }
}
.home-what-we-do .what-we-do-link.active .link-arrow {
  transform: translateX(60%);
}
.home-what-we-do .what-we-do-link .line--desktop {
  width: 55vw;
  left: 50%;
  translate: -50% 0;
}
.home-what-we-do .link-arrow {
  height: 0.7em;
  transition: 0.3s;
}
.home-what-we-do .what-we-do-image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  display: none;
}
@media (min-width: 1300px) {
  .home-what-we-do .what-we-do-image-overlay {
    display: block;
  }
}
@media (min-width: 1600px) {
  .home-what-we-do .what-we-do-image-overlay {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
  }
}
.home-what-we-do .what-we-do-image-overlay.active {
  opacity: 1;
}
.home-what-we-do .what-we-do-image-overlay img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-full-carousel {
  border-top: 1px solid #000000;
}
.home-full-carousel .home-full-swiper-container {
  position: relative;
}
.home-full-carousel .home-full-swiper {
  overflow: hidden;
}
.home-full-carousel .swiper-slide {
  width: 100%;
  position: relative;
}
.home-full-carousel .slide-img {
  position: relative;
  height: 350px;
}
@media (min-width: 768px) {
  .home-full-carousel .slide-img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .home-full-carousel .slide-img {
    height: 500px;
  }
}
@media (min-width: 1300px) {
  .home-full-carousel .slide-img {
    height: 650px;
  }
}
@media (min-width: 1600px) {
  .home-full-carousel .slide-img {
    height: 750px;
  }
}
.home-full-carousel .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.home-full-carousel .slide-bottom {
  padding: 30px 0 90px;
  box-sizing: border-box;
}
.home-full-carousel .swiper-under {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .home-full-carousel .swiper-under-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .home-full-carousel .swiper-caption {
    max-width: 20em;
  }
}
@media (min-width: 1300px) {
  .home-full-carousel .swiper-caption {
    max-width: 60%;
  }
}
.home-full-carousel .swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .home-full-carousel .swiper-nav {
    margin: 0;
    width: auto;
    gap: 30px;
  }
}
.home-full-carousel .swiper-buttons {
  justify-content: center;
}
@media (min-width: 768px) {
  .home-full-carousel .swiper-pagination {
    order: -1;
  }
}

.home-geometry-bottom {
  height: 150px;
}
@media (min-width: 768px) {
  .home-geometry-bottom {
    height: auto;
  }
}

.geometry-section {
  position: relative;
  overflow: hidden;
}
.geometry-section .line.bottom {
  transition-delay: 1.4s;
}
.geometry-section.extra-animation .home-geometry-test .left {
  height: 95%;
}
.geometry-section.extra-animation .home-geometry-test .right {
  height: 123%;
}
.geometry-section.animation-start .line.top {
  transform: scaleX(1);
}
.geometry-section.animation-start .line.bottom {
  transform: scaleX(1);
}

.home-geometry-test {
  position: relative;
}
.home-geometry-test svg {
  display: block;
  width: 100%;
  overflow: visible;
  overflow-clip-margin: 1px;
}
.home-geometry-test svg g {
  -webkit-clip-path: none;
          clip-path: none;
}
.home-geometry-test svg path {
  stroke-width: 3px;
}
@media (min-width: 768px) {
  .home-geometry-test svg path {
    stroke-width: 2px;
  }
}
@media (min-width: 992px) {
  .home-geometry-test svg path {
    stroke-width: 1.4px;
  }
}
@media (min-width: 1300px) {
  .home-geometry-test svg path {
    stroke-width: 1px;
  }
}
@media (min-width: 1600px) {
  .home-geometry-test svg path {
    stroke-width: 0.7px;
  }
}
.home-geometry-test svg line,
.home-geometry-test svg path,
.home-geometry-test svg rect {
  stroke: var(--line-color);
}
.home-geometry-test svg #geometry-test-u-v-shapes {
  background-color: red;
}
.home-geometry-test svg #geometry-test-u-v-shapes path {
  fill: var(--bkg-color);
  stroke: none;
}
.home-geometry-test .extra-line {
  width: 1px;
  position: absolute;
  background-color: var(--line-color);
  display: block;
  height: 0;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.home-geometry-test .extra-line.left {
  left: 0;
  top: 30.6%;
  rotate: 41deg;
  transform-origin: top;
}
.home-geometry-test .extra-line.right {
  right: 20%;
  bottom: 0;
  rotate: 35deg;
  transform-origin: bottom;
  transition-delay: 0.4s;
}

.quote-button-section {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 768px) {
  .quote-button-section {
    padding: 50px;
  }
}
@media (min-width: 992px) {
  .quote-button-section {
    padding: 0;
  }
}
.quote-button-section .elipsis {
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.quote-button-section .quote-button-inner {
  position: relative;
}
@media (min-width: 992px) {
  .quote-button-section .quote-button-inner {
    display: flex;
    padding: 60px 0;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .quote-button-section .quote-button-inner {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .quote-button-section .quote-block {
    padding: 0 30px;
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .quote-button-section .quote-block {
    padding-right: 0;
    padding-left: 50px;
  }
}
@media (min-width: 1600px) {
  .quote-button-section .quote-block {
    width: 68%;
    padding-left: 60px;
  }
}
.quote-button-section .quote {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 1300px) {
  .quote-button-section .quote {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .quote-button-section .quote {
    font-size: 30px;
  }
}
.quote-button-section .quote strong {
  font-weight: inherit;
  color: #62d10a;
  display: block;
}
.quote-button-section .author {
  margin-top: 10px;
}
@media (min-width: 1300px) {
  .quote-button-section .author {
    margin-top: 30px;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .quote-button-section .author {
    font-size: 22px;
  }
}
.quote-button-section .button-block {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .quote-button-section .button-block {
    margin: 0;
    padding: 0 30px;
  }
}
@media (min-width: 1300px) {
  .quote-button-section .button-block {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.stats-section {
  position: relative;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .stats-section {
    padding: 0 calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .stats-section {
    padding: 0 calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .stats-section {
    padding: 0 calc((100% - 1170px + 40px) / 2);
  }
}
@media (min-width: 1600px) {
  .stats-section {
    padding: 0 calc((100% - 1470px + 40px) / 2);
  }
}
.stats-section .stats-section-inner {
  position: relative;
}
@media (min-width: 1300px) {
  .stats-section .stats-section-inner {
    display: flex;
  }
}
.stats-section .intro-block {
  padding: 30px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .stats-section .intro-block {
    padding: 40px 30px;
  }
}
@media (min-width: 1300px) {
  .stats-section .intro-block {
    width: 36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 50px;
    min-height: 450px;
  }
}
@media (min-width: 1600px) {
  .stats-section .intro-block {
    min-height: 520px;
  }
}
.stats-section .copy {
  max-width: 750px;
}

@media (min-width: 768px) {
  .stats-block--mobile {
    display: none;
  }
}
.stats-block--mobile .stat {
  position: relative;
}
.stats-block--mobile .stat.active .stat-info {
  opacity: 1;
}
.stats-block--mobile .stat.active .stat-info-inner {
  padding: 30px 20px;
  width: 100%;
}
.stats-block--mobile .stat.active .stat-heading.focused {
  display: block;
}
.stats-block--mobile .stat.active .stat-heading.unfocused {
  display: none;
}
.stats-block--mobile .stat.active .stat-number {
  font-size: 68px;
  margin-top: 20px;
}
.stats-block--mobile .stat.active .stat-description {
  font-size: 30px;
}
.stats-block--mobile .stat.active .stat-image {
  height: 220px;
}
.stats-block--mobile .stat.active .stat-image .line {
  display: block;
}
.stats-block--mobile .stat-info {
  opacity: 0.6;
  transition: 0.8s;
}
.stats-block--mobile .stat-info-inner {
  padding: 14px 20px 20px;
  line-height: 1.1;
  transition: 0.8s;
  width: 0;
  text-align: center;
}
.stats-block--mobile .stat-heading {
  font-size: 24px;
  transition: 0.8s;
}
.stats-block--mobile .stat-heading.focused {
  display: none;
  font-weight: 500;
  font-size: 20px;
  color: #62d10a;
}
.stats-block--mobile .stat-number, .stats-block--mobile .stat-number-de {
  font-size: 42px;
  font-weight: 400;
  transition: 0.8s;
  margin-top: 10px;
}
.stats-block--mobile .stat-description {
  font-size: 18px;
  transition: 0.8s;
  margin-top: 4px;
}
.stats-block--mobile .stat-image {
  height: 0;
  position: relative;
  transition: height 0.8s;
}
.stats-block--mobile .stat-image .line {
  display: none;
}
.stats-block--mobile .stat-image-inner {
  height: 100%;
  padding: 10px;
}
.stats-block--mobile .stat-image-inner-inner {
  height: 100%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.stats-block--mobile .stat-image-inner-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.stats-block--desktop {
  display: none;
}
@media (min-width: 768px) {
  .stats-block--desktop {
    display: flex;
    flex-direction: column;
    height: 480px;
  }
}
@media (min-width: 992px) {
  .stats-block--desktop {
    height: 530px;
  }
}
@media (min-width: 1300px) {
  .stats-block--desktop {
    width: 64%;
    height: unset;
  }
}
.stats-block--desktop .stat {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  transition: flex 0.5s;
  position: relative;
}
.stats-block--desktop .stat.active .stat-heading {
  margin-top: 0;
  margin-bottom: 10px;
  opacity: 1;
}
.stats-block--desktop .stat.active .stat-info-inner {
  opacity: 1;
  width: 100%;
}
.stats-block--desktop .stat.active .stat-number, .stats-block--desktop .stat.active .stat-number-de {
  font-size: 60px;
}
@media (min-width: 1600px) {
  .stats-block--desktop .stat.active .stat-number, .stats-block--desktop .stat.active .stat-number-de {
    font-size: 70px;
  }
}
.stats-block--desktop .stat.active .stat-right {
  flex: 1;
  padding: 15px;
  position: relative;
}
.stats-block--desktop .stat.active .stat-right .line {
  opacity: 1;
}
.stats-block--desktop .stat.active .stat-heading-2 {
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: width 0s, opacity 0s, visibility 0s 0.2s;
}
.stats-block--desktop .stat.active .stat-image {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0.2s, visibility 0s 0.2s;
}
.stats-block--desktop .stat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 30px;
  transition: flex 0.5s;
}
.stats-block--desktop .stat-info-inner {
  opacity: 0.6;
  width: 0;
  text-align: center;
  white-space: nowrap;
  transition: width 0.5s;
}
.stats-block--desktop .stat-heading {
  margin-top: -1em;
  font-size: 16px;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s, margin 0.5s;
  color: #62d10a;
  font-weight: 500;
}
@media (min-width: 1600px) {
  .stats-block--desktop .stat-heading {
    font-size: 20px;
  }
}
.stats-block--desktop .stat-number, .stats-block--desktop .stat-number-de {
  font-size: 40px;
  font-weight: 400;
  transition: 0.5s;
  line-height: 1.1;
}
.stats-block--desktop .stat-description {
  font-size: 18px;
}
@media (min-width: 1600px) {
  .stats-block--desktop .stat-description {
    font-size: 22px;
  }
}
.stats-block--desktop .stat-right {
  position: relative;
  flex: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  transition: flex 0.5s, padding 0.5s;
}
.stats-block--desktop .stat-right .line {
  opacity: 0;
}
.stats-block--desktop .stat-heading-2 {
  opacity: 0.6;
  font-size: 24px;
}
.stats-block--desktop .stat-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: width 0s 0.5s, opacity 0.5s, visibility 0s 0.5s;
}
.stats-block--desktop .stat-image-inner {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 3px;
  overflow: hidden;
}
.stats-block--desktop .stat-image-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (hover: none) {
  .stats-block--desktop {
    height: unset;
  }
  .stats-block--desktop .stat-heading {
    margin-top: 0;
    opacity: 1;
  }
  .stats-block--desktop .stat-info-inner {
    opacity: 1;
    width: 100%;
  }
  .stats-block--desktop .stat-number {
    font-size: 60px;
  }
  .stats-block--desktop .stat-right {
    flex: 1;
    padding: 15px;
    border-left: 1px solid #73817d;
  }
  .stats-block--desktop .stat-heading-2 {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: width 0s, opacity 0s, visibility 0s 0.2s;
  }
  .stats-block--desktop .stat-image {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s 0.2s, visibility 0s 0.2s;
  }
}

.stats-block--mobile .stat-image {
  height: unset;
}
.stats-block--mobile .stat-image-inner-inner {
  aspect-ratio: 16/9;
  height: unset;
  width: 100%;
}
.stats-block--mobile .stat-info {
  opacity: 1;
}
.stats-block--mobile .stat-info-inner {
  padding: 30px 20px;
  width: 100%;
}
.stats-block--mobile .stat-heading.focused {
  display: block;
}
.stats-block--mobile .stat-heading.unfocused {
  display: none;
}
.stats-block--mobile .stat-number {
  font-size: 68px;
  margin-top: 20px;
}
.stats-block--mobile .stat-description {
  font-size: 30px;
}
.stats-block--mobile .stat-image .line {
  display: block;
}

.case-study-tab {
  position: fixed;
  top: 60px;
  left: 100%;
  width: 100%;
  transition: left 1s;
  z-index: 9999;
  color: #13322b;
  height: calc(100vh - 60px);
}
.case-study-tab .ribbon-text {
  width: 100%;
  word-break: break-word;
}
@media (min-width: 768px) {
  .case-study-tab {
    top: 100px;
    height: calc(100vh - 100px);
  }
}
@media (min-width: 992px) {
  .case-study-tab {
    top: 0px;
    height: 100vh;
  }
}
@media (min-width: 1300px) {
  .case-study-tab--mobile {
    display: none;
  }
}
.case-study-tab--desktop {
  display: none;
}
@media (min-width: 1300px) {
  .case-study-tab--desktop {
    display: block;
  }
}
.case-study-tab.active {
  left: 0;
}
.case-study-tab.active .ribbon-arrow {
  transform: scaleY(-1);
}
@media (min-width: 1300px) {
  .case-study-tab.active .ribbon-arrow {
    transform: unset;
  }
}
.case-study-tab .case-study-tab-button {
  display: none;
}
@media (min-width: 1300px) {
  .case-study-tab .case-study-tab-button {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    z-index: 999;
  }
}
.case-study-tab .case-study-tab-button:hover .case-study-button-bar {
  background-color: #13322b;
}
.case-study-tab .case-study-tab-button:hover .case-study-button-hexagon-wrapper .hexagon {
  background-color: #13322b;
}
.case-study-tab .case-study-tab-button .case-study-button-bar {
  width: var(--case-study-bar-width);
  height: 100%;
  background: #0a1a16;
  border-left: 1px solid #ffffff;
  transition: background-color 0.3s;
}
.case-study-tab .case-study-tab-button .case-study-button-hexagon-wrapper {
  -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
          clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
  height: 147px;
  width: 43px;
  position: absolute;
  top: 50%;
  right: calc(100% - 1px);
  transform: translateY(-50%);
}
.case-study-tab .case-study-tab-button .case-study-button-hexagon-wrapper .hexagon {
  -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
          clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
  display: block;
  background-color: #0a1a16;
  width: calc(100% - 1px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 1px;
  transition: background-color 0.3s;
}
.case-study-tab .case-study-tab-button .case-study-button-hexagon-wrapper .border {
  -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
          clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 70%);
  display: block;
  background: #ffffff;
  width: 100%;
  height: 100%;
}
.case-study-tab .case-study-tab-button .case-study-button-content {
  position: absolute;
  top: calc(50% + 4px);
  right: 0;
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  width: calc(var(--case-study-bar-width) + 43px);
  padding: 0 10px;
}
.case-study-tab .case-study-tab-button.return {
  right: unset;
  left: 0;
}
.case-study-tab .case-study-tab-button.return .case-study-button-bar {
  background: #73817d;
  border: none;
  border-right: 1px solid #ffffff;
  transition: background-color 0.3s;
}
.case-study-tab .case-study-tab-button.return .case-study-button-hexagon-wrapper {
  left: calc(100% - 1px);
  scale: -1 1;
}
.case-study-tab .case-study-tab-button.return .case-study-button-hexagon-wrapper .hexagon {
  background-color: #73817d;
}
.case-study-tab .case-study-tab-button.return .case-study-button-content {
  left: 0;
  right: unset;
}
.case-study-tab .case-study-tab-button.return .ribbon-arrow {
  transform: scaleX(-1);
}
.case-study-tab .case-study-tab-button.return:hover .case-study-button-bar {
  background-color: #5c6764;
}
.case-study-tab .case-study-tab-button.return:hover .case-study-button-hexagon-wrapper .hexagon {
  background-color: #5c6764;
}
.case-study-tab .case-study-main {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #ffffff;
}
@media (min-width: 1300px) {
  .case-study-tab .case-study-main {
    width: calc(100% - var(--case-study-bar-width));
    left: var(--case-study-bar-width);
  }
}
.case-study-tab .case-study-overview-intro {
  position: relative;
}
.case-study-tab .case-study-overview-intro .button {
  margin-top: 20px;
  display: none;
}
@media (min-width: 992px) {
  .case-study-tab .case-study-overview-intro .button {
    display: none;
  }
}
.case-study-tab .case-study-overview-intro-inner {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .case-study-tab .case-study-overview-intro-inner {
    padding: 60px 0;
  }
}
@media (min-width: 1600px) {
  .case-study-tab .case-study-overview-intro-inner {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .case-study-tab .intro-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .case-study-tab .h2 {
    margin: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .case-study-tab .intro-copy {
    max-width: 50em;
  }
}
@media (min-width: 1300px) {
  .case-study-tab .intro-copy {
    max-width: 50em;
  }
}

.case-study-filter-section {
  position: relative;
}
.case-study-filter-section.open .case-study-filters {
  display: flex;
}
.case-study-filter-section.open .filter-arrow {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .case-study-filter-section .case-study-filter-section-inner {
    padding: 15px 0;
  }
}
@media (min-width: 992px) {
  .case-study-filter-section .case-study-filter-section-inner {
    display: flex;
    justify-content: space-between;
  }
}
.case-study-filter-section .case-study-filter-section-inner .button--back {
  display: none;
}
@media (min-width: 992px) {
  .case-study-filter-section .case-study-filter-section-inner .button--back {
    display: flex;
  }
}
@media (min-width: 1300px) {
  .case-study-filter-section .case-study-filter-section-inner .button--back {
    display: none;
  }
}
.case-study-filter-section .case-study-filters-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .case-study-filter-section .case-study-filters-top {
    display: none !important;
  }
}
.case-study-filter-section .filter-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
.case-study-filter-section .filter-arrow {
  border-color: #13322b;
}
.case-study-filter-section .filter-arrow::after {
  background-image: url("../../img/icons/arrow-down-teal.svg");
}
.case-study-filter-section .case-study-filters {
  display: none;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
  position: relative;
}
@media (min-width: 768px) {
  .case-study-filter-section .case-study-filters {
    justify-content: flex-start;
    display: flex !important;
    padding: 0;
    margin: 0;
  }
}
.case-study-filter-section .case-study-filter-button {
  padding: 0.6em 1em;
  padding-top: 0.7em;
  background-color: #e7e9e9;
  color: #13322b;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: 0.15s;
}
.case-study-filter-section .case-study-filter-button.selected, .case-study-filter-section .case-study-filter-button:hover {
  background-color: #73817d;
  color: #ffffff;
}

.case-study-item-section {
  position: relative;
}
.case-study-item-section .container {
  height: 100%;
}

.case-study-item-section-inner {
  height: 100%;
  position: relative;
}

.case-study-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .case-study-items {
    --column-gap: 40px;
    --card-columns: 2;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--column-gap);
    max-height: 100%;
    height: 100%;
    position: relative;
  }
}
@media (min-width: 992px) {
  .case-study-items {
    --card-columns: 3;
  }
}
@media (min-width: 768px) {
  .case-study-items::after {
    content: "";
    display: block;
    width: calc(var(--container-indent) - var(--column-gap));
    height: 100%;
    flex-shrink: 0;
    min-width: 1px;
  }
}
.case-study-items .offices-divider-line {
  display: none;
}
@media (min-width: 768px) {
  .case-study-items .offices-divider-line:nth-of-type(1) {
    display: block;
    left: calc(100% / var(--card-columns));
  }
}
@media (min-width: 992px) {
  .case-study-items .offices-divider-line:nth-of-type(1) {
    left: calc(100% / var(--card-columns) - 7px);
  }
}
@media (min-width: 992px) {
  .case-study-items .offices-divider-line:nth-of-type(2) {
    display: block;
    left: calc(100% / var(--card-columns) * 2 + 7px);
  }
}

.contact-form-section .contact-form-section-inner {
  position: relative;
}
@media (min-width: 992px) {
  .contact-form-section .contact-form-section-inner {
    display: flex;
  }
}
@media (min-width: 992px) {
  .contact-form-section .intro-block {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 1600px) {
  .contact-form-section .intro-block {
    width: 35%;
  }
}
.contact-form-section .intro-block-inner {
  padding: 20px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .contact-form-section .intro-block-inner {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .contact-form-section .intro-block-inner {
    padding: 50px var(--left-indent);
    padding-top: 60px;
  }
}
@media (min-width: 1300px) {
  .contact-form-section .intro-block-inner {
    padding: 70px var(--left-indent);
  }
}
@media (min-width: 1600px) {
  .contact-form-section .intro-block-inner {
    padding: 80px var(--left-indent);
  }
}
.contact-form-section .intro-block-lines {
  display: none;
}
@media (min-width: 992px) {
  .contact-form-section .intro-block-lines {
    display: block;
    overflow: hidden;
    position: relative;
  }
}
.contact-form-section .intro-block-lines svg {
  display: block;
  height: 70px;
  width: auto;
  transform: translateX(-30px);
}
.contact-form-section .intro-block-lines svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
}
.contact-form-section .h2 {
  margin: 0;
}
.contact-form-section .intro-copy {
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 1300px) {
  .contact-form-section .intro-copy {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .contact-form-section .intro-copy {
    font-size: 22px;
  }
}
.contact-form-section .form-block {
  padding: 0 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .contact-form-section .form-block {
    padding: 0 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .contact-form-section .form-block {
    width: 60%;
    padding: 50px var(--left-indent);
    padding-top: 60px;
  }
}
@media (min-width: 1300px) {
  .contact-form-section .form-block {
    padding: 70px var(--left-indent);
    padding-bottom: 50px;
  }
}
@media (min-width: 1600px) {
  .contact-form-section .form-block {
    padding: 80px var(--left-indent);
    padding-bottom: 50px;
    width: 65%;
  }
}
.contact-form-section .form-wrapper {
  font-size: 18px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .contact-form-section .form-wrapper {
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .contact-form-section .form-wrapper {
    margin-top: 40px;
  }
}
.contact-form-section .nf-before-form-content {
  display: none;
}
.contact-form-section .nf-form-content {
  padding: 0;
}
.contact-form-section .nf-field-label {
  display: none;
}
.contact-form-section .nf-field-container {
  margin-bottom: 0 !important;
}
.contact-form-section .nf-response-msg {
  text-align: center;
}
.contact-form-section .nf-error-msg {
  display: none !important;
}
.contact-form-section .nf-error .ninja-forms-field {
  border-color: #73817d !important;
}
.contact-form-section .nf-field-element::after {
  content: unset !important;
}
.contact-form-section .nf-after-field {
  display: none !important;
}
.contact-form-section nf-field {
  display: block;
}
.contact-form-section nf-field:not(:first-child) {
  margin-top: 20px;
}
.contact-form-section input[type=text],
.contact-form-section input[type=tel],
.contact-form-section input[type=email] {
  height: 40px !important;
  padding: 0.3em 0 !important;
  border: none !important;
  border-bottom: 1px solid #73817d !important;
  background: none !important;
  color: #000000 !important;
  font-family: inherit;
  font-size: inherit !important;
  line-height: 1.4 !important;
  overflow: visible;
}
.contact-form-section input[type=text]::-moz-placeholder, .contact-form-section input[type=tel]::-moz-placeholder, .contact-form-section input[type=email]::-moz-placeholder {
  color: #73817d !important;
  overflow: visible !important;
}
.contact-form-section input[type=text]::placeholder,
.contact-form-section input[type=tel]::placeholder,
.contact-form-section input[type=email]::placeholder {
  color: #73817d !important;
  overflow: visible !important;
}
.contact-form-section textarea {
  padding: 0.3em 0 !important;
  display: block !important;
  border: none !important;
  border-bottom: 1px solid #73817d !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-family: inherit;
  font-size: inherit !important;
  resize: none !important;
  height: 150px !important;
}
.contact-form-section textarea::-moz-placeholder {
  color: #73817d !important;
}
.contact-form-section textarea::placeholder {
  color: #73817d !important;
}
.contact-form-section .list-select-wrap {
  border: none !important;
}
.contact-form-section .list-select-wrap .nf-field-element :nth-child(2) {
  height: 40px !important;
  border: none !important;
  border-bottom: 1px solid #73817d !important;
  background: #ffffff !important;
  color: inherit;
}
.contact-form-section .list-select-wrap .nf-field-element :nth-child(2)::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  bottom: unset;
  width: 14px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url("../../img/icons/arrow-select.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  content: "";
  z-index: 10;
}
.contact-form-section select {
  height: 40px !important;
  background: transparent !important;
  padding: 0.3em 0 !important;
  color: #000000 !important;
  font-family: inherit;
  font-size: inherit !important;
  line-height: 1.3em !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.contact-form-section select:invalid {
  color: #73817d !important;
}
.contact-form-section select option {
  min-height: 1.4em;
  padding: 5px 0;
  line-height: 1.4em !important;
  color: #000000 !important;
}
.contact-form-section select option[value=""] {
  color: #73817d;
}
.contact-form-section .submit-wrap .nf-field-element {
  display: block;
  position: relative;
  width: auto !important;
}
.contact-form-section .submit-wrap .nf-field-element:hover::after {
  transform: translateY(-50%) translateX(30%);
}
.contact-form-section .submit-wrap .nf-field-element::after {
  content: "" !important;
  pointer-events: none;
  display: block;
  position: absolute;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1em;
  background-image: url("../../img/icons/arrow-right-green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.contact-form-section input[type=submit] {
  font-size: inherit !important;
  background: transparent !important;
  border: 1px solid var(--text-primary) !important;
  padding: 0.7em 1.25em !important;
  color: var(--text-primary) !important;
  border-radius: 3px !important;
  line-height: 1 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-width: 240px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  gap: 20px !important;
  font-weight: 400 !important;
  cursor: pointer !important;
}

@media (min-width: 1300px) {
  .contact-intro-section .contact-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .contact-intro-section .h2 {
    margin: 0;
    width: 55%;
  }
}
@media (min-width: 768px) {
  .contact-intro-section .h2 .breaker {
    display: none;
  }
}
.contact-intro-section .contact-intro-copy {
  max-width: 90%;
}
@media (min-width: 768px) {
  .contact-intro-section .contact-intro-copy {
    max-width: 35em;
  }
}
@media (min-width: 1300px) {
  .contact-intro-section .contact-intro-copy {
    max-width: 45%;
  }
}

.contact-map-section {
  position: relative;
}
.contact-map-section .contact-map {
  height: calc(100vh - 56px);
}
@media (min-width: 768px) {
  .contact-map-section .contact-map {
    height: 600px;
  }
}
@media (min-width: 1600px) {
  .contact-map-section .contact-map {
    height: 700px;
  }
}

.contact-offices {
  margin: var(--buffer-section) 0;
}
.contact-offices .offices-intro {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .contact-offices .offices-intro {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .contact-offices .offices-intro {
    padding: 60px 0;
  }
}
.contact-offices .offices-intro .h2 {
  margin: 0;
}
@media (min-width: 768px) {
  .contact-offices .offices-intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 768px) {
  .contact-offices .offices-intro-copy {
    width: 60%;
    max-width: 40em;
  }
}

.card-section-offices .card-section-offices-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .card-section-offices .card-section-offices-inner {
    --card-columns: 2;
    --column-gap: 40px;
    padding: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--column-gap);
  }
}
@media (min-width: 1300px) {
  .card-section-offices .card-section-offices-inner {
    --card-columns: 4;
  }
}
.card-section-offices .offices-divider-line {
  display: none;
}
@media (min-width: 768px) {
  .card-section-offices .offices-divider-line:nth-of-type(1) {
    display: block;
    left: calc(100% / var(--card-columns));
  }
}
@media (min-width: 992px) {
  .card-section-offices .offices-divider-line:nth-of-type(1) {
    left: calc(100% / var(--card-columns) - 1px);
  }
}
@media (min-width: 1300px) {
  .card-section-offices .offices-divider-line:nth-of-type(1) {
    left: calc(100% / var(--card-columns) - 11px);
  }
}
@media (min-width: 1300px) {
  .card-section-offices .offices-divider-line:nth-of-type(2) {
    display: block;
    left: calc(100% / var(--card-columns) * 2 - 1px);
  }
}
@media (min-width: 1300px) {
  .card-section-offices .offices-divider-line:nth-of-type(3) {
    display: block;
    left: calc(100% / var(--card-columns) * 3 + 9px);
  }
}
.card-section-offices .offices-horizontal-divider {
  display: none;
  top: calc(-1 * var(--column-gap) / 2);
}
@media (min-width: 768px) {
  .card-section-offices .offices-horizontal-divider.col-2 {
    display: block;
  }
}
@media (min-width: 1300px) {
  .card-section-offices .offices-horizontal-divider.col-2 {
    display: none;
  }
}
.card-section-offices .offices-horizontal-divider.col-4 {
  display: none;
}
@media (min-width: 1300px) {
  .card-section-offices .offices-horizontal-divider.col-4 {
    display: block;
  }
}

.offices-main {
  position: relative;
}
@media (min-width: 768px) {
  .offices-main .office-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 1300px) {
  .offices-main .office-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offices-main .office-item-image {
  height: 280px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .offices-main .office-item-image {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .offices-main .office-item-image {
    height: 340px;
  }
}
@media (min-width: 1600px) {
  .offices-main .office-item-image {
    height: 380px;
  }
}
.offices-main .office-item-image .line {
  width: 100vw;
  left: -20px;
}
@media (min-width: 768px) {
  .offices-main .office-item-image .line {
    left: calc((100vw - 720px + 40px) / 2 * -1);
  }
}
@media (min-width: 992px) {
  .offices-main .office-item-image .line {
    left: calc((100vw - 960px + 40px) / 2 * -1);
  }
}
@media (min-width: 1300px) {
  .offices-main .office-item-image .line {
    left: calc((100vw - 1170px + 40px) / 2 * -1);
  }
}
@media (min-width: 1600px) {
  .offices-main .office-item-image .line {
    left: calc((100vw - 1470px + 40px) / 2 * -1);
  }
}
.offices-main .office-item-image-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.offices-main .office-item-location-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f9f1;
  cursor: pointer;
  transition: 0.15s;
}
@media (min-width: 1600px) {
  .offices-main .office-item-location-button {
    width: 60px;
    height: 60px;
  }
}
.offices-main .office-item-location-button:hover {
  background-color: #62d10a;
}
.offices-main .office-item-location-button .icon-pin {
  height: 32px;
}
@media (min-width: 1600px) {
  .offices-main .office-item-location-button .icon-pin {
    height: 38px;
  }
}
.offices-main .office-item-below {
  padding-top: 34px;
  padding-bottom: 50px;
  font-size: 18px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .offices-main .office-item-below {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .offices-main .office-item-below {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.offices-main .office-item-heading {
  font-size: 32px;
}
@media (min-width: 768px) {
  .offices-main .office-item-heading {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .offices-main .office-item-heading {
    font-size: 40px;
  }
}
.offices-main .office-item-link {
  color: inherit;
}

.offices-swiper-container .location-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f9f1;
  cursor: pointer;
  transition: 0.15s;
}
.offices-swiper-container .location-button:hover {
  background-color: #62d10a;
}
.offices-swiper-container .icon-pin {
  height: 32px;
}
.offices-swiper-container .slide-below {
  padding-bottom: 140px;
}
@media (min-width: 768px) {
  .offices-swiper-container .slide-below {
    padding-bottom: 110px;
  }
}
@media (min-width: 1300px) {
  .offices-swiper-container .slide-below {
    padding-bottom: 120px;
  }
}
.offices-swiper-container .swiper-buttons {
  position: absolute;
  bottom: 50px;
  left: 20px;
  z-index: 2;
}
@media (min-width: 768px) {
  .offices-swiper-container .swiper-buttons {
    display: none;
  }
}

.dark-mode .contact-form-section input,
.dark-mode .contact-form-section textarea {
  color: #ffffff;
}
.dark-mode .contact-form-section input::-moz-placeholder, .dark-mode .contact-form-section textarea::-moz-placeholder {
  color: #979797;
}
.dark-mode .contact-form-section input::placeholder,
.dark-mode .contact-form-section textarea::placeholder {
  color: #979797;
}
.dark-mode .contact-form-section select {
  color: #979797 !important;
}
.dark-mode .contact-form-section select.chosen {
  color: #ffffff !important;
}
.dark-mode .contact-form-section .submit-button {
  background: #ffffff;
  color: #000000;
}

.news-section {
  position: relative;
}
.news-section:nth-of-type(2n - 1) {
  background-color: #F8FCF8;
}
.news-section:not(:first-of-type) {
  margin-top: var(--buffer-section);
}
.news-section--views .card-date {
  display: none !important;
}
.news-section .news-intro {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .news-section .news-intro {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .news-section .news-intro {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .news-section .news-intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.news-section .news-intro-content .h2 {
  margin: 0;
}
@media (min-width: 768px) {
  .news-section .news-intro-content .h2 {
    width: 48%;
  }
}
@media (min-width: 1300px) {
  .news-section .news-intro-content .h2 {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  .news-section .news-intro-content .h2 {
    font-size: 70px;
  }
}
@media (min-width: 768px) {
  .news-section .news-intro-content .news-intro-copy {
    width: 48%;
  }
}
.news-section .news-filter {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .news-section .news-filter {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .news-section .news-filter {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .news-section .news-filter .news-intro-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.news-section .load-more-nav {
  padding: 0 !important;
}
.news-section .load-more-nav .news-nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .news-section .load-more-nav .news-nav-content {
    padding: 20px 0;
  }
}
.news-section .load-more-nav .news-nav-content a:after {
  transform: rotate(90deg);
}
.news-section--views {
  background-color: var(--bkg-color);
}
@media (min-width: 768px) {
  .news-section--views {
    margin-top: 80px;
  }
}
@media (min-width: 1300px) {
  .news-section--views {
    margin-top: 120px;
  }
}
.news-section--views.no-margin {
  margin-top: 0 !important;
}

.news-featured {
  position: relative;
}
@media (min-width: 768px) {
  .news-featured {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .news-featured {
    margin-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .news-featured {
    margin-bottom: 90px;
  }
}
.news-featured.no-margin {
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .news-featured .news-featured-item {
    display: flex;
  }
}
.news-featured .featured-image {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .news-featured .featured-image {
    padding: 20px 0;
    width: 45%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .news-featured .featured-image {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .news-featured .featured-image {
    width: 60%;
  }
}
.news-featured .featured-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-featured .featured-image-wrapper {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 15px 0 rgba(19, 50, 43, 0.25);
}
@media (min-width: 768px) {
  .news-featured .featured-image-wrapper {
    aspect-ratio: 1;
  }
}
@media (min-width: 992px) {
  .news-featured .featured-image-wrapper {
    aspect-ratio: 3/2;
    min-height: 100%;
  }
}
@media (min-width: 1300px) {
  .news-featured .featured-image-wrapper {
    aspect-ratio: 2/1;
  }
}
.news-featured .news-details {
  padding-bottom: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .news-featured .news-details {
    width: 55%;
    padding: 60px 10px 60px 50px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .news-featured .news-details {
    padding: 60px 30px 60px 60px;
    width: 45%;
  }
}
@media (min-width: 1300px) {
  .news-featured .news-details {
    width: 40%;
    padding: 60px;
  }
}
@media (min-width: 1600px) {
  .news-featured .news-details {
    padding: 70px;
  }
}
@media (min-width: 768px) {
  .news-featured .news-details .copy {
    -webkit-line-clamp: 4;
  }
}

.news-carousel-container {
  position: relative;
}
@media (min-width: 768px) {
  .news-carousel-container {
    display: flex;
    flex-direction: column;
  }
}
.news-carousel-container[data-id="1"] .swiper-right {
  background-color: var(--bkg-color-2);
}
.news-carousel-container .news-main {
  position: relative;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .news-carousel-container .news-main {
    padding: 0;
  }
}
.news-carousel-container .load-more-nav {
  padding: 50px 0;
}
.news-carousel-container .news-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .news-carousel-container .news-nav-content {
    padding: 20px 0;
  }
}
.news-carousel-container .fullpage-swiper-container-inner-inner {
  position: relative;
}
@media (min-width: 768px) {
  .news-carousel-container .news-swiper {
    overflow: hidden;
  }
}
.news-carousel-container .swiper-right {
  display: none;
}
@media (min-width: 1300px) {
  .news-carousel-container .swiper-right {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 100%;
    top: 0;
    width: 50vw;
    height: 100%;
    z-index: 2;
    background-color: var(--bkg-color);
  }
}
@media (min-width: 1300px) {
  .news-carousel-container .swiper-right-nav {
    width: 100px;
    height: 340px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1600px) {
  .news-carousel-container .swiper-right-nav {
    height: 380px;
    padding: 50px 0;
  }
}
.news-carousel-container .swiper-right-nav .swiper-buttons {
  flex-direction: column;
}
.news-carousel-container .slide-heading {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-carousel-container .slide-copy {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-carousel-container .slide-copy {
    -webkit-line-clamp: 3;
  }
}

.news-item-details .date {
  opacity: 0.5;
  margin-bottom: 0.3em;
  font-size: 14px;
  font-weight: 400;
}
.news-item-details .heading {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 32px;
  line-height: 1.1;
  text-wrap: balance;
}
@media (min-width: 992px) {
  .news-item-details .heading {
    font-size: 40px;
  }
}
.news-item-details .copy {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.8em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .news-item-details .copy {
    -webkit-line-clamp: 3;
  }
}
.news-item-details .link {
  margin-top: 1.2em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .news-item-details .link {
    margin-top: 1.5em;
  }
}

.news-geometry {
  overflow: hidden;
  height: 350px;
  position: relative;
}
@media (min-width: 768px) {
  .news-geometry {
    height: auto;
  }
}
.news-geometry svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .news-geometry svg {
    position: unset;
    transform: unset;
    width: 100%;
    height: auto;
  }
}

.views {
  margin-top: 0;
}

.year-select {
  min-width: 130px;
  font-size: inherit;
  font-family: inherit;
  border: 1px solid #73817d;
  border-radius: 3px;
  line-height: 1;
  padding: 0.6em 0.7em;
  padding-top: 0.7em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: url("../../img/icons/arrow-down-green.svg") 94%/10% no-repeat;
}
@media (min-width: 768px) {
  .year-select {
    padding: 0.6em 1em;
    padding-top: 0.7em;
    padding-right: 2.5em;
    background: url("../../img/icons/arrow-down-green.svg") 90%/9% no-repeat;
  }
}
.year-select .news-intro-content {
  justify-content: flex-end;
}

.news-main {
  margin: 0 !important;
}
.news-main .card-section-news-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .news-main .card-section-news-inner {
    --card-columns: 2;
    --column-gap: 40px;
    padding: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--column-gap);
  }
}
@media (min-width: 992px) {
  .news-main .card-section-news-inner {
    --card-columns: 3;
  }
}
.news-main .offices-divider-line {
  display: none;
}
@media (min-width: 768px) {
  .news-main .offices-divider-line:nth-of-type(1) {
    display: block;
    left: calc(100% / var(--card-columns));
  }
}
@media (min-width: 992px) {
  .news-main .offices-divider-line:nth-of-type(1) {
    left: calc(100% / var(--card-columns) - 7px);
  }
}
@media (min-width: 992px) {
  .news-main .offices-divider-line:nth-of-type(2) {
    display: block;
    left: calc(100% / var(--card-columns) * 2 + 7px);
  }
}
.news-main .offices-horizontal-divider {
  display: none;
  top: calc(-1 * var(--column-gap) / 2);
}
@media (min-width: 768px) {
  .news-main .offices-horizontal-divider.col-2 {
    display: block;
  }
}
@media (min-width: 992px) {
  .news-main .offices-horizontal-divider.col-2 {
    display: none;
  }
}
@media (min-width: 992px) {
  .news-main .offices-horizontal-divider.col-3 {
    display: block;
  }
}

.page-template-page-news .get-in-touch-footer, .page-template-page-news-grid .get-in-touch-footer {
  margin-top: var(--buffer-section);
}

#news-load-more.hidden {
  opacity: 0.3;
  pointer-events: none;
}

.floating-image-text-block {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .floating-image-text-block {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block {
    padding: 130px 0;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .block-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .block-content {
    display: flex;
    align-items: center;
    width: 35%;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .floating-image-text-block .block-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .block-content-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (min-width: 1600px) {
  .floating-image-text-block .block-content-inner {
    max-width: 26em;
  }
}
@media (min-width: 768px) {
  .floating-image-text-block .block-content-bottom {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .block-content-bottom {
    width: auto;
  }
}
@media (min-width: 768px) {
  .floating-image-text-block .h2 {
    width: 40%;
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .h2 {
    width: auto;
    margin-bottom: 0.4em;
  }
}
.floating-image-text-block .button {
  margin-top: 30px;
}
.floating-image-text-block .block-image {
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .floating-image-text-block .block-image {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .floating-image-text-block .block-image {
    height: 450px;
  }
}
@media (min-width: 1300px) {
  .floating-image-text-block .block-image {
    order: -1;
    margin: 0;
    width: 55%;
    height: auto;
    min-height: 450px;
  }
}
.floating-image-text-block .block-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-text-block {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .image-text-block {
    flex-direction: row;
  }
}
.image-text-block .block-content {
  padding: 50px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .image-text-block .block-content {
    padding: 70px calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .image-text-block .block-content {
    padding: 70px calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .image-text-block .block-content {
    padding: 110px 80px;
    padding-left: calc((100vw - 1170px + 40px - var(--scrollbar-width)) / 2);
    width: 45%;
  }
}
@media (min-width: 1600px) {
  .image-text-block .block-content {
    padding: 120px 100px;
    padding-left: calc((100vw - 1470px + 40px - var(--scrollbar-width)) / 2);
  }
}
@media (min-width: 768px) {
  .image-text-block .block-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .image-text-block .block-content-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .image-text-block .h2 {
    margin: 0;
    width: 45%;
  }
}
@media (min-width: 1300px) {
  .image-text-block .h2 {
    width: auto;
  }
}
.image-text-block .h2 span {
  display: block;
}
@media (min-width: 768px) {
  .image-text-block .block-content-bottom {
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .image-text-block .block-content-bottom {
    width: auto;
    max-width: 25em;
  }
}
.image-text-block .button {
  margin-top: 30px;
}
.image-text-block .block-image {
  position: relative;
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .image-text-block .block-image {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .image-text-block .block-image {
    height: 500px;
  }
}
@media (min-width: 1300px) {
  .image-text-block .block-image {
    width: 55%;
    height: auto;
    min-height: 600px;
  }
}
.image-text-block .block-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .image-text-block .block-image img {
    -o-object-position: center 30%;
       object-position: center 30%;
  }
}

.quote-block-section {
  position: relative;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .quote-block-section {
    display: flex;
    margin-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .quote-block-section {
    padding: 0 calc((100% - 1170px + 40px) / 2);
    margin-bottom: 140px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section {
    padding: 0 calc((100% - 1470px + 40px) / 2);
  }
}
.quote-block-section .block-profile {
  position: relative;
}
@media (min-width: 768px) {
  .quote-block-section .block-profile {
    width: 45%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .quote-block-section .block-profile {
    width: 40%;
  }
}
@media (min-width: 1300px) {
  .quote-block-section .block-profile {
    width: 35%;
  }
}
.quote-block-section .block-image {
  position: relative;
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .quote-block-section .block-image {
    height: auto;
    flex-grow: 1;
    aspect-ratio: 1;
  }
}
@media (min-width: 1300px) {
  .quote-block-section .block-image {
    min-height: 350px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section .block-image {
    min-height: 420px;
  }
}
.quote-block-section .block-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.quote-block-section .block-profile-under {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1em 0;
  font-size: 18px;
}
@media (min-width: 1300px) {
  .quote-block-section .block-profile-under {
    font-size: 26px;
  }
}
.quote-block-section .block-text {
  font-weight: 300;
  font-size: 22px;
  position: relative;
  overflow-y: auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .quote-block-section .block-text {
    width: 55%;
    padding: 50px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .quote-block-section .block-text {
    padding: 50px 70px;
    width: 60%;
  }
}
@media (min-width: 1300px) {
  .quote-block-section .block-text {
    width: 65%;
    padding: 70px 120px;
    padding-right: 0;
    font-size: 26px;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .quote-block-section .block-text {
    padding: 80px 140px;
    padding-right: 0;
  }
}
.quote-block-section .block-text ::-webkit-scrollbar {
  display: none;
}
.quote-block-section .block-text-inner {
  overflow-y: auto;
  height: 100%;
}
@media (min-width: 768px) {
  .quote-block-section .block-text-inner {
    height: auto;
    max-height: 100%;
  }
}

.about-us-main {
  position: relative;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .about-us-main {
    padding: 0 calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .about-us-main {
    padding: 0 calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .about-us-main {
    padding: 0 calc((100% - 1170px + 40px) / 2);
  }
}
@media (min-width: 1600px) {
  .about-us-main {
    padding: 0 calc((100% - 1470px + 40px) / 2);
  }
}
.about-us-main .about-us-main-inner {
  position: relative;
}

.quote-block-section-v2 {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .quote-block-section-v2 {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .quote-block-section-v2 {
    padding: 80px 0;
  }
}
@media (min-width: 1300px) {
  .quote-block-section-v2 {
    padding: 100px 0;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v2 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .quote-block-section-v2 .quote-block-section-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .quote-block-section-v2 .text-block {
    width: 60%;
    display: flex;
    align-items: center;
    padding: var(--left-indent);
  }
}
@media (min-width: 992px) {
  .quote-block-section-v2 .text-block {
    width: 65%;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v2 .text-block {
    width: 70%;
  }
}
.quote-block-section-v2 .quote-quote {
  font-weight: 450;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .quote-block-section-v2 .quote-quote {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (min-width: 1300px) {
  .quote-block-section-v2 .quote-quote {
    font-size: 36px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v2 .quote-quote {
    font-size: 46px;
  }
}
.quote-block-section-v2 .quote-author {
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 992px) {
  .quote-block-section-v2 .quote-author {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v2 .quote-author {
    font-size: 24px;
  }
}
.quote-block-section-v2 .image-block {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .quote-block-section-v2 .image-block {
    margin: 0;
    width: 30%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .quote-block-section-v2 .image-block {
    padding: 10px 40px;
    width: 35%;
  }
}
@media (min-width: 1600px) {
  .quote-block-section-v2 .image-block {
    width: 30%;
    padding: 10px 50px;
  }
}
.quote-block-section-v2 .image-wrapper {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.quote-block-section-v2 .image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.case-study-banner {
  padding: 20px;
  color: #ffffff;
  padding-top: 10px;
  perspective: 100vw;
  transition: perspective 0.5s;
}
@media (min-width: 768px) {
  .case-study-banner {
    width: 100%;
  }
}
.case-study-banner .banner-card {
  box-shadow: 0px 10px 15px 0px rgba(19, 50, 43, 0.25);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s;
}
@media (min-width: 768px) {
  .case-study-banner .banner-card {
    height: 100%;
  }
}
.case-study-banner .banner-image-wrapper {
  aspect-ratio: 16/9;
  max-height: 500px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .case-study-banner .banner-image-wrapper {
    max-height: none;
    aspect-ratio: unset;
    width: 100%;
    flex-grow: 1;
    aspect-ratio: 2.7;
  }
}
.case-study-banner .banner-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.case-buttons {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .case-buttons {
    display: none;
    padding: 60px 0;
  }
}
.case-buttons .buttons-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .case-buttons .buttons-group {
    flex-direction: row;
    width: 55%;
    justify-content: space-between;
  }
}
.case-buttons .buttons-group .button {
  margin-top: 15px;
  min-width: 240px;
}
@media (min-width: 768px) {
  .case-buttons .buttons-group .button {
    margin-right: 20px;
    margin-top: 0;
    min-width: 200px;
  }
}
.case-buttons .buttons-group .button:first-of-type {
  margin-top: 0;
}
.case-buttons .buttons-group .button:last-of-type {
  margin-right: 0;
}

.case-study-intro {
  background-color: #F8FCF8;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .case-study-intro {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .case-study-intro {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .case-study-intro {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .case-study-intro .case-study-intro-inner {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  }
}
.case-study-intro .case-study-title {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .case-study-intro .case-study-title {
    margin-bottom: 30px;
  }
}
.case-study-intro .case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.case-study-intro .case-study-tag {
  background-color: #13322b;
  color: #ffffff;
  padding: 0.5em 1em;
  padding-top: 0.6em;
  font-size: 12px;
  font-weight: 400;
  border-radius: 11px;
  line-height: 1;
}
.case-study-intro .details-block {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .case-study-intro .details-block {
    margin: 0;
  }
}
.case-study-intro .details-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .case-study-intro .details-grid {
    flex-direction: row;
    gap: 50px;
  }
}
@media (min-width: 992px) {
  .case-study-intro .details-grid {
    display: grid;
    row-gap: 20px;
    -moz-column-gap: 60px;
         column-gap: 60px;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 1300px) {
  .case-study-intro .details-grid {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media (min-width: 1600px) {
  .case-study-intro .details-grid {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
.case-study-intro .details-heading {
  font-size: 16px;
  color: #6d6d6d;
}
.case-study-intro .details-content {
  font-size: 22px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .case-study-intro .details-content {
    min-width: 125px;
  }
}

.buffer-gap {
  height: var(--buffer-section);
}

@media (min-width: 1300px) {
  .case-study-page {
    display: flex;
  }
}
.case-study-page [data-block-index] {
  scroll-margin-top: 69px;
}
@media (min-width: 1300px) {
  .case-study-page [data-block-index] {
    scroll-margin-top: 0;
  }
}
.case-study-page .case-study-main {
  overflow-x: hidden;
}
@media (min-width: 1300px) {
  .case-study-page .case-study-main {
    flex-grow: 1;
  }
}
.case-study-page .case-study-banner {
  height: 400px;
  position: relative;
}
@media (min-width: 768px) {
  .case-study-page .case-study-banner {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .case-study-page .case-study-banner {
    height: 550px;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-banner {
    height: 600px;
  }
}
@media (min-width: 1600px) {
  .case-study-page .case-study-banner {
    height: 700px;
  }
}
.case-study-page .case-study-banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case-study-page .case-study-title {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .case-study-page .case-study-title {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-title {
    padding: 70px 0;
  }
}
.case-study-page .case-study-h1 {
  letter-spacing: -0.02em;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .case-study-page .case-study-h1 {
    font-size: 70px;
  }
}
.case-study-page .tags {
  display: flex;
  font-size: 12px;
  font-weight: 300;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .case-study-page .tags {
    font-size: 18px;
  }
}
.case-study-page .tag {
  background: #13322b;
  padding: 0.3em 1em;
  padding-bottom: 0.2em;
  border-radius: 2em;
  color: #ffffff;
}
.case-study-page .case-study-top-boxes {
  position: relative;
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-boxes-content {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-top-boxes-content {
    flex-wrap: nowrap;
  }
}
.case-study-page .case-study-top-box {
  font-size: 38px;
  font-weight: 300;
  padding: 20px 0;
  line-height: 1.1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 95px;
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-box {
    width: 50%;
    padding: 30px 0;
    font-size: 40px;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-top-box {
    width: auto;
    flex: 1;
    padding: 30px 40px;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-top-box--1 {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-box--2, .case-study-page .case-study-top-box--4 {
    padding-left: 50px;
  }
}
.case-study-page .case-study-top-box a {
  color: inherit;
  font-size: 16px;
  display: block;
  border-bottom: 1px solid #13322b;
  margin-top: 0.3em;
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-box a {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-box .line--tb {
    height: 200%;
  }
}
@media (min-width: 1300px) {
  .case-study-page .case-study-top-box .line--tb {
    height: 100%;
  }
}
.case-study-page .case-study-top-box-label {
  color: #6d6d6d;
  font-size: 15px;
  margin-bottom: 0.4em;
}
@media (min-width: 768px) {
  .case-study-page .case-study-top-box-label {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .cs-text-image-block-section--reverse .image-block {
    order: -1;
  }
}
.cs-text-image-block-section--reverse .image-block .line--tb {
  left: unset;
  right: 0;
}
.cs-text-image-block-section .cs-text-image-block {
  position: relative;
}
@media (min-width: 992px) {
  .cs-text-image-block-section .cs-text-image-block {
    display: flex;
  }
}
@media (min-width: 992px) {
  .cs-text-image-block-section .text-block {
    width: 55%;
  }
}
@media (min-width: 992px) {
  .cs-text-image-block-section .text-block {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .text-block {
    width: 45%;
  }
}
@media (min-width: 1600px) {
  .cs-text-image-block-section .text-block {
    width: 40%;
  }
}
.cs-text-image-block-section .text-block-outer {
  padding: 20px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .cs-text-image-block-section .text-block-outer {
    padding: var(--left-indent);
  }
}
@media (min-width: 992px) {
  .cs-text-image-block-section .text-block-outer {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: auto;
  }
}
.cs-text-image-block-section .text-block-heading {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .text-block-heading {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .cs-text-image-block-section .text-block-heading {
    font-size: 22px;
  }
}
.cs-text-image-block-section .text-block-lines {
  display: none !important;
}
@media (min-width: 1600px) {
  .cs-text-image-block-section .text-block-lines {
    display: block;
    overflow: hidden;
    position: relative;
  }
}
.cs-text-image-block-section .text-block-lines svg {
  display: block;
  height: 70px;
  width: auto;
}
.cs-text-image-block-section .text-block-lines svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
}
.cs-text-image-block-section .h2 {
  margin-bottom: 20px;
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .h2 {
    margin-bottom: 40px;
  }
}
.cs-text-image-block-section .intro-copy {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.cs-text-image-block-section .button {
  margin-top: 20px;
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .button {
    margin-top: 40px;
  }
}
.cs-text-image-block-section .image-block {
  padding: 20px;
  position: relative;
  overflow: hidden;
  perspective: 100px;
}
@media (min-width: 992px) {
  .cs-text-image-block-section .image-block {
    width: 45%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .image-block {
    width: 55%;
  }
}
@media (min-width: 1600px) {
  .cs-text-image-block-section .image-block {
    width: 60%;
  }
}
.cs-text-image-block-section .image-block svg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 150%;
  height: auto;
  z-index: -1;
}
@media (min-width: 992px) {
  .cs-text-image-block-section .image-block svg {
    display: none;
  }
}
.cs-text-image-block-section .image-block svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
  stroke-width: 2px;
}
@media (min-width: 768px) {
  .cs-text-image-block-section .image-block svg line {
    stroke-width: 1px;
  }
}
.cs-text-image-block-section .image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 10px 15px 0px rgba(19, 50, 43, 0.25);
}
@media (min-width: 768px) {
  .cs-text-image-block-section .image-wrapper {
    aspect-ratio: 3/2;
  }
}
@media (min-width: 992px) {
  .cs-text-image-block-section .image-wrapper {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 1300px) {
  .cs-text-image-block-section .image-wrapper {
    aspect-ratio: 3/2;
  }
}
@media (min-width: 1600px) {
  .cs-text-image-block-section .image-wrapper {
    aspect-ratio: 16/10;
  }
}
.cs-text-image-block-section .image-wrapper img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cs-text-image-block-section .image-wrapper.trigger-reverse {
  transform: translateZ(-4px);
  transition: transform 1s;
}
.cs-text-image-block-section .image-wrapper.in-view {
  transform: translateZ(0);
}
.cs-text-image-block-section.in-view svg line {
  stroke-dashoffset: 0 !important;
}

.cs-text-columns-block .cs-text-columns-block-inner {
  position: relative;
}
@media (min-width: 1300px) {
  .cs-text-columns-block .text-columns {
    display: flex;
  }
}
.cs-text-columns-block .text-column {
  padding: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .cs-text-columns-block .text-column {
    padding: var(--left-indent);
  }
}
@media (min-width: 1300px) {
  .cs-text-columns-block .text-column {
    flex: 1;
  }
}
.cs-text-columns-block .text-column-inner {
  max-width: 75ch;
}
.cs-text-columns-block .text-column-heading {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.cs-image-full-block .cs-image-full-block-inner {
  position: relative;
  padding: 20px;
}
.cs-image-full-block .image-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .cs-image-full-block .image-wrapper {
    aspect-ratio: 16/9;
  }
}
.cs-image-full-block .image-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cs-image-full-block .image-text {
    margin-top: 30px;
  }
}

.case-study-flexible .text-columns-block {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 768px) {
  .case-study-flexible .text-columns-block {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .case-study-flexible .text-columns-block {
    padding: 80px 0;
  }
}
.case-study-flexible .text-columns-block .text-column {
  box-sizing: border-box;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .case-study-flexible .text-columns-block .text-column {
    padding: 0;
  }
}
.case-study-flexible .image-full-block {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .case-study-flexible .image-full-block {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .case-study-flexible .image-full-block {
    padding: 60px 0;
  }
}
@media (min-width: 1300px) {
  .case-study-flexible .image-full-block {
    padding: 80px 0;
  }
}
@media (min-width: 1600px) {
  .case-study-flexible .image-full-block {
    padding-left: 100px 0;
  }
}
.case-study-flexible .image-full-block .image-wrapper {
  position: relative;
  height: 360px;
}
@media (min-width: 992px) {
  .case-study-flexible .image-full-block .image-wrapper {
    height: 440px;
  }
}
@media (min-width: 1300px) {
  .case-study-flexible .image-full-block .image-wrapper {
    height: 600px;
  }
}
@media (min-width: 1600px) {
  .case-study-flexible .image-full-block .image-wrapper {
    height: 660px;
  }
}
.case-study-flexible .image-full-block .image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-text-block--team .block-image {
  order: -1;
  aspect-ratio: 16/9;
  height: auto;
}
@media (min-width: 768px) {
  .image-text-block--team .block-image {
    max-height: 400px;
  }
}
@media (min-width: 992px) {
  .image-text-block--team .block-image {
    max-height: 480px;
  }
}
@media (min-width: 1300px) {
  .image-text-block--team .block-image {
    order: 0;
    width: 45%;
    aspect-ratio: unset;
    max-height: unset;
  }
}
.image-text-block--team .block-image img {
  -o-object-position: 80% center;
     object-position: 80% center;
}
@media (min-width: 768px) {
  .image-text-block--team .block-content-inner {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .image-text-block--team .h2 {
    width: auto;
  }
}
@media (min-width: 768px) {
  .image-text-block--team .h2 span {
    display: inline-block;
  }
}
@media (min-width: 1300px) {
  .image-text-block--team .h2 span {
    display: block;
  }
}
.image-text-block--team .block-content {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media (min-width: 1300px) {
  .image-text-block--team .block-content {
    padding-top: 110px;
    padding-bottom: 110px;
    width: 55%;
  }
}
@media (min-width: 768px) {
  .image-text-block--team .block-content-bottom {
    width: auto;
    max-width: 800px;
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .image-text-block--team .block-content-bottom {
    max-width: 30em;
    margin: 0;
  }
}

.team-section .team-sector {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .team-section .team-sector {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .team-section .team-sector {
    margin-bottom: 100px;
  }
}
@media (min-width: 1300px) {
  .team-section .team-sector {
    margin-bottom: 120px;
  }
}
.team-section .team-sector-intro {
  position: relative;
  padding: 30px 0;
}
.team-section .team-sector-intro-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-section .sector-heading {
  font-size: 30px;
  font-weight: 450;
  line-height: 1.1;
  position: relative;
}
@media (min-width: 768px) {
  .team-section .sector-heading {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .team-section .sector-heading {
    font-size: 40px;
  }
}
.team-section .office-select {
  min-width: 130px;
  font-size: inherit;
  font-family: inherit;
  border: 1px solid #73817d;
  border-radius: 3px;
  line-height: 1;
  padding: 0.6em 0.7em;
  padding-top: 0.7em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: url("../../img/icons/arrow-down-green.svg") 94%/10% no-repeat;
}
@media (min-width: 768px) {
  .team-section .office-select {
    padding: 0.6em 1em;
    padding-top: 0.7em;
    padding-right: 2.5em;
    background: url("../../img/icons/arrow-down-green.svg") 90%/9% no-repeat;
  }
}
.team-section .team-members {
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .team-section .team-members {
    --team-gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: var(--team-gap);
         column-gap: var(--team-gap);
  }
}
@media (min-width: 1600px) {
  .team-section .team-members {
    --team-gap: 40px;
  }
}
.team-section .team-member {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding: 20px 20px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .team-section .team-member {
    padding: 20px 0;
    width: calc((100% - var(--team-gap)) / 2);
  }
}
@media (min-width: 992px) {
  .team-section .team-member {
    width: calc((100% - var(--team-gap) * 2) / 3);
  }
}
@media (min-width: 1300px) {
  .team-section .team-member {
    width: calc((100% - var(--team-gap) * 3) / 4);
  }
}
.team-section .team-member:last-of-type {
  padding-bottom: 20px;
}
.team-section .team-member:last-of-type .member-extra {
  padding-bottom: 0 !important;
}
.team-section .team-member.active {
  background-color: #F8FCF8;
  border-bottom: 1px solid #73817d;
}
@media (min-width: 768px) {
  .team-section .team-member.active {
    background-color: unset;
    border: none;
  }
}
.team-section .team-member.active .member-arrow::after {
  background-image: url("../../img/icons/cross-white.svg");
}
.team-section .team-member img {
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.team-section .team-member:hover img {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}
.team-section .member-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}
.team-section .member-arrow::after {
  background-image: url("../../img/icons/arrow-down-white.svg");
}
.team-section .team-member-image-wrap {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.team-section .team-member-image-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.team-section .team-member-bottom {
  padding-top: 20px;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  flex-grow: 1;
}
.team-section .member-name {
  font-size: 26px;
  line-height: 1.1;
}
@media (min-width: 1600px) {
  .team-section .member-name {
    font-size: 30px;
  }
}
.team-section .member-role {
  color: #6d6d6d;
  font-size: 18px;
}
@media (min-width: 1600px) {
  .team-section .member-role {
    font-size: 22px;
  }
}
.team-section .member-extra {
  margin-top: 18px;
  display: none;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .team-section .member-extra {
    display: none !important;
  }
}
.team-section .member-email {
  display: block;
  margin-top: 20px;
  color: inherit;
  font-weight: 500;
}
.team-section .member-phone {
  display: block;
  margin-top: 20px;
  color: inherit;
  font-weight: 500;
}
.team-section .member-info-box {
  display: none;
}
@media (min-width: 768px) {
  .team-section .member-info-box {
    position: absolute;
    left: 0;
    top: var(--team-row-top);
    display: flex;
    width: 100%;
    height: var(--team-row-height);
    background-color: #F8FCF8;
    z-index: 4;
    display: flex;
    gap: 30px;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.5s, opacity 0.5s;
  }
}
.team-section .member-info-box.active {
  opacity: 1;
  pointer-events: all;
}
.team-section .member-info-box::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #73817d;
}
.team-section .member-info-box .box-left {
  width: calc((100% - var(--team-gap)) / 2 + 3%);
  flex-shrink: 0;
  flex-grow: 0;
}
@media (min-width: 992px) {
  .team-section .member-info-box .box-left {
    width: calc((100% - var(--team-gap)) / 3);
  }
}
@media (min-width: 1300px) {
  .team-section .member-info-box .box-left {
    width: calc((100% - var(--team-gap)) / 4 - 1%);
  }
}
.team-section .member-info-box .box-left-bottom {
  margin-top: 20px;
}
.team-section .member-info-box .box-right {
  flex-grow: 1;
  padding: 20px 0;
  padding-right: 10px;
}
.team-section .member-info-box .box-right-inner {
  height: 100%;
  overflow-y: auto;
}
@media (min-width: 1300px) {
  .team-section .member-info-box .box-right-inner {
    font-size: 18px;
  }
}
.team-section .member-info-box .arrow-button {
  position: absolute;
  left: 10px;
  top: 10px;
  transform: rotate(90deg);
}
.team-section .member-info-box .arrow-button::after {
  background-image: url("../../img/icons/arrow-down-white.svg");
}
.team-section .member-info-box .member-bio {
  max-width: 75ch;
  font-weight: 400;
}
.team-section .profile-button {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .team-section .profile-button {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1600px) {
  .team-section .profile-button {
    width: 60px;
    height: 60px;
  }
}
.team-section .profile-button svg {
  display: block;
  width: 100%;
  height: 100%;
}
.team-section .profile-button svg g rect {
  transition: fill-opacity 0.2s;
}
.team-section .profile-button:hover svg g rect {
  fill-opacity: 1;
}

.profile-modal {
  border: 1px solid #ffffff;
  border-radius: 6px;
  width: 90%;
  height: 94%;
  max-width: 400px;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .profile-modal {
    width: 90%;
    max-height: 470px;
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .profile-modal {
    max-height: 500px;
    max-width: 800px;
  }
}
@media (min-width: 1300px) {
  .profile-modal {
    max-width: 1000px;
    max-height: 600px;
  }
}
.profile-modal .modal-padding {
  padding: 0 30px;
}
@media (min-width: 1300px) {
  .profile-modal .modal-padding {
    padding: 0 40px;
  }
}
.profile-modal .modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.profile-modal .modal-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  position: relative;
}
@media (min-width: 1300px) {
  .profile-modal .modal-top {
    padding: 30px 40px;
  }
}
.profile-modal .modal-button {
  width: 46px;
  height: 46px;
  border: 1px solid #13322b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.profile-modal .modal-button:hover img,
.profile-modal .modal-button:hover svg {
  transform: scale(0.85);
}
.profile-modal .modal-button svg {
  display: block;
  width: 17px;
  height: auto;
  transition: transform 0.2s;
}
.profile-modal .nav-buttons {
  display: flex;
  gap: 10px;
}
.profile-modal .prev-button {
  transform: scaleX(-1);
}
.profile-modal .modal-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .profile-modal .modal-main {
    flex-direction: row;
  }
}
.profile-modal .modal-profile {
  position: relative;
}
@media (min-width: 768px) {
  .profile-modal .modal-profile {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .profile-modal .wrapper-outer {
    padding: 0;
    padding-left: 30px;
  }
}
@media (min-width: 1300px) {
  .profile-modal .wrapper-outer {
    padding-left: 40px;
  }
}
.profile-modal .profile-image-wrapper {
  aspect-ratio: 10/9;
  width: 100%;
  position: relative;
  max-height: 260px;
}
.profile-modal .profile-image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center 20%;
     object-position: center 20%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .profile-modal .profile-image-wrapper {
    aspect-ratio: 1/1;
    max-height: none;
  }
}
.profile-modal .profile-bottom {
  padding: 18px 30px;
  font-weight: 300;
  line-height: 1.3;
  position: relative;
}
@media (min-width: 768px) {
  .profile-modal .profile-bottom {
    flex-grow: 1;
    padding-left: 30px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .profile-modal .profile-bottom {
    padding-top: 24px;
    padding-right: 20px;
    padding-left: 40px;
  }
}
@media (min-width: 1600px) {
  .profile-modal .profile-bottom {
    padding-top: 30px;
  }
}
.profile-modal .member-name {
  font-size: 28px;
}
.profile-modal .member-role {
  color: #6d6d6d;
  font-size: 20px;
}
.profile-modal .modal-bio {
  padding: 20px 30px;
  overflow-y: auto;
  flex-grow: 1;
  position: relative;
}
@media (min-width: 768px) {
  .profile-modal .modal-bio {
    width: 60%;
    padding: 40px;
  }
}
@media (min-width: 1300px) {
  .profile-modal .modal-bio {
    padding: 40px 60px;
  }
}
@media (min-width: 1600px) {
  .profile-modal .modal-bio {
    padding: 40px 70px;
  }
}

.our-approach-subpage-intro .our-approach-subpage-intro-inner {
  position: relative;
}

.sub-page-buttons {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .sub-page-buttons {
    padding: 60px 0;
  }
}
.sub-page-buttons .buttons-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sub-page-buttons .buttons-group {
    flex-direction: row;
    width: 55%;
    justify-content: space-between;
  }
}
.sub-page-buttons .buttons-group .button {
  margin-top: 15px;
  min-width: 240px;
}
@media (min-width: 768px) {
  .sub-page-buttons .buttons-group .button {
    margin-right: 20px;
    margin-top: 0;
    min-width: 200px;
  }
}
@media (min-width: 992px) {
  .sub-page-buttons .buttons-group .button {
    min-width: 240px;
  }
}
.sub-page-buttons .buttons-group .button:first-of-type {
  margin-top: 0;
}
.sub-page-buttons .buttons-group .button:last-of-type {
  margin-right: 0;
}

.our-approach-subpage-top-section {
  margin-bottom: 70px;
  position: relative;
}
@media (min-width: 1300px) {
  .our-approach-subpage-top-section {
    display: flex;
    min-height: 500px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .our-approach-subpage-top-section {
    min-height: 600px;
  }
}
.our-approach-subpage-top-section .block-image {
  position: relative;
  height: 280px;
}
@media (min-width: 768px) {
  .our-approach-subpage-top-section .block-image {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-top-section .block-image {
    height: 500px;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-top-section .block-image {
    width: 40%;
    height: auto;
  }
}
.our-approach-subpage-top-section .block-image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.our-approach-subpage-top-section .h2 {
  font-size: 60px;
}
@media (min-width: 768px) {
  .our-approach-subpage-top-section .h2 {
    font-size: 70px;
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-top-section .h2 {
    font-size: 80px;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-top-section .h2 {
    font-size: 100px;
  }
  .our-approach-subpage-top-section .h2 span {
    display: block;
  }
}
@media (min-width: 1600px) {
  .our-approach-subpage-top-section .h2 {
    font-size: 110px;
  }
}
.our-approach-subpage-top-section .block-content {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .our-approach-subpage-top-section .block-content {
    padding: 70px calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-top-section .block-content {
    padding: 80px calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-top-section .block-content {
    width: 60%;
    order: -1;
    padding: 80px 80px 80px calc((100% - 1170px + 40px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (min-width: 1600px) {
  .our-approach-subpage-top-section .block-content {
    padding-left: calc((100% - 1470px + 40px) / 2);
  }
}
@media (min-width: 768px) {
  .our-approach-subpage-top-section .block-content-copy {
    max-width: 38em;
  }
}

.our-approach-subpage-case-studies {
  margin-top: var(--buffer-section);
}
.our-approach-subpage-middle-section {
  position: relative;
  background-color: #f5f5f5;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 100px 0;
  }
}
@media (min-width: 1600px) {
  .our-approach-subpage-middle-section {
    padding: 120px 0;
  }
}
.our-approach-subpage-middle-section .block-image {
  position: relative;
  height: 280px;
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section .block-image {
    height: 400px;
    padding: 0 calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-middle-section .block-image {
    height: 500px;
    padding: 0 calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .block-image {
    width: 50%;
    height: auto;
    padding: 0;
  }
}
.our-approach-subpage-middle-section .block-image img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.our-approach-subpage-middle-section .block-image .line--100vw {
  left: 0 !important;
}
.our-approach-subpage-middle-section .block-image-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
.our-approach-subpage-middle-section .h2 {
  font-size: 50px;
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section .h2 {
    font-size: 70px;
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .h2 {
    font-size: 75px;
  }
}
.our-approach-subpage-middle-section .h2 span {
  display: block;
}
.our-approach-subpage-middle-section .h2 br {
  display: none;
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .h2 br {
    display: inline;
  }
}
.our-approach-subpage-middle-section .block-content {
  padding: 60px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section .block-content {
    padding: 40px calc((100% - 720px + 40px) / 2);
    order: -1;
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-middle-section .block-content {
    padding: 40px calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .block-content {
    width: 50%;
    order: 0;
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .our-approach-subpage-middle-section .block-content {
    padding: 110px 80px;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .block-content-inner {
    max-width: 34em;
  }
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section .block-content-copy {
    display: none;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .block-content-copy {
    display: block;
    margin-top: 40px;
    max-width: 29em;
  }
}
.our-approach-subpage-middle-section .block-copy {
  display: none;
}
@media (min-width: 768px) {
  .our-approach-subpage-middle-section .block-copy {
    display: block;
    padding: 50px calc((100% - 720px + 40px) / 2);
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .our-approach-subpage-middle-section .block-copy {
    padding: 50px calc((100% - 960px + 40px) / 2);
    padding-bottom: 100px;
  }
}
@media (min-width: 1300px) {
  .our-approach-subpage-middle-section .block-copy {
    display: none;
  }
}
.our-approach-subpage-middle-section .block-copy-inner {
  max-width: 44em;
}

.case-study-swiper-section {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}
@media (min-width: 1300px) {
  .case-study-swiper-section {
    margin-top: 0;
  }
}

.case-study-carousel-container {
  position: relative;
}
.case-study-carousel-container[data-id="1"] .swiper-right {
  background-color: var(--bkg-color-2);
}
.case-study-carousel-container .case-study-nav-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .case-study-carousel-container .case-study-nav-content {
    padding: 28px 0;
    flex-direction: row;
    align-items: center;
  }
}
.case-study-carousel-container .case-studies-header {
  padding: 0.7em 0;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .case-study-carousel-container .case-studies-header {
    padding: 0;
    font-size: 40px;
  }
}
.case-study-carousel-container .nav-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .case-study-carousel-container .nav-bottom {
    padding: 0;
    gap: 30px;
  }
}
.case-study-carousel-container .fullpage-swiper-container-inner-inner {
  position: relative;
}
.case-study-carousel-container .swiper-right {
  display: none;
}
@media (min-width: 1300px) {
  .case-study-carousel-container .swiper-right {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 100%;
    top: 0;
    width: 50vw;
    height: 100%;
    z-index: 2;
    background-color: var(--bkg-color);
  }
}
@media (min-width: 1300px) {
  .case-study-carousel-container .swiper-right-nav {
    width: 100px;
    height: 340px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1600px) {
  .case-study-carousel-container .swiper-right-nav {
    height: 380px;
    padding: 50px 0;
  }
}
.case-study-carousel-container .swiper-right-nav .swiper-buttons {
  flex-direction: column;
}
.case-study-carousel-container .slide-heading {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-study-carousel-container .slide-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.case-study-carousel-container .slide-list li::before {
  content: "•";
  margin-right: 0.5em;
}
@media (min-width: 768px) {
  .case-study-carousel-container .slide-below {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1300px) {
  .case-study-carousel-container .slide-below {
    padding-bottom: 100px;
  }
}
.case-study-carousel-container .slide-link {
  margin-top: 1.6em;
}

.values-section {
  margin: var(--buffer-section) 0;
  background: #F8FCF8;
  position: relative;
}
@media (min-width: 1300px) {
  .values-section .values-section-inner {
    display: flex;
  }
}
.values-section .values {
  position: relative;
}
@media (min-width: 1300px) {
  .values-section .values {
    flex-grow: 1;
  }
}
.values-section .value {
  position: relative;
}
@media (min-width: 992px) {
  .values-section .value {
    display: flex;
  }
}
@media (min-width: 992px) {
  .values-section .value:nth-of-type(2n - 1) .image-block {
    order: -1;
  }
}
.values-section .values-lines {
  display: none;
}
@media (min-width: 1300px) {
  .values-section .values-lines {
    display: block;
    position: relative;
    width: 60px;
  }
}
@media (min-width: 1600px) {
  .values-section .values-lines {
    width: 80px;
  }
}
.values-section .values-lines .lines-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.values-section .values-lines svg {
  display: block;
  height: 60px;
  width: auto;
  rotate: 90deg;
  transform-origin: top left;
  transform: translateY(-100%);
}
@media (min-width: 1600px) {
  .values-section .values-lines svg {
    height: 80px;
  }
}
.values-section .content-block {
  padding: 20px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .values-section .content-block {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .values-section .content-block {
    width: 55%;
    padding: 40px 30px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .values-section .content-block {
    padding: 40px 50px;
  }
}
.values-section .content-block-inner {
  max-width: 75ch;
}
@media (min-width: 1600px) {
  .values-section .content-block-copy {
    margin-top: 40px;
  }
}
.values-section .image-block {
  padding: 20px;
  padding-top: 10px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .values-section .image-block {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .values-section .image-block {
    width: 45%;
    display: flex;
    align-items: center;
    padding: 20px;
  }
}
.values-section .image-block svg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 150%;
  height: auto;
  z-index: 0;
}
@media (min-width: 992px) {
  .values-section .image-block svg {
    display: none;
  }
}
.values-section .image-block svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.4s 0.7s ease;
  stroke-width: 2px;
}
@media (min-width: 768px) {
  .values-section .image-block svg line {
    stroke-width: 1px;
  }
}
.values-section .image-block.in-view svg line {
  stroke-dashoffset: 0 !important;
}
.values-section .image-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
  z-index: 2;
}

.esg-section {
  margin-top: var(--buffer-section);
}
.esg-section .esg-top {
  padding: 30px 0;
  position: relative;
}
@media (min-width: 768px) {
  .esg-section .esg-top {
    padding: 40px 0;
  }
}
@media (min-width: 1300px) {
  .esg-section .esg-top {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .esg-section .esg-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.esg-section .esg-top-inner .h2 {
  margin: 0;
}
.esg-section .button {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .esg-section .button {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .esg-section .h2 {
    margin: 0;
    margin-bottom: -0.15em;
  }
}
.esg-section .esg-pillars {
  position: relative;
}
@media (min-width: 1300px) {
  .esg-section .esg-pillars {
    display: flex;
  }
}
.esg-section .esg-pillar {
  position: relative;
}
@media (min-width: 768px) {
  .esg-section .esg-pillar {
    display: flex;
    align-items: stretch;
  }
}
@media (min-width: 1300px) {
  .esg-section .esg-pillar {
    flex-direction: column;
    flex: 1;
  }
}
.esg-section .esg-pillars[data-order="0"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((0 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="0"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((0 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="0"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((0 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="0"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((0 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="1"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((1 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="1"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((1 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="1"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((1 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="1"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((1 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="2"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((2 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="2"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((2 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="2"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((2 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="2"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((2 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="3"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((3 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="3"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((3 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="3"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((3 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="3"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((3 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="4"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((4 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="4"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((4 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="4"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((4 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="4"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((4 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="5"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((5 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="5"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((5 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="5"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((5 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="5"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((5 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="6"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((6 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="6"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((6 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="6"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((6 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="6"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((6 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="7"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((7 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="7"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((7 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="7"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((7 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="7"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((7 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="8"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((8 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="8"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((8 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="8"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((8 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="8"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((8 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="9"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((9 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="9"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((9 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="9"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((9 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="9"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((9 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .esg-pillars[data-order="10"] .esg-pillar:nth-of-type(0) .pillar-heading-block {
  transition-delay: calc((10 * 0.2s) + (0.15s * 0)) !important;
}
.esg-section .esg-pillars[data-order="10"] .esg-pillar:nth-of-type(1) .pillar-heading-block {
  transition-delay: calc((10 * 0.2s) + (0.15s * 1)) !important;
}
.esg-section .esg-pillars[data-order="10"] .esg-pillar:nth-of-type(2) .pillar-heading-block {
  transition-delay: calc((10 * 0.2s) + (0.15s * 2)) !important;
}
.esg-section .esg-pillars[data-order="10"] .esg-pillar:nth-of-type(3) .pillar-heading-block {
  transition-delay: calc((10 * 0.2s) + (0.15s * 3)) !important;
}
.esg-section .pillar-heading-block {
  transition: background-color 0.5s;
}
@media (min-width: 768px) {
  .esg-section .pillar-heading-block {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .esg-section .pillar-heading-block {
    width: 100%;
  }
}
.esg-section .pillar-heading {
  padding: 20px;
  font-size: 32px;
  font-weight: 300;
  position: relative;
  line-height: 1;
}
@media (min-width: 768px) {
  .esg-section .pillar-heading {
    display: flex;
    align-items: center;
    font-size: 40px;
    padding: 30px;
  }
}
@media (min-width: 1300px) {
  .esg-section .pillar-heading {
    padding: 30px 40px;
  }
}
@media (min-width: 1600px) {
  .esg-section .pillar-heading {
    font-size: 50px;
  }
}
.esg-section .pillar-main {
  padding: 20px;
}
@media (min-width: 768px) {
  .esg-section .pillar-main {
    width: 45%;
    padding: 30px;
    position: relative;
  }
}
@media (min-width: 1300px) {
  .esg-section .pillar-main {
    width: auto;
    padding: 30px 40px;
  }
}
.esg-section .pillar-main p:not(:first-of-type) {
  margin-top: 0.4em;
}
.esg-section.in-view .esg-pillar:nth-of-type(1) .pillar-heading-block {
  background-color: rgba(98, 209, 10, 0.4);
}
.esg-section.in-view .esg-pillar:nth-of-type(2) .pillar-heading-block {
  background-color: rgba(98, 209, 10, 0.25);
}
.esg-section.in-view .esg-pillar:nth-of-type(3) .pillar-heading-block {
  background-color: rgba(98, 209, 10, 0.1);
}

.verdion-standard {
  position: relative;
  margin-top: var(--buffer-section);
}
.verdion-standard .verdion-standard-inner {
  position: relative;
}
@media (min-width: 1300px) {
  .verdion-standard .verdion-standard-inner {
    display: flex;
  }
}
.verdion-standard .intro-block {
  padding: 20px;
  padding-top: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .verdion-standard .intro-block {
    padding: 50px var(--left-indent);
  }
}
@media (min-width: 1300px) {
  .verdion-standard .intro-block {
    padding: 100px 0;
    padding-left: calc((100% - 1170px + 40px) / 2);
    padding-right: 80px;
    width: 45%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .verdion-standard .intro-block {
    padding: 120px 0;
    padding-left: calc((100% - 1470px + 40px) / 2);
    padding-right: 140px;
  }
}
@media (min-width: 768px) {
  .verdion-standard .intro-block-inner {
    max-width: 750px;
  }
}
.verdion-standard .intro-copy {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .verdion-standard .intro-copy {
    margin-top: 40px;
  }
}
.verdion-standard .features-block {
  padding: 20px;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .verdion-standard .features-block {
    padding: var(--left-indent);
    padding-top: 0;
  }
}
@media (min-width: 1300px) {
  .verdion-standard .features-block {
    padding: 100px 0;
    padding-left: 100px;
    width: 55%;
  }
}
@media (min-width: 1600px) {
  .verdion-standard .features-block {
    padding: 120px 0;
    padding-left: 160px;
  }
}
.verdion-standard .feature {
  padding: 0.6em 0;
  padding-top: 0.7em;
}
.verdion-standard .feature:not(:last-of-type) {
  border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}
.verdion-standard .features-note {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .verdion-standard .features-note {
    max-width: 75ch;
    margin-top: 50px;
  }
}

.statements-section {
  margin-top: var(--buffer-section);
  background: #F8FCF8;
}
@media (min-width: 768px) {
  .statements-section {
    padding-top: 86px;
  }
}
@media (min-width: 1300px) {
  .statements-section {
    margin-top: 120px;
  }
}
.statements-section .statements-swiper-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .statements-section .statements-swiper-container {
    height: auto;
  }
}
.statements-section .statements-nav {
  position: relative;
}
.statements-section .statements-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.statements-section .statements-swiper {
  position: relative;
}
.statements-section .swiper-slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  font-weight: 300;
  padding: 150px 0;
  overflow: hidden;
  height: unset;
}
@media (min-width: 768px) {
  .statements-section .swiper-slide {
    padding: 0 20%;
  }
}
@media (min-width: 768px) {
  .statements-section .swiper-slide:hover .statement-line--1 {
    translate: -30px 0;
  }
  .statements-section .swiper-slide:hover .statement-line--2 {
    translate: 30px 0;
  }
  .statements-section .swiper-slide:hover .statement-line--3 {
    translate: -30px 0;
  }
}
.statements-section .statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .statements-section .statement {
    padding: 80px 0;
    width: 90%;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .statements-section .statement {
    padding: 100px 0;
  }
}
@media (min-width: 1600px) {
  .statements-section .statement {
    padding: 120px 0;
  }
}
.statements-section .statement-heading {
  line-height: 1;
}
.statements-section .statement-copy {
  margin-top: 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .statements-section .statement-copy {
    max-width: 20.5em;
  }
}
@media (min-width: 992px) {
  .statements-section .statement-copy {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .statements-section .statement-copy {
    font-size: 26px;
  }
}
.statements-section .statement-lines {
  position: absolute;
}
@media (min-width: 768px) {
  .statements-section .statement-lines {
    top: 0;
    height: 100%;
    width: 100%;
  }
}
.statements-section .statement-lines--before {
  bottom: 100%;
  height: 150px;
  width: 100%;
}
@media (min-width: 768px) {
  .statements-section .statement-lines--before {
    right: 100%;
    bottom: unset;
    height: 100%;
    width: 100%;
  }
}
.statements-section .statement-lines--after {
  top: 100%;
  height: 150px;
  width: 100%;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .statements-section .statement-lines--after {
    top: 0;
    height: 100%;
    width: 100%;
    left: 100%;
    transform: scaleX(-1);
  }
}
.statements-section .statement-line {
  background-color: #73817d;
  position: absolute;
  width: 1px;
  bottom: 0;
  transform-origin: bottom;
  height: 0;
  transition: height 2s, translate 0.5s;
}
@media (min-width: 768px) {
  .statements-section .statement-line {
    bottom: unset;
    transform-origin: unset;
  }
}
.statements-section [data-order="0"] .statement-line {
  transition: height 2s calc(0.2s * 0), translate 0.5s 0s !important;
}
.statements-section [data-order="1"] .statement-line {
  transition: height 2s calc(0.2s * 1), translate 0.5s 0s !important;
}
.statements-section [data-order="2"] .statement-line {
  transition: height 2s calc(0.2s * 2), translate 0.5s 0s !important;
}
.statements-section [data-order="3"] .statement-line {
  transition: height 2s calc(0.2s * 3), translate 0.5s 0s !important;
}
.statements-section [data-order="4"] .statement-line {
  transition: height 2s calc(0.2s * 4), translate 0.5s 0s !important;
}
.statements-section [data-order="5"] .statement-line {
  transition: height 2s calc(0.2s * 5), translate 0.5s 0s !important;
}
.statements-section [data-order="6"] .statement-line {
  transition: height 2s calc(0.2s * 6), translate 0.5s 0s !important;
}
.statements-section [data-order="7"] .statement-line {
  transition: height 2s calc(0.2s * 7), translate 0.5s 0s !important;
}
.statements-section [data-order="8"] .statement-line {
  transition: height 2s calc(0.2s * 8), translate 0.5s 0s !important;
}
.statements-section [data-order="9"] .statement-line {
  transition: height 2s calc(0.2s * 9), translate 0.5s 0s !important;
}
.statements-section [data-order="10"] .statement-line {
  transition: height 2s calc(0.2s * 10), translate 0.5s 0s !important;
}
.statements-section .statement-lines .statement-line--1 {
  right: 25%;
  transform: skewX(50deg);
}
@media (min-width: 768px) {
  .statements-section .statement-lines .statement-line--1 {
    top: 0;
    right: 0;
    transform-origin: top;
    transform: skewX(-34deg);
  }
}
.statements-section .statement-lines .statement-line--2 {
  left: 60%;
  transform: skewX(-50deg);
}
@media (min-width: 768px) {
  .statements-section .statement-lines .statement-line--2 {
    left: unset;
    bottom: 0;
    right: 5%;
    transform-origin: bottom;
    transform: skewX(34deg);
  }
}
.statements-section .statement-lines .statement-line--3 {
  left: 0;
  transform: skewX(-50deg);
}
@media (min-width: 768px) {
  .statements-section .statement-lines .statement-line--3 {
    left: unset;
    bottom: 0;
    right: 30%;
    transform-origin: bottom;
    transform: skewX(34deg);
  }
}
.statements-section.in-view .statement-line {
  height: 100%;
}

.our-thinking-intro .our-thinking-intro-inner {
  position: relative;
}

.intro-link-blocks-focus-mobile {
  background-color: #f0f9f1;
}
.intro-link-blocks-focus-mobile .opportunity-link {
  font-weight: 300;
  border-width: 2px;
  outline: none;
}
@media (min-width: 768px) {
  .intro-link-blocks-focus-mobile .opportunity-link {
    font-weight: 200;
  }
}
.intro-link-blocks-focus-mobile .opportunity-link:hover {
  outline: none;
}
.intro-link-blocks-focus-mobile .arrow-button {
  border-color: #13322b;
}
.intro-link-blocks-focus-mobile .arrow-button::after {
  background-image: url("../../img/icons/arrow-right-dark-green.svg");
}

.intro-link-blocks-focus-desktop .intro-block {
  padding: 60px;
  padding-left: 0 !important;
}
@media (min-width: 1600px) {
  .intro-link-blocks-focus-desktop .intro-block {
    width: 35%;
  }
}
.intro-link-blocks-focus-desktop .intro-block-inner {
  max-width: 30ch;
}
.intro-link-blocks-focus-desktop .link-blocks {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .intro-link-blocks-focus-desktop .link-blocks {
    width: 65%;
  }
}
.intro-link-blocks-focus-desktop .link-block {
  flex: 1;
  display: flex;
  color: inherit;
  position: relative;
  justify-content: flex-end;
  pointer-events: none;
  transition: pointer-events 0s 1s;
}
.intro-link-blocks-focus-desktop .link-block:nth-of-type(2n) {
  justify-content: flex-start;
}
.intro-link-blocks-focus-desktop .link-block:nth-of-type(2n) .link-block-text {
  order: -1;
}
.intro-link-blocks-focus-desktop .link-block:nth-of-type(2n) .arrow-button {
  left: unset;
  right: 0;
  transform: translateX(50%) translateY(-50%);
}
.intro-link-blocks-focus-desktop .link-block:hover .link-block-text {
  background-color: #dbefc5;
  min-width: 75%;
}
@media (min-width: 1600px) {
  .intro-link-blocks-focus-desktop .link-block:hover .link-block-text {
    min-width: 78%;
  }
}
.intro-link-blocks-focus-desktop .link-block:hover .arrow-button {
  opacity: 1;
}
.intro-link-blocks-focus-desktop .link-block-pattern {
  flex: 0;
  position: relative;
  overflow: hidden;
  transition: flex ease-out 1.2s 1.4s;
}
.intro-link-blocks-focus-desktop .pattern-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.intro-link-blocks-focus-desktop .pattern-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}
.intro-link-blocks-focus-desktop .arrow-button {
  position: absolute;
  left: 0;
  right: unset;
  z-index: 9;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid #ffffff;
}
.intro-link-blocks-focus-desktop .arrow-button::after {
  background-image: url("../../img/icons/arrow-right-green.svg");
}
.intro-link-blocks-focus-desktop .link-block-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  transition: background-color 0.5s, min-width 0.5s;
  position: relative;
  font-weight: 200;
  font-size: 50px;
  line-height: 0.9;
}
@media (min-width: 1600px) {
  .intro-link-blocks-focus-desktop .link-block-text {
    font-size: 75px;
    min-width: 70%;
    padding: 35px 35px;
  }
}
.intro-link-blocks-focus-desktop .link-block-text .label {
  display: block;
  margin-bottom: -0.1em;
}
.intro-link-blocks-focus-desktop.in-view .link-block {
  pointer-events: all;
}
.intro-link-blocks-focus-desktop.in-view .link-block-text {
  min-width: 65%;
}
.intro-link-blocks-focus-desktop.in-view .link-block-pattern {
  flex: 1;
}

.our-focus-text-block {
  position: relative;
  margin-top: var(--buffer-section);
}
.our-focus-text-block .our-focus-text-block-inner {
  position: relative;
}

.our-focus-carousel-section {
  position: relative;
  background-color: #f0f9f1;
}
.our-focus-carousel-section .swiper-slide {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .our-focus-carousel-section .swiper-slide {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.our-focus-carousel-section .image-block {
  width: 100%;
}
@media (min-width: 992px) {
  .our-focus-carousel-section .image-block {
    width: unset;
    flex: 0 0 40%;
  }
}
.our-focus-carousel-section .image-wrapper-style {
  aspect-ratio: 1/1;
  width: 100%;
}
@media (min-width: 992px) {
  .our-focus-carousel-section .image-wrapper-style {
    aspect-ratio: 2/3;
  }
}
.our-focus-carousel-section .text-block-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 992px) {
  .our-focus-carousel-section .text-block-inner {
    gap: 10px;
  }
}
.our-focus-carousel-section .text-block-heading {
  font-size: 30px;
  line-height: 1.1;
}
@media (min-width: 1300px) {
  .our-focus-carousel-section .text-block-heading {
    font-size: 34px;
  }
}
@media (min-width: 1600px) {
  .our-focus-carousel-section .text-block-heading {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .our-focus-carousel-section .text-block-copy {
    max-width: 26ch;
  }
}
.our-focus-carousel-section .our-focus-nav {
  position: relative;
}
.our-focus-carousel-section .our-focus-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
