@charset "UTF-8";
/* Theme Name: UCS Group
Theme Author: Erika Lundell
*/
/*
MIXINS

Här samlas olika SCSS-funktioner som kan inkluderas i övriga filer med @include.
https://sass-lang.com/documentation/at-rules/mixin

*/
/*
VARIABLER

Variabler som återkommer. Framförallt responsiva storlekar.

 */
html {
  font-size: 100%;
}

* {
  border: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  outline: 0;
  padding: 0;
  text-rendering: auto;
}

body {
  box-sizing: border-box;
  color: #2A134F;
  font-family: "Roboto";
  max-width: 100%;
  overflow-x: hidden;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}

.alignleft,
.alignright {
  height: auto;
  max-width: 47%;
}

.alignnone {
  float: none;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.aligncenter {
  display: block;
  margin: 1.5rem auto;
}

.mobile-only {
  display: none;
}
@media all and (max-width: 63.99rem) {
  .mobile-only {
    display: block;
  }
}

/* Generella marginaler */
#main {
  background: #fff;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 63.99rem) {
  #main {
    margin: 0 !important;
  }
}

.container {
  margin: auto;
  max-width: calc(100% + 10.5rem);
  padding: 0 1.875rem;
  position: relative;
  width: 100%;
}
@media all and (min-width: 48rem) {
  .container {
    padding: 0 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .container {
    padding: 0 3.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .container {
    max-width: 1920px;
    padding: 0 5rem;
  }
}
@media all and (min-width: 99rem) {
  .container {
    padding: 0 7.5rem;
  }
}
@media all and (min-width: 1900px) {
  .container {
    padding: 0 10.5rem;
  }
}

@media all and (min-width: 85.375rem) {
  .container--hero {
    padding: 0 6.785rem;
  }
}

.container--text {
  max-width: 1120px;
}

.layout {
  padding: 1.875rem 0;
}
@media all and (min-width: 25.75rem) {
  .layout {
    padding: 2.5rem 0;
  }
}
@media all and (min-width: 64rem) {
  .layout {
    padding: 3.75rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .layout {
    padding: 5rem 0;
  }
}
@media all and (min-width: 99rem) {
  .layout {
    padding: 7.5rem 0;
  }
}

.layout.layout-hero {
  padding: 0 !important;
}

.layout-hero.theme-white + .layout-hero.theme-white {
  margin-top: -1.875rem;
}
@media all and (min-width: 25.75rem) {
  .layout-hero.theme-white + .layout-hero.theme-white {
    margin-top: -2rem;
  }
}
@media all and (min-width: 64rem) {
  .layout-hero.theme-white + .layout-hero.theme-white {
    margin-top: -3.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .layout-hero.theme-white + .layout-hero.theme-white {
    margin-top: -5rem;
  }
}
@media all and (min-width: 99rem) {
  .layout-hero.theme-white + .layout-hero.theme-white {
    margin-top: -7.5rem;
  }
}

.overlay {
  position: relative;
}
.overlay::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.layout-hero_image {
  padding: 0 !important;
}

.site-footer {
  padding: 2.5rem 0;
}
@media all and (min-width: 85.375rem) {
  .site-footer {
    padding: 6.5rem 0;
  }
}

.image--zoom {
  overflow: hidden;
}
.image--zoom > img {
  -ms-transform: scale(1, 1); /* IE 9 */
  -webkit-transform: scale(1, 1); /* Safari */
  transform: scale(1, 1);
  display: block;
  transition: all 2s ease;
}
.image--zoom:hover > img {
  -ms-transform: scale(1.1, 1.1); /* IE 9 */
  -webkit-transform: scale(1.1, 1.1); /* Safari */
  transform: scale(1.1, 1.1);
  transition: all 4s ease;
}

.layout:first-child,
.layout:first-child .hero.hero--full,
.layout:first-child .full-width-img__container {
  padding-top: calc(1.875rem + var(--main-menu-height));
}
@media all and (min-width: 25.75rem) {
  .layout:first-child,
  .layout:first-child .hero.hero--full,
  .layout:first-child .full-width-img__container {
    padding-top: calc(2.5rem + var(--main-menu-height));
  }
}
@media all and (min-width: 64rem) {
  .layout:first-child,
  .layout:first-child .hero.hero--full,
  .layout:first-child .full-width-img__container {
    padding-top: calc(3.75rem + var(--main-menu-height));
  }
}
@media all and (min-width: 85.375rem) {
  .layout:first-child,
  .layout:first-child .hero.hero--full,
  .layout:first-child .full-width-img__container {
    padding-top: calc(5rem + var(--main-menu-height));
  }
}
@media all and (min-width: 99rem) {
  .layout:first-child,
  .layout:first-child .hero.hero--full,
  .layout:first-child .full-width-img__container {
    padding-top: calc(7.5rem + var(--main-menu-height));
  }
}

.layout:first-child .hero.hero--contained {
  margin-top: var(--main-menu-height);
}

.theme-white + .theme-white {
  padding-top: 0;
}

.theme-darkpurple {
  background: #472B73;
}
.theme-darkpurple a:not([class]) {
  color: #CA9D9D;
}

.theme-darkpurple--transparent {
  background: rgba(71, 43, 115, 0.9);
}

.theme-orange {
  background: #E84E0E;
}

.theme-lightgray {
  background: #fff linear-gradient(90deg, #E7EEF2 0%, #FBF9F3 56.25%, #F0EBF4 100%);
}

.theme-white {
  color: #2A134F;
  background: #fff;
}

.theme-lightgray a:not([class]),
.theme-white a:not([class]) {
  color: #E84E0E;
  text-decoration: underline;
}

.theme-white--transparent {
  background: rgba(255, 255, 255, 0.9);
}

.theme-yellow {
  background: #F7A940;
}

.is-inverted {
  color: #fff;
}

.theme-decorated {
  background-image: url("assets/img/bg-squares-block-light.svg");
  background-size: cover;
}

.theme-darkestpurple {
  background-color: #2A134F;
}

.theme-lightpurple-gradient {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #B29DCA;
}

.theme-darkpurple-gradient {
  background: linear-gradient(256deg, rgba(232, 78, 14, 0.4) 0.38%, rgba(81, 42, 91, 0.4) 52.26%, rgba(0, 0, 0, 0.4) 100%), #2A134F;
}

.heading,
.product_title,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 700;
}

.heading--hero {
  font-size: 1.875rem;
  line-height: 120%;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 35.5rem) {
  .heading--hero {
    font-size: 2.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .heading--hero {
    font-size: 3.43rem;
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 108.75rem) {
  .heading--hero {
    font-size: 5rem;
    line-height: 110%;
    margin-bottom: 2.125rem;
  }
}

.heading--secondary,
.product_title,
.wysiwyg h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 35.5rem) {
  .heading--secondary,
  .product_title,
  .wysiwyg h2 {
    font-size: 1.875rem;
    line-height: 140%;
  }
}
@media all and (min-width: 85.375rem) {
  .heading--secondary,
  .product_title,
  .wysiwyg h2 {
    font-size: 2.75rem;
  }
}
@media all and (min-width: 108.75rem) {
  .heading--secondary,
  .product_title,
  .wysiwyg h2 {
    font-size: 3.43rem;
    line-height: 130%;
    margin-bottom: 2rem;
  }
}

.heading--tertiary,
.wysiwyg h3,
.contact-form__person .contact-card__name {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 0.75rem;
}
@media all and (min-width: 35.5rem) {
  .heading--tertiary,
  .wysiwyg h3,
  .contact-form__person .contact-card__name {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 48rem) {
  .heading--tertiary,
  .wysiwyg h3,
  .contact-form__person .contact-card__name {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 99rem) {
  .heading--tertiary,
  .wysiwyg h3,
  .contact-form__person .contact-card__name {
    font-size: 2rem;
  }
}

.heading--quaternary,
.wysiwyg h4 {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: 0.75rem;
}
@media all and (min-width: 35.5rem) {
  .heading--quaternary,
  .wysiwyg h4 {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 48rem) {
  .heading--quaternary,
  .wysiwyg h4 {
    font-size: 1.5rem;
  }
}

.preamble--large h4 {
  font-size: inherit !important;
}

.wysiwyg li,
.wysiwyg p,
.entry-content li,
.entry-content p {
  line-height: 150%;
}
@media all and (min-width: 64rem) {
  .wysiwyg li,
  .wysiwyg p,
  .entry-content li,
  .entry-content p {
    font-size: 1.25rem;
  }
}
.wysiwyg ul,
.entry-content ul {
  padding-left: 1em;
}
.wysiwyg ul,
.wysiwyg p,
.entry-content ul,
.entry-content p {
  margin-bottom: 1.5em;
}
.wysiwyg a,
.entry-content a {
  color: inherit;
}
.wysiwyg h2,
.wysiwyg h3,
.entry-content h2,
.entry-content h3 {
  margin-bottom: 1rem;
}

.preamble p:last-child,
.preamble.wyswyg p:last-child {
  margin-bottom: 0;
}

a {
  transition: all 0.5s ease;
}

.theme-darkpurple-gradient .wysiwyg a {
  color: #CA9D9D;
}
@media all and (pointer: fine) {
  .theme-darkpurple-gradient .wysiwyg a:hover {
    color: #fff;
  }
}

.preamble {
  line-height: 150%;
  margin-bottom: 2.1875rem;
}
@media all and (min-width: 35.5rem) {
  .preamble {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 99rem) {
  .preamble {
    font-size: 1.25rem;
  }
}
.preamble p,
.preamble li {
  font: inherit;
}

.preamble--large {
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 35.5rem) {
  .preamble--large {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 48rem) {
  .preamble--large {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .preamble--large {
    font-size: 1.375rem;
  }
}
@media all and (min-width: 99rem) {
  .preamble--large {
    font-size: 1.8125rem;
    line-height: 150%;
  }
}

.is-medium {
  font-weight: 500;
}

.button-list {
  list-style: none;
}
@media all and (min-width: 35.5rem) {
  .button-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem -0.675rem;
  }
}

.button-list__item {
  margin: 0 0 0.5rem 0;
}
@media all and (min-width: 35.5rem) {
  .button-list__item {
    margin: 0.5rem 0.675rem;
  }
}

@media all and (min-width: 99rem) {
  .button-list--large {
    margin: 0 -1.25rem -1.25rem -1.25rem;
  }
}
@media all and (min-width: 99rem) {
  .button-list--large .button-list__item {
    margin: 0 0 1.25rem 1.25rem;
  }
}

button,
.button {
  cursor: pointer;
}

.facetwp-load-more,
.button,
.wpforms-submit,
.forminator-button-submit {
  border: 1px solid;
  display: inline-block;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75em 1em;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media all and (min-width: 64rem) {
  .facetwp-load-more,
  .button,
  .wpforms-submit,
  .forminator-button-submit {
    font-size: 1.375rem;
  }
}

@media all and (min-width: 99rem) {
  .button--large,
  .facetwp-load-more,
  .wpforms-submit,
  .forminator-button-submit {
    font-size: 2rem;
  }
}

.button.theme-orange {
  border-color: #E84E0E;
  /*
  @media all and (pointer: fine) {
    &:hover {
      background-color: $darkpurple;
      border-color: $darkpurple;
    }
  } */
}
@media all and (pointer: fine) {
  .button.theme-orange:hover {
    background-color: #8031A7;
    border-color: #8031A7;
  }
}

.facetwp-load-more,
.button.theme-darkpurple,
.wpforms-submit,
.forminator-button-submit {
  background-color: #472B73;
  border-color: #472B73;
  color: #fff;
}
@media all and (pointer: fine) {
  .facetwp-load-more:hover,
  .button.theme-darkpurple:hover,
  .wpforms-submit:hover,
  .forminator-button-submit:hover {
    background-color: #8031A7;
    border-color: #8031A7;
  }
}

.button.theme-yellow {
  border-color: #F7A940;
  /*
  @media all and (pointer: fine) {
    &:hover {
      background-color: $orange;
      border-color: $orange;
    }
  }*/
}
@media all and (pointer: fine) {
  .button.theme-yellow:hover {
    background-color: #8031A7;
    border-color: #8031A7;
  }
}

.button--forward {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.button--forward::after,
.wpforms-submit::after,
.forminator-button-submit::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  font-size: 0.75em;
  margin: auto 0 auto auto;
  padding-left: 0.75em;
}

.button--prev::before {
  content: "\f060";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  font-size: 0.75em;
  margin-right: 0.75em;
}

.button--down::after,
.button--current::after,
.button--up::after,
.facetwp-load-more::after {
  content: "\f063";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  font-size: 0.75em;
  margin-left: 0.75em;
  transition: transform 0.3s ease;
}

.button--up::after {
  transform: rotate(180deg);
}

.button--current::after {
  transform: rotate(90deg);
}

.button--large {
  font-size: 1.625rem;
}
@media all and (min-width: 99rem) {
  .button--large {
    font-size: 2.81rem;
    font-weight: 700;
    padding: 0.425em 0.6em;
  }
}
.theme-ghost {
  border: 1px solid #472B73;
  color: #472B73;
}
@media all and (pointer: fine) {
  .theme-ghost:hover {
    background: #472B73;
    color: #fff;
  }
}

.is-inverted .theme-ghost,
.theme-ghost.is-inverted {
  border-color: #fff;
  color: #fff;
}
@media all and (pointer: fine) {
  .is-inverted .theme-ghost:hover,
  .theme-ghost.is-inverted:hover {
    background: #fff;
    color: #472B73;
  }
}

.fixed-links.case-hero__links {
  float: right;
  position: fixed !important;
  top: var(--main-menu-height) !important;
  z-index: 9;
  -webkit-transform: translate(0, 1.5rem);
  -ms-transform: translate(0, 1.5rem);
  transform: translate(0, 1.5rem);
}
@media all and (min-width: 85.375rem) {
  .fixed-links.case-hero__links {
    -webkit-transform: translate(0, 2.75rem);
    -ms-transform: translate(0, 2.75rem);
    transform: translate(0, 2.75rem);
  }
}

@media all and (max-width: 47.95rem) {
  .fixed-links--hidden-mobile {
    display: none;
  }
}

body.menu-is-open {
  position: fixed;
  top: 0;
}

.navbar {
  background: #fff linear-gradient(90deg, #E7EEF2 0%, #FBF9F3 56.25%, #F0EBF4 100%);
  box-shadow: 0px 5px 100px rgba(30, 10, 50, 0.1);
  overflow: hidden;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  transition: padding 0.5s ease, opacity 0.5s ease, background 15s ease;
  width: 100%;
  z-index: 99;
}
@media all and (max-width: 85.374rem) {
  .navbar {
    overflow: hidden;
  }
}
@media all and (min-width: 64rem) {
  .navbar {
    padding: 2rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .navbar {
    padding: 3.125rem 0;
  }
}
.navbar::before {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 5s ease-in-out;
  width: 100%;
}

.menu-is-open .navbar {
  overflow: visible;
}

.home .navbar:not(.is-sticky),
.home .navbar:not(.is-sticky)::before {
  background: transparent !important;
  box-shadow: none;
}

@media all and (min-width: 64rem) {
  body.menu-is-open {
    overflow: hidden;
  }
}

@media all and (min-width: 64rem) {
  .admin-bar .navbar {
    top: 32px;
  }
}

.navbar.is-sticky {
  padding: 1.25rem 0;
  top: 0;
}

.navbar__container {
  position: relative;
}
@media all and (min-width: 64rem) {
  .navbar__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.navbar__branding {
  display: inline-block;
  height: 1.875rem;
  width: auto;
}
@media all and (min-width: 64rem) {
  .navbar__branding {
    height: 2.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .navbar__branding {
    height: 2.75rem;
  }
}
.navbar__branding img {
  height: 100%;
  width: auto;
}

.navbar__logo--inv {
  display: none;
}

.home .navbar:not(.is-sticky) .navbar__logo {
  display: none;
}
.home .navbar:not(.is-sticky) .navbar__logo--inv {
  display: block;
}

.navbar__branding--mobile .navbar__logo {
  display: none;
}
.navbar__branding--mobile .navbar__logo--inv {
  display: block;
}

.navbar__menu-container {
  background: linear-gradient(0deg, #180435 0%, #180435 100%), linear-gradient(180deg, rgba(24, 4, 53, 0.99) 0%, rgba(80, 46, 79, 0.89) 100%);
  height: 100vh;
  left: 0;
  padding: 1rem 1.875rem;
  position: absolute;
  top: -1rem;
  transform: rotate(-45deg) translateX(calc(100% + 1.25rem));
  transform-origin: top right;
  transition: all 0.5s ease;
  width: 100%;
}
@media all and (max-width: 63.99rem) {
  .navbar__menu-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (min-width: 64rem) {
  .navbar__menu-container {
    background: none;
    display: flex !important;
    height: auto;
    left: auto;
    padding: 0;
    position: relative;
    top: auto;
    transform: none;
    width: auto;
  }
}
.navbar__menu-container.is-open {
  overflow-y: scroll;
  transform: none;
}
@media all and (max-width: 63.99rem) {
  .navbar__menu-container > :last-child {
    margin-bottom: auto !important;
  }
}

@media all and (min-width: 64rem) {
  .navbar__search {
    margin-bottom: auto;
    margin-top: auto;
  }
}

.navbar__menu {
  list-style: none;
  padding: 1rem 0;
}
@media all and (max-width: 63.99rem) {
  .navbar__menu {
    margin: auto auto 0 auto;
    position: relative;
  }
}
@media all and (min-width: 64rem) {
  .navbar__menu {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.navbar__toggle.c-hamburger,
.navbar__toggle {
  position: absolute;
  right: 1.875rem;
  top: 0.5rem;
}
@media all and (min-width: 64rem) {
  .navbar__toggle.c-hamburger,
  .navbar__toggle {
    display: none;
  }
}

.menu-open.navbar__toggle--inv {
  display: none;
}

.home .navbar {
  transition: padding 0.5s ease, opacity 0.5s ease, background 0.5s ease;
}

.home .navbar:not(.is-sticky) .menu-open {
  display: none;
}
.home .navbar:not(.is-sticky) .menu-open.navbar__toggle--inv {
  display: block;
}
@media all and (min-width: 64rem) {
  .home .navbar:not(.is-sticky) .menu-open.navbar__toggle--inv {
    display: none;
  }
}
.home .navbar:not(.is-sticky) .menu-open.navbar__toggle--inv span,
.home .navbar:not(.is-sticky) .menu-open.navbar__toggle--inv span::before,
.home .navbar:not(.is-sticky) .menu-open.navbar__toggle--inv span::after {
  background: #fff;
}

@media all and (min-width: 64rem) {
  .navbar__branding--mobile {
    display: none;
  }
}

.navbar__toggle--inv.menu-close {
  margin-top: 1rem;
}
.navbar__toggle--inv.menu-close span,
.navbar__toggle--inv.menu-close span::before,
.navbar__toggle--inv.menu-close span::after {
  background: #fff;
}
.navbar__toggle--inv.menu-close.is-active span {
  background: transparent;
}

.navbar__menu .menu-item {
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 1.25rem;
  text-align: center;
}
@media all and (min-width: 64rem) {
  .navbar__menu .menu-item {
    text-align: left;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 63.99rem) {
  .navbar__menu .menu-item {
    font-size: 2rem;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .navbar__menu .menu-item {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 64rem) {
  .navbar__menu .menu-item {
    margin: 0 0 0 1.25rem;
  }
}
.navbar__menu .menu-item a {
  border-bottom: 2px solid transparent;
  border-top: 3px solid transparent;
  color: #fff;
  display: block;
  font-weight: 600;
  padding: calc(0.875rem - 3px) 0.375rem;
  position: relative;
  text-decoration: none;
}
@media all and (min-width: 64rem) {
  .navbar__menu .menu-item a {
    color: #472B73;
  }
}
.navbar__menu .menu-item a::after {
  background: transparent;
  bottom: 0;
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  transition: width 0.5s ease, background-color 0.5s ease, left 0.5s ease;
  width: 0;
}
@media all and (min-width: 64rem) {
  .navbar__menu .menu-item a::after {
    content: "";
  }
}
@media all and (pointer: fine) {
  .navbar__menu .menu-item a:hover::after {
    background: #B29DCA;
    left: 0.375rem;
    width: calc(100% - 0.375rem - 0.375rem);
  }
}

.home .navbar:not(.is-sticky) .menu-item a {
  color: #fff;
}

.home .navbar:not(.is-sticky) .menu-item.current-menu-item a::after {
  background: #B29DCA;
}

@media all and (max-width: 47.95rem) {
  .menu-item.current-menu-item > a,
  .menu-item.current-menu-parent > a,
  .menu-item.current-page-parent > a,
  .menu-item.current-page-ancestor > a,
  .single-case .menu-item.kundcase > a,
  .tax-case-category .menu-item.kundcase > a {
    color: #B29DCA;
  }
}
.menu-item.current-menu-item a::after,
.menu-item.current-menu-parent a::after,
.menu-item.current-page-parent a::after,
.menu-item.current-page-ancestor a::after,
.single-case .menu-item.kundcase a::after,
.tax-case-category .menu-item.kundcase a::after {
  background: #472B73;
  left: 0.375rem;
  width: calc(100% - 0.375rem - 0.375rem);
}

.is-sticky {
  position: fixed;
  top: 0;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

@media all and (max-width: 63.99rem) {
  body.menu-is-open .hidden {
    opacity: 1 !important;
    pointer-events: all !important;
  }
}

@media all and (min-width: 64rem) {
  .navbar--light .navbar__menu .menu-item > a {
    color: #472B73;
  }
}

.navbar--gradient::before {
  opacity: 0;
}

.local-nav {
  background: #472B73;
  margin: 1rem 0 -1rem 0;
  overflow: hidden;
  position: relative;
}
@media all and (min-width: 64rem) {
  .local-nav {
    margin: 2rem 0 -2rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .local-nav {
    margin: 3.125rem 0 -3.125rem 0;
  }
}

.is-sticky .local-nav {
  margin: 1.25rem 0 -1.25rem 0;
}

.local-nav__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0.375rem 0;
}
@media all and (min-width: 64rem) {
  .local-nav__menu {
    padding: 0.75rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .local-nav__menu {
    padding: 1.25rem 0;
  }
}
@media all and (pointer: coarse) {
  .local-nav__menu {
    overflow-y: scroll;
  }
}

.menu-is-open .local-nav {
  z-index: -1;
}

.local-nav__container {
  padding-right: 0;
}

.local-nav__menu a {
  border: 1px solid transparent;
  color: #CA9D9D;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.9375rem;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
}
@media all and (min-width: 64rem) {
  .local-nav__menu a {
    font-size: 0.9rem;
    margin-right: 1.25rem;
    padding: 0.375rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .local-nav__menu a {
    font-size: 1.125rem;
    margin-right: 1.5rem;
    padding: 0.5rem 0;
  }
}
@media all and (pointer: fine) {
  .local-nav__menu a:hover {
    color: #fff;
  }
}

.local-nav__menu .current-menu-item a,
.local-nav__menu .current-menu-parent a {
  border-bottom-color: #CA9D9D;
  color: rgba(255, 255, 255, 0.9) !important;
}

.active-job-count {
  display: none;
}

.menu-item-jobs {
  position: relative;
}
.menu-item-jobs .active-job-count {
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 0.875rem;
  font-weight: 700;
  height: 1.25rem;
  line-height: 1.25rem;
  position: absolute;
  right: -0.675rem;
  text-align: center;
  top: 0;
  width: 1.25rem;
}

.site-footer {
  background-image: url("assets/img/bg-squares-mobile-footer-1920x2880.svg"), linear-gradient(256deg, rgba(232, 78, 14, 0.2) 0.39%, rgba(81, 42, 91, 0.2) 52.15%, rgba(0, 0, 0, 0.2) 99.76%), linear-gradient(156deg, #472B73 33.26%, #2A134F 66.07%);
  background-position: bottom right;
  background-repeat: no-repeat;
  bottom: 0;
  color: #fff;
  padding: 5rem 0 0 0;
  width: 100%;
}
@media all and (min-width: 64rem) {
  .site-footer {
    background-image: url("assets/img/bg-squares-1920x2880.svg"), linear-gradient(256deg, rgba(232, 78, 14, 0.2) 0.39%, rgba(81, 42, 91, 0.2) 52.15%, rgba(0, 0, 0, 0.2) 99.76%), linear-gradient(156deg, #472B73 33.26%, #2A134F 66.07%);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    padding-top: 30vw;
    position: fixed;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer {
    padding-top: 470px;
  }
}
.site-footer p {
  font-size: 0.875rem;
}
.site-footer.layout a {
  color: #fff;
  opacity: 0.5;
}
.site-footer.layout a:hover {
  color: #fff;
  opacity: 1;
}

.site-footer__primary,
.site-footer__secondary {
  font-size: 1rem;
}
@media all and (max-width: 35.49rem) {
  .site-footer__primary,
  .site-footer__secondary {
    margin: auto;
    max-width: 360px;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .site-footer__primary,
  .site-footer__secondary {
    padding: 0 8vw;
  }
}
@media all and (min-width: 64rem) and (max-width: 98.9rem) {
  .site-footer__primary,
  .site-footer__secondary {
    font-size: 0.875rem;
  }
}

.site-footer__branding {
  margin-bottom: 3.125rem;
}
@media all and (min-width: 64rem) {
  .site-footer__branding {
    margin-bottom: 0;
    -webkit-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-right: 2rem;
  }
}

.site-footer__logo {
  display: block;
  margin: 0 0 3.5rem 0;
}
@media all and (min-width: 64rem) {
  .site-footer__logo {
    height: 3rem;
    margin: 0 0 2.5rem 0;
    width: auto;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__logo {
    height: 4.375rem;
  }
}

.site-footer__branding-contact-item {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 1rem;
  margin: 0 0 0.375rem 0;
  text-decoration: none;
}
@media all and (pointer: fine) {
  .site-footer__branding-contact-item:hover {
    color: #fff;
  }
}

@media all and (min-width: 64rem) {
  .site-footer__primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__primary {
    padding-bottom: 4.25rem;
  }
}

.site-footer__contact {
  margin-bottom: 1.5rem;
}
@media all and (min-width: 25.75rem) {
  .site-footer__contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 48rem) {
  .site-footer__contact {
    justify-content: space-between;
  }
}
@media all and (min-width: 64rem) {
  .site-footer__contact {
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: auto;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__contact {
    margin-bottom: -2.5rem;
  }
}
.site-footer__contact .address span {
  display: block;
}
.site-footer__contact a {
  text-decoration: none;
}

.site-footer__additional-contact {
  margin-top: 1.5rem;
}

.site-footer__contact-item {
  line-height: 150%;
  margin: 0 0 2.5rem 0;
  /*
  @media all and (min-width: $md-min) {
    padding: 0 1rem;
  }
  @media all and (min-width: $lg-min) {
    margin: 0;
    padding: 0 2rem;
  }
  @media all and (min-width: $xl-min) {
    padding: .5rem 3.125rem;
  }
  @media all and (min-width: $xxl-min) {
    padding: 0 3.125rem;
  }

   */
}
@media all and (min-width: 25.75rem) {
  .site-footer__contact-item {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 35.5rem) {
  .site-footer__contact-item {
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__contact-item {
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 2.5rem;
    width: auto;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__contact-item {
    padding-left: 3rem;
  }
}

@media all and (min-width: 64rem) {
  .site-footer__about {
    max-width: 50%;
    padding: 0 0 0 4rem;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__about {
    padding: 0.5rem 0 0.5rem 3.125rem;
  }
}
@media all and (min-width: 99rem) {
  .site-footer__about {
    padding: 0 0 0 6rem;
  }
}

.site-footer__heading {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.site-footer__address {
  margin: 0;
  white-space: nowrap;
}

a.site-footer__tel,
a.site-footer__email {
  color: #fff;
  display: block;
  font-size: 0.875rem;
  opacity: 1 !important;
}

.site-footer__secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 64rem) {
  .site-footer__secondary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    padding: 1rem 0;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .site-footer__secondary {
    font-size: 1rem;
  }
}

.site-footer__colophon {
  font: inherit;
}
@media all and (min-width: 64rem) {
  .site-footer__colophon {
    margin: 0 1.25rem 0 0;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__colophon {
    margin: 0 2rem 0 0;
  }
}

.site-footer__colophon-menu {
  margin-top: 1.875rem;
}
@media all and (min-width: 64rem) {
  .site-footer__colophon-menu {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
  }
}

.site-footer__colophon-links {
  line-height: 150%;
}
@media all and (min-width: 48rem) {
  .site-footer__colophon-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
}
@media all and (min-width: 64rem) {
  .site-footer__colophon-links {
    padding: 0.25rem 0 0.25rem 0.75rem;
  }
}

.site-footer__menu {
  list-style: none;
}

@media all and (min-width: 48rem) {
  .site-footer__colophon-link-item {
    margin: 0 1rem 0 0;
  }
}

@media all and (min-width: 64rem) {
  .site-footer__menu-item {
    margin: 0 0 0 0.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .site-footer__menu-item {
    margin: 0 0 0 1rem;
  }
}

.site-footer__menu-item a {
  color: #fff;
  text-decoration: none;
}

.site-footer__social--mobile {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 64rem) {
  .site-footer__social--mobile {
    display: none !important;
  }
}

.site-footer__social--desktop {
  display: none;
}
@media all and (min-width: 64rem) {
  .site-footer__social--desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media all and (min-width: 64rem) {
  .site-footer__social {
    margin-left: auto;
  }
}

@media all and (min-width: 64rem) {
  .site-footer__social-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.social-nav {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.social-nav__item {
  margin-right: 1rem;
}

.site-footer__social-menu-item a {
  display: block;
  margin-bottom: 0.375rem;
  text-decoration: none;
}
@media all and (min-width: 64rem) {
  .site-footer__social-menu-item a {
    font-weight: 700;
  }
}

.ucs-group {
  background: #fbf9f3;
  border-bottom: 1.875rem solid #333;
  left: 0;
  margin-top: 3.75rem;
  padding: 1.875rem 0;
  position: relative;
  width: 100%;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .ucs-group {
    padding: 1.25rem 0;
  }
}
.ucs-group::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 12.5%, rgba(227, 21, 19, 0.7) 28.5%, rgba(239, 125, 0, 0.7) 39%, rgba(0, 158, 72, 0.7) 49%, rgba(0, 117, 169, 0.7) 57.5%, rgba(113, 61, 144, 0.7) 66%, rgba(181, 15, 127, 0.7) 75%, rgba(8, 41, 57, 0.7) 84%, rgba(0, 0, 0, 0.7) 99%), linear-gradient(270deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.3) 100%), #003C2A;
  content: "";
  display: block;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.5s ease;
  width: 100%;
}
@media all and (pointer: fine) and (min-width: 85.375rem) {
  .ucs-group:hover::before {
    opacity: 1;
  }
  .ucs-group:hover .ucs-group__logo .ucs-group__main-company-slogan {
    color: #fff;
  }
  .ucs-group:hover .ucs-group__company-logo {
    display: none;
  }
  .ucs-group:hover .ucs-group__company-logo-inv {
    display: block;
  }
}

.ucs-group__company-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
@media all and (min-width: 35.5rem) {
  .ucs-group__company-list {
    justify-content: space-between;
  }
}
@media all and (min-width: 64rem) {
  .ucs-group__company-list {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.ucs-group__main-company {
  margin-bottom: 1.875rem;
  margin-left: 0;
  -webkit-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-right: auto;
}
@media all and (min-width: 64rem) {
  .ucs-group__main-company {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
.ucs-group__main-company .ucs-group__logo {
  opacity: 1 !important;
}
@media all and (max-width: 47.95rem) {
  .ucs-group__main-company .ucs-group__logo {
    height: 2.25rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .ucs-group__main-company .ucs-group__logo {
    height: 1.25rem;
  }
}
.ucs-group__sub-company {
  -webkit-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 25.75rem) {
  .ucs-group__sub-company {
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
  }
}
@media all and (min-width: 48rem) {
  .ucs-group__sub-company {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: auto 0.5rem auto 0;
  }
}
@media all and (min-width: 64rem) {
  .ucs-group__sub-company {
    margin: auto 0 auto 1rem;
  }
}
@media all and (min-width: 85.375rem) {
  .ucs-group__sub-company {
    margin-left: 1.5rem;
  }
}
@media all and (min-width: 99rem) {
  .ucs-group__sub-company {
    margin-left: 2.5rem;
  }
}

.ucs-group__main-company-slogan {
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 1rem;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .ucs-group__main-company-slogan {
    font-size: 0.7rem;
    margin-left: 0.55rem;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .ucs-group__main-company-slogan {
    font-size: 0.825rem;
    margin-left: 0.375rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 108.74rem) {
  .ucs-group__main-company-slogan {
    font-size: 1.05rem;
    margin-left: 0.5rem;
  }
}

.ucs-group__logo {
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1.5rem;
  opacity: 1 !important;
  text-decoration: none;
}
@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .ucs-group__logo {
    height: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .ucs-group__logo {
    height: 1.875rem;
  }
}
@media all and (min-width: 108.75rem) {
  .ucs-group__logo {
    height: 2.25rem;
  }
}
.ucs-group__logo .ucs-group__main-company-slogan {
  color: #333;
}
.ucs-group__logo img {
  height: 100%;
  width: auto;
}

.ucs-group__company-logo-inv {
  display: none;
}

/*
$withdraw_consent_button_color: transparent;
$withdraw_consent_button_text: $darkestpurple;
$withdraw_consent_button_border: $darkestpurple; */
div#CybotCookiebotDialog {
  font-family: "Roboto";
}
@media all and (max-width: 1023.9px) {
  div#CybotCookiebotDialog {
    top: auto;
    bottom: 1rem;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media all and (max-width: 600px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogBody .CybotCookiebotScrollContainer {
    min-height: 0;
  }
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogBodyContent {
    padding: 0 0.5em 0.5em 0.5em !important;
  }
}
#CybotCookiebotDialog div#CybotCookiebotDialogBodyContentText {
  font-family: "Roboto";
  line-height: 1.5;
  letter-spacing: normal;
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogBodyContentText {
    font-size: 0.75rem;
  }
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogBodyEdgeMoreDetails {
    margin: 0.5em 1rem 0.5em 0.5em !important;
  }
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyEdgeMoreDetailsLink {
    font-size: 0.75rem;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogNav a.CybotCookiebotDialogNavItemLink {
  font-family: "Neue Haas Grotesk Display Pro";
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog #CybotCookiebotDialogNav a.CybotCookiebotDialogNavItemLink {
    padding: 0.5em 1em;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogHeader,
#CybotCookiebotDialog .CybotCookiebotScrollContainer {
  border: 0;
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog button.CybotCookiebotDialogBodyButton {
    padding: 0.375em 1em !important;
    font-size: 0.75rem;
  }
}
@media all and (max-width: 600px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogFooter {
    padding: 0 1em 0.5em 1em;
  }
}
#CybotCookiebotDialog h2,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonDescription, #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a,
#CybotCookiebotDialog #CybotCookiebotDialog label:not([for=CybotCookiebotDialogBodyLevelButtonNecessary]),
#CybotCookiebotDialog #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink,
#CybotCookiebotDialog label {
  font-weight: 700;
  font-family: "Neue Haas Grotesk Display Pro";
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  font-family: "Neue Haas Grotesk Display Pro";
}
#CybotCookiebotDialog button {
  display: flex;
  align-items: center;
}
#CybotCookiebotDialog button::before {
  top: auto;
}
#CybotCookiebotDialog .CybotCookiebotDialogArrow, #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a:after {
  display: none !important;
  border: 0 !important;
}
#CybotCookiebotDialog div#CybotCookiebotDialogPoweredByText,
#CybotCookiebotDialog div#CybotCookiebotDialogPoweredByText span {
  font-size: 0.75rem;
}
@media all and (max-width: 767px) {
  #CybotCookiebotDialog div#CybotCookiebotDialogPoweredByText,
  #CybotCookiebotDialog div#CybotCookiebotDialogPoweredByText span {
    margin: auto;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieInfo.CybotCookiebotDialogShow:first-of-type:before {
  content: none;
}
@media all and (min-width: 1024px) {
  #CybotCookiebotDialog #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieInfo.CybotCookiebotDialogShow:first-of-type {
    margin-top: 1.75rem;
  }
}

div#CookiebotWidget .CookiebotWidget-header strong,
div#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list .CookiebotWidget-state {
  font-family: "Neue Haas Grotesk Display Pro";
  letter-spacing: normal;
}
div#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li {
  font-family: "Roboto";
  letter-spacing: normal;
}
div#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg {
  fill: #B29DCA;
}
div#CookiebotWidget .CookiebotWidget-consent-details button {
  color: #B29DCA;
}
div#CookiebotWidget #CookiebotWidget-buttons button {
  border-radius: 0;
  font-family: "Neue Haas Grotesk Display Pro";
}
div#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change {
  color: #fff;
  background: #E84E0E;
  border-color: #E84E0E;
}
div#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

/*
div#CybotCookiebotDialog {

  //Borders
  #CybotCookiebotDialogHeader,
  #CybotCookiebotDialogNav,
  .CookieCard,
  #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieGroup,
  #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyEmptyCategoryMessage,
  #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieInfo,
  #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieInfoFooter {
    border-color: white(.2);
  }

  //öppna i ny flik
  .CybotExternalLinkArrow {
    filter: invert(100%);
    -webkit-filter: invert(100%);
    filter: invert(100%);
    -moz-filter: invert(100%);
    -ms-filter: invert(100%);

  }

  //Antal cookies bredvid rubriker
  #CybotCookiebotDialogTabContent .CybotCookiebotDialogDetailBulkConsentCount {
    background: white(.2);
  }

  .CybotCookiebotDialogBodyLevelButtonSlider {
    background: white(.5);
  }

  //Slider, disabled
  //Disabled
  form input[type=checkbox][disabled]:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
    opacity: .5;
  }
}

//Mörkt tema, medgivande
div#CookiebotWidget {
  * {
    color: #fff;
  }

  .CookiebotWidget-body .CookiebotWidget-consents-list li svg,
  .CookiebotWidget-header .CookiebotWidget-close svg {
    fill: #fff;
  }


  #CookiebotWidget-widgetContent {
    background: $darktheme_bkg;
  }

  .CookiebotWidget-consent-details .CookiebotWidget-consent-details-box {
    background: white(.2);
  }
}
*/
/* UCS Specifikt */
#CybotCookiebotDialog button,
#CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border-radius: 0;
}
@media all and (min-width: 64rem) {
  #CybotCookiebotDialog button,
  #CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    font-size: 1.125rem;
    padding: 0.75em 1em;
  }
}
@media all and (min-width: 85.375rem) {
  #CybotCookiebotDialog button,
  #CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    font-size: 1.375rem;
  }
}
#CybotCookiebotDialog #CybotCookiebotDialogHeader,
#CybotCookiebotDialog .CybotCookiebotScrollContainer {
  border: 0 !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogHeader {
  border: 0;
  padding-bottom: 0;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContent {
  padding-top: 0;
  padding-bottom: 0;
}
@media all and (min-width: 35.5rem) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyContentTitle {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 64rem) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyContentTitle {
    font-size: 1.5rem;
  }
}
#CybotCookiebotDialog input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background: #E84E0E !important;
}

.layout-password-page {
  text-align: center;
  background-image: url("assets/img/bg-privatepage-small.svg");
  background-size: cover;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
@media all and (min-width: 48rem) {
  .layout-password-page {
    background-image: url("assets/img/bg-privatepage-desktop.svg");
    background-size: cover;
    background-position: center center;
  }
}
@media all and (min-width: 99rem) {
  .layout-password-page {
    background-position: right top;
  }
}
@media all and (min-width: 48rem) {
  .layout-password-page .heading--hero {
    margin: 5rem auto 1.25rem auto;
    max-width: 760px;
  }
}
@media all and (min-width: 85.375rem) {
  .layout-password-page .heading--hero {
    margin-bottom: 2.5rem;
  }
}

.password-page__form {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 48rem) {
  .password-page__form {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 99rem) {
  .password-page__form {
    margin-bottom: 7.5rem;
  }
}

.password-page__input-wrapper {
  max-width: 420px;
  padding: 1.5rem;
  margin: auto;
  background: #2A134F;
}
@media all and (min-width: 48rem) {
  .password-page__input-wrapper {
    padding: 3.125rem;
    background: #2A134F;
  }
}
.password-page__input-wrapper input, .password-page__input-wrapper button {
  width: 100%;
}
.password-page__input-wrapper input {
  margin-bottom: 1.25rem;
  border-radius: 0 !important;
}
.password-page__input-wrapper .button {
  background: #472B73;
  color: #fff;
  border: 0;
}

#searchform {
  justify-content: center;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media all and (min-width: 64rem) {
  #searchform {
    display: block;
    margin-left: 1.25rem;
  }
}
#searchform #s {
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("assets/img/search.svg");
  background-position: 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem auto;
  border-radius: 50px;
  color: transparent;
  display: inline-block;
  font-weight: 400;
  height: 2.75rem;
  line-height: 2.75rem;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: all 0.5s ease;
  width: 2.75rem;
}
@media all and (max-width: 98.9rem) {
  #searchform #s {
    transform-origin: left;
  }
}
#searchform #s:focus {
  border: 0;
  color: #fff;
  padding: 0 0 0 3rem;
  width: 12rem;
}
@media all and (max-width: 98.9rem) {
  #searchform #s:focus {
    left: 0;
  }
}

@media all and (min-width: 64rem) {
  .home .navbar:not(.is-sticky) #searchform #s {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
  }
}

#searchsubmit {
  display: none;
}

.searchwp-live-search-results {
  position: fixed;
}
@media all and (max-width: 63.99rem) {
  .searchwp-live-search-results {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .searchwp-live-search-results {
    max-width: 15rem !important;
    min-width: 15rem !important;
  }
}
@media all and (min-width: 99rem) {
  .searchwp-live-search-results {
    max-width: 18rem !important;
  }
}
@media all and (min-width: 1920px) {
  .searchwp-live-search-results {
    max-width: 22rem !important;
  }
}
.searchwp-live-search-results .searchwp-live-search-result {
  flex-wrap: nowrap;
}
@media all and (min-width: 99rem) {
  .searchwp-live-search-results .searchwp-live-search-result {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}
.searchwp-live-search-results .searchwp-live-search-result .searchwp-live-search-result--title a {
  line-height: 1.2;
  text-decoration: none;
}
.searchwp-live-search-results .searchwp-live-search-result .searchwp-live-search-result--desc {
  font-size: 0.875rem;
  line-height: 1.3;
}

.searchwp-live-search-result--role {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.searchwp-live-search-result--email,
.searchwp-live-search-result--tel {
  display: block;
  font-size: 0.75rem;
  text-decoration: none;
}

.search-result-list {
  list-style: none;
}

@media all and (min-width: 99rem) {
  .search-result-page__heading {
    margin-bottom: 3.125rem;
  }
}

.search-result-list__item {
  margin-bottom: 1.25rem;
}

.search-result-list__result {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition: all 0.5s ease;
}
@media all and (min-width: 85.375rem) {
  .search-result-list__result {
    padding: 2.5rem;
  }
}
@media all and (pointer: fine) {
  .search-result-list__result:hover {
    transform: scale(1.05);
  }
}

.search-result-list__result--none:hover {
  transform: none;
}

.search-result-list__img {
  -webkit-box-flex: 0 0 70px;
  -webkit-flex: 0 0 70px;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
@media all and (min-width: 48rem) {
  .search-result-list__img {
    -webkit-box-flex: 0 0 200px;
    -webkit-flex: 0 0 200px;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}

.search-result-list__desc {
  padding-left: 1.25rem;
}
@media all and (min-width: 85.375rem) {
  .search-result-list__desc {
    padding-left: 2.5rem;
  }
}

.footer-newsletter {
  padding: 2.5rem 0;
}

@media all and (min-width: 64rem) {
  .footer-newsletter__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-newsletter__desc {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 64rem) {
  .footer-newsletter__desc {
    font-size: 1.125rem;
    margin: 0;
    padding-right: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .footer-newsletter__desc {
    font-size: 1.25rem;
    padding-right: 5rem;
  }
}
.footer-newsletter__desc p {
  font: inherit;
  line-height: 1.5;
}

@media all and (min-width: 64rem) {
  .footer-newsletter__wrapper {
    -webkit-box-flex: 0 0 60%;
    -webkit-flex: 0 0 60%;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }
}

@media all and (min-width: 35.5rem) {
  .footer-newsletter__wrapper form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.footer-newsletter__wrapper form .forminator-error-message,
.footer-newsletter__wrapper form .forminator-edit-module,
.footer-newsletter__wrapper form label {
  display: none !important;
}
.footer-newsletter__wrapper form .forminator-button-submit {
  width: 100%;
}
.footer-newsletter__wrapper form .forminator-button-submit,
.footer-newsletter__wrapper form input[type=email] {
  height: 3.125rem;
  line-height: 3.125rem;
  padding-bottom: 0;
  padding-top: 0;
}
@media all and (min-width: 85.375rem) {
  .footer-newsletter__wrapper form .forminator-button-submit,
  .footer-newsletter__wrapper form input[type=email] {
    font-size: 1.25rem;
    height: 4.875rem;
    line-height: 4.875rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .footer-newsletter__wrapper form .forminator-button-submit {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 35.5rem) {
  .footer-newsletter__wrapper form .forminator-row {
    -webkit-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem) {
  .footer-newsletter__wrapper form .forminator-row {
    margin-right: 1.25rem;
  }
}
@media all and (min-width: 35.5rem) {
  .footer-newsletter__wrapper form .forminator-row-last {
    -webkit-box-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0 !important;
  }
}
.footer-newsletter__wrapper form .forminator-row-last .forminator-col {
  margin-right: 0 !important;
}

.footer-newsletter__wrapper form input[type=email] {
  border-radius: 0;
}
@media all and (min-width: 35.5rem) {
  .footer-newsletter__wrapper form input[type=email] {
    -webkit-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.footer-newsletter__wrapper form input[type=email]::placeholder {
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 700;
}

.layout-404 {
  background-image: url("assets/img/bg-squares-mobile-footer-1920x2880.svg"), linear-gradient(256deg, rgba(232, 78, 14, 0.2) 0.39%, rgba(81, 42, 91, 0.2) 52.15%, rgba(0, 0, 0, 0.2) 99.76%), linear-gradient(156deg, #472B73 33.26%, #2A134F 66.07%);
  background-position: bottom right;
  background-repeat: no-repeat;
  bottom: 0;
  color: #fff;
  min-height: 70vh;
  padding: 5rem 0 0 0;
  width: 100%;
}
@media all and (min-width: 64rem) {
  .layout-404 {
    background-image: url("assets/img/bg-squares-1920x2880.svg"), linear-gradient(256deg, rgba(232, 78, 14, 0.2) 0.39%, rgba(81, 42, 91, 0.2) 52.15%, rgba(0, 0, 0, 0.2) 99.76%), linear-gradient(156deg, #472B73 33.26%, #2A134F 66.07%);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    min-height: 56.25vw;
    padding-top: 30vw;
  }
}

.layout-404__content {
  text-align: center;
}
@media all and (min-width: 48rem) {
  .layout-404__content {
    margin-top: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .layout-404__content {
    margin: 2.5rem auto 0 auto;
    max-width: 1140px;
    width: 72%;
  }
}

.layout-404__img {
  margin: 5rem auto 0 auto;
  padding: 0 2.5rem;
}
@media all and (min-width: 99rem) {
  .layout-404__img {
    margin-top: 7.5rem;
    padding: 0;
  }
}
.layout-404__img img {
  height: auto;
  margin: auto;
  max-width: 100%;
  width: 100%;
}

.layout-case-intro.theme-darkpurple {
  background: url("assets/img/bg-squares-1920x2880.svg"), linear-gradient(0deg, rgba(24, 4, 53, 0.4) 0%, rgba(24, 4, 53, 0.4) 100%), linear-gradient(180deg, #472B73 2.6%, rgba(232, 78, 14, 0.5) 52.08%, #9DB7CA 78.12%, #472B73 100%);
  background-position: top center;
  background-repeat: no-repeat;
}
.fp-hero + .layout-case-intro {
  margin-top: -25%;
}
@media all and (min-width: 48rem) {
  .fp-hero + .layout-case-intro {
    margin-top: -15%;
  }
}
@media all and (min-width: 85.375rem) {
  .fp-hero + .layout-case-intro {
    margin-top: 0;
  }
}

@media all and (min-width: 85.375rem) {
  .case-intro__preamble {
    margin-bottom: 0;
  }
}

.case-introduction__list {
  list-style: none;
  margin: 0 -1.25rem;
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .case-introduction__list {
    margin: 0 -2.1875rem;
  }
}

.case-introduction__list-item {
  padding: 0 1.25rem 2.5rem 1.25rem;
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .case-introduction__list-item {
    padding-left: 2.1875rem;
  }
}

.case-introduction__list-item,
.case-introduction__archive-link {
  width: 100%;
}
@media all and (min-width: 48rem) {
  .case-introduction__list-item,
  .case-introduction__archive-link {
    width: 50%;
  }
}
@media all and (min-width: 99rem) {
  .case-introduction__list-item,
  .case-introduction__archive-link {
    width: 33.3%;
  }
}

@media all and (min-width: 48rem) {
  .case-introduction__list-item:nth-child(1) {
    padding-top: 20px;
  }
}
@media all and (min-width: 85.375rem) {
  .case-introduction__list-item:nth-child(1) {
    padding-top: 110px;
  }
}

@media all and (min-width: 48rem) {
  .case-introduction__list-item:nth-child(2) {
    padding-top: 60px;
  }
}
@media all and (min-width: 85.375rem) {
  .case-introduction__list-item:nth-child(2) {
    padding-top: 172px;
  }
}

@media all and (min-width: 85.375rem) {
  .case-introduction__list-item:nth-child(3) {
    padding-top: 0.75rem;
  }
}

.case-teaser__link {
  display: block;
  text-decoration: none;
}

.case-teaser__image {
  background: #f1f1f1;
  position: relative;
}
.case-teaser__image img {
  max-width: none;
  width: 100%;
}

.case-teaser__button {
  font-size: 1.375rem;
  position: absolute;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
}

.theme-lightgray .case-teaser__excerpt {
  background: linear-gradient(90deg, #E7EEF2 0%, #FBF9F3 56.25%, #F0EBF4 100%);
  opacity: 0.95;
}

.case-teaser__excerpt {
  margin: auto;
  padding: 1.25rem 1.5rem;
  position: relative;
}
@media all and (min-width: 25.75rem) {
  .case-teaser__excerpt {
    padding: 1.5rem 1.75rem;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 85.375rem) {
  .case-teaser__excerpt {
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .case-teaser__excerpt {
    margin: -4rem 2.5rem 0 2.5rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .case-teaser__excerpt {
    margin: -8rem 5rem 0 5rem;
  }
}

.case-teaser__client {
  border-bottom: 1px solid #B29DCA;
  color: #C1A7E2;
  font-size: 0.875rem;
  line-height: 150%;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 85.375rem) {
  .case-teaser__client {
    font-size: 1.25rem;
  }
}

.case-teaser__title {
  font-size: 1.375rem;
  line-height: 133%;
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 85.375rem) {
  .case-teaser__title {
    font-size: 2.0625rem;
  }
}
@media all and (pointer: fine) {
  .case-teaser {
    transition: scale 0.3s ease;
  }
  .case-teaser:hover {
    scale: 1.05;
  }
  .case-teaser:hover .case-teaser__button {
    background: #E84E0E;
    border-color: #E84E0E;
  }
  .case-teaser:hover .case-teaser__excerpt {
    background: linear-gradient(98deg, #472B73 0%, #2A144B 100%);
  }
  .case-teaser:hover .case-teaser__title {
    color: #fff;
  }
}
.case-introduction__archive-link {
  text-align: center;
}
@media all and (min-width: 48rem) {
  .case-introduction__archive-link {
    padding-top: 1.5rem;
  }
}
@media all and (min-width: 64rem) {
  .case-introduction__archive-link {
    padding-top: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .case-introduction__archive-link {
    padding-top: 4.5rem;
  }
}
@media all and (min-width: 1760px) {
  .case-introduction__archive-link {
    padding-top: 3.125rem;
  }
}

@media all and (min-width: 85.375rem) and (max-width: 98.9rem), (min-width: 1760px) {
  .case-introduction__archive-button {
    font-size: 2.81rem;
    font-weight: 700;
  }
}
@media all and (min-width: 99rem) and (max-width: 1759px) {
  .case-introduction__archive-button {
    font-size: 2.25rem;
    font-weight: 700;
  }
}

.case-additional {
  margin-top: 3.125rem;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 35.5rem) {
  .case-additional {
    margin-top: 5rem;
  }
}
@media all and (min-width: 99rem) {
  .case-additional {
    margin-top: 9rem;
  }
}

.case-additional__decoration {
  background-image: url("assets/img/lines.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 3.125rem;
  max-width: 1595px;
  position: relative;
  width: 83%;
}
@media all and (min-width: 35.5rem) {
  .case-additional__decoration {
    margin-bottom: 5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .case-additional__decoration {
    margin-bottom: 7.5rem;
  }
}
@media all and (min-width: 99rem) {
  .case-additional__decoration {
    margin-bottom: 12.5rem;
  }
}
.case-additional__decoration::after {
  content: "";
  padding-bottom: 15%;
}

@media all and (min-width: 64rem) {
  .case-additional__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media all and (min-width: 48rem) {
  .case-additional__content {
    -webkit-box-flex: 0 0 66%;
    -webkit-flex: 0 0 66%;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%;
    padding-right: 3rem;
  }
}
@media all and (min-width: 64rem) {
  .case-additional__content {
    padding-right: 3.5rem;
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
@media all and (min-width: 85.375rem) {
  .case-additional__content {
    padding-right: 7.5rem;
  }
}
@media all and (min-width: 99rem) {
  .case-additional__content {
    max-width: calc(840px + 11rem);
    padding-right: 11rem;
  }
}

.case-additional__aside {
  position: relative;
  text-align: center;
}
@media all and (min-width: 64rem) {
  .case-additional__aside {
    margin-left: auto;
    max-width: 555px;
    -webkit-box-flex: 1 1 555px;
    -webkit-flex: 1 1 555px;
    -ms-flex: 1 1 555px;
    flex: 1 1 555px;
  }
}

@media all and (min-width: 48rem) and (max-width: 63.99rem) {
  .case-additional__heading {
    font-size: 1.875rem;
  }
}
@media all and (min-width: 85.375rem) {
  .case-additional__heading {
    margin-bottom: 5.75rem;
  }
}

.case-additional__body-text p {
  line-height: 196%;
}
@media all and (min-width: 85.375rem) {
  .case-additional__body-text p {
    font-size: 1.75rem;
  }
}
.case-additional__body-text p:last-child {
  margin-bottom: 0;
}

.case-additional__year {
  display: block;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 5rem;
  font-weight: 700 !important;
}
@media all and (min-width: 48rem) {
  .case-additional__year {
    font-size: 7.5rem;
    margin-bottom: 2rem;
  }
}
@media all and (min-width: 64rem) {
  .case-additional__year {
    font-size: 10rem;
  }
}
@media all and (min-width: 85.375rem) {
  .case-additional__year {
    font-size: 12rem;
    margin-bottom: 4.25rem;
  }
}
@media all and (min-width: 99rem) {
  .case-additional__year {
    font-size: 14rem;
  }
}

.case-additional__img {
  border-radius: 50%;
  overflow: hidden;
}
@media all and (min-width: 48rem) {
  .case-additional__img {
    margin-bottom: -50%;
    position: relative;
    z-index: 1;
  }
}
@media all and (min-width: 64rem) {
  .case-additional__img {
    margin-bottom: 0;
    max-width: 100%;
    position: absolute;
  }
}

@media all and (max-width: 47.95rem) {
  .case-introduction__container--teaser {
    overflow: hidden;
    padding: 0;
  }
  .case-introduction__container--teaser .case-introduction__list {
    margin: 0;
  }
  .case-introduction__container--teaser .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .case-introduction__container--teaser .case-introduction__list-item {
    height: inherit;
    padding-left: 1.875rem;
    padding-right: 0;
    padding-top: 0 !important;
  }
  .case-introduction__container--teaser .case-teaser {
    height: 100%;
  }
  .case-introduction__container--teaser .case-teaser__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .case-introduction__container--teaser .case-teaser__excerpt {
    -webkit-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin: 0;
  }
}
@media all and (max-width: 47.95rem) {
  .case-introduction__archive-button {
    font-size: 1.125rem;
  }
}

.case-introduction__archive-link.slick-slide {
  display: none !important;
}

.case-introduction__archive-link--mobile {
  padding-left: 1.875rem;
}
@media all and (min-width: 48rem) {
  .case-introduction__archive-link--mobile {
    display: none;
  }
}

.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-size: cover;
  transition: all 0.3s ease;
}

@media all and (min-width: 85.375rem) {
  .hero--full {
    background-position: center right;
    position: relative;
  }
  .hero--full .hero__container {
    position: absolute;
    top: 62%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .hero--full::after {
    content: "";
    display: block;
    padding-bottom: 73%;
  }
}

.hero--contained {
  border: 1.875rem solid white;
  transition: all 0.3s ease;
}
@media all and (min-width: 48rem) {
  .hero--contained {
    border: 2.5rem solid white;
  }
}
@media all and (min-width: 64rem) {
  .hero--contained {
    border: 3.25rem solid white;
    padding: 4rem 0 3.125rem 0;
  }
}
@media all and (min-width: 85.375rem) {
  .hero--contained {
    padding: 8rem 0 6.25rem 0;
  }
}
@media all and (min-width: 99rem) {
  .hero--contained {
    border: 5.625rem solid white;
    padding: 16rem 0 12.5rem;
  }
}

.hero__container {
  position: relative;
}
@media all and (max-width: 63.99rem) {
  .hero__container {
    width: 100%;
  }
}
.hero__container .button-list__item a {
  width: 100%;
}

@media all and (pointer: fine) {
  .hero:hover {
    transform: scale(1.05);
  }
}
.hero__container--contained {
  height: 100%;
  padding: 1.5rem;
}
@media all and (min-width: 35.5rem) {
  .hero__container--contained {
    padding: 1.875rem 2.5rem;
  }
}
@media all and (min-width: 48rem) {
  .hero__container--contained {
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .hero__container--contained {
    padding: 3.25rem;
    width: 75%;
  }
}
@media all and (min-width: 85.375rem) {
  .hero__container--contained {
    max-width: 57.5rem;
    padding: 3.75rem;
  }
}

.hero__container--full {
  margin: 1.875rem;
  padding: 1.5rem;
}
@media all and (min-width: 35.5rem) {
  .hero__container--full {
    padding: 1.875rem 2.5rem;
  }
}
@media all and (min-width: 48rem) {
  .hero__container--full {
    margin: 2.5rem;
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .hero__container--full {
    margin: 5rem 0;
    padding: 3.25rem;
    width: calc(75% - 1.625rem);
  }
}
@media all and (min-width: 85.375rem) {
  .hero__container--full {
    margin: 0;
    padding: 4rem 5rem;
    width: 75%;
  }
}
@media all and (min-width: 99rem) {
  .hero__container--full {
    max-width: 83.125rem;
    padding: 5rem 6.25rem;
  }
}

@media all and (min-width: 64rem) {
  .hero__container--align-left {
    left: 0;
    margin-left: 0;
    margin-right: auto;
  }
}

@media all and (min-width: 64rem) {
  .hero__container--align-right {
    margin-left: auto;
    margin-right: 0;
    right: 0;
  }
}

.hero--video {
  position: relative;
}
@media all and (min-width: 64rem) {
  .hero--video {
    max-height: 56.25vw;
  }
}

@media all and (min-width: 64rem) {
  .hero--video:first-child {
    max-height: calc(56.25vw + 116px);
  }
}
@media all and (min-width: 85.375rem) {
  .hero--video:first-child {
    max-height: calc(56.25vw + 150px);
  }
}

.vimeo-wrapper {
  height: 100%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.vimeo-wrapper iframe {
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  left: 50%;
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}

.home .fp-hero + .layout-case-intro {
  padding-top: 0;
}
@media all and (min-width: 85.375rem) {
  .home .fp-hero + .layout-case-intro .case-introduction__list {
    margin-bottom: -320px;
    top: -320px;
  }
}

.fp-hero {
  background-color: #2A134F;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.fp-hero::after {
  background: linear-gradient(0deg, rgba(42, 19, 79, 0.8) 0%, rgba(42, 19, 79, 0) 44.77%), linear-gradient(75deg, rgba(17, 5, 36, 0.3) 26.33%, rgba(232, 78, 14, 0.09) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.fp-hero__container {
  height: 100vh;
  position: relative;
}

.vimeo-wrapper--fp {
  height: 100vh;
  z-index: 0;
}

.fp-hero__content {
  max-width: calc(100% - 3.125rem);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  z-index: 1;
}
@media all and (min-width: 48rem) {
  .fp-hero__content {
    max-width: calc(100% - 5rem);
  }
}
@media all and (min-width: 85.375rem) {
  .fp-hero__content {
    max-width: 76.25rem;
    width: 63.5%;
  }
}
.fp-hero__content p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
}
@media all and (min-width: 35.5rem) {
  .fp-hero__content p {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 48rem) {
  .fp-hero__content p {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .fp-hero__content p {
    font-size: 2rem;
  }
}

.fp-hero__intro > * {
  opacity: 0.7;
}

@media all and (min-width: 85.375rem) {
  .preamble--large + .cta__button-list {
    margin-top: 4rem;
  }
}

.cta__container--align-center {
  text-align: center;
  padding: 0 1.5rem;
}
@media all and (min-width: 48rem) {
  .cta__container--align-center {
    padding: 0 10%;
    margin: auto;
  }
}
.cta__container--align-center .container--text {
  margin: auto;
}
@media all and (min-width: 35.5rem) {
  .cta__container--align-center .button-list {
    justify-content: center;
  }
}

.cta__container--align-row {
  text-align: center;
}
@media all and (min-width: 48rem) {
  .cta__container--align-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.cta__container--align-row .button-list {
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 48rem) {
  .cta__container--align-row .button-list {
    margin-left: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .cta__container--align-row .button-list {
    margin-left: 5rem;
  }
}
@media all and (min-width: 99rem) {
  .cta__container--align-row .button-list {
    margin-left: 7rem;
  }
}

@media all and (min-width: 48rem) {
  .cta__heading--align-row {
    margin-bottom: 0;
  }
}

.full-width-img__container {
  padding-bottom: 1.875rem;
  padding-top: 1.875rem;
}
@media all and (min-width: 25.75rem) {
  .full-width-img__container {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .full-width-img__container {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .full-width-img__container {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}
@media all and (min-width: 99rem) {
  .full-width-img__container {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.theme-image.layout {
  padding: 0;
}

.full_width_img img {
  width: 100%;
  max-width: none;
  height: auto;
}

.textarea__container + .textbox-img {
  margin-top: 5rem;
}

.textbox-img {
  position: relative;
  max-width: 1920px;
  margin: auto;
}
@media all and (min-width: 64rem) {
  .textbox-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}

.textbox-img__img {
  max-width: 960px;
}

.textbox-img__container:last-child .textbox-img__img {
  max-width: 100%;
}

.textbox-img__textbox {
  margin: 0 1.875rem;
  padding: 1.875rem;
}
@media all and (min-width: 35.5rem) {
  .textbox-img__textbox {
    position: relative;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 0 4.25rem -12.5% 4.25rem;
    padding: 1.875rem;
  }
}
@media all and (min-width: 48rem) {
  .textbox-img__textbox {
    margin: 0 6.25rem -12.5% 6.25rem;
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .textbox-img__textbox {
    width: 50%;
    position: absolute;
    right: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    margin: 0;
    padding: 2.5rem 3.125rem 3.125rem 3.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .textbox-img__textbox {
    width: 60%;
    padding: 4rem 6.25rem 5rem 6.25rem;
  }
}
.textbox-img__textbox p,
.textbox-img__textbox h4,
.textbox-img__textbox ul {
  margin-bottom: 1em;
}
.textbox-img__textbox p:last-child,
.textbox-img__textbox h4:last-child,
.textbox-img__textbox ul:last-child {
  margin: 0;
}

.textbox-img__textbox.theme-darkpurple {
  background: rgba(71, 43, 115, 0.9);
}

.textbox-img .preamble {
  margin: 0;
}
.textbox-img .preamble :last-child {
  margin-bottom: 0;
}

.contact-card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 25.749rem) {
  .contact-card p {
    font-size: 0.875rem;
  }
}

.contact-card__wrapper {
  margin: auto;
  max-width: 1920px;
  position: relative;
}

.contact-card__name {
  line-height: normal;
  margin-bottom: 0.25rem;
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem) {
  .contact-card__name {
    margin-bottom: 0.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__name {
    margin-bottom: 0.675rem;
  }
}

@media all and (min-width: 48rem) and (max-width: 85.374rem) {
  .contact-card__card--compact .contact-card__name {
    font-size: 1.875rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .contact-card__card--compact .contact-card__name {
    font-size: 2.75rem;
  }
}

.contact-card__role,
.contact-card__contact-info {
  font-size: 0.875rem;
  font-weight: 500;
}
@media all and (min-width: 25.75rem) {
  .contact-card__role,
  .contact-card__contact-info {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__role,
  .contact-card__contact-info {
    font-size: 1.875rem;
  }
}
@media all and (min-width: 25.75rem) {
  .contact-card__card--compact .contact-card__role,
  .contact-card__card--compact .contact-card__contact-info {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .contact-card__card--compact .contact-card__role,
  .contact-card__card--compact .contact-card__contact-info {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 99rem) {
  .contact-card__card--compact .contact-card__role,
  .contact-card__card--compact .contact-card__contact-info {
    font-size: 1.75rem;
  }
}

.contact-card__role {
  margin-bottom: 0.75rem;
}
@media all and (min-width: 85.375rem) {
  .contact-card__role {
    margin-bottom: 1.875rem;
  }
}

.contact-card__contact-info {
  display: block;
  line-height: 150%;
  text-decoration: none;
}

.contact-card__contact-info--tel {
  color: #472B73;
}

.is-inverted .contact-card__contact-info--tel {
  color: #fff;
}

.contact-card__contact-info--email {
  color: #B29DCA;
}

.theme-orange .contact-card__contact-info--email {
  color: rgba(255, 255, 255, 0.75);
}

.layout-contact--compact {
  position: relative;
}
.layout-contact--compact::before {
  background-image: url("assets/img/bg-squares-detail.svg");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  display: block;
  height: 100px;
  position: absolute;
  right: 0;
  width: 100px;
}

.layout-contact--comapct.theme-orange::before {
  content: none;
}

@media all and (min-width: 64rem) {
  .contact__container--compact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }
}

@media all and (min-width: 64rem) {
  .contact-header--compact {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-right: 3rem;
  }
}
@media all and (min-width: 1280px) {
  .contact-header--compact {
    padding-right: 4.5rem;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .contact-header--compact {
    -webkit-box-flex: 0 0 45%;
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
  }
}
@media all and (min-width: 99rem) {
  .contact-header--compact {
    max-width: calc(765px + 5rem);
    padding-right: 5rem;
  }
}

@media all and (min-width: 64rem) {
  .contact-heading__heading--compact {
    margin: auto 0;
  }
}
@media all and (min-width: 64rem) {
  .contact-card__wrapper--compact {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin: auto 0 auto auto;
    max-width: 765px;
  }
}
@media all and (min-width: 85.375rem) and (max-width: 98.9rem) {
  .contact-card__wrapper--compact {
    -webkit-box-flex: 0 0 55%;
    -webkit-flex: 0 0 55%;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
  }
}

.contact-card--compact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 25.75rem) {
  .contact-card--compact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media all and (min-width: 64rem) {
  .contact-card--compact {
    max-width: 765px;
  }
}
@media all and (min-width: 25.75rem) and (max-width: 35.49rem) {
  .contact-card--compact p,
  .contact-card--compact a {
    font-size: 0.875rem;
  }
}

@media all and (min-width: 25.75rem) {
  .contact-card__card--compact {
    padding-left: 1.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__card--compact {
    padding-left: 2.5rem;
  }
}

.contact-card__image--compact {
  height: 100%;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 25.75rem) {
  .contact-card__image--compact {
    border-radius: 50%;
    height: 100px;
    margin: 0;
    -webkit-box-flex: 0 0 100px;
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    overflow: hidden;
  }
}
@media all and (min-width: 35.5rem) {
  .contact-card__image--compact {
    -webkit-box-flex: 0 0 140px;
    -webkit-flex: 0 0 140px;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    height: 140px;
  }
}
@media all and (min-width: 48rem) {
  .contact-card__image--compact {
    -webkit-box-flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    height: 150px;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__image--compact {
    -webkit-box-flex: 0 0 170px;
    -webkit-flex: 0 0 170px;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    height: 170px;
  }
}
@media all and (min-width: 99rem) {
  .contact-card__image--compact {
    -webkit-box-flex: 0 0 230px;
    -webkit-flex: 0 0 230px;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    height: 230px;
  }
}

.contact__wrapper {
  position: relative;
}

@media all and (min-width: 48rem) {
  .contact-header--full {
    max-width: 68rem;
    width: 80%;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-header--full {
    margin-bottom: 5rem;
  }
}

.contact-header__heading--full {
  line-height: 1.2;
}
@media all and (min-width: 85.375rem) {
  .contact-header__heading--full {
    margin-bottom: 2rem;
  }
}
.contact-header__heading--full:last-child {
  margin: 0;
}

.contact-card--full {
  flex-wrap: wrap;
  position: static;
}

.contact-card__card--full {
  background: #472B73 url("assets/img/bg-squares-detail.svg") bottom right no-repeat;
  color: #fff;
  margin: 0;
  padding: 1.875rem;
  width: 100%;
}
@media all and (min-width: 35.5rem) {
  .contact-card__card--full {
    margin: 0 4.25rem -6.25% 4.25rem;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 1.875rem;
    position: relative;
  }
}
@media all and (min-width: 48rem) {
  .contact-card__card--full {
    margin: 0 6.25rem -6.25% 6.25rem;
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .contact-card__card--full {
    margin: 0;
    padding: 3.125rem;
    position: absolute;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    width: 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__card--full {
    padding: 6.25rem;
    width: 60%;
  }
}

.layout-form {
  overflow: hidden;
}

@media all and (min-width: 64rem) {
  .contact-form__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-form__container {
    margin-left: -4.5rem;
  }
}
@media all and (min-width: 99rem) {
  .contact-form__container {
    margin-left: -7.5rem;
  }
}

@media all and (min-width: 64rem) {
  .contact-form__introduction,
  .contact-form__form-container {
    padding-left: 2.5rem;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-form__introduction,
  .contact-form__form-container {
    padding-left: 4.5rem;
  }
}
@media all and (min-width: 99rem) {
  .contact-form__introduction,
  .contact-form__form-container {
    padding-left: 7.5rem;
  }
}

.contact-form__person {
  margin: 1.5rem 0;
}
@media all and (min-width: 48rem) {
  .contact-form__person {
    margin: 2.5rem 0;
  }
}
@media all and (min-width: 64rem) {
  .contact-form__person {
    margin-bottom: 0;
  }
}
@media all and (min-width: 99rem) {
  .contact-form__person {
    margin-top: 4.5rem;
  }
}
@media all and (min-width: 99rem) {
  .contact-form__person .contact-card__image {
    -webkit-box-flex: 0 0 170px;
    -webkit-flex: 0 0 170px;
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    height: 170px;
  }
}
@media all and (min-width: 99rem) {
  .contact-form__person .contact-card__role, .contact-form__person .contact-card__contact-info {
    font-size: 1.25rem;
  }
}

.contact-form__form-wrapper {
  height: 100%;
  padding: 1.875rem;
}
@media all and (min-width: 85.375rem) {
  .contact-form__form-wrapper {
    padding: 2.5rem;
  }
}

@media all and (min-width: 85.375rem) {
  .contact-form__heading {
    margin-bottom: 1.875rem;
  }
}

.contact-form__form-wrapper .wpforms-container {
  margin-bottom: 0;
}

.wpforms-field-label,
form label,
.forminator-poll-header {
  color: inherit;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.forminator-poll-header {
  font-family: "Neue Haas Grotesk Display Pro";
}
.forminator-poll-header .forminator-poll--question,
.forminator-poll-header span {
  color: inherit !important;
  font: inherit !important;
}
.forminator-poll-header .forminator-poll--question {
  font-size: 1.125rem !important;
  margin-bottom: 1rem !important;
}

.wpforms-field ul,
form ul {
  list-style: none;
}

.forminator-poll-body label.forminator-radio {
  margin: 0.5rem 0 0 0 !important;
}
.forminator-poll-body .forminator-radio-label {
  font-weight: 400;
  margin-left: 0.5em;
}

.wpforms-container input[type=date],
.wpforms-container input[type=datetime],
.wpforms-container input[type=datetime-local],
.wpforms-container input[type=email],
.wpforms-container input[type=month],
.wpforms-container input[type=number],
.wpforms-container input[type=password],
.wpforms-container input[type=range],
.wpforms-container input[type=search],
.wpforms-container input[type=tel],
.wpforms-container input[type=text],
.wpforms-container input[type=time],
.wpforms-container input[type=url],
.wpforms-container input[type=week],
.wpforms-container select,
.wpforms-container textarea,
form input[type=date],
form input[type=datetime],
form input[type=datetime-local],
form input[type=email],
form input[type=month],
form input[type=number],
form input[type=password],
form input[type=range],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=time],
form input[type=url],
form input[type=week],
form select,
form textarea {
  border-radius: 4px;
  color: #472B73;
  font-family: inherit;
  font-size: 1rem;
  padding: 1.25rem 1rem;
  width: 100%;
}
.wpforms-container input[type=date]::placeholder,
.wpforms-container input[type=datetime]::placeholder,
.wpforms-container input[type=datetime-local]::placeholder,
.wpforms-container input[type=email]::placeholder,
.wpforms-container input[type=month]::placeholder,
.wpforms-container input[type=number]::placeholder,
.wpforms-container input[type=password]::placeholder,
.wpforms-container input[type=range]::placeholder,
.wpforms-container input[type=search]::placeholder,
.wpforms-container input[type=tel]::placeholder,
.wpforms-container input[type=text]::placeholder,
.wpforms-container input[type=time]::placeholder,
.wpforms-container input[type=url]::placeholder,
.wpforms-container input[type=week]::placeholder,
.wpforms-container select::placeholder,
.wpforms-container textarea::placeholder,
form input[type=date]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=email]::placeholder,
form input[type=month]::placeholder,
form input[type=number]::placeholder,
form input[type=password]::placeholder,
form input[type=range]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=text]::placeholder,
form input[type=time]::placeholder,
form input[type=url]::placeholder,
form input[type=week]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: rgba(71, 43, 115, 0.5);
}
.theme-darkestpurple .wpforms-container input[type=date],
.theme-darkestpurple .wpforms-container input[type=datetime],
.theme-darkestpurple .wpforms-container input[type=datetime-local],
.theme-darkestpurple .wpforms-container input[type=email],
.theme-darkestpurple .wpforms-container input[type=month],
.theme-darkestpurple .wpforms-container input[type=number],
.theme-darkestpurple .wpforms-container input[type=password],
.theme-darkestpurple .wpforms-container input[type=range],
.theme-darkestpurple .wpforms-container input[type=search],
.theme-darkestpurple .wpforms-container input[type=tel],
.theme-darkestpurple .wpforms-container input[type=text],
.theme-darkestpurple .wpforms-container input[type=time],
.theme-darkestpurple .wpforms-container input[type=url],
.theme-darkestpurple .wpforms-container input[type=week],
.theme-darkestpurple .wpforms-container select,
.theme-darkestpurple .wpforms-container textarea,
.theme-darkestpurple form input[type=date],
.theme-darkestpurple form input[type=datetime],
.theme-darkestpurple form input[type=datetime-local],
.theme-darkestpurple form input[type=email],
.theme-darkestpurple form input[type=month],
.theme-darkestpurple form input[type=number],
.theme-darkestpurple form input[type=password],
.theme-darkestpurple form input[type=range],
.theme-darkestpurple form input[type=search],
.theme-darkestpurple form input[type=tel],
.theme-darkestpurple form input[type=text],
.theme-darkestpurple form input[type=time],
.theme-darkestpurple form input[type=url],
.theme-darkestpurple form input[type=week],
.theme-darkestpurple form select,
.theme-darkestpurple form textarea {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), #CA9D9D;
  border-radius: 4px;
}
.theme-darkestpurple .wpforms-container input[type=date]:focus,
.theme-darkestpurple .wpforms-container input[type=datetime]:focus,
.theme-darkestpurple .wpforms-container input[type=datetime-local]:focus,
.theme-darkestpurple .wpforms-container input[type=email]:focus,
.theme-darkestpurple .wpforms-container input[type=month]:focus,
.theme-darkestpurple .wpforms-container input[type=number]:focus,
.theme-darkestpurple .wpforms-container input[type=password]:focus,
.theme-darkestpurple .wpforms-container input[type=range]:focus,
.theme-darkestpurple .wpforms-container input[type=search]:focus,
.theme-darkestpurple .wpforms-container input[type=tel]:focus,
.theme-darkestpurple .wpforms-container input[type=text]:focus,
.theme-darkestpurple .wpforms-container input[type=time]:focus,
.theme-darkestpurple .wpforms-container input[type=url]:focus,
.theme-darkestpurple .wpforms-container input[type=week]:focus,
.theme-darkestpurple .wpforms-container select:focus,
.theme-darkestpurple .wpforms-container textarea:focus,
.theme-darkestpurple form input[type=date]:focus,
.theme-darkestpurple form input[type=datetime]:focus,
.theme-darkestpurple form input[type=datetime-local]:focus,
.theme-darkestpurple form input[type=email]:focus,
.theme-darkestpurple form input[type=month]:focus,
.theme-darkestpurple form input[type=number]:focus,
.theme-darkestpurple form input[type=password]:focus,
.theme-darkestpurple form input[type=range]:focus,
.theme-darkestpurple form input[type=search]:focus,
.theme-darkestpurple form input[type=tel]:focus,
.theme-darkestpurple form input[type=text]:focus,
.theme-darkestpurple form input[type=time]:focus,
.theme-darkestpurple form input[type=url]:focus,
.theme-darkestpurple form input[type=week]:focus,
.theme-darkestpurple form select:focus,
.theme-darkestpurple form textarea:focus {
  background: #fff;
}

.forminator-error-message {
  color: #E84E0E;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.forminator-has_error input,
.forminator-has_error textarea {
  border: 1px solid #E84E0E;
}

.forminator-error ul {
  display: none;
}

.forminator-response-message {
  line-height: 1.5;
}

.text-columns {
  list-style: none;
}
@media all and (min-width: 48rem) {
  .text-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1.5rem;
    width: 100%;
  }
}
@media all and (min-width: 64rem) {
  .text-columns {
    margin-left: -2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .text-columns {
    margin-left: -3.75rem;
  }
}

.text-columns__column {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 48rem) {
  .text-columns__column {
    padding-left: 1.5rem;
    width: auto;
    -webkit-box-flex: 1 1 0;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
}
@media all and (min-width: 64rem) {
  .text-columns__column {
    padding-left: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .text-columns__column {
    padding-left: 3.75rem;
  }
}

.staff-list {
  list-style: none;
}
@media all and (min-width: 35.5rem) {
  .staff-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem), (min-width: 85.375rem) {
  .staff-list {
    margin-left: -2.5rem;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 64rem) and (max-width: 85.374rem) {
  .staff-list {
    margin-left: -1.5rem;
  }
}

.staff-list__item {
  margin-bottom: 1.5rem;
}
@media all and (min-width: 35.5rem) {
  .staff-list__item {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .staff-list__item {
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    width: 33.3%;
  }
}
@media all and (min-width: 99rem) {
  .staff-list__item {
    -webkit-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 64rem) and (max-width: 85.374rem) {
  .staff-list__item {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem), (min-width: 85.375rem) {
  .staff-list__item {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.contact-card--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.contact-card__card--list {
  background: #fff;
  color: #472B73;
  padding: 1.25rem;
  -webkit-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media all and (min-width: 25.75rem) {
  .contact-card__card--list {
    padding: 1.75rem;
  }
}
@media all and (min-width: 48rem) {
  .contact-card__card--list {
    padding: 2.5rem;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 64rem) and (max-width: 85.374rem) {
  .contact-card__card--list {
    padding: 1.5rem;
  }
}

.staff-list__item--transparent .contact-card__card--list {
  background: transparent !important;
}

.is-inverted .staff-list__item--transparent .contact-card__card--list {
  color: #fff;
}

.contact-card__card--list .contact-card__name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
@media all and (min-width: 25.75rem) and (max-width: 35.49rem), (min-width: 48rem) and (max-width: 63.99rem) {
  .contact-card__card--list .contact-card__name {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__card--list .contact-card__name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.contact-card__card--list .contact-card__role {
  margin-bottom: 1.5rem;
  font-weight: 400;
}
@media all and (min-width: 48rem) {
  .contact-card__card--list .contact-card__role {
    margin-bottom: 1.875rem;
  }
}
.contact-card__card--list .contact-card__role,
.contact-card__card--list .contact-card__contact-info {
  font-size: 0.875rem;
}
@media all and (min-width: 25.75rem) and (max-width: 35.49rem), (min-width: 48rem) and (max-width: 63.99rem) {
  .contact-card__card--list .contact-card__role,
  .contact-card__card--list .contact-card__contact-info {
    font-size: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .contact-card__card--list .contact-card__role,
  .contact-card__card--list .contact-card__contact-info {
    font-size: 1rem;
  }
}
.contact-card__card--list .contact-card__contact-info {
  text-overflow: ellipsis;
  max-width: 100%;
  font-weight: 400;
  overflow: hidden;
}
.contact-card__card--list .contact-card__contact-info--email {
  color: #E84E0E;
}
.contact-card__card--list .contact-card__contact-info--tel {
  color: #472B73;
}

.gallery {
  font-size: 0;
  list-style: none;
}
@media all and (min-width: 23.376rem) {
  .gallery {
    margin-left: -0.5rem;
  }
}
@media all and (min-width: 35.5rem) {
  .gallery {
    margin-left: -1rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem), (min-width: 85.375rem) {
  .gallery {
    margin-left: -35px;
  }
}

.gallery__item {
  display: inline-block;
}
@media all and (min-width: 23.376rem) {
  .gallery__item {
    padding: 0 0 0.5rem 0.5rem;
    width: 50%;
  }
}
@media all and (min-width: 35.5rem) {
  .gallery__item {
    padding: 0 0 1rem 1rem;
  }
}
@media all and (min-width: 48rem) and (max-width: 63.99rem), (min-width: 85.375rem) {
  .gallery__item {
    padding: 0 0 35px 35px;
  }
}
@media all and (min-width: 64rem) {
  .gallery__item {
    width: 33.3%;
  }
}
.gallery__item img {
  display: block;
}

.percentages-list {
  list-style: none;
}

.percentages-list__item {
  margin-bottom: 1.25rem;
}
@media all and (min-width: 85.375rem) {
  .percentages-list__item {
    margin-bottom: 2.5rem;
  }
}
.percentages-list__item:last-child {
  margin-bottom: 0;
}

.percentages-list__label {
  font-family: "Roboto";
  margin-bottom: 0.5rem;
}
@media all and (max-width: 47.95rem) {
  .percentages-list__label {
    font-size: 1rem;
  }
}
@media all and (min-width: 85.375rem) {
  .percentages-list__label {
    margin-bottom: 0.62rem;
  }
}

.percentage-progress {
  background: #fff;
  border-radius: 0.625rem;
  display: block;
  overflow: hidden;
  width: 100%;
}

.percentage-progress__bar {
  background: rgba(0, 0, 0, 0.5);
  height: 2rem;
  position: relative;
  transform: translateX(-100%);
}
@media all and (min-width: 35.5rem) {
  .percentage-progress__bar {
    height: 2.5rem;
  }
}
@media all and (min-width: 48rem) {
  .percentage-progress__bar {
    height: 3.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .percentage-progress__bar {
    height: 5.625rem;
  }
}
.percentage-progress__bar.in-view {
  animation: progressBar 1.5s ease-out forwards;
}

.percentage-progress__value {
  color: #fff;
  margin-bottom: 0;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media all and (min-width: 35.5rem) {
  .percentage-progress__value {
    right: 0.75rem;
  }
}
@media all and (min-width: 48rem) {
  .percentage-progress__value {
    right: 1.25rem;
  }
}
@media all and (min-width: 85.375rem) {
  .percentage-progress__value {
    right: 1.875rem;
  }
}

@keyframes progressBar {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.logos-list {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-left: -1.25rem;
}
@media all and (min-width: 99rem) {
  .logos-list {
    margin-left: -3.75rem;
  }
}

.logos-list__item {
  align-items: center;
  -webkit-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0 0 0 1.25rem;
}
@media all and (min-width: 35.5rem) {
  .logos-list__item {
    -webkit-box-flex: 0 0 33.3%;
    -webkit-flex: 0 0 33.3%;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
  }
}
@media all and (min-width: 48rem) {
  .logos-list__item {
    -webkit-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}
@media all and (min-width: 64rem) {
  .logos-list__item {
    -webkit-box-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
}
@media all and (min-width: 85.375rem) {
  .logos-list__item {
    -webkit-box-flex: 0 0 16.6%;
    -webkit-flex: 0 0 16.6%;
    -ms-flex: 0 0 16.6%;
    flex: 0 0 16.6%;
  }
}
@media all and (min-width: 99rem) {
  .logos-list__item {
    padding: 0 0 0 3.75rem;
  }
}

.logos-list__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: centeR;
  height: 100%;
  justify-content: center;
  padding: 1.25rem;
  width: 100%;
}
.logos-list__wrapper img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.acf-map {
  aspect-ratio: 1;
}
@media all and (min-width: 48rem) {
  .acf-map {
    aspect-ratio: 1.5;
  }
}
@media all and (min-width: 64rem) {
  .acf-map {
    aspect-ratio: 1.77;
  }
}
@media all and (min-width: 85.375rem) {
  .acf-map {
    aspect-ratio: auto;
    height: 80vh;
    min-height: 400px;
  }
}
@media all and (min-width: 99rem) {
  .acf-map {
    height: 34vw;
  }
}

.layout-ucs-map {
  padding: 0 !important;
}

.gm-style .gm-style-iw-c {
  border-radius: 0 !important;
  padding: 2.25rem 4rem 1.5rem 2.25rem !important;
}
.gm-style .gm-style-iw-c .gm-style-iw-chr {
  position: absolute;
  right: 0;
  top: 0;
}
.gm-style .gm-style-iw-c h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.gm-style .gm-style-iw-c p {
  font-size: 1rem;
  line-height: 1.5;
}

@media all and (min-width: 99rem) {
  .case-hero,
  .job-hero {
    padding-top: calc(5.5rem + var(--main-menu-height)) !important;
  }
}

.case-hero__meta,
.job-hero__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 48rem) {
  .case-hero__meta,
  .job-hero__meta {
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .case-hero__meta,
  .job-hero__meta {
    margin-bottom: 3.125rem;
  }
}
@media all and (min-width: 99rem) {
  .case-hero__meta,
  .job-hero__meta {
    margin-bottom: 5.5rem;
  }
}

.job-hero__terms,
.case-hero__terms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 1.5rem;
}
@media all and (min-width: 85.375rem) {
  .job-hero__terms,
  .case-hero__terms {
    padding-left: 3.125rem;
  }
}

.job-hero__term,
.case-hero__term {
  font-weight: 500;
}
@media all and (min-width: 85.375rem) {
  .job-hero__term,
  .case-hero__term {
    font-size: 1.125rem;
  }
}
.job-hero__term::after,
.case-hero__term::after {
  content: "/";
  margin: 0 0.75rem;
}
.job-hero__term:last-child::after,
.case-hero__term:last-child::after {
  content: none;
}

.case-hero__client,
.job-hero__label {
  background: #472B73;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.375rem 0.75rem 1.875rem;
  position: relative;
}
@media all and (min-width: 48rem) {
  .case-hero__client,
  .job-hero__label {
    padding-left: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .case-hero__client,
  .job-hero__label {
    padding: 0.75rem 1.375rem;
  }
}
@media all and (min-width: 85.375rem) {
  .case-hero__client,
  .job-hero__label {
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 1.375rem;
    line-height: normal;
    padding: 1.25rem 1.625rem;
  }
}

@media all and (min-width: 64rem) {
  .case-hero__content {
    max-width: 100%;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media all and (min-width: 64rem) and (max-width: 98.9rem) {
  .case-hero__heading,
  .job-hero__heading {
    font-size: 2.75rem;
  }
}

@media all and (min-width: 64rem) {
  .case-hero__introduction,
  .job-hero__introdution {
    margin-left: auto;
    max-width: calc(800px + 3.25rem);
    padding: 0 3.25rem;
    width: 50%;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .case-hero__introduction,
  .job-hero__introdution {
    max-width: calc(800px + 5rem);
    -webkit-box-flex: 0 0 60%;
    -webkit-flex: 0 0 60%;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    padding: 0 5rem;
  }
}
@media all and (min-width: 99rem) {
  .case-hero__introduction,
  .job-hero__introdution {
    max-width: calc(800px + 10.5rem);
    padding: 0 100px 0 10.5rem;
    -webkit-box-flex: 0 0 calc(800px + 10.5rem);
    -webkit-flex: 0 0 calc(800px + 10.5rem);
    -ms-flex: 0 0 calc(800px + 10.5rem);
    flex: 0 0 calc(800px + 10.5rem);
  }
}

.case-hero__preamble p {
  font-weight: 400;
  line-height: 196%;
}

.case-hero__img {
  overflow: hidden;
  position: relative;
}
@media all and (min-width: 64rem) {
  .case-hero__img {
    max-width: 50%;
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .case-hero__img {
    -webkit-box-flex: 0 0 40%;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media all and (min-width: 99rem) {
  .case-hero__img {
    max-width: calc(100% - 800px - 10.5rem);
    width: calc(100% - 800px - 10.5rem);
    -webkit-box-flex: 0 0 calc(100% - 800px - 10.5rem);
    -webkit-flex: 0 0 calc(100% - 800px - 10.5rem);
    -ms-flex: 0 0 calc(100% - 800px - 10.5rem);
    flex: 0 0 calc(100% - 800px - 10.5rem);
  }
}
.case-hero__img::after {
  content: "";
  display: block;
  padding-bottom: 66%;
}
.case-hero__img img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.case-hero__img--cover img {
  object-fit: cover;
}

.case-hero__img--contain img {
  object-fit: contain;
}

.case-hero__links,
.job-hero__links {
  list-style: none;
  position: absolute;
  right: 0;
  text-align: right;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media all and (min-width: 64rem) {
  .case-hero__links.is-sticky {
    position: fixed;
    top: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 1;
  }
}

.case-hero__link-item,
.job-hero__link-item {
  margin-bottom: 0.75rem;
}

.case-hero__link,
.job-hero__link {
  display: inline-block;
}
@media all and (min-width: 64rem) and (max-width: 85.374rem) {
  .case-hero__link,
  .job-hero__link {
    font-size: 1rem;
  }
}
.case-hero__link strong,
.job-hero__link strong {
  font-weight: inherit;
  opacity: 0.5;
}

@media all and (min-width: 48rem) {
  .case-categories__container {
    display: grid;
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 85.375rem) {
  .case-categories__container {
    grid-column-gap: 5rem;
  }
}

.case-categories__category {
  margin-bottom: 1.5rem;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media all and (min-width: 48rem) {
  .case-categories__category {
    margin-bottom: 2.5rem;
  }
}
@media all and (min-width: 85.375rem) {
  .case-categories__category {
    margin-bottom: 4.5rem;
  }
}

.case-categories__link-list {
  list-style: none;
  padding: 0;
}

.case-categories__link-list-item {
  line-height: 150%;
}

.case-categories__link {
  color: #CA9D9D;
  text-decoration: underline;
}
@media all and (min-width: 64rem) {
  .case-categories__link {
    font-size: 1.25rem;
  }
}

@media all and (min-width: 48rem) {
  .blog-intro__preamble {
    margin-bottom: 3.125rem;
  }
}
@media all and (min-width: 85.375rem) {
  .blog-intro__preamble {
    margin-bottom: 4.5rem;
  }
}

.blog-list {
  font-size: 0;
}
@media all and (min-width: 48rem) {
  .blog-list {
    margin-left: -2.5rem;
  }
}

.blog-list__item {
  opacity: 0;
  width: 100%;
}
@media all and (min-width: 48rem) {
  .blog-list__item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
}
@media all and (min-width: 99rem) {
  .blog-list__item {
    width: 33.3%;
  }
}

.blog-list__item-link {
  display: block;
  font: inherit;
  color: inherit;
  text-decoration: none;
}
@media all and (min-width: 48rem) {
  .blog-list__item-link {
    margin: 0 0 2.5rem 2.5rem;
  }
}

.blog-list__excerpt {
  background: #fff;
  padding: 1.25rem 1.5rem;
  position: relative;
}
@media all and (min-width: 25.75rem) {
  .blog-list__excerpt {
    padding: 1.5rem 1.75rem;
  }
}
@media all and (min-width: 35.5rem) and (max-width: 47.95rem), (min-width: 85.375rem) {
  .blog-list__excerpt {
    padding: 2.5rem;
  }
}

.blog-list__post-meta {
  font-size: 1rem;
  color: #472B73;
  opacity: 0.5;
  line-height: 1.5;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #C1A7E2;
}
@media all and (min-width: 64rem) {
  .blog-list__post-meta {
    font-size: 1.25rem;
  }
}

.blog-list__heading {
  margin-bottom: 0.625rem;
}

.blog-list__summary {
  font-size: 1rem;
  line-height: 1.5;
}
@media all and (min-width: 64rem) {
  .blog-list__summary {
    font-size: 1.25rem;
  }
}

.layout-blog__load-more {
  text-align: center;
  margin: 2.5rem 0 0 0;
}
@media all and (min-width: 64rem) {
  .layout-blog__load-more {
    margin-top: 3.125rem;
  }
}

@media all and (min-width: 85.375rem) and (max-width: 104rem) {
  .blog-post__title {
    font-size: 3.43rem;
  }
}

@media all and (min-width: 85.375rem) {
  .blog-post__preamble {
    margin-bottom: 0;
  }
}
.blog-post__preamble p:last-child {
  margin: 0;
}

@media all and (min-width: 85.375rem) {
  .blog-post__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    margin-left: -3.125rem;
    margin-bottom: 3.125rem;
  }
}
@media all and (min-width: 99rem) {
  .blog-post__header {
    margin-left: -4.5rem;
  }
}
.blog-post__header > * {
  -webkit-box-flex: 1 1 0;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
@media all and (min-width: 85.375rem) {
  .blog-post__header > * {
    padding-left: 3.125rem;
  }
}
@media all and (min-width: 99rem) {
  .blog-post__header > * {
    padding-left: 4.5rem;
  }
}

.blog-post__featured-image {
  margin-bottom: 3.125rem;
}
@media all and (min-width: 85.375rem) {
  .blog-post__featured-image {
    margin-bottom: 0;
  }
}

@media all and (min-width: 85.375rem) {
  .blog-post__content {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
  }
}
@media all and (min-width: 99rem) {
  .blog-post__content {
    -webkit-column-gap: 4.5rem;
    -moz-column-gap: 4.5rem;
    column-gap: 4.5rem;
  }
}

.blog-post__footer {
  margin-top: 3.125rem;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #472B73;
}

@media all and (min-width: 25.75rem) {
  .blog-post__meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}
@media all and (min-width: 85.375rem) {
  .blog-post__meta {
    font-size: 1.25rem;
  }
}

.blog-post__date,
.blog-post__author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 2.5rem;
  padding: 0.25rem 0;
}
@media all and (min-width: 25.75rem) {
  .blog-post__date,
  .blog-post__author {
    padding: 0;
  }
}
.blog-post__date::before,
.blog-post__author::before {
  margin-right: 0.75rem;
}

.blog-post__date::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-style: normal;
  content: "\f017";
}

.blog-post__author::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  content: "\f2bd";
}

.gutenberg-editor ol, .gutenberg-editor ul {
  padding-left: 1.325em;
  line-height: inherit;
  margin-bottom: 0.75rem;
}
.gutenberg-editor ol li, .gutenberg-editor ul li {
  margin-bottom: 0.75rem;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

@media all and (min-width: 25.75rem) {
  .nav-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1rem;
  }
}

.nav-links > :first-child {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 25.75rem) {
  .nav-links > :first-child {
    margin-bottom: 0;
  }
}

@media all and (min-width: 25.75rem) {
  .nav-links > :nth-child(2) {
    margin-left: auto;
    text-align: right;
  }
}

@media all and (min-width: 25.75rem) {
  .nav-previous,
  .nav-next {
    padding-left: 1rem;
  }
}
.nav-previous a,
.nav-next a {
  display: block;
  color: #fff;
  width: 100%;
  text-decoration: none;
}

@media all and (min-width: 25.75rem) {
  .nav-next:first-child:last-child {
    margin-left: auto;
    text-align: right;
  }
}

.posts-nav__button {
  width: 100%;
  margin-bottom: 1rem;
  flex: 0 0 100%;
  white-space: nowrap;
}
@media all and (min-width: 25.75rem) and (max-width: 35.49rem) {
  .posts-nav__button {
    font-size: 1rem;
  }
}
@media all and (min-width: 25.75rem) {
  .posts-nav__button {
    width: auto;
    margin-bottom: 1.5rem;
  }
}
@media all and (min-width: 64rem) {
  .posts-nav__button {
    margin-bottom: 3.125rem;
    font-size: 2rem;
  }
}

.posts-nav__title {
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 700;
  display: block;
}
@media all and (min-width: 64rem) {
  .posts-nav__title {
    font-size: 1.25rem;
  }
}

.blog-list--matchheight {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.blog-list--matchheight li {
  margin-bottom: 2.5rem;
}
.blog-list--matchheight a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.blog-list--matchheight a .blog-list__excerpt {
  -webkit-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.is-showing-items .blog-list__item {
  opacity: 1;
}

@media all and (min-width: 85.375rem) {
  .hero--job {
    max-height: 100vh;
    min-height: 600px;
  }
}
@media all and (min-width: 99rem) {
  .hero--job {
    max-height: calc(71rem + var(--main-menu-height));
  }
}
@media all and (min-width: 99rem) {
  .hero--job .hero__container {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    bottom: 10rem;
    top: auto;
  }
}

.job-filters {
  margin-bottom: 1.5rem;
}
@media all and (min-width: 99rem) {
  .job-filters {
    margin-bottom: 3.75rem;
  }
}

.job-list {
  list-style: none;
}

.job-list__item {
  margin-bottom: 1.25rem;
}

.job-list__link {
  background: #fff;
  display: block;
  padding: 1.25rem;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
}
@media all and (min-width: 48rem) {
  .job-list__link {
    padding: 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .job-list__link {
    padding: 1.75rem 8rem 1.75rem 1.75rem;
  }
}
@media all and (min-width: 85.375rem) {
  .job-list__link {
    padding: 2.5rem 15.5rem 2.5rem 2.5rem;
  }
}
@media all and (min-width: 64rem) {
  .job-list__link::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-style: normal;
    content: "\f061";
    display: block;
    font-size: 2rem;
    position: absolute;
    right: 2.5rem;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
  }
}
@media all and (min-width: 85.375rem) {
  .job-list__link::after {
    font-size: 5rem;
    right: 4.38rem;
  }
}
@media all and (pointer: fine) {
  .job-list__link:hover {
    transform: scale(1.05);
  }
}

.job-list__meta {
  border-bottom: 1px solid;
  font-size: 0.875rem;
  list-style: none;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
@media all and (min-width: 35.5rem) {
  .job-list__meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 85.375rem) {
  .job-list__meta {
    font-size: 1.25rem;
    margin-bottom: 1.88rem;
    padding-bottom: 1.88rem;
  }
}

.job-list__meta-item {
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}
@media all and (min-width: 35.5rem) {
  .job-list__meta-item {
    margin: 0 1.5rem 0 0;
  }
}
@media all and (min-width: 85.375rem) {
  .job-list__meta-item {
    margin-right: 2.5rem;
    padding-left: 1.75rem;
  }
}
.job-list__meta-item:last-child {
  margin: 0;
}
.job-list__meta-item::before {
  font-size: 0.8em;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
}

.job-list__meta-item--profession::before {
  content: "\f508";
}

.job-list__meta-item--location::before {
  content: "\f3c5";
  margin-top: -1px;
}

.job-list__meta-item-value::after {
  content: "\f111";
  font-size: 0.25rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  font-style: normal;
  font-weight: 900;
  margin: 0 0.5rem 0 0.75rem;
  position: relative;
  top: -0.2rem;
}
@media all and (min-width: 85.375rem) {
  .job-list__meta-item-value::after {
    font-size: 0.375rem;
    margin: 0 0.425rem 0 0.62rem;
    top: -0.3rem;
  }
}
.job-list__meta-item-value:last-child::after {
  content: none;
}

.job-list__title {
  margin: 0;
}

.job-hero {
  position: relative;
}
@media all and (min-width: 99rem) {
  .job-hero {
    padding-top: calc(5.5rem + var(--main-menu-height)) !important;
  }
}

.job-hero__introduction {
  max-width: calc(75rem + 25%);
}
@media all and (min-width: 48rem) {
  .job-hero__introduction {
    padding-right: 25%;
  }
}
.job-hero__links {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media all and (max-width: 47.95rem) {
  .job-hero__links {
    position: relative;
    text-align: left;
  }
}
@media all and (min-width: 48rem) {
  .job-hero__links {
    top: calc(2.5rem + var(--main-menu-height));
  }
}
@media all and (min-width: 64rem) {
  .job-hero__links {
    top: calc(3.75rem + var(--main-menu-height));
  }
}
@media all and (min-width: 85.375rem) {
  .job-hero__links {
    top: calc(5rem + var(--main-menu-height));
  }
}
@media all and (min-width: 99rem) {
  .job-hero__links {
    top: calc(5.5rem + var(--main-menu-height));
  }
}

.job-filters {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 35.5rem) {
  .job-filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 99rem) {
  .job-filters {
    margin: 3.75rem 0;
  }
}
.job-filters .facetwp-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media all and (min-width: 48rem) {
  .job-filters .facetwp-reset {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.job-filters .facetwp-facet {
  margin: 0;
}
@media all and (min-width: 35.5rem) {
  .job-filters .facetwp-facet {
    -webkit-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 48rem) {
  .job-filters .facetwp-facet {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
}
.job-filters .facetwp-counter {
  display: none;
}
.job-filters .facetwp-reset,
.job-filters .facetwp-checkbox {
  background: none !important;
  color: inherit;
  font-family: "Roboto";
  font-size: 1rem;
  height: 1.25rem;
  line-height: 1.25rem;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 3rem;
  position: relative;
  text-align: left;
  top: 0;
}
@media all and (min-width: 48rem) {
  .job-filters .facetwp-reset,
  .job-filters .facetwp-checkbox {
    padding-right: 1.25rem;
  }
}
@media all and (min-width: 99rem) {
  .job-filters .facetwp-reset,
  .job-filters .facetwp-checkbox {
    font-size: 1.25rem;
    padding-right: 2.5rem;
  }
}
.job-filters .facetwp-reset::before,
.job-filters .facetwp-checkbox::before {
  background: #000;
  border-radius: 1.25rem;
  content: "";
  display: block;
  height: 1.25rem;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 2.5rem;
}
.job-filters .facetwp-reset::after,
.job-filters .facetwp-checkbox::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: calc(1.25rem - 4px);
  left: 2px;
  opacity: 0.4;
  position: absolute;
  top: 2px;
  width: calc(1.25rem - 4px);
}
.job-filters .facetwp-facet--active::before,
.job-filters .facetwp-facet--active::after,
.job-filters .facetwp-checkbox.checked::before,
.job-filters .facetwp-checkbox.checked::after {
  content: "";
  opacity: 1;
}
.job-filters .facetwp-facet--active::after,
.job-filters .facetwp-checkbox.checked::after {
  left: calc(1.25rem + 2px);
}

.facetwp-template.is-loading {
  opacity: 0.5;
  position: relative;
}
.facetwp-template.is-loading::after {
  animation: spin 1s linear infinite;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #007BFF;
  content: "";
  height: 40px;
  left: 50%;
  margin: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
}

/* Keyframes for spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style.css.map */
