@charset "UTF-8";
/************************************************************************************
BASICS
*************************************************************************************/
html {
  --border-radius: 20px;
  --header-height: 90px;
}

/************************************************************************************
BREAKPOINTS
*************************************************************************************/
/************************************************************************************
GLOBALS
*************************************************************************************/
/* ==============================================================
RESPONSIVE SETTINGS
================================================================*/
/************************************************************************************
RESET
*************************************************************************************/
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, font, 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 {
  margin: 0px;
  padding: 0px;
  border: 0;
  outline: 0;
  font-size: 100.01%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, p {
  margin: 0px;
  padding: 0px;
  line-height: 1;
}

textarea {
  overflow: auto;
}

input {
  border: 0px solid white;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

blockquote, q {
  quotes: none;
}

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

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/************************************************************************************
CSS BASICS
*************************************************************************************/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  color: var(--text);
}

body {
  background: var(--bg);
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

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

iframe {
  display: block;
}

*:focus-visible {
  outline: 1px solid var(--blue);
}

/************************************************************************************
GLOBALS
*************************************************************************************/
#wrapper {
  min-height: 100%;
}

.relative {
  position: relative;
}

.shadow {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  -moz-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
}

.shadow--small {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  -moz-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
}

.middle {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 200;
}

.middle--big {
  max-width: 1300px;
}

.middle--medium {
  max-width: 1100px;
}

.middle--small {
  max-width: 800px;
}

.v-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rounded {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

.btn, .article-header__content .pnty-widget .pnty-btn, .site-main .middle .pnty-btn {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  padding: 17px 32px;
  min-width: 150px;
  border: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--btn-text);
  letter-spacing: 0.03em;
  background: var(--primary);
  font-family: var(--font-button);
  border-radius: var(--button-radius);
  padding: var(--button-padding-y) var(--button-padding-x);
  font-weight: var(--button-font-weight);
}

.btn:hover, .article-header__content .pnty-widget .pnty-btn:hover, .site-main .middle .pnty-btn:hover {
  filter: brightness(1.04);
}

.btn + .btn, .article-header__content .pnty-widget .pnty-btn + .btn, .site-main .middle .pnty-btn + .btn, .article-header__content .pnty-widget .btn + .pnty-btn, .article-header__content .pnty-widget .pnty-btn + .pnty-btn, .site-main .middle .btn + .pnty-btn, .site-main .middle .pnty-btn + .pnty-btn {
  margin-left: 20px;
}

.article-header__content .pnty-widget, .site-main .middle {
  align-self: flex-start;
}
.article-header__content .pnty-widget .pnty-btn, .site-main .middle .pnty-btn {
  margin: 0px;
  color: #fff !important;
  font-family: var(--font);
  background: var(--secondary);
  color: var(--text) !important;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary span {
  color: var(--primary);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--btn-text);
}
.btn--secondary span {
  color: var(--text);
}

.btn--small {
  padding: 12px 30px;
  min-width: 100px;
  font-size: 1.4rem;
}

.btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.arrow {
  position: relative;
  transition: transform 0.2s ease;
}

.arrow::after {
  content: "";
  right: 0;
  top: 0;
  content: "→";
}

.btn:hover .arrow, .article-header__content .pnty-widget .pnty-btn:hover .arrow, .site-main .middle .pnty-btn:hover .arrow {
  transform: translateX(4px);
}

.extra-link {
  position: absolute;
  right: 0px;
  top: 20px;
  color: var(--primary);
  font-family: var(--font-alt);
  font-weight: 300;
}

.hide {
  display: none;
}

.no-overflow {
  overflow: hidden;
}

.background-center {
  background-size: cover;
  background-position: center center;
}

#container {
  position: relative;
  z-index: 50;
  padding-top: calc(var(--header-height) - 20px);
}

.bg-none {
  background: #fff;
}

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

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

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

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

.bg-primary {
  background: var(--primary);
  color: #fff;
}
.bg-primary a {
  color: #fff;
}

.bg-secondary {
  background: var(--secondary);
  color: var(--text);
}

.bg-black {
  background: #202020;
  color: #fff;
}

.object-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Eller contain, fill, etc. */
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .middle {
    width: calc(100% - 32px);
  }
  .btn, .article-header__content .pnty-widget .pnty-btn, .site-main .middle .pnty-btn {
    padding: 15px 26px;
    min-width: 130px;
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .btn, .article-header__content .pnty-widget .pnty-btn, .site-main .middle .pnty-btn {
    padding: 14px 22px;
    min-width: 0;
    margin-top: 24px;
    font-size: 1.4rem;
  }
  .btn + .btn, .article-header__content .pnty-widget .pnty-btn + .btn, .site-main .middle .pnty-btn + .btn, .article-header__content .pnty-widget .btn + .pnty-btn, .article-header__content .pnty-widget .pnty-btn + .pnty-btn, .site-main .middle .btn + .pnty-btn, .site-main .middle .pnty-btn + .pnty-btn {
    margin-left: 12px;
  }
}
/************************************************************************************
GLOBAL TYPO
*************************************************************************************/
body {
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: 8.8rem;
  font-weight: 500;
}
h1 b,
h1 strong {
  font-weight: 700;
}

article h1 {
  font-size: 5.4rem;
}

h2 {
  font-size: 4rem;
  line-height: 1.2;
}
h2.underline {
  padding-bottom: 20px;
  border-bottom: 1px solid #C4C4C4;
}

h3 {
  font-size: 2.6rem;
  line-height: 1.25;
  font-weight: 500;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 400;
}

h4 + p, h4 + ul {
  margin-top: 20px;
}

h5 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
}

.is-intro {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 0;
}

p,
ul,
ol,
blockquote {
  margin: 0;
}

p {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
}

p + p {
  margin-top: 20px;
}

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

p a,
li a {
  color: var(--primary);
}

strong,
b {
  font-weight: 600;
}

.center {
  text-align: center;
}

.block .middle > h2 {
  margin-bottom: 40px;
}

/************************************************************************************
FLOW / WYSIWYG SPACING
*************************************************************************************/
.text > *,
.wysiwyg > *,
.flow > * {
  margin-top: 0;
  margin-bottom: 0;
}
.text > * + *,
.wysiwyg > * + *,
.flow > * + * {
  margin-top: 3rem;
}
.text > h1 + *,
.text > h2 + *,
.text > h3 + *,
.text > h4 + *,
.text > h5 + *,
.text > h6 + *,
.wysiwyg > h1 + *,
.wysiwyg > h2 + *,
.wysiwyg > h3 + *,
.wysiwyg > h4 + *,
.wysiwyg > h5 + *,
.wysiwyg > h6 + *,
.flow > h1 + *,
.flow > h2 + *,
.flow > h3 + *,
.flow > h4 + *,
.flow > h5 + *,
.flow > h6 + * {
  margin-top: 1.6rem;
}
.text > h1 + blockquote,
.text > h2 + blockquote,
.text > h3 + blockquote,
.text > h4 + blockquote,
.text > h5 + blockquote,
.text > h6 + blockquote,
.wysiwyg > h1 + blockquote,
.wysiwyg > h2 + blockquote,
.wysiwyg > h3 + blockquote,
.wysiwyg > h4 + blockquote,
.wysiwyg > h5 + blockquote,
.wysiwyg > h6 + blockquote,
.flow > h1 + blockquote,
.flow > h2 + blockquote,
.flow > h3 + blockquote,
.flow > h4 + blockquote,
.flow > h5 + blockquote,
.flow > h6 + blockquote {
  margin-top: 3.5rem;
}
.text > p + h2,
.text > ul + h2,
.text > ol + h2,
.text > blockquote + h2,
.wysiwyg > p + h2,
.wysiwyg > ul + h2,
.wysiwyg > ol + h2,
.wysiwyg > blockquote + h2,
.flow > p + h2,
.flow > ul + h2,
.flow > ol + h2,
.flow > blockquote + h2 {
  margin-top: 5.6rem;
}
.text .is-special-heading,
.wysiwyg .is-special-heading,
.flow .is-special-heading {
  font-size: 1.5rem;
  font-family: var(--font-alt);
  opacity: 0.7;
}
.text .is-special-heading + h2,
.wysiwyg .is-special-heading + h2,
.flow .is-special-heading + h2 {
  margin-top: 10px;
}
.text > p + h3,
.text > ul + h3,
.text > ol + h3,
.text > blockquote + h3,
.wysiwyg > p + h3,
.wysiwyg > ul + h3,
.wysiwyg > ol + h3,
.wysiwyg > blockquote + h3,
.flow > p + h3,
.flow > ul + h3,
.flow > ol + h3,
.flow > blockquote + h3 {
  margin-top: 4rem;
}
.text > p + h4,
.text > ul + h4,
.text > ol + h4,
.text > blockquote + h4,
.wysiwyg > p + h4,
.wysiwyg > ul + h4,
.wysiwyg > ol + h4,
.wysiwyg > blockquote + h4,
.flow > p + h4,
.flow > ul + h4,
.flow > ol + h4,
.flow > blockquote + h4 {
  margin-top: 4rem;
}
.text > ul,
.text > ol,
.wysiwyg > ul,
.wysiwyg > ol,
.flow > ul,
.flow > ol {
  padding-left: 2.4rem;
}
.text > ul li,
.text > ol li,
.wysiwyg > ul li,
.wysiwyg > ol li,
.flow > ul li,
.flow > ol li {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
}
.text ul li,
.wysiwyg ul li,
.flow ul li {
  list-style-type: disc;
}
.text > ul li + li,
.text > ol li + li,
.wysiwyg > ul li + li,
.wysiwyg > ol li + li,
.flow > ul li + li,
.flow > ol li + li {
  margin-top: 1.5rem;
}
.text > ul.fa-ul,
.wysiwyg > ul.fa-ul,
.flow > ul.fa-ul {
  list-style: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.text > ul.fa-ul li,
.wysiwyg > ul.fa-ul li,
.flow > ul.fa-ul li {
  list-style: none;
  margin-top: 0;
}
.text > ul.fa-ul li + li,
.wysiwyg > ul.fa-ul li + li,
.flow > ul.fa-ul li + li {
  margin-top: 2.2rem;
}
.text > blockquote,
.wysiwyg > blockquote,
.flow > blockquote {
  padding-left: 2rem;
  border-left: 3px solid rgba(0, 0, 0, 0.15);
}

/************************************************************************************
RESPONSIVE TYPO
*************************************************************************************/
@media (max-width: 1200px) {
  h1 {
    font-size: 4.6rem;
  }
  .block--page-top h1 {
    font-size: 5.2rem;
  }
  h2 {
    font-size: 3.6rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  .is-intro {
    font-size: 2.1rem;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.85rem;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 4rem;
  }
  .block--page-top h1 {
    font-size: 4.6rem;
  }
  h2 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  .is-intro {
    font-size: 2rem;
    line-height: 1.45;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .text > * + *,
  .wysiwyg > * + *,
  .flow > * + * {
    margin-top: 2.6rem;
  }
  .text > p + h2,
  .text > ul + h2,
  .text > ol + h2,
  .text > blockquote + h2,
  .wysiwyg > p + h2,
  .wysiwyg > ul + h2,
  .wysiwyg > ol + h2,
  .wysiwyg > blockquote + h2,
  .flow > p + h2,
  .flow > ul + h2,
  .flow > ol + h2,
  .flow > blockquote + h2 {
    margin-top: 4.8rem;
  }
  .text > p + h3,
  .text > ul + h3,
  .text > ol + h3,
  .text > blockquote + h3,
  .wysiwyg > p + h3,
  .wysiwyg > ul + h3,
  .wysiwyg > ol + h3,
  .wysiwyg > blockquote + h3,
  .flow > p + h3,
  .flow > ul + h3,
  .flow > ol + h3,
  .flow > blockquote + h3 {
    margin-top: 3.6rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 3.4rem;
    line-height: 1.1;
  }
  .block--page-top h1 {
    font-size: 3.8rem;
  }
  h2 {
    font-size: 2.8rem;
    line-height: 1.15;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.9rem;
  }
  h5 {
    font-size: 1.7rem;
  }
  .is-intro {
    font-size: 1.9rem;
    line-height: 1.45;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .text > * + *,
  .wysiwyg > * + *,
  .flow > * + * {
    margin-top: 2.2rem;
  }
  .text > h1 + *,
  .text > h2 + *,
  .text > h3 + *,
  .text > h4 + *,
  .text > h5 + *,
  .text > h6 + *,
  .wysiwyg > h1 + *,
  .wysiwyg > h2 + *,
  .wysiwyg > h3 + *,
  .wysiwyg > h4 + *,
  .wysiwyg > h5 + *,
  .wysiwyg > h6 + *,
  .flow > h1 + *,
  .flow > h2 + *,
  .flow > h3 + *,
  .flow > h4 + *,
  .flow > h5 + *,
  .flow > h6 + * {
    margin-top: 1.4rem;
  }
  .text > p + h2,
  .text > ul + h2,
  .text > ol + h2,
  .text > blockquote + h2,
  .wysiwyg > p + h2,
  .wysiwyg > ul + h2,
  .wysiwyg > ol + h2,
  .wysiwyg > blockquote + h2,
  .flow > p + h2,
  .flow > ul + h2,
  .flow > ol + h2,
  .flow > blockquote + h2 {
    margin-top: 4rem;
  }
  .text > p + h3,
  .text > ul + h3,
  .text > ol + h3,
  .text > blockquote + h3,
  .wysiwyg > p + h3,
  .wysiwyg > ul + h3,
  .wysiwyg > ol + h3,
  .wysiwyg > blockquote + h3,
  .flow > p + h3,
  .flow > ul + h3,
  .flow > ol + h3,
  .flow > blockquote + h3 {
    margin-top: 3rem;
  }
  .text > p + h4,
  .text > ul + h4,
  .text > ol + h4,
  .text > blockquote + h4,
  .wysiwyg > p + h4,
  .wysiwyg > ul + h4,
  .wysiwyg > ol + h4,
  .wysiwyg > blockquote + h4,
  .flow > p + h4,
  .flow > ul + h4,
  .flow > ol + h4,
  .flow > blockquote + h4 {
    margin-top: 2.6rem;
  }
  .text > ul,
  .text > ol,
  .wysiwyg > ul,
  .wysiwyg > ol,
  .flow > ul,
  .flow > ol {
    padding-left: 2rem;
  }
}
/************************************************************************************
HEADER
*************************************************************************************/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header);
  z-index: 100;
  transition: height 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  /************************************************************************************
  NAV
  *************************************************************************************/
  /************************************************************************************
  MOBILE TOGGLE
  *************************************************************************************/
}
.site-header .middle {
  height: 100%;
  width: 95%;
  max-width: 95%;
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 32px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: var(--logo-width, 180px);
  height: var(--logo-height, 20px);
}
.site-header__logo-img-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.site-header__logo img, .site-header__logo svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.site-header__logo-img {
  display: block;
  width: auto;
  max-height: 60px;
  height: 20px;
  transition: max-height 0.3s ease;
}
.site-header.is-top {
  height: 100px;
}
.site-header.is-top .site-header__logo-img {
  max-height: 60px;
}
.site-header.is-compact {
  height: 76px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.site-header.is-compact .site-header__logo-img {
  max-height: 46px;
}
.site-header__nav {
  margin-right: 60px;
}
.site-header__nav .site-header__menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav .site-header__menu > .menu-item {
  position: relative;
}
.site-header__nav .site-header__menu > .menu-item.current-menu-item a {
  color: var(--primary);
}
.site-header__nav .site-header__menu > .menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-color);
  font-weight: 400;
  color: var(--nav);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__nav .site-header__menu > .menu-item > a:hover {
  color: var(--primary);
}
.site-header__nav .site-header__menu > .menu-item:hover > a::after, .site-header__nav .site-header__menu > .menu-item:focus-within > a::after {
  transform: scaleX(1);
}
.site-header__nav .site-header__menu > .menu-item.current-menu-item > a::after, .site-header__nav .site-header__menu > .menu-item.current-menu-ancestor > a::after, .site-header__nav .site-header__menu > .menu-item.current_page_item > a::after, .site-header__nav .site-header__menu > .menu-item.current_page_ancestor > a::after {
  transform: scaleX(1);
}
.site-header__nav .site-header__menu .menu-item-has-children > a {
  padding-right: 18px;
}
.site-header__nav .site-header__menu .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}
.site-header__nav .site-header__menu .menu-item-has-children:hover > a::before, .site-header__nav .site-header__menu .menu-item-has-children:focus-within > a::before {
  transform: translateY(-40%) rotate(225deg);
}
.site-header__nav .site-header__menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.site-header__nav .site-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  min-width: 280px;
  margin: 0;
  padding: 15px 0;
  list-style: none;
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header__nav .site-header__menu .sub-menu li {
  margin: 0;
}
.site-header__nav .site-header__menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: 1.4rem;
  font-family: var(--font-alt);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__nav .site-header__menu .sub-menu a:hover,
.site-header__nav .site-header__menu .sub-menu a:focus-visible {
  background: rgba(0, 0, 0, 0.04);
}
.site-header__nav .site-header__menu .sub-menu .current-menu-item > a,
.site-header__nav .site-header__menu .sub-menu .current_page_item > a {
  color: var(--primary);
  font-weight: 500;
}
.site-header__nav .site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__nav .site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__toggle {
  display: block;
  position: absolute;
  right: 40px;
  top: 60px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1010;
}
.site-header__toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 3px;
  background: var(--burger);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.site-header__toggle span:nth-child(1) {
  top: 14px;
}
.site-header__toggle span:nth-child(2) {
  top: 21px;
}
.site-header__toggle span:nth-child(3) {
  top: 28px;
}
.site-header__toggle.is-open {
  top: 20px;
}
.site-header__toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-extra-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1009;
  width: min(500px, 88vw);
  height: 100vh;
  padding: 80px 60px 60px;
  background: var(--header);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.site-extra-menu nav {
  position: relative;
}
.site-extra-menu.is-open {
  transform: translateX(0);
}
.site-extra-menu ul#menu-extra li {
  margin-bottom: 10px;
}
.site-extra-menu ul#menu-extra li a {
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--aside-nav);
}
.site-extra-menu ul#menu-extra li:last-of-type {
  margin-bottom: 0px;
}
.site-extra-menu ul#menu-extra .sub-menu {
  margin-top: 10px;
}
.site-extra-menu ul#menu-extra .sub-menu li a {
  font-size: 1.7rem;
  opacity: 0.9;
}
.site-extra-menu ul#menu-extra .sub-menu li a:hover {
  opacity: 1;
}
.site-extra-menu .social-media {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  left: 0px;
  bottom: -110px;
}
.site-extra-menu .social-media a svg path {
  fill: var(--primary);
}
.site-extra-menu .social-media a:hover svg path {
  fill: var(--secondary);
}

.site-extra-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.menu-open {
  overflow: hidden;
}

/************************************************************************************
BRAND BAR
*************************************************************************************/
.brand-bar {
  position: relative;
  z-index: 1000;
  background: #000;
  color: #fff;
  font-family: var(--font-button, inherit);
  font-size: 13px;
}
.brand-bar polygon, .brand-bar path {
  fill: #fff;
}

.brand-bar__item--maquire svg {
  width: 100%;
  height: 12px;
}

.brand-bar__item--jerrie svg {
  width: 100%;
  height: 60px;
}

.brand-bar__inner {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 48px;
}

.brand-bar__list {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-bar__item {
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.brand-bar__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.brand-bar__item.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
}

.brand-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 24px;
  color: #fff;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.brand-bar__link:hover, .brand-bar__link:focus-visible {
  opacity: 1;
}

.brand-bar__item.is-active .brand-bar__link {
  opacity: 1;
}

.brand-bar__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 95px;
  max-height: 22px;
  height: 13px;
}

.brand-bar__text {
  white-space: nowrap;
}

.brand-bar__group {
  display: flex;
  align-items: center;
  font-family: "Poppins";
  gap: 0.35em;
  padding: 10px 28px;
  color: #fff;
  font-size: 1.1rem;
  font-style: italic;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.brand-bar__group strong {
  font-style: normal;
}

/************************************************************************************
SUBMENU TOGGLE BUTTON
*************************************************************************************/
.submenu-toggle {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 1200px) {
  .site-header .middle {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .site-header__inner {
    gap: 24px;
  }
  .site-header__nav .site-header__menu {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .site-header {
    height: 84px;
  }
  .site-header.is-top {
    height: 84px;
  }
  .site-header.is-compact {
    height: 72px;
  }
  .site-header .middle {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  .site-header__inner {
    gap: 16px;
  }
  .site-header__logo-img {
    max-height: 52px;
  }
  .site-header.is-compact .site-header__logo-img {
    max-height: 42px;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }
  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header__nav .site-header__menu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0;
    align-items: initial;
  }
  .site-header__nav .site-header__menu > .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .site-header__nav .site-header__menu > .menu-item > a {
    display: block;
    min-height: 0;
    padding: 14px 24px;
    font-size: 1.8rem;
  }
  .site-header__nav .site-header__menu > .menu-item > a::after {
    display: none;
  }
  .site-header__nav .site-header__menu .menu-item-has-children {
    position: relative;
  }
  .site-header__nav .site-header__menu .menu-item-has-children > a {
    padding-right: 56px;
  }
  .site-header__nav .site-header__menu .menu-item-has-children > a::before {
    display: none;
  }
  .site-header__nav .site-header__menu .menu-item-has-children::after {
    display: none;
  }
  .site-header__nav .site-header__menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .site-header__nav .site-header__menu .sub-menu a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 1.5rem;
    background: transparent;
  }
  .site-header__nav .site-header__menu .menu-item.is-open > .sub-menu {
    display: block;
  }
  .submenu-toggle {
    display: block;
    position: absolute;
    top: 6px;
    right: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .submenu-toggle::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease, top 0.2s ease;
  }
  .menu-item.is-open > .submenu-toggle::before {
    transform: rotate(225deg);
    top: 18px;
  }
}
@media (max-width: 767px) {
  .site-header {
    height: 76px;
  }
  .site-header.is-top {
    height: 76px;
  }
  .site-header.is-compact {
    height: 68px;
  }
  .site-header .middle {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
  .site-header__logo-img {
    max-height: 46px;
  }
  .site-header.is-compact .site-header__logo-img {
    max-height: 40px;
  }
  .site-header__nav .site-header__menu > .menu-item > a {
    padding: 13px 20px;
    font-size: 1.7rem;
  }
  .site-header__nav .site-header__menu .sub-menu a {
    padding: 10px 20px 10px 36px;
    font-size: 1.5rem;
  }
}
/************************************************************************************
BLOCK
*************************************************************************************/
.block {
  width: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 2;
}

/* Padding top */
.pt-0 {
  padding-top: 0;
}

.pt-s {
  padding-top: 100px;
}

.pt-n {
  padding-top: 150px;
}

/* Padding bottom */
.pb-0 {
  padding-bottom: 0;
}

.pb-s {
  padding-bottom: 100px;
}

.pb-n {
  padding-bottom: 150px;
}

/* Background helpers */
.bg-white {
  background-color: #fff;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  /* Padding top */
  .pt-0 {
    padding-top: 0;
  }
  .pt-s {
    padding-top: 50px;
  }
  .pt-n {
    padding-top: 100px;
  }
  /* Padding bottom */
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-s {
    padding-bottom: 50px;
  }
  .pb-n {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  /* Padding top */
  .pt-0 {
    padding-top: 0;
  }
  .pt-s {
    padding-top: 40px;
  }
  .pt-n {
    padding-top: 70px;
  }
  /* Padding bottom */
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-s {
    padding-bottom: 40px;
  }
  .pb-n {
    padding-bottom: 70px;
  }
}
/************************************************************************************
HERO
*************************************************************************************/
.block--hero {
  color: #fff;
  margin-top: 45px;
  /* Optional modifiers */
  /* =========================
     Filter-styrka via ACF-klass
     ========================= */
  /* CENTER – jämn overlay */
  /* LEFT – generell toning + starkare spotlight nere vänster */
  /* No filter */
}
.block--hero.h-small {
  min-height: auto;
  height: auto;
  padding-bottom: 100px;
  padding-top: 100px;
}
.block--hero.h-big {
  height: calc(100vh - 70px);
  margin-top: 70px;
}
.block--hero .middle.no-media .hero__content {
  margin-left: 0px;
}
.block--hero .hero__media {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.block--hero .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: none;
}
.block--hero .hero__img,
.block--hero .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.block--hero .hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 10vw;
}
.block--hero .hero__content p {
  font-size: 2.5rem;
}
.block--hero .hero__content-inner {
  max-width: 700px;
  width: 90%;
  color: #fff;
}
.block--hero h1 {
  color: #fff;
}
.block--hero .hero__links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.block--hero.text-left .hero__content {
  justify-content: flex-start;
}
.block--hero.text-left .hero__content-inner {
  margin-left: 0;
  margin-right: auto;
}
.block--hero.text-center .hero__content {
  justify-content: center;
  align-items: center;
}
.block--hero.text-center .hero__content-inner {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.block--hero.text-center .hero__links {
  justify-content: center;
}
.block--hero.text-center.filter-10 .hero__media::after {
  background: rgba(0, 0, 0, 0.1);
}
.block--hero.text-center.filter-20 .hero__media::after {
  background: rgba(0, 0, 0, 0.2);
}
.block--hero.text-center.filter-30 .hero__media::after {
  background: rgba(0, 0, 0, 0.3);
}
.block--hero.text-center.filter-40 .hero__media::after {
  background: rgba(0, 0, 0, 0.4);
}
.block--hero.text-left.filter-10 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.1);
}
.block--hero.text-left.filter-20 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.2);
}
.block--hero.text-left.filter-30 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.3);
}
.block--hero.text-left.filter-40 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.4);
}
.block--hero.no-filter .hero__media::after {
  background: none;
}

.text-black * {
  color: var(--text) !important;
}

.text-white *:not(.btn) {
  color: #fff !important;
}

.text-primary * {
  color: var(--primary) !important;
}

.text-secondary * {
  color: var(--secondary) !important;
}

/************************************************************************************
ANIMATED WORDS
*************************************************************************************/
.hero__rotating-word {
  display: inline-block;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero__rotating-word.is-changing {
  opacity: 0;
  transform: translateY(0.15em);
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .block--hero .hero__content-inner {
    width: 100%;
    padding: 40px;
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .block--hero .hero__content-inner {
    width: 100%;
    padding: 30px;
  }
}
/************************************************************************************
TEXT AND IMAGE
*************************************************************************************/
.block--text-and-image .full-width {
  max-width: 100%;
  width: 100%;
}
.block--text-and-image .text-and-image__wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  overflow: hidden;
  position: relative;
}
.block--text-and-image .text-and-image__wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  border-radius: none;
  overflow: visible;
  position: relative;
}
.block--text-and-image .text-and-image__media {
  position: relative;
  min-height: 500px;
}
.block--text-and-image .text-and-image__img,
.block--text-and-image .text-and-image__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block--text-and-image .text-and-image__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.block--text-and-image .text-and-text__text {
  font-size: 5.5rem;
  text-align: center;
}
.block--text-and-image .text-and-image__links {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.block--text-and-image.image-right .text-and-image__wrapper {
  grid-template-columns: 60% 40%;
}
.block--text-and-image.image-right .text-and-text__wrapper {
  grid-template-columns: 50% 50%;
}
.block--text-and-image.image-right .text-and-image__media {
  order: 2;
}
.block--text-and-image.image-right .text-and-image__text {
  order: 1;
}
.block--text-and-image.image-right .text-and-text__text {
  order: 2;
}
.block--text-and-image.bg-sand-light .text-and-image__text {
  background: #fff;
}
@media (max-width: 1200px) {
  .block--text-and-image .text-and-image__text {
    padding: 56px;
  }
}
@media (max-width: 991px) {
  .block--text-and-image .text-and-image__wrapper {
    grid-template-columns: 1fr;
  }
  .block--text-and-image .text-and-image__media {
    min-height: 340px;
  }
  .block--text-and-image .text-and-image__text {
    padding: 40px;
  }
  .block--text-and-image.image-right .text-and-image__media,
  .block--text-and-image.image-right .text-and-image__text {
    order: initial;
  }
}
@media (max-width: 767px) {
  .block--text-and-image .text-and-image__media {
    min-height: 260px;
  }
  .block--text-and-image .text-and-image__text {
    padding: 24px;
  }
  .block--text-and-image .text-and-image__links {
    margin-top: 24px;
  }
}

.full-width .text-and-text__wrapper .text-and-image__text .text-content {
  width: 60%;
  margin: auto;
}

.standard__media {
  margin-bottom: 20px;
}

.block--quote p.quote__text--heading {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-alt);
}
.block--quote p {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
  text-transform: inherit;
  font-family: var(--font);
}

.quote-text {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.quote-text p {
  font-size: 3.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
.quote-text .quote-text__title {
  font-size: 1.7rem;
  margin: 0px;
  font-family: var(--font-alt);
  font-weight: 300;
}
.quote-text .quote-text__person {
  font-size: 1.7rem;
  margin: 0px;
  font-family: var(--font-alt);
  font-weight: 300;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 20px;
}

.testimonial-nav button {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.5rem;
}

.testimonial-counter {
  min-width: 50px;
  text-align: center;
}
.testimonial-counter span {
  font-size: 1.8rem;
}

.block--testimonials .text-and-image__text {
  text-align: center;
}
.block--testimonials .text-and-image__text p {
  font-size: 2.4rem;
}
.block--testimonials .text-and-image__text p.name {
  font-size: 1.7rem;
  font-family: var(--font-alt);
  font-weight: 300;
}
.block--testimonials .text-and-image__text p.title {
  margin-top: 0px;
  font-size: 1.4rem;
  font-family: var(--font-alt);
  font-weight: 300;
}

.block--case .case__logotype {
  left: 40px;
  top: 40px;
  position: absolute;
  background: #fff;
  padding: 20px;
  width: 150px;
  height: 150px;
}
.block--case .case__logotype img {
  object-fit: cover;
}
.block--case .case__img {
  object-fit: contain;
  position: absolute;
  height: auto;
  width: 80%;
}
.block--case .text-and-image__wrapper {
  position: relative;
  display: flex;
  min-height: 600px;
  overflow: visible;
}
.block--case .text-and-image__text {
  z-index: 10;
  background: var(--light);
  margin: 80px;
  margin-right: 40px;
  margin-left: auto;
  max-width: 500px;
  padding: 40px;
}
.block--case .text-and-image__text ul li {
  margin-top: 0rem;
}

.block--featured-jobs .middle {
  grid-template-rows: minmax(auto, 1fr);
}
.block--featured-jobs .middle a.text-and-image-link-wrapper {
  background: #fff;
  position: relative;
  padding-bottom: 60px;
  transition: transform 0.25s ease;
}
.block--featured-jobs .middle a.text-and-image-link-wrapper:hover {
  transform: scale(1.03);
}
.block--featured-jobs .middle a.text-and-image-link-wrapper .arrow {
  position: absolute;
  right: 20px;
  bottom: 5px;
  color: var(--primary);
  font-size: 2.4rem;
}
.block--featured-jobs .text-and-image__wrapper {
  background: #fff;
  padding: 20px;
}
.block--featured-jobs .text-and-image__media {
  height: 140px;
}
.block--featured-jobs .text-and-image__media img {
  object-fit: contain;
  max-width: 75%;
  display: block;
  margin: auto;
}
.block--featured-jobs .location {
  bottom: 10px;
  position: absolute;
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 1.5rem;
}

.block--teams h4 {
  font-family: var(--font);
}
.block--teams ul li {
  font-family: var(--font-alt);
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.block--teams ul li:first-of-type {
  margin-bottom: 0px;
}
.block--teams ul li:nth-child(2) {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.block--boxes .middle {
  display: grid;
  gap: 30px;
}
.block--boxes img {
  margin-bottom: 15px;
}
.block--boxes p {
  margin-top: 10px;
}
.block--boxes .btn {
  padding: 0px;
  text-align: left;
  background: none;
}
.block--boxes .btn--primary {
  color: var(--primary);
}
.block--boxes .btn--secondary {
  color: var(--secondary);
}

.block-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

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

@media (max-width: 1300px) {
  .block-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .block-grid--4,
  .block-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .block-grid--auto,
  .block-grid--2,
  .block-grid--3,
  .block-grid--4 {
    grid-template-columns: 1fr;
  }
}
.block--buttons .middle .btn-group {
  display: flex;
  justify-content: center;
}

.single .site-header {
  background: #fff;
}

.block--articles .middle {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.block--articles .feed-item {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.block--articles .feed-item__content {
  display: flex;
  background: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.block--articles .feed-item__content .image {
  width: 40%;
  position: absolute;
  height: 100%;
}
.block--articles .feed-item__content .feed-item__text {
  width: 60%;
  margin-left: auto;
  margin-right: 0px;
  padding: 80px;
}

article {
  padding-top: 200px;
}

.article-header {
  margin-bottom: 100px;
}
.article-header .middle {
  display: flex;
  gap: 48px;
  align-items: stretch;
}
.article-header__content {
  display: flex;
  flex-flow: column;
  flex: 1 1 0;
}
.article-header__image {
  flex: 1 1 0;
}
.article-header__share {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: auto;
}
.article-header__share a {
  width: 30px;
  display: inline-block;
}
.article-header__share a svg.share-ln-icon {
  width: 29px;
}
.article-header__share a svg path {
  fill: var(--primary);
}
.article-header__meta {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}
.article-header__meta p {
  font-size: 1.6rem;
}
.article-header__meta a {
  color: var(--primary);
}
.article-header__apply {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
.article-header__apply .btn, .article-header__apply .pnty-btn {
  color: #fff !important;
  font-family: var(--font);
}
.article-header__apply .btn {
  background: var(--text);
}

.article-excerpt {
  background: var(--light);
  margin-bottom: 40px;
}
.article-excerpt .middle {
  gap: 60px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.article-excerpt .middle p {
  font-size: 2.4rem;
  font-weight: 600;
}
.article-excerpt .middle div {
  flex: 1 1 0;
}

.block--featured-posts h3 {
  font-size: 2rem;
  font-weight: 300;
}
.block--featured-posts .btn {
  position: relative;
  display: block;
}
.block--featured-posts .arrow {
  display: inline-block;
  left: 5px;
  color: var(--primary);
}

.article-header__company_info {
  background: #fff;
  padding: 60px;
}
.article-header__company_info p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.article-header__company_info p:last-of-type {
  margin-bottom: 0px;
}
.article-header__company_info img {
  max-width: 50%;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}

.team-single .article-header .middle, .job-single .article-header .middle {
  gap: 0px;
}
.team-single .article-header .title, .job-single .article-header .title {
  font-size: 2.5rem;
  color: var(--primary);
}
.team-single .article-header .mail, .job-single .article-header .mail {
  margin-top: 40px;
}
.team-single .article-header .linkedin, .job-single .article-header .linkedin {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.team-single .article-header .linkedin a, .job-single .article-header .linkedin a {
  height: 40px;
  width: 40px;
  display: block;
}
.team-single .article-header .linkedin svg, .job-single .article-header .linkedin svg {
  max-width: inherit;
}
.team-single .article-header__content, .job-single .article-header__content {
  padding: 60px;
  padding-top: 100px;
}
.team-single .article-header li, .job-single .article-header li {
  font-size: 2rem;
  margin-bottom: 10px;
}
.team-single .article-header li:last-of-type, .job-single .article-header li:last-of-type {
  margin-bottom: 0px;
}
.team-single .article-header li svg, .job-single .article-header li svg {
  max-width: 30px;
  vertical-align: middle;
  margin-right: 10px;
}
.team-single .article-header li svg path, .job-single .article-header li svg path {
  fill: var(--primary);
}
.team-single .article-header li a, .job-single .article-header li a {
  color: inherit;
}
.team-single .article-header li a:hover, .job-single .article-header li a:hover {
  color: var(--primary);
}
.article-header__title {
  margin-top: 40px;
}

.job-single .middle {
  gap: 40px !important;
}
.job-single .article-header__content {
  padding: inherit;
}
.job-single .team-member .middle {
  gap: 0px !important;
}
.job-single .team-member .article-header__content {
  background: #fff;
  padding: 60px;
}
.job-single .team-member .article-header__content h3 {
  font-size: 5rem;
  font-weight: 400;
}
.job-single .team-member .article-header__content .article-header__title {
  margin-top: 0px;
}
.job-single .team-member .article-header__content .btn {
  display: inline-flex;
  max-width: inherit;
  align-self: flex-start;
  margin-top: 40px;
  background: var(--secondary);
}
.job-single .team-member ul {
  margin-top: 40px;
}
.job-single .team-member ul .name {
  font-size: 2.5rem;
  margin-bottom: 0px;
}
.job-single .team-member ul .title {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.7rem;
}
.job-single .team-member ul .mail {
  margin-top: 20px;
}
.job-single .team-member ul li {
  font-size: 1.7rem;
}

.team-single .article-header__content {
  background: #fff;
}

.article-header__description {
  padding-bottom: 40px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-template-tmpl-stories .block--hero {
  padding-bottom: 40px;
}

.story-filter {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.story-filter li {
  display: inline;
  margin-right: 30px;
}
.story-filter li:last-of-type() {
  margin-right: 0px;
}
.story-filter a {
  color: var(--primary);
  font-family: var(--font-alt);
  font-size: 1.5rem;
}
.story-filter a.is-active {
  background: var(--secondary);
  color: var(--text) !important;
  padding: 7px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
}

.story-featured {
  margin-bottom: 80px;
}
.story-featured .text-and-image__wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 40px;
}
.story-featured .text-and-image__wrapper .text-and-image__media {
  flex-flow: column;
  flex: 1 1 0;
  order: 2;
}
.story-featured .text-and-image__wrapper .text-and-image__text {
  flex-flow: column;
  flex: 1 1 0;
  order: 1;
}
.story-featured .text-and-image__wrapper .text-and-image__text h2 {
  font-weight: 500;
  font-size: 6rem;
}

[data-story-grid] {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

[data-story-grid].is-loading {
  pointer-events: none;
}

[data-story-grid].is-fading-out {
  opacity: 0;
  transform: translateY(8px);
}

[data-story-grid].is-fading-in {
  opacity: 1;
  transform: translateY(0);
}

[data-story-grid] > * {
  animation: storyCardFadeIn 0.3s ease both;
}

@keyframes storyCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/************************************************************************************
FOOTER
*************************************************************************************/
.site-footer .footer__logo {
  font-weight: 700;
  text-decoration: none;
  max-width: 220px;
  display: flex;
  margin-bottom: 30px;
}
.site-footer .footer__logo svg {
  height: 40px;
}
.site-footer .footer__logo svg path, .site-footer .footer__logo svg polygon {
  fill: #fff;
}
.site-footer .footer__contact a {
  text-decoration: none;
}
.site-footer .footer__meta {
  text-align: right;
}
.site-footer .footer__boxes {
  display: flex;
  gap: 80px;
}
.site-footer .footer__boxes li {
  font-size: 1.6rem;
  font-weight: 300;
}
.site-footer .footer__boxes a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}
.site-footer .footer__boxes .btn {
  margin-top: 20px;
}

.social-media {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.social-media li {
  display: inline;
}
.social-media li svg {
  width: 30px;
}
.social-media li svg path {
  fill: #fff;
}

.social-media a:hover svg path {
  fill: var(--secondary);
}

.footer__navigation {
  margin-top: 60px;
}
.footer__navigation li {
  display: inline-block;
  margin-right: 10px;
}
.footer__navigation li:last-of-type() {
  margin-right: 0px;
}
.footer__navigation li a {
  color: #fff;
  font-family: var(--font-alt);
  font-size: 1.4rem;
  font-weight: 500;
}
.footer__navigation li a:hover {
  color: var(--secondary);
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .site-footer .footer__logo {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer__logo {
    max-width: 80px;
  }
}
.event-image__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.event-exhibitors {
  background: #e9ece7;
}
.event-exhibitors__head {
  text-align: center;
  margin-bottom: 56px;
}
.event-exhibitors__head h2 {
  margin: 0;
}
.event-exhibitors__grid {
  display: grid;
  gap: 48px 36px;
}
.event-exhibitors__grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-exhibitors__grid.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exhibitor-card {
  height: 100%;
}
.exhibitor-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.exhibitor-card__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.exhibitor-card__top {
  background: #fff;
  min-height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 50px;
}
.exhibitor-card__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exhibitor-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
}
.exhibitor-card__bottom {
  background: #1c0318;
  padding: 24px 20px;
  text-align: center;
}
.exhibitor-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.exhibitor-header__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.exhibitor-header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
  background-color: #fff;
  border-radius: 8px;
}
.exhibitor-header__img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.exhibitor-header__content {
  max-width: 700px;
}
.exhibitor-header__content a {
  margin-left: 10px;
  font-weight: 500;
}
.exhibitor-header__content a:hover {
  color: var(--primary);
}

.exhibitor-content .middle {
  max-width: 720px;
}

@media (max-width: 1200px) {
  .event-exhibitors__grid.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .event-exhibitors__grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .exhibitor-header__inner {
    gap: 48px;
    grid-template-columns: 260px 1fr;
  }
  .exhibitor-header__logo {
    padding: 36px;
  }
}
@media (max-width: 991px) {
  .event-exhibitors__grid.columns-4, .event-exhibitors__grid.columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .exhibitor-card__top {
    min-height: 180px;
    padding: 28px 32px;
  }
  .exhibitor-header__inner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  .exhibitor-header__logo {
    padding: 28px;
  }
  .exhibitor-header__img {
    max-height: 100px;
  }
}
@media (max-width: 767px) {
  .event-exhibitors__grid.columns-4, .event-exhibitors__grid.columns-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .exhibitor-card__top {
    min-height: 160px;
    padding: 24px;
  }
  .exhibitor-card__logo img {
    max-height: 72px;
  }
  .exhibitor-card__bottom {
    padding: 20px 16px;
  }
  .exhibitor-card__title {
    font-size: 1.7rem;
  }
  .exhibitor-header__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .exhibitor-header__logo {
    justify-content: center;
    padding: 24px;
  }
  .exhibitor-header__img {
    max-height: 80px;
  }
}
/************************************************************************************
PAGINATION
*************************************************************************************/
.pagination {
  justify-self: center;
  text-align: center;
  margin-top: 100px;
}

.pagination li {
  display: inline;
}

.pagination a:not(.next):not(.prev), .pagination span.current, .pagination .page {
  border: 0px;
  color: var(--primary); /* stops bg color from leaking outside the border: */
  width: 35px;
  height: 35px;
  padding-top: 5px;
  display: inline-block;
  font-weight: 500;
  margin: 3px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  border-radius: 5px;
  border: 1px solid var(--secondary);
}

.pagination span.current {
  color: #fff;
}

.pagination li {
  background: none;
}

.pagination .prev {
  border: 0px !important;
  margin-right: 0px !important;
}

.pagination a:not(.next, .prev) {
  background: #fff;
}

.pagination span.current {
  background: var(--secondary);
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 25px;
  border: 0;
  font-family: var(--font-alt);
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  background: var(--primary);
  color: #fff;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%) translateX(8px) scale(1);
  transition: transform 0.25s ease, background 0.2s ease;
}
.sticky-cta:hover {
  transform: translateY(-50%) translateX(0) scale(1);
}
.sticky-cta.is-open {
  visibility: hidden;
}

.sticky-cta-panel {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 940;
  width: min(420px, 100vw - 32px);
  background: var(--light, #fff);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
  border-radius: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.sticky-cta-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.sticky-cta-panel__heading {
  padding: 15px;
  padding-left: 25px;
  padding-right: 25px;
  background: var(--primary);
}
.sticky-cta-panel__employee {
  padding: 20px;
  display: flex;
}
.sticky-cta-panel__employee-contact {
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sticky-cta-panel__employee-contact p:first-of-type {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 500;
}
.sticky-cta-panel__employee-contact p {
  font-size: 1.6rem;
  line-height: 1;
}
.sticky-cta-panel__employee-contact p.title {
  margin-bottom: 20px;
}
.sticky-cta-panel__employee-contact a {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
}
.sticky-cta-panel__form {
  padding: 20px;
}
.sticky-cta-panel__form input, .sticky-cta-panel__form textarea {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px;
  font-family: var(--font);
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-radius: 5px;
}
.sticky-cta-panel__form textarea {
  min-height: 150px;
}
.sticky-cta-panel__contact-image {
  border-radius: 9999px;
  overflow: hidden;
  width: 120px;
  height: 120px;
}
.sticky-cta-form__privacy {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0px;
  align-items: flex-start;
  font-family: var(--font-alt);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.4;
}
.sticky-cta-form__privacy input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.sticky-cta-form__submit {
  font-family: var(--font);
  color: #fff;
  cursor: pointer;
  margin-right: 0px;
  margin-left: auto;
  display: flex;
  justify-content: center;
}
.sticky-cta-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.sticky-cta-form__message {
  font-size: 16px;
}
.sticky-cta-form__message.is-success {
  color: var(--primary);
}
.sticky-cta-form__message.is-error {
  color: #b00020;
}

.sticky-cta-panel__inner {
  padding: 0px;
}
.sticky-cta-panel__inner h3 {
  font-size: 2.3rem;
  color: #fff;
}

.sticky-cta-panel__close {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
}
