@charset "UTF-8";
:root {
  --border-radius-sm: 12px;
  --border-radius-md: 24px;
  --border-radius-full: 1000px;
  --border-thin: 1px;
  --border-medium: 1.5px;
  --border-thick: 2px;
}

:root {
  --main-font-stack: "Crimson Text", Times, Georgia, serif;
  --font-sans: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Crimson Text", Times, Georgia, serif;
  --font-family-heading: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body-text: "Crimson Text", Times, Georgia, serif;
}

:root {
  --title-xs-size: 14px;
  --title-xs-leading: 20px;
  --title-sm-size: 18px;
  --title-sm-leading: 26px;
  --title-md-size: 21px;
  --title-md-leading: 30px;
  --title-lg-size: 24px;
  --title-lg-leading: 32px;
  --title-xl-size: 36px;
  --title-xl-leading: 48px;
  --title-2xl-size: 48px;
  --title-2xl-leading: 60px;
  --title-3xl-size: 60px;
  --title-3xl-leading: 72px;
  --title-4xl-size: 92px;
  --title-4xl-leading: 110px;
  --title-5xl-size: 128px;
  --title-5xl-leading: 150px;
  --text-xs-size: 14px;
  --text-xs-leading: 20px;
  --text-sm-size: 18px;
  --text-sm-leading: 26px;
  --text-md-size: 21px;
  --text-md-leading: 30px;
  --text-lg-size: 24px;
  --text-lg-leading: 32px;
  --text-xl-size: 36px;
  --text-xl-leading: 48px;
}

:root {
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

:root {
  --max-width: 1352px;
  --site-width--n: 1100px;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  color: var(--text-color-black);
  background: var(--grey-100);
  font-family: var(--main-font-stack) !important;
  font-size: var(--text-md-size);
  line-height: 1.4285714286;
  -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 {
  max-width: 100%;
}

video,
iframe,
img {
  height: auto;
}

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

.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%;
  width: 100%;
}

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

.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: 14px;
  margin-top: 2px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
}

.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;
}

#navigate-to {
  width: 100%;
  text-align: center;
  background-color: #fffeeb;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-sans);
}
#navigate-to .accessibility-link {
  color: #000;
  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 {
  padding: 16px;
  display: block;
  position: static !important;
  height: auto;
  width: 100%;
  outline: none;
}

.tab-navigation a:focus,
.tab-navigation button:focus,
.tab-navigation input:focus,
.tab-navigation textarea:focus {
  outline: 2px solid #ff5400 !important;
  outline-offset: -2px;
}

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

.link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.arrow-list,
.plus {
  transition: transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
}

a:hover .arrow-list,
.link-with-icon:hover .arrow-list {
  transform: translateX(4px);
}

button .plus {
  transform: rotate(0deg);
}

button:hover .plus {
  transform: rotate(90deg);
}

/* SECTIONS
--------------------------------------------------------*/
.site-width,
.site-width--n,
.site-width--w {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.site-width--n {
  max-width: var(--site-width--n);
}

.site-width--w {
  max-width: 2200px;
  width: 100%;
  margin: 0 auto;
}

.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 + [class*=w-surface-],
.section-wrapper + .section-fullcover {
  padding-top: 32px;
}

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

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

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

.w-bg-brand + .w-bg-brand {
  padding-top: 0 !important;
}

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

@media (min-width: 768px) {
  .section-wrapper {
    padding: 64px 0;
  }
  .section-wrapper + .section-wrapper {
    padding-top: 0;
  }
  .section-wrapper + [class*=w-bg-],
  .section-wrapper + [class*=w-surface-] {
    padding-top: 64px;
  }
  [class*=w-bg-] + .section-wrapper,
  [class*=w-surface-] + .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: -80px;
  }
}

.header-wrapper {
  height: 60px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .header-wrapper {
    height: 104px;
  }
}
.header-wrapper.w-bg-header {
  position: relative;
}

.header-area {
  height: 60px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .header-area {
    height: 104px;
    font-size: 21px;
  }
}

.header-area {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.3s ease;
  background: transparent;
}
.has-open-menu .header-area {
  z-index: 1000;
}
.header-area button,
.header-area a {
  color: var(--grey-100);
}
.header-area.w-bg-header {
  background: var(--surface-brand-secondary);
  transition: background-color 0.3s ease;
  position: relative;
}
.header-area.w-bg-header.has-open-menu {
  background: transparent;
}
.header-area.is-fixed {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  background: var(--surface-brand-secondary);
}
.header-area.is-fixed.is-visible {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.has-open-menu .header-area.w-bg-header {
  background: transparent;
}

body.has-open-menu .header-area.is-fixed,
.w-bg-header.has-open-menu .header-area.is-fixed {
  background: transparent;
}

.erna-logo-header {
  display: flex;
  flex-shrink: 0;
  flex-grow: 1;
}
.erna-logo-header svg {
  width: 123px;
  height: 40px;
}
@media (min-width: 768px) {
  .erna-logo-header svg {
    width: 197px;
    height: 64px;
  }
}

.header-actions {
  display: flex;
  gap: 12px;
  color: var(--grey-100);
}
.header-actions .cta-btn,
.header-actions .search-toggle {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-actions .cta-btn:hover,
.header-actions .search-toggle:hover {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.header-actions a,
.header-actions buttons {
  display: none;
}
@media (min-width: 768px) {
  .header-actions a,
  .header-actions buttons {
    display: flex;
  }
}
@media (min-width: 768px) {
  .header-actions {
    gap: 24px;
  }
}

.search-toggle {
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  transition: all 0.2s;
  display: flex;
}
.search-toggle svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .search-toggle {
    width: 48px;
    height: 48px;
  }
  .search-toggle svg {
    width: 48px;
    height: 48px;
  }
}

.menu-toggler {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-toggler:hover .menu-icon {
  backdrop-filter: none;
}
.menu-toggler svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .menu-toggler svg {
    width: 48px;
    height: 48px;
  }
}

.menu-toggler {
  width: 116px;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.menu-close {
  display: none;
}

.menu-open {
  display: inline-flex;
}

.menu-icon,
.search-icon {
  display: inline-flex;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--grey-100);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s;
}

/* HERO
--------------------------------------------------------*/
.section-hero {
  height: 100vh;
  min-height: 750px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  position: relative;
  z-index: 0;
  padding: 100px 0 48px;
  align-items: center;
  position: relative;
  z-index: 0;
  color: var(--grey-100);
}
.section-hero.min-height-100svh {
  height: auto;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-foreground {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 104px;
  padding-bottom: 34px;
}

.hero-copy {
  max-width: 654px;
  padding-top: 24px;
}
@media (min-width: 768px) {
  .hero-copy {
    padding-top: 94px;
  }
}
.hero-copy h1 {
  margin-bottom: 0;
}
.hero-copy p {
  margin-top: 24px;
  max-width: 363px;
}

.hero-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.hero-footer .cta-btn-group {
  width: 100%;
}
.hero-footer .cta-btn {
  width: 100%;
  justify-content: flex-start;
}
.hero-footer .cta-btn .arrow-list,
.hero-footer .cta-btn .plus {
  margin-left: auto;
}
@media (min-width: 600px) {
  .hero-footer {
    width: auto;
  }
  .hero-footer .cta-btn-group {
    width: auto;
  }
  .hero-footer .cta-btn {
    width: auto;
    justify-content: center;
  }
  .hero-footer .cta-btn .arrow-list,
  .hero-footer .cta-btn .plus {
    margin-left: 0;
  }
}

/* SUB HERO
--------------------------------------------------------*/
.section-sub-hero {
  min-height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--surface-brand-secondary);
  color: var(--text-color-white);
  display: flex;
  position: relative;
  z-index: 0;
  padding: 104px 0 0;
  align-items: flex-end;
  position: relative;
  z-index: 0;
  background-image: none;
}
.section-sub-hero.no-hero-image {
  background-image: none !important;
}
.section-sub-hero a {
  color: var(--text-color-white);
  text-decoration: underline;
}
.section-sub-hero .hero-foreground {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 24px;
  position: relative;
}
.section-sub-hero .hero-copy {
  max-width: 654px;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section-sub-hero .hero-copy h1 {
  margin-bottom: 16px;
}
.section-sub-hero .hero-copy p {
  max-width: 536px;
}
.section-sub-hero .hero-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section-sub-hero .hero-image figure {
  overflow: hidden;
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
}

/* FOOTER
--------------------------------------------------------*/
.footer-section {
  background: var(--surface-brand-secondary);
  color: var(--text-color-white);
  min-height: 300px;
}

.footer-section {
  padding: 3rem 0;
  font-family: "Crimson Text", serif;
}

.footer-logo {
  max-width: 414px;
  margin-bottom: 32px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-col {
  height: 100%;
}
.footer-col.contact-info strong {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
}
.footer-col.social-media {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.footer-col.social-media a {
  display: inline-block;
  margin-bottom: 0.5em;
}
.footer-col a {
  color: var(--text-color-white);
  text-decoration: none;
}
.footer-col a:hover, .footer-col a:focus {
  text-decoration: underline;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: var(--text-xs-size);
}
.footer-bottom a {
  color: var(--text-color-white);
}

@media (min-width: 768px) {
  .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: flex-start;
  }
  .footer-col.social-media {
    justify-self: end;
  }
}
/* PLACEHOLDER */
::-webkit-input-placeholder {
  color: #CFCFCF;
  font-family: var(--font-sans);
  opacity: 1;
}

:-moz-placeholder {
  color: #CFCFCF;
  font-family: var(--font-sans);
  opacity: 1;
}

::-moz-placeholder {
  color: #CFCFCF;
  font-family: var(--font-sans);
  opacity: 1;
}

:-ms-input-placeholder {
  color: #CFCFCF;
  font-family: var(--font-sans);
  opacity: 1;
}

/* MENU
--------------------------------------------------------*/
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--surface-brand-secondary-opacity);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom);
}

.menu-overlay[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.has-open-menu {
  overflow: hidden;
}

.menu-content {
  height: 100%;
}

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

.menu-advert {
  display: none;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-advert--item {
  max-width: 434px;
  aspect-ratio: 4/5;
  border-radius: var(--border-radius-md);
  border: var(--border-thick) solid var(--color-white);
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: var(--title-xl-size);
  display: flex;
  align-items: flex-end;
  transition: all 0.3s ease;
}
.menu-advert--item:hover {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.menu-advert--item a {
  color: var(--text-color-white);
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 20px;
  padding-right: 48px;
}

.menu-wrapper {
  display: flex;
  padding: 140px 48px 48px;
  justify-content: stretch;
  width: 100%;
}
.menu-wrapper nav {
  width: 100%;
}
.menu-wrapper a {
  color: var(--text-color-white);
}
@media (min-width: 768px) {
  .menu-wrapper {
    justify-content: center;
  }
  .menu-wrapper nav {
    width: auto;
  }
}

.global-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: var(--title-md-size);
  width: 100%;
}
@media (min-width: 768px) {
  .global-menu {
    font-size: var(--title-xl-size);
    width: 450px;
  }
}
.global-menu li {
  display: flex;
  align-self: stretch;
  width: 100%;
  border-radius: var(--border-radius-full);
  border: var(--border-thick) solid transparent;
  transition: all 0.2s ease;
}
.global-menu li a {
  display: inline-flex;
  width: 100%;
}
.global-menu > li.active, .global-menu > li:hover {
  border-color: var(--color-white);
}

/* Döljer undernivåer initialt */
.submenu[hidden] {
  display: none;
}

/* Gör knappen lik din länk */
.global-menu a {
  display: inline-flex;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 12px 8px 24px;
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

/* Visa kantlinje vid hover/aktiv som dina li */
.global-menu li.has-children {
  position: relative;
}

/* Indrag för nivå 2 & 3 */
.global-menu .submenu {
  width: 100%;
  margin-top: 6px;
  margin-left: 16px;
  padding-left: 8px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .global-menu .submenu {
    font-size: 21px;
  }
}

@media (min-width: 768px) {
  .global-menu .submenu {
    margin-left: 16px;
  }
}
/* Fokus-synlighet */
.global-menu a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius-full);
}

/* Behåll din hover/active-kant på hela raden */
.global-menu > li,
.global-menu .submenu > li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
}

.global-menu > li {
  border-radius: var(--border-radius-full);
  border: var(--border-thick) solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.global-menu > li:hover,
.global-menu > li.active {
  border-color: var(--color-white);
}

/* underline bara i undernivåer */
.global-menu .submenu a:hover {
  text-decoration: underline;
}

/* toppnivån ska inte få underline */
.global-menu > li > a:hover {
  text-decoration: none;
}

/* När en punkt är öppen: styla just den LI:n */
.global-menu li.has-children.is-open {
  border-radius: var(--border-radius-md);
  border-color: var(--color-white); /* om du vill markera ramen när öppen */
}

/* underline bara i submenyer behåller du som du redan har */
.global-menu .submenu a:hover {
  text-decoration: underline;
}

/* Bara första nivån */
.global-menu > li.has-children.is-open {
  border-radius: var(--border-radius-md);
}

/* Submenyer påverkas inte */
.global-menu .submenu li.has-children.is-open {
  border-radius: var(--border-radius-full);
}

.menu-item-with-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.menu-item-with-toggle a {
  flex: 1; /* tar upp all plats för texten */
  padding: 8px 12px 8px 24px;
}

.menu-item-with-toggle .submenu-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 12px;
  font-size: 28px;
}

.menu-item-with-toggle .submenu-toggle::after {
  content: "+";
  font-weight: 700;
}

.menu-item-with-toggle .submenu-toggle[aria-expanded=true]::after {
  content: "–";
}

.submenu .submenu-toggle {
  position: absolute;
  right: 24px;
}

.globalnav {
  display: flex;
  align-items: center;
}

.global-navlist {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  -webkit-user-select: none;
  user-select: none;
}
.global-navlist > li.active a, .global-navlist > li:hover a {
  text-decoration: underline;
}
.global-navlist > li a {
  padding: 5px 0;
}

@media (min-width: 960px) {
  .menu-content.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-advert {
    display: flex;
  }
  .menu-wrapper {
    padding: 180px 48px 48px;
    padding-left: 72px;
    align-items: flex-start;
  }
}
/* Accordion
--------------------------------------------------------*/
.accordion {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-brand-primary);
}

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion__header {
  margin: 0;
}

.accordion__header,
.accordion__trigger {
  font-family: var(--font-serif) !important;
  font-weight: var(--regular) !important;
  font-size: 21px;
}
@media (min-width: 768px) {
  .accordion__header,
  .accordion__trigger {
    font-size: 24px;
  }
}

.accordion__trigger {
  appearance: none;
  width: 100%;
  text-align: left;
  padding: 24px 52px 24px 24px;
  font: inherit;
  line-height: 1.3;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--text-color-black);
}

.accordion__trigger:hover {
  background: var(--surface-brand-primary);
}

.accordion__trigger:focus-visible {
  outline: 2px solid var(--focus, #005fcc);
  outline-offset: -2px;
}

.accordion__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 20px;
  block-size: 20px;
  display: inline-block;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 2px;
  background: var(--text-color-black);
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__trigger[aria-expanded=true] .accordion__icon::after {
  display: none;
}

/* Paneler */
.accordion__panel {
  padding: 0;
  background: var(--surface-brand-primary);
  overflow: clip;
  block-size: 0;
}

.accordion__panel[hidden] {
  display: block;
}

.accordion__panel-inner {
  padding: 28px 24px 48px;
  max-width: 662px;
  margin: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .accordion__panel {
    transition: block-size 240ms ease;
  }
}
/* Knapp-stil för din länk */
.btn.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--grey-300, #d1d5db);
  background: transparent;
}

.btn.btn-outline:hover {
  background: #fff;
}

/* SEARCH
--------------------------------------------------------*/
.search-is-open {
  background: var(--surface-brand-secondary);
}
.search-is-open .section-search {
  background: var(--surface-brand-secondary);
  position: absolute;
  width: 100%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  bottom: -110px;
  left: 0;
  padding: 32px 0;
}

.section-search[hidden] {
  display: none !important;
}

.header-area-search {
  position: relative;
}
.header-area-search form {
  display: flex;
  gap: 12px;
  flex-direction: row;
}
.header-area-search .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.header-area-search .icon path {
  fill: var(--grey-900);
}
.header-area-search input[type=text] {
  background: var(--grey-100);
  border-radius: var(--border-radius-full);
  padding: 12px 24px;
  padding-left: 48px;
  font-size: 21px;
  width: 100%;
}
.header-area-search input::placeholder,
.header-area-search textarea::placeholder {
  color: #010101;
  font-family: var(--font-sans);
  opacity: 1;
}

.header-area .search-submit {
  padding: 0 32px;
  border-radius: var(--border-radius-full);
  background: var(--surface-brand-tertiary);
  color: var(--text-color-black);
}

/* GRID BANNER
--------------------------------------------------------*/
.banner-text-module {
  display: flex;
  align-items: center;
  padding-right: 48px;
}
.banner-text-module h1, .banner-text-module h2 {
  margin-bottom: 16px;
}

.banner-image-module {
  margin-bottom: 24px;
}
.banner-image-module figure {
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
@media (min-width: 768px) {
  .banner-image-module {
    margin-bottom: 0;
  }
}

.banner-grid-item {
  padding: 24px;
  text-align: center;
}

/* CONTACT
--------------------------------------------------------*/
.contact-list {
  gap: 24px;
}

.contact-header-icon {
  margin-bottom: 12px;
  display: inline-block;
}

.contact-list-entry p {
  margin-bottom: 6px;
}
.contact-list-entry a:hover {
  text-decoration: underline;
}

path.splash-hor-av-dig {
  fill: var(--surface-brand-tertiary);
}

/* contactcard */
.contactcard-list {
  margin-top: 48px;
  gap: 24px;
}

.contactcard-list-item {
  overflow-wrap: break-word;
  word-break: break-word;
}
.contactcard-list-item figure {
  overflow: hidden;
  border-radius: var(--border-radius-md);
}
.contactcard-list-item figure img {
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.contactcard-list-item .text-entry {
  font-size: 18px;
}
.contactcard-list-item .text-entry [class*=heading-] {
  display: block;
  margin-bottom: 0px;
}
.contactcard-list-item a:hover {
  text-decoration: underline;
}

.tag-group {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0;
}

.tag {
  border-radius: var(--border-radius-sm);
  background: var(--surface-brand-primary);
  padding: 4px 12px;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: 14px;
}

/* FILTER
--------------------------------------------------------*/
.filter-kategorier {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 12px;
}

.filter-kategorier button {
  font: inherit;
  font-size: 16px;
  font-weight: var(--bold);
  background: transparent;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  border: 1px solid transparent;
}

.filter-kategorier button:focus-visible {
  outline: 3px solid var(--focus, #005fcc);
  outline-offset: 2px;
}

.filter-kategorier .chosen,
.filter-kategorier button[aria-pressed=true] {
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--grey-900);
}

.filter-kategori--item[hidden] {
  display: none !important;
}

/* (valfritt) mjuk in/ut med opacity när man filtrerar */
.filter-kategori--item {
  transition: opacity 0.18s ease;
}

.filter-kategori--item[hidden] {
  opacity: 0;
}

.category-group {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 12px;
  margin-block: 0 12px;
}

.category {
  display: inline-flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-sans);
  background: transparent;
  padding: 3px 12px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--grey-900);
}

.img-list-w-title > div,
.img-list-w-title > a {
  display: flex;
  flex-direction: column;
}
.img-list-w-title figure {
  margin-bottom: 12px;
  position: relative;
}
.img-list-w-title figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.img-list-w-title h3 {
  margin-bottom: 6px;
}
.img-list-w-title .text-entry {
  padding: 0 2px;
}

.teaser-informationtext {
  color: var(--text-color-primary-subtle);
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: 14px;
  margin-bottom: 6px;
}

/* TABELL
--------------------------------------------------------*/
.table-header {
  background: var(--surface-brand-primary);
  padding: 24px 16px;
  padding-bottom: 16px;
  border-top-left-radius: var(--border-radius-sm);
  border-top-right-radius: var(--border-radius-sm);
}
.table-header p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .table-header {
    padding: 48px;
    padding-bottom: 32px;
  }
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap:focus-within {
  outline: 2px solid var(--focus, #0a84ff);
}

table.locations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--grey-100);
  border-bottom-left-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);
  overflow: hidden;
}

.locations thead th {
  text-align: left;
  font-weight: 700;
  padding: 0.875rem 1rem;
  background: var(--surface-brand-primary);
  border-bottom: 1px solid var(--surface-brand-primary);
}

.locations tbody th[scope=row] {
  font-family: var(--font-sans);
  font-weight: var(--semibold);
  text-align: left;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .locations tbody th[scope=row] {
    padding-left: 48px;
  }
}

.locations td,
.locations th[scope=row] {
  padding: 0.875rem 1rem;
  vertical-align: top;
}

.locations tbody tr:nth-child(even) {
  background: var(--surface-brand-primary);
}

.locations a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.locations a:focus-visible {
  outline: 2px solid var(--focus, #0a84ff);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .locations thead th,
  .locations tbody td,
  .locations tbody th[scope=row] {
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/* LISTA JOBB
--------------------------------------------------------*/
.lista-jobb {
  display: flex;
  flex-direction: column;
}

.lista-jobb-item {
  border-top: 1px solid var(--grey-300);
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 24px;
  align-items: center;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: 18px;
}
.lista-jobb-item:last-child {
  border-bottom: 1px solid var(--grey-300);
}
.lista-jobb-item img {
  max-height: 32px;
}
.lista-jobb-item .jobb-titel {
  font-weight: var(--bold);
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
}
/* BREADCRUMB
--------------------------------------------------------*/
.section-breadcrumb {
  padding-block: 24px 0;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: var(--semibold);
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-color-black);
  border-bottom: 2px solid var(--text-color-black);
}
.breadcrumb a:hover {
  color: #646464;
  border-color: #646464;
}

.breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 12px;
  background: url("../../assets/img/icons/bc-16x16.svg") no-repeat center;
  background-size: contain;
}

.breadcrumb li[aria-current=page] {
  color: #646464;
  border-bottom: none;
}

/* PAGINATION
--------------------------------------------------------*/
:root {
  --pg-bg: #e9eff4;
  --pg-fg: #010101;
  --pg-active-bg: #010101;
  --pg-active-fg: #fafafa;
  --pg-hover-bg: #dbe6ee;
  --pg-focus: #2d78ff;
  --pg-size: 48px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-block: 24px;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  --size: var(--pg-size);
  display: inline-grid;
  place-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  text-decoration: none;
  background: var(--surface-brand-primary);
  color: var(--grey-900);
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
  font-size: 21px;
  transition: transform 0.1s ease, background-color 0.2s ease, color 0.2s ease;
}

.pagination__link:hover {
  background: var(--pg-hover-bg);
}

.pagination__link:active {
  transform: translateY(1px) scale(0.98);
}

.pagination__link.is-current {
  background: var(--pg-active-bg);
  color: var(--pg-active-fg);
  cursor: default;
}

.pagination__link--icon .icon {
  width: 24px;
  height: 24px;
}

.pagination__link:focus-visible {
  outline: 3px solid var(--pg-focus);
  outline-offset: 3px;
}

.pagination__link[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 420px) {
  :root {
    --pg-size: 42px;
  }
  .pagination__list {
    gap: 12px;
  }
  .pagination__link {
    font-size: 16px;
  }
}
/* HELPER
--------------------------------------------------------*/
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 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;
}

[role=button]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
}

.cta-btn {
  display: inline-flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-full);
  color: var(--grey-900);
  background: var(--grey-100);
  font-family: var(--font-sans);
  font-weight: var(--semibold);
  text-decoration: none !important;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s;
  pointer-events: auto;
}
.cta-btn:hover {
  color: var(--color-black);
}

.cta-btn-primary {
  background: var(--grey-900);
  color: var(--text-color-white) !important;
  border: var(--border-medium) solid var(--grey-900);
}
.cta-btn-primary svg path {
  fill: var(--grey-100);
}
.cta-btn-primary:hover {
  color: var(--text-color-white);
}

.cta-btn-secondary {
  background: var(--grey-100);
  color: var(--text-color-black);
  border: var(--border-medium) solid var(--grey-100);
}
.cta-btn-secondary svg path {
  fill: var(--grey-100);
}
.cta-btn-secondary:hover {
  color: var(--text-color-white);
}

.cta-btn-tertiary {
  background: var(--surface-brand-tertiary);
  color: var(--grey-900);
}

.cta-brand {
  background: var(--surface-brand-secondary);
}

.cta-btn-ghost,
.cta-btn-ghost-white {
  background: transparent;
  border: var(--border-medium) solid var(--grey-900);
}
.cta-btn-ghost:hover,
.cta-btn-ghost-white:hover {
  background: transparent;
  color: var(--grey-900);
  border-color: var(--grey-900);
}

.cta-btn-ghost-white {
  border: var(--border-medium) solid var(--grey-100);
  color: var(--grey-100);
}
.cta-btn-ghost-white svg path {
  fill: var(--grey-100);
}
.cta-btn-ghost-white:hover {
  background: transparent;
  color: var(--grey-100);
  border-color: var(--grey-100);
}

.cta-btn-white {
  color: var(--grey-900) !important;
}

.cta-btn-link {
  align-items: center;
}
.cta-btn-link .arrow-list {
  margin-top: -2px;
}

.cta-btn-round {
  width: 48px;
  height: 48px;
  padding: 0 !important;
}

.cta-green {
  color: var(--green-900);
  background: var(--green-500);
}

.cta-btn-x-sm {
  font-size: 16px;
  padding: 12px 24px;
}

.cta-btn-sm {
  font-size: 18px;
  padding: 12px 24px;
}

.cta-btn-md {
  font-size: 18px;
}
@media (min-width: 768px) {
  .cta-btn-md {
    font-size: 21px;
  }
}

.cta-btn-group {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 24px;
  margin: 12px 0;
}
.text-block .cta-btn-group {
  gap: 16px;
}

.arrow-icon {
  transition: transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
}

a:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-padding-sm {
  padding: 12px 24px;
}

.border-radius-sm {
  border-radius: var(--border-radius-sm);
}

.border-radius-md {
  border-radius: var(--border-radius-md);
}

.border-radius-full {
  border-radius: var(--border-radius-full);
}

.border-thin {
  border-width: var(--border-thin);
}

.pointer-events-none {
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.global-padding-site-width {
  padding-right: 16px;
  padding-left: 16px;
}
@media (min-width: 1352px) {
  .global-padding-site-width {
    padding-right: 48px;
    padding-left: 48px;
  }
}

.text-center {
  text-align: center;
}

.icon-block {
  display: block;
  margin-bottom: 12px;
}

.icon-48 {
  display: inline-block;
  width: 48px;
  height: 48px;
}

.max-w-640 {
  max-width: 640px;
}

.max-w-860 {
  max-width: 860px;
}

.max-w-960 {
  max-width: 960px;
}

/* Aspect ratio-klasser */
.aspect-1-1 img {
  aspect-ratio: 1/1;
}

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

.aspect-3-2 img {
  aspect-ratio: 3/2;
}

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

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

.aspect-4-5 img {
  aspect-ratio: 4/5;
}

.aspect-4-6 img {
  aspect-ratio: 4/6;
}

.aspect-21-9 img {
  aspect-ratio: 21/9;
}

:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-light-gray: rgba(230, 230, 230, 1);
  --color-gray: rgba(1, 1, 1, 0.2);
  --color-black: rgba(0, 0, 0, 1);
  --color-black-90: rgba(0, 0, 0, 0.9);
  --color-black-80: rgba(0, 0, 0, 0.8);
  --color-black-70: rgba(0, 0, 0, 0.7);
  --color-black-60: rgba(0, 0, 0, 0.6);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-yellow: rgba(255, 222, 32, 1);
  --blue-100: #E5E9EE;
  --blue-200: rgba(230, 240, 240, 1);
  --blue-400: #64CCC9;
  --blue-500: #1EB6F2;
  --blue-600: #3F6E83;
  --blue-900: #032859;
  --blue-400-80: rgba(100, 204, 201, 0.8);
  --blue-900-80: rgba(3, 40, 89, 0.8);
  --green-100: #E9ECEB;
  --green-200: #DCE8E2;
  --green-500: #00C367;
  --green-700: #00733D;
  --green-900: #20403C;
  --green-700-80: rgba(0, 115, 61, 0.8);
  --green-900-80: rgba(32, 64, 60, 0.8);
  --grey-100: #FAFAFA;
  --grey-100-85: rgba(250, 250, 250, 0.85);
  --grey-200: #F5F5F5;
  --grey-300: #C3C3C3;
  --grey-900: #010101;
  --grey-900-20: rgba(1, 1, 1, 0.2);
  --grey-900-80: rgba(1, 1, 1, 0.8);
  --orange: #FF7A20;
  --purple: rgba(144, 94, 201, 1);
  --yellow: #FFDE20;
  --text-color-white: var(--grey-100);
  --text-color-black: var(--grey-900);
  --text-color-primary-subtle: #595959;
  --surface-white: var(--grey-100);
  --surface-black-opacity: var(--grey-900-20);
  --surface-brand-primary: var(--blue-100);
  --surface-brand-secondary: var(--grey-900);
  --surface-brand-tertiary: var(--blue-600);
  --surface-brand-quarternary: var(--yellow);
  --surface-brand-secondary-opacity: var(--grey-900-80);
}

.w-bg-brand {
  background: var(--surface-brand-secondary);
  color: var(--text-color-white);
}
.w-bg-brand .text-block {
  color: var(--text-color-black);
}
.w-bg-brand .contact-list a {
  color: var(--text-color-white);
}
.w-bg-brand .contact-list svg path {
  fill: var(--grey-100);
}

.w-surface-brand-primary,
.w-bg-brand-primary {
  background: var(--surface-brand-primary);
  color: var(--text-color-black);
}

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

.text-color-dark {
  color: var(--text-color-black);
}

/* 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);
}
.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;
}

.grid-list-4-columns,
.grid-list-3-columns,
.grid-list-2-columns {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .grid-list-4-columns,
  .grid-list-3-columns,
  .grid-list-2-columns {
    gap: 24px;
    row-gap: 32px;
  }
}

.grid-list-4-columns {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-list-4-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .grid-list-4-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid-list-4-columns.contactcard-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-list-4-columns.contactcard-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .grid-list-4-columns.contactcard-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid-list-3-columns {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-list-3-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

.grid {
  display: grid;
}

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

.grid-cols-2 {
  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(4, 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;
}

.grid-list-even {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 24px;
}

.grid-even-columnns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.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;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

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

.grid-stack > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/6;
  object-fit: cover;
  z-index: -1;
}

.grid-stack .box-content {
  margin: 0;
  padding: 24px 16px;
  color: var(--text-color-white);
  position: relative;
  z-index: 2;
}

.grid-box-content {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 32px;
}
@media (min-width: 860px) {
  .grid-box-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid-box-content p:last-child {
  margin-bottom: 0;
}
.grid-box-content + .cta-btn-group {
  margin-top: 32px;
}

.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;
  }
}
.banner-grid {
  display: grid;
  grid-gap: 16px;
}
.banner-grid.grid-cols-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 600px) {
  .banner-grid.grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .banner-grid.grid-cols-3 {
    grid-gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .banner-grid.grid-cols-3 {
    grid-gap: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.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: 768px) {
  .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;
  }
}
.flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.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;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
}

.red-hat-display-semibold {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  font-style: normal;
}

.red-hat-display-bold {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--bold);
  font-style: normal;
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: var(--regular);
  font-style: normal;
}

.crimson-text-regular-italic {
  font-family: "Crimson Text", serif;
  font-weight: var(--regular);
  font-style: italic;
}

.heading-xxs,
.heading-xs,
.heading-sm,
.heading-md,
.heading-lg,
.heading-xl,
.heading-xxl {
  font-family: var(--font-family-heading);
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  margin-bottom: 0.5em;
}

.heading-xxs {
  font-size: 18px;
  line-height: var(--title-sm-leading);
}

.heading-xs {
  font-size: var(--title-md-size);
  line-height: var(--title-md-leading);
}
@media (min-width: 1024px) {
  .heading-xs {
    font-size: var(--title-lg-size);
    line-height: var(--title-lg-leading);
  }
}

.heading-sm {
  font-size: var(--title-sm-size);
  line-height: var(--title-sm-leading);
}
@media (min-width: 640px) {
  .heading-sm {
    font-size: var(--title-md-size);
    line-height: var(--title-md-leading);
  }
}
@media (min-width: 1024px) {
  .heading-sm {
    font-size: var(--title-lg-size);
    line-height: var(--title-lg-leading);
  }
}
@media (min-width: 1400px) {
  .heading-sm {
    font-size: var(--title-xl-size);
    line-height: var(--title-xl-leading);
  }
}

.heading-md {
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-leading);
}
@media (min-width: 1024px) {
  .heading-md {
    font-size: var(--title-xl-size);
    line-height: var(--title-xl-leading);
  }
}
@media (min-width: 1400px) {
  .heading-md {
    font-size: var(--title-2xl-size);
    line-height: var(--title-2xl-leading);
  }
}

.heading-lg {
  font-size: var(--title-xl-size);
  line-height: var(--title-xl-leading);
}
@media (min-width: 1024px) {
  .heading-lg {
    font-size: var(--title-2xl-size);
    line-height: var(--title-2xl-leading);
  }
}
@media (min-width: 1400px) {
  .heading-lg {
    font-size: var(--title-3xl-size);
    line-height: var(--title-3xl-leading);
  }
}

.heading-xl {
  font-size: var(--title-2xl-size);
  line-height: var(--title-2xl-leading);
}
@media (min-width: 1024px) {
  .heading-xl {
    font-size: var(--title-3xl-size);
    line-height: var(--title-3xl-leading);
  }
}
@media (min-width: 1400px) {
  .heading-xl {
    font-size: var(--title-4xl-size);
    line-height: var(--title-4xl-leading);
  }
}

.heading-xxl {
  font-size: var(--title-2xl-size);
  line-height: var(--title-2xl-leading);
}
@media (min-width: 640px) {
  .heading-xxl {
    font-size: var(-title-3xl-size);
    line-height: var(-title-3xl-leading);
  }
}
@media (min-width: 1024px) {
  .heading-xxl {
    font-size: var(--title-4xl-size);
    line-height: var(--title-4xl-leading);
  }
}
@media (min-width: 1400px) {
  .heading-xxl {
    font-size: var(--title-5xl-size);
    line-height: var(--title-5xl-leading);
  }
}

h1.small,
h1 small, h2.small,
h2 small, h3.small,
h3 small, h4.small,
h4 small, h5.small,
h5 small, h6.small,
h6 small {
  font-weight: var(--regular);
  line-height: 1;
}

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%;
}

/* Text
--------------------------------------------------------*/
p {
  margin: 0 0 1em;
}

.text-xs {
  font-size: var(--text-xs-size);
  line-height: var(--text-xs-leading);
}

.text-sm {
  font-size: var(--text-sm-size);
  line-height: var(--text-sm-leading);
}

.text-md {
  font-size: var(--text-md-size);
  line-height: var(--text-md-leading);
}

.text-lg {
  font-size: var(--text-lg-size);
  line-height: var(--text-lg-leading);
}

.text-xl {
  font-size: var(--text-md-size);
  line-height: var(--text-md-leading);
}
@media (min-width: 1024px) {
  .text-xl {
    font-size: var(--text-lg-size);
    line-height: var(--text-lg-leading);
  }
}
@media (min-width: 1440px) {
  .text-xl {
    font-size: var(--text-xl-size);
    line-height: var(--text-xl-leading);
  }
}

.lead {
  font-size: var(--text-sm-size);
  line-height: var(--text-sm-leading);
  font-family: var(--font-sans);
  font-weight: var(--semibold);
}
@media (min-width: 1024px) {
  .lead {
    font-size: var(--text-sm-size);
  }
}
@media (min-width: 1440px) {
  .lead {
    font-size: var(--text-md-size);
  }
}

.weight-regular {
  font-weight: var(--regular);
}

.weight-semibold {
  font-weight: var(--semibold);
}

.weight-bold {
  font-weight: var(--bold);
}

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

.article {
  display: flex;
  flex-direction: column;
}

.article-header,
.article-lead {
  max-width: var(--site-width--n);
  width: 100%;
  margin: 0 auto;
}

.article-image {
  overflow: hidden;
  margin-bottom: 42px;
  max-height: 724px;
}

.article-content {
  max-width: 1211px;
  width: 100%;
  margin-left: auto;
}
.wide .article-content {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-left: 0;
  max-width: 1096px;
  margin-right: auto;
  margin-left: auto;
}
.wide .article-content .article-entry {
  max-width: 1096px;
  margin-right: auto;
  margin-left: auto;
}
.article-lead {
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-leading);
}
.article-lead h1, .article-lead h2 {
  font-size: var(--title-xl-size);
  line-height: var(--title-xl-leading);
}
.article-lead a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .article-lead {
    font-size: var(--text-xl-size);
    line-height: var(--text-xl-leading);
  }
  .article-lead h1, .article-lead h2 {
    font-size: var(--title-3xl-size);
    line-height: var(--title-3xl-leading);
  }
}

.article-content {
  display: grid;
  grid-gap: 24px;
}
@media (min-width: 768px) {
  .article-content {
    grid-template-columns: 1fr 380px;
  }
}
@media (min-width: 1200px) {
  .article-content {
    grid-template-columns: 1fr 424px;
  }
}

.article-entry {
  font-size: 21px;
  max-width: 648px;
}
.article-entry h1 {
  font-size: var(--title-xl-size);
  line-height: var(--title-xl-leading);
}
.article-entry h2 {
  margin-bottom: 6px;
  font-size: var(--title-lg-size);
  line-height: var(--title-lg-leading);
}
.article-entry a {
  text-decoration: underline;
}
.article-entry img {
  border-radius: var(--border-radius-md);
  margin: 16px 0;
}
.article-entry figure {
  margin: 0.5em 0;
}
.article-entry figure figcaption {
  padding: 2px 12px 0;
}
.article-entry figure img {
  margin-bottom: 0;
}
.article-entry ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 40px;
}
.article-entry ul li {
  display: list-item;
  text-align: match-parent; /* ärvs normalt */
}
@media (min-width: 768px) {
  .article-entry {
    font-size: 24px;
  }
  .article-entry h1 {
    font-size: var(--title-3xl-size);
    line-height: var(--title-3xl-leading);
  }
  .article-entry h2 {
    font-size: var(--title-xl-size);
    line-height: var(--title-xl-leading);
  }
}

.article-entry-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.module {
  overflow: hidden;
}

.module-top-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text-color-white);
  background-color: var(--surface-brand-secondary);
  min-height: 150px;
  padding: 24px;
}
.module-top-inner h3 {
  margin-bottom: 0;
}

.module-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.module-inner .cta-btn-group {
  margin-top: auto;
}
.module-inner ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0.5em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 20px;
}
.module-inner ul li {
  display: list-item;
  text-align: match-parent; /* ärvs normalt */
}
.module-inner a {
  text-decoration: underline;
}

.section-banner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-radius: var(--border-radius-md);
  overflow: hidden;
}
.section-banner .banner-text {
  order: 2;
  display: flex;
  flex-direction: column;
  padding: 16px;
  padding-top: 0;
  padding-right: 48px;
  justify-content: center;
}
.section-banner .banner-text h2 {
  margin-bottom: 24px;
}
.section-banner .banner-image {
  order: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.section-banner .banner-image .desktop {
  display: none;
}
@media (min-width: 768px) {
  .section-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-banner .banner-text {
    order: 1;
    padding: 48px;
  }
  .section-banner .banner-image {
    order: 2;
  }
  .section-banner .banner-image .phone {
    display: none;
  }
  .section-banner .banner-image .desktop {
    display: block;
  }
}

.sm-grid-cols-1 figure {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .sm-grid-cols-1 figure {
    margin-bottom: 0;
  }
}

/* Section block utfallande
--------------------------------------------------------*/
.section-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0.5em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 20px;
}
.text-block ul li {
  display: list-item;
  text-align: match-parent; /* ärvs normalt */
}

.image-left {
  /* Textblock som ligger över bilden */
}
.image-left .block-wrapper {
  position: relative;
  isolation: isolate;
  width: 100%;
}
.image-left .block-wrapper .image-wrapper {
  width: calc(100% + 32px);
  margin: 0 -16px;
  aspect-ratio: 6/4;
}
.image-left .text-block {
  position: relative;
  margin-top: -80px;
  padding: 24px 16px;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  background: var(--surface-brand-primary);
}
.image-left .text-block .footer-text-block {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .image-left {
    /* Textblock som ligger över bilden */
  }
  .image-left .block-wrapper {
    overflow: hidden;
    padding: 84px 0;
  }
  .image-left .block-wrapper .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
  }
  .image-left .block-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
  }
  .image-left .text-block {
    position: relative;
    width: 50%;
    margin-top: 0;
    padding: 48px;
    padding-right: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }
  .image-left .text-block .footer-text-block {
    margin-top: 24px;
  }
}
.image-right .block-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: calc(100% + 32px);
  margin: 0 -16px;
}
.image-right .block-wrapper .image-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 6/4;
}
.image-right .block-wrapper img {
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: var(--border-radius-md);
}
.image-right .text-block {
  position: relative;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  background: var(--surface-brand-primary);
}
.image-right .text-block .text-block-content {
  background: var(--surface-brand-primary);
  padding: 24px;
  padding-top: 120px;
  margin-top: -100px;
}
.image-right .text-block .footer-text-block {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .image-right .block-wrapper {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    margin: 0;
  }
  .image-right .block-wrapper .image-wrapper {
    position: absolute;
    top: 0;
    right: -33%;
    padding: 48px 0;
    margin-bottom: 0;
    width: 66.5%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: auto;
  }
  .image-right .block-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: var(--border-radius-md);
  }
  .image-right .text-block {
    position: relative;
    width: 75%;
    min-height: 560px;
    padding: 48px;
    padding-top: 62px;
    padding-right: 33%;
    border-radius: var(--border-radius-md);
    background: var(--surface-brand-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
  }
  .image-right .text-block .text-block-content {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .image-right .text-block .footer-text-block {
    margin-top: auto;
  }
}
.block-contact-form .block-wrapper {
  position: relative;
  isolation: isolate;
  width: calc(100% + 32px);
  margin: 0 -16px;
}
.block-contact-form .block-wrapper .contact-form {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 24px 16px;
  margin: 0 16px;
  margin-top: -80px;
  background: var(--surface-brand-secondary);
  border-radius: var(--border-radius-md);
}
.block-contact-form .text-block {
  position: relative;
  width: 100%;
  padding: 24px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  background: var(--surface-brand-primary);
}
.block-contact-form .text-block .text-block-content {
  background: var(--surface-brand-primary);
  padding: 24px;
  padding-top: 120px;
  margin-top: -100px;
}
.block-contact-form .text-block .footer-text-block {
  margin-top: 24px;
}
.block-contact-form .text-block-splash {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .block-contact-form .block-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    isolation: isolate;
    width: 100%;
    margin: 0;
  }
  .block-contact-form .block-wrapper .contact-form {
    padding: 48px;
    margin-top: 100px;
    margin-left: -30%;
    width: calc(57.639939% + 94px);
    overflow: hidden;
    border-radius: var(--border-radius-md);
  }
  .block-contact-form .text-block {
    position: relative;
    width: 82.753404%;
    padding: 48px;
    padding-right: 33%;
    border-radius: var(--border-radius-md);
    background: var(--surface-brand-primary);
    display: flex;
    flex-direction: column;
    margin-right: auto;
    background: var(--surface-brand-primary);
  }
  .block-contact-form .text-block .text-block-content {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .block-contact-form .text-block .footer-text-block {
    margin-top: auto;
  }
}
.image-left-list .block-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: calc(100% + 32px);
  margin: 0 -16px;
  margin-bottom: 24px;
}
.image-left-list .block-wrapper:last-child {
  margin-bottom: 0;
}
.image-left-list .block-wrapper .image-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 24px;
}
.image-left-list .block-wrapper img {
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: var(--border-radius-md);
}
.image-left-list .text-block {
  position: relative;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  background: var(--surface-brand-primary);
}
.image-left-list .text-block .text-block-content {
  background: var(--surface-brand-primary);
  padding: 24px;
  padding-top: 120px;
  margin-top: -100px;
}
.image-left-list .text-block .footer-text-block {
  margin-top: 0;
}

@media (min-width: 768px) {
  .image-left-list .block-wrapper {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    margin: 0;
    margin-bottom: 48px;
  }
  .image-left-list .block-wrapper:last-child {
    margin-bottom: 0;
  }
  .image-left-list .block-wrapper .image-wrapper {
    position: absolute;
    top: 0;
    left: -54%;
    padding: 30px 0;
    margin-bottom: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
  }
  .image-left-list .block-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: var(--border-radius-md);
  }
  .image-left-list .text-block {
    position: relative;
    width: 65%;
    padding-right: 62px;
    padding-top: 48px;
    padding-bottom: 32px;
    padding-left: 7%;
    border-radius: var(--border-radius-md);
    background: var(--surface-brand-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    background: var(--surface-brand-primary);
  }
  .image-left-list .text-block .footer-text-block {
    margin-top: 0;
    margin-right: -32px;
  }
  .image-left-list .text-block p {
    margin-bottom: 0;
  }
  .image-left-list .text-block .text-block-content {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.image-right .text-block.w-bg-transparent {
  background: transparent !important;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .image-right .text-block.w-bg-transparent {
    padding-left: 0;
  }
}

.text-block .subtitle-s,
.banner-text .subtitle-s,
.text-box-content .subtitle-s {
  display: block;
  font-family: var(--font-family-heading);
  font-optical-sizing: auto;
  font-weight: var(--semibold);
  margin-bottom: 0.2em;
  font-size: 14px;
}
@media (min-width: 768px) {
  .text-block .subtitle-s,
  .banner-text .subtitle-s,
  .text-box-content .subtitle-s {
    font-size: 21px;
  }
}

.text-block h2 {
  margin-bottom: 1rem;
}

.text-block p {
  margin-bottom: 1rem;
}

/* END OF Section block utfallande */
@media (min-width: 768px) {
  .text-box-content {
    padding-left: 16.666666%;
  }
  .reverse-order .text-box-content {
    padding-right: 16.666666%;
    padding-left: 0;
  }
}

.banner-text .footer-text-block,
.text-box-content .footer-text-block {
  margin-top: 32px;
}

/* POPUP
--------------------------------------------------------*/
@keyframes slideUpFadeIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.1); */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.overlay.bottom {
  align-items: flex-end;
  padding-bottom: 180px;
}

.modal {
  background: var(--surface-brand-primary);
  box-shadow: 0px 64px 48px 0px rgba(0, 0, 0, 0.5);
  padding: 32px;
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 648px;
  position: relative;
  margin: 0 16px;
}
.modal.w-blur {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4.7px);
  -webkit-backdrop-filter: blur(4.7px);
}
.modal h2 {
  text-align: center;
}

.modal {
  transform: translateY(100px);
  opacity: 0;
  animation-fill-mode: forwards;
}

.overlay.show .modal {
  animation: slideUpFadeIn 0.4s ease forwards;
}

.overlay.hide .modal {
  animation: slideDownFadeOut 0.4s ease forwards;
}

.modal-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.modal-list a {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: center;
  padding: 16px 0;
}
.modal-list div {
  display: inline-flex;
  flex-grow: 1;
  justify-content: center;
  flex-direction: column;
}
.modal-list h3, .modal-list p {
  margin: 0;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  width: 48px;
  border-radius: var(--border-radius-full);
  cursor: pointer;
}
.close-btn path {
  fill: var(--grey-900);
}

:root {
  --error: #B00020;
  --ok:#155724;
  --ok-bg:#D4EDDA;
  --border:#767676;
}

.form-wrapper {
  font-family: var(--font-sans);
}

.form-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.form-group:last-child {
  margin-bottom: 0;
}
.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 input[type=date],
.form-group textarea,
.form-group select {
  color: var(--text-color-white);
  padding: 0 8px 12px;
  font-size: 18px;
}
.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 input[type=date],
.form-group select {
  border-bottom: 2px solid var(--surface-white);
}
.form-group input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(96%);
  cursor: pointer;
}
.form-group textarea {
  background: var(--surface-white);
  border-radius: var(--border-radius-sm);
  color: var(--text-color-black);
  min-height: 150px;
  padding: 12px 8px;
}
.form-group .form-check-inline {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-right: 1rem;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-group .form-check-inline label {
  display: inline-block;
}
.form-group .form-check .form-check-input {
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0;
  vertical-align: top;
  background-color: var(--surface-brand-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  accent-color: var(--surface-brand-primary);
  border: 1px solid var(--surface-white);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.full-width-form-group {
  grid-column: span 2;
}

.contact-form label {
  font-size: 16px;
  font-weight: var(--semibold);
  margin-bottom: 12px;
}

input[type=submit] {
  font-size: 18px;
  cursor: pointer;
}
input[type=submit].link-with-icon {
  padding-right: 48px;
  background-image: url(../img/icons/arrow-light-small.svg);
  background-repeat: no-repeat;
  background-position: center right 16px;
}

.hint {
  color: #333;
  font-size: 0.9375rem;
}

.required-badge {
  font-weight: 600;
}

.error-text {
  color: var(--error);
  margin-top: 0.35rem;
}

.error-field {
  border-color: var(--error);
}

@media only screen and (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 {
  .print\:hidden {
    display: none;
  }
  *,
  *::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;
  }
}
