@charset "UTF-8";
html,
body {
  height: 100%;
  position: relative;
}

body {
  color: var(--color-blue);
  background: var(--color-white);
  font-family: "itc-avant-garde-gothic-pro", Helvetica, Arial, sans-serif, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 100%;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  vertical-align: baseline;
  background: none;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img,
embed,
object,
video,
iframe,
svg {
  max-width: 100%;
}

video,
iframe,
img,
svg {
  height: auto;
  width: auto;
}

.embed {
  position: relative;
  padding: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio 56.25% */ /* 4:3 aspect ratio its padding-bottom: 75% */
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}
.embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-text {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .video-text {
    font-size: 24px;
  }
}

.video-section {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.video-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.video-wrapper video {
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  height: 100vh;
  width: 100%;
}

.video-img-cover {
  position: revert;
  aspect-ratio: 16/9;
}
.video-img-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.bg-opacity {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.absolute-100 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-bg-absolute-100 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.alignleft {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
  margin-top: 5px;
}

.alignright {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
  margin-top: 5px;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 5px;
}

img.alignnone {
  margin: 0;
}

img.alignleft,
img.alignright {
  max-width: 50%;
}

figcaption {
  font-size: 0.75em;
  margin-top: 2px;
}

.table {
  display: table;
  height: 90%;
  width: 100%;
  position: relative;
  z-index: 9;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
hr.hr-8-white {
  height: 8px;
  border-top: 8px solid var(--color-white);
}

/* LINKS
--------------------------------------------------------*/
a {
  color: var(--color-blue);
  text-decoration: none;
}
a:hover {
  color: var(--color-blue);
}

.arrow-list {
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  margin-top: -1px;
  margin-left: 4px;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
  transition: transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
  transition: transform 0.2s cubic-bezier(0.5, 0, 0.1, 1), -webkit-transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
}

a:hover .arrow-list {
  -webkit-transform: translate3d(4px, 0, 0);
  transform: translate3d(4px, 0, 0);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .text-mask {
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(240deg, #002855 0%, #D986BA 100%);
    color: transparent;
  }
  .text-mask.accent-color {
    background-image: linear-gradient(45deg, #FFD100 0%, #D986BA 100%, #FFD100 100%);
    color: transparent;
  }
}
/* SECTIONS
--------------------------------------------------------*/
.site-width,
.site-width--w {
  max-width: 1512px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .site-width,
  .site-width--w {
    padding: 0 48px;
  }
}

.site-width--w {
  max-width: 1632px;
}

.site-width--auto {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .site-width--auto {
    padding: 0 48px;
  }
}

.section-wrapper {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px 0;
}
.section-wrapper:before, .section-wrapper:after {
  content: " ";
  display: table;
}
.section-wrapper:after {
  clear: both;
}
.section-wrapper + .section-wrapper {
  padding-top: 0;
}
.section-wrapper + [class*=w-bg-],
.section-wrapper + .section-fullcover {
  padding-top: 32px;
}

[class*=w-bg-] + .section-wrapper {
  padding-top: 32px;
}

.article > .section-fullcover {
  margin: 32px 0;
}

[class*=w-bg-] > .section-text-block,
.site-width > .section-text-block {
  padding-top: 0;
}

.anchor + .section-wrapper {
  padding-top: 0;
}
.anchor + [class*=w-bg-] {
  padding-top: 32px;
}

@media (min-width: 768px) {
  .section-wrapper {
    padding: 64px 0;
  }
  .section-wrapper + .section-wrapper {
    padding-top: 0;
  }
  .section-wrapper + [class*=w-bg-] {
    padding-top: 64px;
  }
  [class*=w-bg-] + .section-wrapper {
    padding-top: 64px;
  }
  .anchor + .section-wrapper {
    padding-top: 0;
  }
  .anchor + [class*=w-bg-] {
    padding-top: 64px;
  }
}
body.no-hero #main-content + .section-wrapper {
  margin-top: 62px;
}
body.no-hero main > .section-wrapper:first-child {
  margin-top: 62px;
}
@media (min-width: 768px) {
  body.no-hero #main-content + .section-wrapper {
    margin-top: 100px;
  }
  body.no-hero main > .section-wrapper:first-child {
    margin-top: 100px;
  }
}

.anchor-sections {
  display: block;
  position: relative;
  top: -60px;
  visibility: hidden;
}
@media (min-width: 1200px) {
  .anchor-sections {
    top: -100px;
  }
}

.section-footer {
  overflow: hidden;
}
.section-footer h3 {
  font-size: 18px;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .section-footer h3 {
    font-size: 21px;
  }
}
.section-footer .copyright {
  font-size: 14px;
  padding-block: 32px 0;
}
.section-footer .site-width {
  position: relative;
  display: flex;
  flex-direction: column;
}
.section-footer .footer-pipes {
  position: absolute;
  top: -64px;
  right: 48px;
  z-index: 0;
  height: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .section-footer .footer-pipes {
    display: block;
  }
}

.w-bg-fade-in-light-yellow {
  padding-top: 0 !important;
  background-color: rgb(255, 255, 255);
}

@supports (animation-timeline: auto) {
  .w-bg-fade-in-light-yellow {
    padding-top: 32px !important;
    background-color: rgb(255, 255, 255);
    animation: fade-in-bg linear forwards;
    animation-timeline: view();
    animation-range: entry 50vh;
  }
  @media (min-width: 768px) {
    .w-bg-fade-in-light-yellow {
      padding-top: 64px !important;
    }
  }
}
@keyframes fade-in-bg {
  to {
    background-color: rgb(244, 235, 190);
  }
}
.footer-nav {
  display: flex;
  flex-flow: row wrap;
  font-size: 18px;
  font-family: proxima-nova, sans-serif;
  margin: 0;
  margin-bottom: 32px;
  list-style: none;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .footer-nav {
    font-size: 21px;
  }
}
.footer-nav li {
  margin-right: 24px;
}
.footer-nav a {
  color: var(--color-white);
  display: inline-block;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.footer-text {
  max-width: 696px;
}

.footer-logo img {
  max-width: 150px;
}
@media (min-width: 768px) {
  .footer-logo img {
    max-width: 220px;
  }
}

.footer-logos img {
  width: 100%;
  max-width: 648px;
}

.initiator-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 12px;
  max-width: 960px;
  padding-block: 0 48px;
}
.initiator-list li {
  margin: 2px 0;
  margin-right: 8px;
}
.initiator-list li:first-child {
  color: var(--color-white);
}
.initiator-list li:last-child a:after {
  content: "";
}
@media (min-width: 768px) {
  .initiator-list li {
    margin: 4px 0;
    margin-right: 8px;
  }
}
.initiator-list a {
  color: var(--color-yellow) !important;
}
.initiator-list a:hover {
  text-decoration: underline;
}
.initiator-list a:after {
  content: ", ";
}

.section-hero {
  min-height: 600px;
  padding: 100px 0 48px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .section-hero {
    padding-top: 160px;
  }
}
.section-hero.grayscale-bg-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
  pointer-events: none;
}
.section-hero.min-height-100svh {
  height: 100svh;
  padding: 100px 0;
}
@media (min-width: 768px) {
  .section-hero {
    min-height: 892px;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero-img picture,
.hero-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (min-width: 600px) {
  .hero-phone-img {
    display: none;
  }
}

.hero-desktop-img {
  display: none;
}
@media (min-width: 600px) {
  .hero-desktop-img {
    display: block;
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-content--box {
  padding: 24px;
  max-width: 460px;
  justify-content: center;
  position: relative;
}
.hero-content--box .arrow-down {
  display: flex;
  margin-top: 24px;
  justify-content: center;
}
.hero-content--box .arrow-down svg {
  width: 26px;
}
@media (min-width: 768px) {
  .hero-content--box {
    padding: 48px;
    max-width: 460px;
  }
  .hero-content--box .arrow-down {
    margin-top: 32px;
  }
  .hero-content--box .arrow-down svg {
    width: 40px;
  }
}

.box-logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .box-logo {
    padding: 48px;
  }
}

@keyframes down-arrow {
  0%, 100% {
    opacity: 0.85;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 3px, 0);
  }
}
.section-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 42px 16px 16px;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
}
.section-down .arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
}
.section-down .arrow-down span {
  margin-bottom: 12px;
  text-align: center;
}
.section-down .arrow-down svg {
  animation: down-arrow 1s ease-in-out infinite;
}
@media (min-width: 768px) {
  .section-down {
    padding: 42px 16px;
  }
}

.hero-gamed-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 60px;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-gamed-btn {
    right: 48px;
    bottom: 42px;
    width: 92px;
  }
}
body.ga-med .hero-gamed-btn {
  display: none;
}

.header-area {
  position: absolute;
  width: 100%;
  height: 80px;
}
@media (min-width: 768px) {
  .header-area {
    height: 160px;
  }
}

.header-area--nav {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 10;
  display: flex;
  justify-items: center;
  align-items: center;
  transition: all 0.2s ease-out;
  font-size: 16px;
}
@media (min-width: 768px) {
  .header-area--nav {
    height: 160px;
    font-size: 18px;
  }
}
.header-area--nav.scroll {
  height: 60px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .header-area--nav.scroll {
    height: 100px;
  }
}
.header-area--nav .navbar {
  display: flex;
  position: relative;
}

.header-logo {
  position: relative;
  z-index: 10;
}
.header-logo svg {
  width: 100px;
}
@media (min-width: 768px) {
  .header-logo svg {
    width: 136px;
  }
}
.scroll .header-logo svg path, body.has-active-menu .header-logo svg path {
  fill: #002855;
}
@media (min-width: 768px) {
  body.has-active-menu .header-logo svg path {
    fill: #ffffff;
  }
}

@media (min-width: 768px) {
  body.has-active-menu .header-area--nav.scroll .header-logo svg path {
    fill: #002855;
  }
}
.header-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .header-button {
    display: block;
  }
}
.scroll .header-button .btn {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.scroll .header-button svg path {
  fill: #002855;
}

.header-menu-trigger {
  display: flex;
  margin-left: auto;
  align-items: center;
  list-style: none;
  position: relative;
  z-index: 2;
}
.header-menu-trigger svg {
  width: 31px;
}
@media (min-width: 768px) {
  .header-menu-trigger svg {
    width: 40px;
  }
}
.scroll .header-menu-trigger svg rect,
.header-menu-trigger .is-open svg rect {
  fill: #002855;
}

.menu-toggler {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.menu-toggler.is-open svg rect {
  transition: transform 0.5s ease, opacity 0.2s ease;
  opacity: 0;
}
.menu-toggler.is-open svg rect.close {
  transform: translateX(-8px);
  width: 40px;
  opacity: 1;
}
.menu-toggler.is-open .menu-text {
  display: none;
}
.menu-toggler.is-open .menu-text-close {
  display: inline;
  color: var(--color-blue);
}
.menu-toggler .menu-text,
.menu-toggler .menu-text-close {
  color: var(--color-white);
  margin-right: 10px;
}
.scroll .menu-toggler .menu-text,
.scroll .menu-toggler .menu-text-close {
  color: var(--color-blue);
}
.menu-toggler .menu-text-close {
  display: none;
}

.header-menu--dropdown {
  display: none;
  background: var(--color-white);
  width: auto;
  min-width: 100vw;
  height: calc(100vh + 16px);
  position: absolute;
  top: -16px;
  right: -16px;
  list-style: none;
  z-index: 1;
  transition: transform 0.5s ease;
  padding: 140px 16px;
  font-family: proxima-nova, sans-serif, sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  font-size: 20px;
}
@media (min-width: 768px) {
  .header-menu--dropdown {
    left: auto;
    right: -48px;
    top: -48px;
    min-width: 0;
    width: 490px;
    height: auto;
    padding: 140px 48px 100px;
    font-size: 24px;
  }
}
.header-menu--dropdown.is-open {
  display: block;
}
.scroll .header-menu--dropdown {
  transition: transform 0.5s ease;
  top: -7px;
}
@media (min-width: 768px) {
  .scroll .header-menu--dropdown {
    top: -18px;
  }
}
.header-menu--dropdown li {
  border-top: 2px solid #D9DFE6;
}
.header-menu--dropdown li:first-child {
  border-top: none;
}
.header-menu--dropdown li:first-child a {
  padding-top: 0;
}
.header-menu--dropdown li.nav-btn {
  border-top: none;
  margin-top: 32px;
}
.header-menu--dropdown li.active .active-arrow, .header-menu--dropdown li:hover .active-arrow {
  margin-right: 8px;
  width: 18px;
  height: 16px;
}
.header-menu--dropdown a {
  padding: 12px 0;
  display: flex;
  align-items: center;
}
.header-menu--dropdown .active-arrow {
  display: flex;
  width: 0;
  height: 0;
  transition: all 0.25s ease;
}
.header-menu--dropdown a.btn {
  display: inline-block;
  padding: 12px 16px;
  font-size: 20px;
}
.header-menu--dropdown a.btn svg {
  width: 24px;
}
.header-menu--dropdown a.btn svg path {
  fill: #002855;
}
@media (min-width: 768px) {
  .header-menu--dropdown a.btn {
    font-size: 24px;
  }
}

body.has-active-menu {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.has-active-menu {
    overflow: visible;
  }
}

.module {
  display: grid;
}
.module figure {
  overflow: hidden;
}
.module figure > img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.module h3, .module h4 {
  margin-top: 0;
}
.module .embed {
  margin-bottom: 0;
}

.w-border-6 {
  border: 6px solid var(--cool-gray);
}

.module-inner {
  padding: 24px;
}

.plus-minus--list,
.border-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plus-minus--list li,
.border-list li {
  display: flex;
  align-items: start;
  padding-block: 6px;
}
.plus-minus--list li:first-child,
.border-list li:first-child {
  padding-block: 0 6px;
}
.plus-minus--list .plus-minus,
.border-list .plus-minus {
  display: inline-block;
  margin-top: 3px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.plus-minus--list svg,
.plus-minus--list img,
.border-list svg,
.border-list img {
  width: 16px;
}

.border-list {
  margin-bottom: 32px;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .border-list {
    font-size: 18px;
  }
}
.border-list li {
  border-bottom: 1px solid var(--cool-gray);
  padding-block: 12px;
}
.border-list li:first-child {
  padding-block: 0 12px;
}

@keyframes textSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.section-text-slide {
  overflow: hidden;
  position: relative;
}
.section-text-slide .section-text-slide--content {
  width: 300%;
  display: flex;
}
.section-text-slide svg {
  width: 150%;
  height: 100%;
  animation: textSlide 10s linear infinite;
}
@media (min-width: 768px) {
  .section-text-slide .section-text-slide--content {
    width: 200%;
    display: flex;
  }
  .section-text-slide svg {
    width: 100%;
    height: 100%;
    animation: textSlide 15s linear infinite;
  }
}

.text-box-content {
  max-width: 608px;
  margin: 0 auto;
  padding: 16px;
}
.text-box-content .title-l {
  margin-top: 0;
  font-size: 26px;
}
@media (min-width: 768px) {
  .text-box-content .title-l {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .text-box-content .title-l {
    font-size: 40px;
  }
}
@media (min-width: 900px) {
  .text-box-content {
    padding: 32px;
  }
}
.text-box-content .arrow-list img {
  width: 18px;
}
@media (min-width: 1200px) {
  .text-box-content .arrow-list img {
    width: 32px;
  }
}
.grid-stack .text-box-content {
  margin: 0;
  padding-block: 24px 32px;
}
.grid-stack .text-box-content .title-m {
  margin-bottom: 0.5rem;
}
.grid-stack .text-box-content p {
  font-size: 20px;
}
.grid-stack .text-box-content svg {
  width: 21px;
}

.grid-stack {
  position: relative;
}
.grid-stack .bg-opacity {
  z-index: -1;
  display: block;
  transition: all 0.25s ease;
  opacity: 0.5;
}
.grid-stack:hover .bg-opacity {
  opacity: 15;
}

.border-box-grid {
  padding: 60px 12px 24px 0;
}
@media (min-width: 768px) {
  .border-box-grid {
    padding: 60px 24px 48px 0;
  }
}
@media (min-width: 1400px) {
  .border-box-grid {
    padding: 60px 48px 48px 0;
  }
}
.border-box-grid h3 {
  margin-top: -86px;
  padding: 5px 32px;
  padding-left: 0;
  background: var(--color-white);
  display: table;
}
@media (min-width: 1200px) {
  .border-box-grid h3 {
    margin-top: -94px;
  }
}
.border-box-grid > div {
  padding-block: 24px 0;
}

.banner-text-module {
  max-width: 660px;
  display: flex;
  flex-direction: column;
}
.reverse-order .banner-text-module {
  align-items: flex-end !important;
  margin-left: auto;
}
.banner-text-module a {
  text-decoration: underline;
}

.banner-image-module figcaption {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .banner-image-module figcaption {
    margin-top: 24px;
  }
}

.myChart-module {
  position: relative;
  border: 8px solid #CCD4DD;
  padding: 6px;
  padding: 12px;
  padding-bottom: 12px;
  margin-bottom: 84px;
}
@media (min-width: 1200px) {
  .myChart-module {
    padding: 24px;
    margin-bottom: 24px;
  }
}

.price-increase {
  border-bottom: 4px solid #CCD4DD;
  margin-bottom: 16px;
}
.price-increase > div {
  padding: 16px;
  padding-top: 0;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .price-increase > div {
    padding: 24px;
    padding-top: 0;
    padding-bottom: 16px;
  }
}
.price-increase > div:first-child {
  border-right: 4px solid #CCD4DD;
  padding-left: 0;
}
.price-increase > div span {
  display: block;
}
.price-increase .title {
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.price-increase .increase {
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 1200px) {
  .price-increase .title {
    font-size: 21px;
  }
  .price-increase .increase {
    font-size: 40px;
  }
}

.section-select {
  padding: 24px;
}
@media (min-width: 600px) {
  .section-select {
    padding: 0 24px;
  }
}

.select-form {
  max-width: 816px;
  margin-bottom: 24px;
}
.select-form.border-box-grid {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .select-form.border-box-grid {
    margin-top: 128px;
    padding-bottom: 42px;
  }
}
.select-form .form-select-wrapper {
  margin-top: 24px;
}

.select-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .select-list {
    font-size: 21px;
  }
}
.select-list li {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5019607843);
  padding: 12px 0;
}
.select-list li:first-child, .select-list li.first-item {
  border-top: 2px solid rgba(255, 255, 255, 0.5019607843);
}
.select-list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .select-list li {
    padding: 12px 24px;
  }
}
.select-list a {
  display: flex;
  flex-direction: row;
  flex: 1;
}
.select-list a:hover {
  opacity: 0.8;
}
.select-list a .select-list-link {
  color: var(--color-yellow);
}
.select-list a .select-list-link path {
  fill: var(--color-yellow);
}
.select-list .select-list-link {
  margin-left: auto;
  padding-left: 12px;
}
.select-list .select-list-link svg {
  width: 14px;
  margin-left: 4px;
}
@media (min-width: 1200px) {
  .select-list .select-list-link svg {
    width: 18px;
    margin-left: 10px;
  }
}

svg.sverige [id*=SE-] {
  cursor: pointer;
  fill: #FFFFFF;
  transition: fill 0.2s ease-in-out;
}
svg.sverige [id*=SE-]:hover {
  fill: #FFD100;
}
svg.sverige [id*=SE-].highlighted {
  fill: #FFD100;
}

/* SWIPER
--------------------------------------------------------*/
.slider-box {
  padding-top: 32px;
  padding-bottom: 32px;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

swiper-container {
  padding: 0;
  position: relative;
}

swiper-container::part(swiper-scrollbar-drag) {
  --swiper-scrollbar-size: 10px;
  --swiper-scrollbar-drag-bg-color: red;
}

swiper-container::part(container) {
  padding: 0;
  padding-bottom: 32px;
}

swiper-container::part(bullet) {
  width: 12px;
  height: 12px;
}

swiper-container::part(bullet-active) {
  background-color: #002855;
  width: 12px;
  height: 12px;
}

swiper-container::part(pagination) {
  bottom: -5px;
}

swiper-container::part(scrollbar) {
  --swiper-scrollbar-size: 8px;
  --swiper-scrollbar-drag-size: 20px;
  --swiper-scrollbar-drag-bg-color: var(--color-blue);
  --swiper-scrollbar-border-radius: 0;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 0;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 0;
}

swiper-container::part(button-next),
swiper-container::part(button-prev) {
  color: var(--color-blue);
  width: 16px;
  display: none;
}
@media (min-width: 640px) {
  swiper-container::part(button-next),
  swiper-container::part(button-prev) {
    display: flex;
  }
}
@media (min-width: 1200px) {
  swiper-container::part(button-next),
  swiper-container::part(button-prev) {
    width: 27px;
  }
}

swiper-container::part(button-next) {
  right: 0;
}

swiper-container::part(button-prev) {
  left: 0;
}

.swiper-custom-prev,
.swiper-custom-next {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s;
}
.swiper-custom-prev.swiper-button-disabled,
.swiper-custom-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 640px) {
  .swiper-custom-prev,
  .swiper-custom-next {
    display: flex;
    width: 27px;
  }
}
@media (min-width: 1200px) {
  .swiper-custom-prev,
  .swiper-custom-next {
    width: 40px;
  }
}

.swiper-custom-prev {
  left: -6px;
  right: auto;
}

.swiper-custom-next {
  right: -6px;
  left: auto;
}

.my-swiper {
  position: relative;
}

/* PLACEHOLDER */
::-webkit-input-placeholder {
  color: #272727;
  font-family: "itc-avant-garde-gothic-pro", Helvetica, Arial, sans-serif;
}

:-moz-placeholder {
  color: #272727;
  font-family: "itc-avant-garde-gothic-pro", Helvetica, Arial, sans-serif;
}

::-moz-placeholder {
  color: #272727;
  font-family: "itc-avant-garde-gothic-pro", Helvetica, Arial, sans-serif;
}

:-ms-input-placeholder {
  color: #272727;
  font-family: "itc-avant-garde-gothic-pro", Helvetica, Arial, sans-serif;
}

/* HELPER
--------------------------------------------------------*/
.full-size-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#navigate-to {
  width: 100%;
  text-align: center;
  background-color: var(--color-blue);
  overflow: hidden;
  z-index: 30;
}
#navigate-to .accessibility-link {
  color: var(--color-white);
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  outline: 0;
}
#navigate-to .accessibility-link:focus, #navigate-to .accessibility-link:focus-visible {
  padding: 16px;
  display: block;
  position: static !important;
  height: auto;
  width: 100%;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
}
.w-bg-blue :focus-visible, .navigate-to :focus-visible {
  outline: 2px solid var(--color-yellow);
}

.visually-hidden,
.sr-only {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  outline: 0;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* FORM
--------------------------------------------------------*/
.form-authenticate-user {
  max-width: 500px;
}

form {
  margin-bottom: 0;
}

label {
  font-weight: 300;
}

.form-groups {
  margin-top: 30px;
}

.gfield,
.form-group {
  margin-bottom: 20px;
}
.gfield input[type=text],
.gfield input[type=password],
.gfield input[type=tel],
.gfield input[type=email],
.gfield input[type=url],
.gfield input[type=number],
.gfield textarea,
.gfield select,
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=tel],
.form-group input[type=email],
.form-group input[type=url],
.form-group input[type=number],
.form-group textarea,
.form-group select {
  width: 100%;
  color: #000;
  background: var(--color-white);
  padding: 0.1429em;
  height: 48px;
  padding-inline-start: 24px;
  border: 1px solid #979797;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.error .gfield input[type=text],
.error .gfield input[type=password],
.error .gfield input[type=tel],
.error .gfield input[type=email],
.error .gfield input[type=url],
.error .gfield input[type=number],
.error .gfield textarea,
.error .gfield select,
.error .form-group input[type=text],
.error .form-group input[type=password],
.error .form-group input[type=tel],
.error .form-group input[type=email],
.error .form-group input[type=url],
.error .form-group input[type=number],
.error .form-group textarea,
.error .form-group select {
  border-color: red;
}
.gfield label,
.form-group label {
  margin-bottom: 3px;
}
.gfield label span,
.form-group label span {
  color: red;
  font-weight: 300;
  font-size: 12px;
  display: none;
  margin-left: 10px;
}
.gfield input[type=number],
.form-group input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gfield.error label span,
.form-group.error label span {
  display: inline-block;
}
.gfield.error input[type=text],
.gfield.error input[type=password],
.gfield.error input[type=tel],
.gfield.error input[type=email],
.gfield.error input[type=url],
.gfield.error input[type=number],
.gfield.error textarea,
.gfield.error select,
.form-group.error input[type=text],
.form-group.error input[type=password],
.form-group.error input[type=tel],
.form-group.error input[type=email],
.form-group.error input[type=url],
.form-group.error input[type=number],
.form-group.error textarea,
.form-group.error select {
  border-color: red;
}

.form-select-wrapper {
  position: relative;
  background-image: url(../img/icons/icon-expandera-15x10.svg);
  background-repeat: no-repeat;
  background-size: 15px 100%;
  background-position: right 15px center;
  background: var(--color-white);
  z-index: 2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.form-select-wrapper .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-select-wrapper .form-select {
  background-color: transparent;
}

.form-select {
  margin: 0;
  height: 34px;
}
.form-select option {
  padding: 0.1429em;
}
.form-select option:disabled {
  color: #666 !important;
}
.form-select option[disabled] {
  color: #666;
}
.form-select:disabled {
  color: #666;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 2px;
  vertical-align: top;
  background: #ea4c89;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  border-color: #fff;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.form-check-inline label {
  display: inline-block;
}
.section-newsletter .form-check-inline label {
  font-size: 14px;
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.bid_form .form-group {
  margin: 10px 0;
}
.bid_form label {
  display: block;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 5px;
}
.bid_form .form-check-input {
  border: 1px solid #979797;
}
.bid_form input[type=submit] {
  line-height: 1.4;
}
.bid_form input[type=submit]:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.bid_form .form-check-input {
  display: block;
  float: left;
  clear: left;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.bid_form .form-check-label {
  overflow: hidden;
  position: relative;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
}
.bid_form .form-check-label a {
  text-decoration: underline;
}
.bid_form .form-check {
  margin-top: 20px;
}

.form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.form-group-strip,
[class*=form-group-strip-] {
  margin: 0 -10px;
}

.form-group {
  width: 100%;
  margin: 0 10px 0;
  flex: 0 0 auto;
  position: relative;
}
.form-group-strip-1 .form-group {
  width: calc(100% - 20px);
}
.form-group-strip-2 .form-group {
  width: calc(50% - 20px);
}
.form-group-strip-3 .form-group {
  width: calc(33.333333% - 20px);
}
.form-group-strip-4 .form-group {
  width: calc(25% - 20px);
}
.form-group-strip-5 .form-group {
  width: calc(20% - 20px);
}

.section-select {
  /* FORM
  --------------------------------------------------------*/
}
.section-select .form-authenticate-user {
  max-width: 500px;
}
.section-select form {
  margin-bottom: 0;
}
.section-select label {
  font-weight: 300;
}
.section-select .form-groups {
  margin-top: 30px;
}
.section-select .form-group {
  margin: 0;
  margin-bottom: 24px;
}
.section-select .form-group:last-child {
  margin-bottom: 0;
}
.section-select .form-group input[type=text],
.section-select .form-group input[type=password],
.section-select .form-group input[type=tel],
.section-select .form-group input[type=email],
.section-select .form-group input[type=url],
.section-select .form-group input[type=number],
.section-select .form-group textarea,
.section-select .form-group select {
  width: 100%;
  font-size: 16px;
  color: #000;
  padding: 0.1429em;
  padding-inline-start: 16px;
  border: 1px solid transparent;
  background-color: #fff;
  height: 48px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.error .section-select .form-group input[type=text],
.error .section-select .form-group input[type=password],
.error .section-select .form-group input[type=tel],
.error .section-select .form-group input[type=email],
.error .section-select .form-group input[type=url],
.error .section-select .form-group input[type=number],
.error .section-select .form-group textarea,
.error .section-select .form-group select {
  border-color: red;
}
@media (min-width: 768px) {
  .section-select .form-group input[type=text],
  .section-select .form-group input[type=password],
  .section-select .form-group input[type=tel],
  .section-select .form-group input[type=email],
  .section-select .form-group input[type=url],
  .section-select .form-group input[type=number],
  .section-select .form-group textarea,
  .section-select .form-group select {
    padding-inline-start: 24px;
    height: 64px;
  }
}
@media (min-width: 1200px) {
  .section-select .form-group input[type=text],
  .section-select .form-group input[type=password],
  .section-select .form-group input[type=tel],
  .section-select .form-group input[type=email],
  .section-select .form-group input[type=url],
  .section-select .form-group input[type=number],
  .section-select .form-group textarea,
  .section-select .form-group select {
    font-size: 21px;
  }
}
.section-select .form-group label {
  margin-bottom: 6px;
  display: block;
}
.section-select .form-group label span {
  color: red;
  font-weight: 300;
  font-size: 12px;
  display: none;
  margin-left: 10px;
}
.section-select .form-group input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.section-select .form-group.error label span {
  display: inline-block;
}
.section-select .form-group.error input[type=text],
.section-select .form-group.error input[type=password],
.section-select .form-group.error input[type=tel],
.section-select .form-group.error input[type=email],
.section-select .form-group.error input[type=url],
.section-select .form-group.error input[type=number],
.section-select .form-group.error textarea,
.section-select .form-group.error select {
  border-color: red;
}
.section-select .form-group .btn {
  margin-top: 10px;
}
.section-select .form-select-wrapper {
  position: relative;
  background-image: url(../img/icon-expandera-24x14.svg);
  background-repeat: no-repeat;
  background-size: 24px 100%;
  background-position: right 12px center;
  z-index: 2;
  height: 48px;
  display: flex;
  align-items: center;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .section-select .form-select-wrapper {
    height: 64px;
    background-position: right 24px center;
  }
}
.section-select .form-select-wrapper.w-bg-opacity-50 {
  background-color: rgba(255, 255, 255, 0.5);
}
.section-select .form-select-wrapper .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.section-select .form-select-wrapper .form-select {
  background-color: transparent;
}
.section-select .form-select {
  margin: 0;
}
.section-select .form-select option {
  padding: 1em;
}
.section-select .form-select option:disabled {
  color: #666 !important;
}
.section-select .form-select option[disabled] {
  color: #666;
}
.section-select .form-select:disabled {
  color: #666;
}
.section-select .form-select:focus {
  outline: none;
}
.section-select .form-select:focus-visible {
  outline: 2px solid var(--color-yellow);
}
.section-select .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.section-select .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 2px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  border-color: #fff;
}
.section-select .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.section-select .form-check-inline label {
  display: inline-block;
}
.section-newsletter .section-select .form-check-inline label {
  font-size: 14px;
}
.section-select .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

:root {
  --primary-color: #002855;
  --accent-color: #FFD100;
  --color-blue: #002855;
  --color-yellow: #FFD100;
  --color-light-yellow: #F3EBBD;
  --color-white: #ffffff;
  --color-pink: #D986BA;
  --color-dark-pink: #D373B0;
  --cool-gray: #CCD4DD;
  --mix: rgb(0 0 0);
  --mix-light: rgb(255 255 255);
  --contrast: color-mix(in lab, currentcolor 15%, var(--mix));
  --contrast-light: color-mix(in lab, currentcolor 30%, var(--mix-light));
}

.w-bg-yellow {
  background: var(--color-yellow);
}

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

.w-bg-yellow-90 {
  background: rgba(255, 209, 0, 0.9);
}

.w-bg-pink {
  background: var(--color-pink);
}

.w-bg-pink-90 {
  background: rgba(217, 134, 186, 0.9);
}

.w-bg-pink-30 {
  background: rgba(217, 134, 186, 0.3);
}

.w-bg-blue {
  background: var(--color-blue);
  color: var(--color-white);
}
.w-bg-blue a {
  color: var(--color-white);
}

.w-bg-white {
  background: var(--color-white);
  color: var(--primary-color);
}

.w-bg-cool-gray {
  background: var(--cool-gray);
}

.bg-gradient,
.w-bg-gradient {
  background-image: linear-gradient(240deg, #D986BA 0%, #FFD100 100%, #002855 100%);
}

.primary-color {
  color: var(--primary-color);
}

.accent-color {
  color: var(--accent-color);
}

.color-white {
  color: var(--color-white);
}

.color-pink {
  color: var(--color-pink);
}

.color-dark-pink {
  color: var(--color-dark-pink);
}

/* HEADER COLORS
--------------------------------------------------------*/
.color-blue {
  color: var(--color-blue);
}
.color-blue .header-logo svg path {
  fill: var(--color-blue);
}
body.has-active-menu .color-blue .header-logo svg path {
  fill: var(--color-blue);
}
.color-blue .header-menu-trigger svg rect {
  fill: var(--color-blue);
}
.color-blue .menu-toggler .menu-text {
  color: var(--color-blue);
}
.color-blue .header-button .btn {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.color-blue .header-button svg path {
  fill: var(--color-blue);
}

/* TYPOGRAPHY
--------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: proxima-nova, sans-serif, sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  margin: 1rem 0;
  color: inherit;
}
h1.small,
h1 small, h2.small,
h2 small, h3.small,
h3 small, h4.small,
h4 small, h5.small,
h5 small, h6.small,
h6 small {
  line-height: 1;
  font-weight: 300;
}

h1.small,
h1 small, h2.small,
h2 small, h3.small,
h3 small {
  font-size: 65%;
}

h4.small,
h4 small, h5.small,
h5 small, h6.small,
h6 small {
  font-size: 75%;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 26px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 21px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 0.875em;
}

h6 {
  font-size: 0.75em;
}

p {
  margin: 0 0 1rem;
}
p.lead, .lead p, header p {
  font-size: 18px;
}
@media (min-width: 1200px) {
  p.lead, .lead p, header p {
    font-size: 24px;
  }
}
p.lead:last-child, .lead p:last-child, header p:last-child {
  margin-bottom: 0;
}
.text-xl p {
  font-size: 22px;
}
@media (min-width: 768px) {
  .text-xl p {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .text-xl p {
    font-size: 36px;
  }
}

.hero-content h1 {
  font-size: 46px;
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 72px;
  }
}
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 92px;
  }
}
.hero-content header p {
  font-size: 20px;
}

.hero-content--box h1 {
  font-size: 26px;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .hero-content--box h1 {
    font-size: 40px;
  }
}
.hero-content--box header p {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .hero-content--box header p {
    font-size: 20px;
  }
}

.title-xl,
.title-l,
.title-m {
  font-family: proxima-nova, sans-serif, sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  margin: 1rem 0;
  display: block;
}

.section-header h1, .section-header h2 {
  font-size: 32px;
  margin: 0 0 1rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .section-header h1, .section-header h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .section-header h1, .section-header h2 {
    font-size: 72px;
  }
}

.title-xl {
  font-size: 40px;
}
@media (min-width: 1200px) {
  .title-xl {
    font-size: 92px;
  }
}

.title-l {
  font-size: 32px;
}
@media (min-width: 1200px) {
  .title-l {
    font-size: 40px;
  }
}

.title-m {
  font-size: 24px;
}
@media (min-width: 1200px) {
  .title-m {
    font-size: 36px;
  }
}
.title-m.border-after {
  font-size: 22px;
}
@media (min-width: 1200px) {
  .title-m.border-after {
    font-size: 36px;
  }
}

.subtitle {
  font-size: 18px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .subtitle {
    font-size: 24px;
  }
}

.banner-text-module {
  font-size: 16px;
}
@media (min-width: 1200px) {
  .banner-text-module {
    font-size: 20px;
  }
}

.btn {
  padding: 5px 16px;
  color: var(--color-white);
  background: transparent;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid #fff;
}
.btn:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-primary {
  background: var(--color-blue);
  padding: 12px 16px;
}

.btn-secondary {
  background: var(--color-light-yellow);
  color: var(--color-blue);
  padding: 12px 16px;
}
.btn-secondary:hover {
  color: var(--color-blue);
}

.btn-large {
  font-size: 18px;
  padding: 12px 24px;
}
@media (min-width: 768px) {
  .btn-large {
    font-size: 21px;
    padding: 16px 24px;
  }
}

.article-entry .btn {
  margin-top: 32px;
}

.hero-article-content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-article-content figure {
  margin: 0;
}
@media (min-width: 768px) {
  .hero-article-content figure {
    padding-right: 24px;
  }
}
.hero-article-content figure figcaption {
  margin-top: 8px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .hero-article-content figure figcaption {
    font-size: 14px;
  }
}

.hero-text-content {
  display: flex;
  align-items: center;
}
.hero-text-content h1 {
  font-size: 32px;
}
@media (min-width: 1200px) {
  .hero-text-content h1 {
    font-size: 60px;
  }
}

.article-cat {
  color: var(--color-white);
  background: var(--color-blue);
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.article-info {
  font-size: 16px;
}

.image-mask {
  position: relative;
  display: inline-block;
}
.image-mask img {
  clip-path: polygon(0 0, 100% 0, 100% 89.5%, 89.5% 89.5%, 89.5% 100%, 0 100%);
}

.grid-columnns-article {
  display: grid;
  grid-gap: 24px;
}
@media (min-width: 768px) {
  .grid-columnns-article {
    grid-template-columns: 1fr 380px;
  }
}
@media (min-width: 1200px) {
  .grid-columnns-article {
    grid-template-columns: 1fr 456px;
  }
}
.grid-columnns-article.grid-one-column {
  grid-template-columns: 1fr;
  max-width: 816px;
  margin: 0 auto;
}

.article-header-social {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.url-input-button {
  cursor: pointer;
}

.share-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.share-button {
  padding: 7px 14px;
  height: 40px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background-color: #D9DFE6;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
}
.share-button img {
  margin-right: 6px;
}

.share-button:hover {
  background-color: #ddd;
}

.mobile-share {
  display: none;
}

.desktop-share {
  display: none;
}
@media (min-width: 780px) {
  .desktop-share {
    display: inline;
  }
}

.mobile-share {
  display: inline-block;
}
@media (min-width: 780px) {
  .mobile-share {
    display: none;
  }
}

.article {
  max-width: 816px;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: subgrid;
}
@media (min-width: 1200px) {
  .article {
    font-size: 20px;
  }
}

.article-header .header-title-logo {
  margin-bottom: 24px;
  width: 270px;
}
.article-header .header-title-logo img {
  width: 70%;
}
@media (min-width: 768px) {
  .article-header .header-title-logo img {
    width: auto;
  }
}
.article-header h1, .article-header h2 {
  margin-top: 0;
}
.article-header ul {
  padding-left: 20px;
}

@keyframes scroll-watcher {
  to {
    scale: 1 1;
  }
}
.article-entry h2, .article-entry h3 {
  margin-top: 1.5rem;
}
.article-entry h2:first-child, .article-entry h3:first-child {
  margin-top: 0;
}
.article-entry figure {
  margin: 32px 0;
}
.article-entry figure:first-child {
  margin-top: 0;
}
.article-entry figure > img {
  scale: 0.8;
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry -50px;
}
.article-entry figcaption {
  font-size: 14px;
  margin-top: 6px;
}
.article-entry a {
  text-decoration: underline;
}
.article-entry ul {
  padding-left: 20px;
}

@keyframes fade-in {
  to {
    scale: 1;
    opacity: 1;
  }
}
.article-footer {
  font-size: 16px;
}

.source-reference {
  font-style: italic;
}

.article-list--item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.article-list--image {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.article-list--image > img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.block {
  display: block;
}

.mt-0 {
  margin-top: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.p-32 {
  padding: 32px;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
}

.aspect-ratio-4-3 {
  aspect-ratio: 4/3;
}

.aspect-square {
  aspect-ratio: 1/1;
}

@media (min-width: 768px) {
  .md\:aspect-square {
    aspect-ratio: 1/1;
  }
}
.border-8 {
  border: 8px solid var(--cool-gray);
}
.w-bg-blue .border-8 {
  border-color: var(--color-yellow);
}

.border-left-none {
  border-left: none;
}

.border-top-none {
  border-top: none;
}

.border-after.w-bg-blue {
  background: var(--color-blue);
}

.min-h-760 {
  min-height: 760px;
}

.min-h-smd-480 {
  margin-top: 80px;
  padding: 0;
  padding-bottom: 100%;
  min-height: 0;
}
@media (min-width: 600px) {
  .min-h-smd-480 {
    min-height: 480px;
    padding: 100px 0px 48px;
  }
}
@media (min-width: 768px) {
  .min-h-smd-480 {
    min-height: 600px;
    margin-top: 160px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hover\:underline:hover {
    text-decoration-line: underline;
  }
}
/* FLEX GRID */
.row {
  display: flex;
  flex-flow: row wrap;
}

.row-strip,
[class*=row-strip-] {
  margin: 0 -10px;
}

.row-box {
  width: calc(100% - 20px);
  margin: 0 10px 20px;
  float: left;
  flex: 0 0 auto;
  position: relative;
}
.row-strip-6 .row-box {
  width: calc(100% - 20px);
}
.row-strip-4 .row-box {
  width: calc(100% - 20px);
}
.row-strip-3 .row-box {
  width: calc(100% - 20px);
}
@media (min-width: 768px) {
  .row-strip-3 .row-box {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .row-strip-3 .row-box {
    width: calc(25% - 20px);
  }
}
.row-strip-8--4 .row-box.box-8 {
  width: calc(100% - 20px);
}
.row-strip-8--4 .row-box.box-4 {
  width: calc(100% - 20px);
}

.row-box.vertical-middle, .row-box.vertical-bottom {
  display: flex;
}
.row-box.vertical-middle {
  align-items: center;
}
.row-box.vertical-bottom {
  align-items: flex-end;
}
.row-box figure {
  position: relative;
}

.gap-24 {
  grid-gap: 24px;
}

.grid {
  display: grid;
}

.sm-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.sm-grid-cols-1 .col1 {
  order: 1;
}
.sm-grid-cols-1 .col2 {
  order: 2;
}

@media (min-width: 600px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-2.reverse-order .col1 {
    order: 2;
  }
  .md\:grid-cols-2.reverse-order .col2 {
    order: 1;
  }
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-cols-2.hero-article-content {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-cols-2.hero-article-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

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

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

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

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

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

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

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

.grid-cols-none {
  grid-template-columns: none;
}

.col-auto {
  grid-column: auto;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.col-span-full {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .grid-cols-1-3 {
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-cols-1-3 {
    grid-template-columns: 456px 1fr;
  }
}

.grid-even-columnns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.grid-even-columnns.minmax-150 {
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
}

.grid-auto-flow {
  display: grid;
  grid-gap: 24px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.grid-stack {
  display: grid;
  place-items: end start;
}

.grid-stack > * {
  display: grid;
  grid-column: 1/2;
  grid-row: 1/2;
}

.grid-stack > img {
  aspect-ratio: 16/9;
  object-fit: cover;
  z-index: -1;
}

.grid-banner-module {
  display: grid;
  grid-gap: 24px;
  row-gap: 0;
}
.grid-banner-module .banner-image-module {
  order: 1;
}
.grid-banner-module .banner-text-module {
  order: 2;
}
.grid-banner-module.reverse-order .banner-image-module {
  order: 1;
}
.grid-banner-module.reverse-order .banner-text-module {
  order: 2;
}
@media (min-width: 768px) {
  .grid-banner-module {
    grid-template-columns: 1fr 380px;
  }
  .grid-banner-module .banner-image-module {
    order: 2;
  }
  .grid-banner-module .banner-text-module {
    order: 1;
  }
  .grid-banner-module.reverse-order {
    grid-template-columns: 380px 1fr;
  }
  .grid-banner-module.reverse-order .banner-image-module {
    order: 1;
  }
  .grid-banner-module.reverse-order .banner-text-module {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .grid-banner-module {
    grid-template-columns: 1fr 1fr;
  }
  .grid-banner-module.reverse-order {
    grid-template-columns: 1fr 1fr;
  }
  .grid-banner-module.reverse-order .banner-image-module {
    order: 1;
  }
  .grid-banner-module.reverse-order .banner-text-module {
    order: 2;
  }
}

.d-flex, .flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-flex.hidden, .flex.hidden {
  display: none !important;
}

.d-md-flex {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.w-100 {
  width: 100% !important;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

body.popup-active {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 600px) {
  .popup {
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
    height: 100%;
  }
}
@media (max-height: 600px) {
  .popup {
    align-items: start;
  }
}
.popup figure img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.popup.hidden {
  display: none;
}

.popup-content--scroll {
  overflow-y: scroll;
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
}

.popup-content {
  background-color: white;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  padding-bottom: 48px;
  overflow-y: scroll;
  height: 100%;
}
@media (min-width: 600px) {
  .popup-content {
    max-width: 480px;
    padding-bottom: 0;
    height: auto;
    overflow-y: visible;
  }
}

.popup:not(.hidden) .popup-content {
  transform: scale(1);
}

.popup-content {
  transform: scale(0.8); /* Startstorlek */
  transition: transform 0.3s ease-in-out; /* Transition-effekt */
}

.popup.hidden .popup-content {
  transform: scale(0.8); /* Behåll skalan för gömd popup */
}

.popup:not(.hidden) .popup-content {
  transform: scale(1); /* Full storlek när popup är synlig */
}

.popup-content--text {
  padding: 20px;
  font-size: 18x;
}
.popup-content--text .logo {
  display: flex;
  justify-content: start;
  text-align: left;
  margin-bottom: 12px;
}
.popup-content--text .logo.format-vertical img {
  max-height: 48px;
  object-fit: contain;
}
.popup-content--text .logo img {
  max-height: 32px;
  object-fit: contain;
}
.popup-content--text p {
  margin-bottom: 1.5rem;
}

.pop-up-close {
  height: 48px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  cursor: pointer;
  color: #aaa;
}

.close-btn:hover {
  color: black;
}

.link-btn {
  text-align: center;
  display: block;
  padding: 10px;
  background: var(--primary-color);
  color: var(--color-white);
}
.link-btn:hover {
  color: var(--color-white);
}

.openPopup .arrow-list {
  display: none;
}

@media (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
