@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
  line-break: after-white-space;
  -moz-user-select: auto;
       user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html {
  font-size: 62.5%;
}
html:has(.menu-open) {
  overflow: hidden;
}

body {
  font-size: 1.6rem;
  background-color: #fff;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  line-height: 1.25;
  margin: auto;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 94%;
  margin: auto;
}

h1, h2, h3, h4 {
  margin: 0.1em 0 0.5em;
  font-weight: 600;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

@media all and (min-width: 800px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 3.8rem;
  }
  h3 {
    font-size: 2.8rem;
  }
  h4 {
    font-size: 2rem;
  }
}
@media all and (min-width: 1440px) {
  h1 {
    font-size: 6.4rem;
  }
  h2 {
    font-size: 4.8rem;
  }
  h3 {
    font-size: 2.8rem;
  }
  h4 {
    font-size: 2.6rem;
  }
}
a {
  color: #4D7062;
}

p {
  margin: 0.1em 0 1em;
  font-weight: 200;
  font-size: 1.4rem;
}
@media screen and (min-width: 800px) {
  p {
    font-size: 1.8rem;
  }
}

strong {
  font-weight: 400;
}

em {
  font-style: italic;
}

ul, ol {
  margin: 1em 0;
  margin-left: 2.6rem;
  font-weight: 200;
}

ul {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}

button {
  cursor: pointer;
}

nav ul, nav ol {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 300;
}

.justify-left {
  text-align: left;
}

.input-group {
  margin: 12px 0;
  position: relative;
}
.input-group label {
  position: absolute;
  font-weight: 200;
  z-index: 5;
  padding: 4px;
}
.input-group input {
  background-color: #fff;
  border-bottom: 1px solid #1B4C41;
  padding: 5px;
  position: relative;
  font-weight: 200;
  z-index: 10;
  font-size: 1.4rem;
}
.input-group input::-moz-placeholder {
  opacity: 1;
  color: #000;
  font-size: 1.4rem;
}
.input-group input::placeholder {
  opacity: 1;
  color: #000;
  font-size: 1.4rem;
}
.input-group input:focus {
  border-color: #1B4C41;
}

.select-group {
  margin: 12px 0;
}
.select-group label {
  font-weight: 200;
  padding: 5px;
  display: block;
  font-size: 1.4rem;
}
.select-group select {
  font-weight: 200;
  border-bottom: 1px solid #1B4C41;
  min-width: 234px;
  padding: 4px;
  font-size: 1.4rem;
  background-image: url(/assets/icons/arrow.svg);
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 12px;
}
.select-group select:focus {
  border-color: #1B4C41;
}

.textarea-group {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
}
.textarea-group label {
  font-weight: 200;
  font-size: 1.4rem;
}
.textarea-group textarea {
  border: 1px solid #1B4C41;
  border-radius: 5px;
  font-weight: 200;
  padding: 8px;
  font-size: 1.4rem;
}
.textarea-group textarea:focus {
  border-color: #1B4C41;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.button {
  display: inline-block;
  background: transparent;
  border-radius: 20px;
  color: #1B4C41;
  padding: 9px 20px 9px;
  border: 1px solid #1B4C41;
  font-size: 1.6rem;
  transition: all 0.2s ease;
  font-weight: 400;
}
.button:hover {
  color: #FFFCED;
  background: #1B4C41;
}
.button.button-secondary, .block-sidebyside article.bg-main .button, .block-sidebyside article.bg-dark .button {
  border-color: #FFFCED;
  color: #FFFCED;
}
.button.button-secondary:hover, .block-sidebyside article.bg-main .button:hover, .block-sidebyside article.bg-dark .button:hover {
  background: #FFFCED;
  color: #4D7062;
}
.button.button-tertiary {
  background: #C9AA79;
  color: #FFFCED;
  border-color: #C9AA79;
}
.button.button-tertiary:hover {
  background-color: #4D7062;
  border-color: #4D7062;
}
.button.button-quatenary {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.button.button-quatenary:hover {
  background: transparent;
  color: #000;
}

.block-button {
  margin: 0;
  margin-bottom: 30px;
}
.block-button .button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
}
.block-button .button-container.justify-left {
  max-width: 1440px;
  justify-content: flex-start;
}
.block-button .button-container .button {
  margin: 4px;
}

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

.container figure img {
  border-radius: 5px;
}

.main-content figure {
  overflow: hidden;
  opacity: 0;
}
.main-content figure.fade-in {
  animation: slideIn 0.8s ease 0.3s forwards;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}
.block {
  scroll-margin-top: 80px;
}

.block:not(.block-heading, .block-list, .block-text, .block-button) {
  margin-bottom: 30px;
}
@media all and (min-width: 800px) {
  .block:not(.block-heading, .block-list, .block-text, .block-button) {
    margin-bottom: clamp(50px, 6vw, 100px);
  }
}

@media all and (min-width: 800px) {
  body {
    padding-top: 120px;
  }
}
.block-heading h1, .block-heading h2, .block-heading h3 {
  margin-left: auto;
  margin-right: auto;
}

.contact-map iframe {
  height: 350px;
  width: 100%;
}
@media all and (min-width: 800px) {
  .contact-map iframe {
    height: 450px;
  }
}

.template-contact .contacts {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.template-contact .contacts .contact-card {
  flex: 0 1 100%;
}
@media all and (min-width: 500px) {
  .template-contact .contacts .contact-card {
    flex-basis: 49%;
  }
}
@media all and (min-width: 800px) {
  .template-contact .contacts .contact-card {
    flex: 1;
  }
}

.contact-card {
  margin-bottom: 24px;
}
.contact-card .info {
  display: flex;
  flex-direction: column;
}
.contact-card .info .name {
  margin: 12px 0;
  font-size: 1.8rem;
}
.contact-card .info .position {
  margin-bottom: 12px;
}
.contact-card .info span:not(.name) {
  font-weight: 200;
}

.template-position .container {
  margin-top: 20px;
  margin-bottom: 40px;
}
.template-position .container .contact-person {
  border-radius: 5px;
  background-color: #4D7062;
  color: #FFFCED;
  padding: 16px;
  margin-bottom: 16px;
}
.template-position .container .contact-person h2 {
  margin-bottom: 16px;
}
.template-position .container .contact-person a {
  color: #AED59A;
}
@media all and (min-width: 500px) {
  .template-position .container {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
  .template-position .container .article {
    flex: 1 1;
  }
  .template-position .container .contact-person {
    width: clamp(100px, 300px, 50%);
  }
}
@media all and (min-width: 1024px) {
  .template-position .container {
    gap: 10%;
  }
}

.site-header {
  height: 64px;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .site-logo {
  height: 46px;
  transition: height 0.3s ease;
}
.site-header .main-menu {
  display: none;
}
.site-header .main-menu.main-menu-last {
  display: none;
}
@media (min-width: 800px) {
  .site-header {
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s ease-out;
  }
  .site-header .container {
    display: flex;
  }
  .site-header .site-logo {
    height: 54px;
  }
  .site-header figure {
    width: 130px;
  }
  .site-header .main-menu li.has-submenu {
    position: relative;
  }
  .site-header .main-menu li.has-submenu > a {
    padding-right: 2px;
  }
  .site-header .main-menu li.has-submenu:after {
    position: absolute;
    content: "";
    right: 14px;
    top: 0;
    width: 12px;
    height: 38px;
  }
  .site-header .main-menu li.has-submenu:hover .submenu {
    opacity: 1;
    pointer-events: all;
  }
  .site-header .main-menu li .submenu-icon {
    width: 10px;
    height: 10px;
    margin-right: 10px;
    position: relative;
  }
  .site-header .main-menu li .submenu {
    position: absolute;
    width: 400px;
    background-color: #fff;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    padding: 8px 0 0 0;
  }
  .site-header .main-menu li .submenu .submenu-background {
    position: fixed;
    left: 0;
    right: 0;
    top: 100px;
    background-color: #fff;
  }
  .site-header .main-menu li .submenu ul {
    display: flex;
    flex-direction: column;
  }
  .site-header .main-menu li .submenu li {
    display: flex;
    margin-right: auto;
  }
  .site-header .main-menu li .submenu li a {
    padding: 10px 14px;
  }
  .site-header .main-menu .current-class > a {
    color: #4D7062;
  }
  .site-header .main-menu .current-class > a:before {
    background-color: #4D7062;
  }
  .site-header .main-menu a {
    padding: 14px;
    position: relative;
    color: #000;
    display: inline-block;
    transition: all 0.25s ease;
    font-weight: 400;
  }
  .site-header .main-menu a:hover {
    color: #4D7062;
    transform: scale(1.1);
  }
  .site-header .main-menu a.external {
    padding-right: 16px;
    background-image: url(/assets/icons/pil-svart.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: top 12px right;
  }
}
.site-header.slideUp {
  height: 80px;
}
.site-header.slideUp .site-logo {
  height: 40px;
}
.site-header.slideUp .submenu-background {
  top: 80px !important;
}
@media all and (min-width: 1024px) {
  .site-header .main-menu.main-menu-last {
    display: flex;
  }
  .site-header .main-menu-first {
    display: flex;
  }
  .site-header .main-menu-first > ul > li {
    padding-left: 4px;
    padding-right: 4px;
  }
  .site-header .main-menu-first > ul > li:last-of-type {
    display: none;
  }
}

.site-footer {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
  background-color: #4D7062;
  color: #FFFCED;
  line-height: 2;
}
.site-footer .container {
  background-repeat: no-repeat;
  background-position: center bottom 40px;
  background-size: 100px;
  padding-bottom: 80px;
}
.site-footer a {
  color: #FFFCED;
  position: relative;
}
.site-footer a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFFCED;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.site-footer a:hover::before {
  transform: scaleX(1);
}
.site-footer .column {
  margin-bottom: 30px;
}
.site-footer .column h2, .site-footer .column h4 {
  text-transform: uppercase;
}
.site-footer .column h3 {
  margin-bottom: 0.75rem;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}
.site-footer .site-info p {
  margin: 0;
}
.site-footer .footer-menu ul {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-menu ul a {
  font-weight: 200;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  width: 100%;
}
.site-footer .footer-links figure {
  flex: 0 1 45%;
  max-width: 200px;
}
.site-footer .footer-links a:before {
  display: none;
}
.site-footer .rights {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 30px;
}
@media all and (min-width: 500px) {
  .site-footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .site-footer .site-info {
    width: 100%;
    display: flex;
  }
  .site-footer .footer-menus {
    display: flex;
    width: 100%;
  }
  .site-footer .footer-menus .footer-menu {
    width: 50%;
  }
  .site-footer .column {
    width: 50%;
  }
}
@media all and (min-width: 800px) {
  .site-footer {
    padding-top: 60px;
  }
  .site-footer .container {
    justify-content: flex-end;
    background-size: 160px;
    background-position: left top;
    padding-bottom: 0;
  }
  .site-footer .site-info {
    width: 50%;
  }
  .site-footer .site-info .column {
    padding-right: 8px;
  }
  .site-footer .footer-menus {
    width: 30%;
  }
  .site-footer .rights {
    margin-top: 30px;
  }
}

.mobile-menu .toggle-menu {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFCED;
  color: #fff;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  text-align: center;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu span {
  height: 16px;
}
.mobile-menu nav {
  position: relative;
  overflow: scroll;
}
.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.mobile-menu nav ul li {
  position: relative;
  margin-right: auto;
  flex-shrink: 1;
}
.mobile-menu nav ul .submenu-button {
  width: 24px;
  height: 24px;
  position: absolute;
  right: -30px;
  top: 1.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #1B4C41;
}
.mobile-menu nav ul .submenu-button img {
  margin-left: 2px;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}
.mobile-menu nav ul .submenu-button.open img {
  transform: rotate(0deg);
}
.mobile-menu nav ul .submenu-button img {
  width: 12px;
  height: 12px;
}
.mobile-menu nav ul.main-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  overflow: scroll;
  background: #fff;
  padding-top: 60px;
  padding-bottom: 8px;
  transition: all 0.3s ease;
  background-position: top 16px left 12px;
  background-repeat: no-repeat;
  background-size: 80px;
}
.mobile-menu nav ul.main-menu.submenu-open > li > a {
  opacity: 0.5;
}
.mobile-menu nav ul.main-menu > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-menu nav ul.main-menu > li.info {
  margin-top: auto;
}
.mobile-menu nav ul.main-menu > li.info a {
  font-weight: 300;
  font-size: 1.8rem;
  padding: 4px 16px;
}
.mobile-menu nav ul.main-menu a {
  display: flex;
  color: #1B4C41;
  padding: 12px 12px 12px 16px;
  font-weight: 600;
  font-size: 2.8rem;
  transition: opacity 0.2s ease;
}
.mobile-menu nav ul.main-menu a.external {
  padding-right: 26px;
  background-image: url(/assets/icons/pil-svart.svg);
  background-position: top 10px right;
  background-size: 24px;
  background-repeat: no-repeat;
}
.mobile-menu nav ul.submenu {
  width: 100%;
  display: none;
}
.mobile-menu nav ul.submenu.open {
  display: flex;
}
.mobile-menu nav ul.submenu a {
  padding-left: 36px;
}
.mobile-menu.closed nav .main-menu {
  display: none;
}
.mobile-menu.closed .hideIfClosed {
  display: none;
}
.mobile-menu.open .toggle-menu {
  box-shadow: none;
  background: transparent;
}
.mobile-menu.open .hideIfOpen {
  display: none;
}
@media all and (min-width: 500px) {
  .mobile-menu .toggle-menu {
    position: absolute;
    top: 10px;
    box-shadow: none;
    background: transparent;
  }
  .mobile-menu nav {
    position: static;
  }
  .mobile-menu nav .main-menu {
    position: absolute;
    top: 65px;
    bottom: auto;
  }
  .mobile-menu.open button {
    position: fixed;
  }
}
@media all and (min-width: 800px) {
  .mobile-menu {
    position: fixed;
    top: 6px;
    right: 0px;
    z-index: 101;
  }
}
@media all and (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.block-accordion {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #4D7062;
}
.block-accordion .container {
  color: #FFFCED;
}
.block-accordion .container h3 {
  color: #AED59A;
}
.block-accordion .container .accordion-info {
  margin-bottom: 40px;
}
.block-accordion .container .accordion-info .button {
  margin-top: 10px;
}
.block-accordion .container .accordion-content .drawer {
  overflow: hidden;
}
.block-accordion .container .accordion-content .drawer h4 {
  border-top: 1px solid #1B4C41;
  border-color: #FFFCED;
  margin: 0;
  padding: 10px 0 6px;
  font-size: 1.8rem;
  position: relative;
  cursor: pointer;
}
.block-accordion .container .accordion-content .drawer h4:after {
  position: absolute;
  right: 6px;
  top: 16px;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(/assets/icons/accent-plus.png);
  background-size: contain;
  transition: transform 0.2s ease;
}
.block-accordion .container .accordion-content .drawer .toggle-content {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  max-height: 0px;
  transition: all 0.25s ease-in-out;
  margin-bottom: 0;
}
.block-accordion .container .accordion-content .drawer .toggle-content ul {
  margin-top: 4px;
}
.block-accordion .container .accordion-content .drawer .toggle-content ul li {
  line-height: 1.3;
  margin-bottom: 10px;
}
.block-accordion .container .accordion-content .drawer .toggle-content ul li > * {
  vertical-align: top;
}
.block-accordion .container .accordion-content .drawer .toggle-content ul li .key {
  display: inline-block;
  width: 60%;
}
.block-accordion .container .accordion-content .drawer .toggle-content ul li .value {
  display: inline-block;
  padding-left: 8px;
}
.block-accordion .container .accordion-content .drawer .toggle-content .summary-key {
  display: inline-block;
  width: 60%;
}
.block-accordion .container .accordion-content .drawer .toggle-content .summary-value {
  padding-left: 14px;
}
.block-accordion .container .accordion-content .drawer.status-open .toggle-content {
  transform: scaleY(1);
  opacity: 1;
  max-height: 800px;
  margin-bottom: 14px;
}
.block-accordion .container .accordion-content .drawer.status-open h4:after {
  transform: rotate(45deg);
}
.block-accordion .container .accordion-content .drawer:last-of-type {
  border-bottom: 1px solid #1B4C41;
  border-color: #FFFCED;
}
@media all and (min-width: 800px) {
  .block-accordion .container {
    display: flex;
    gap: 5%;
  }
  .block-accordion .container .accordion-info, .block-accordion .container .accordion-content {
    flex-basis: 50%;
    flex-grow: 1;
  }
  .block-accordion .container .accordion-content .drawer .toggle-content ul li {
    margin-bottom: 6px;
  }
}

.block-calendar .calendar {
  display: flex;
  justify-content: center;
}

.block-contact {
  background-color: #4D7062;
  padding: 40px 0;
}
.block-contact .honeypot {
  position: absolute;
  left: -9999px;
}
.block-contact h3 {
  color: #AED59A;
  max-width: 680px;
  text-align: center;
  margin: 1.25em auto 0.75em;
  font-weight: 400;
}
.block-contact p {
  color: #FFFCED;
  text-align: center;
}
.block-contact .input-group label {
  opacity: 0;
}
.block-contact .input-group input {
  background: transparent;
  border-color: #FFFCED;
  color: #FFFCED;
  width: 100%;
}
.block-contact .input-group input::-moz-placeholder {
  color: #FFFCED;
}
.block-contact .input-group input::placeholder {
  color: #FFFCED;
}
.block-contact .input-group input:focus {
  border-color: #AED59A;
}
.block-contact .textarea-group {
  flex: 1;
}
.block-contact .textarea-group label {
  color: #FFFCED;
  padding: 4px;
}
.block-contact .textarea-group textarea {
  border: none;
  background-color: #FFFCED;
  height: 128px;
}
.block-contact .textarea-group textarea:focus {
  border: 1px solid #AED59A;
}
.block-contact .textarea-group p {
  margin: 0.5em 0;
  color: #FFFCED;
  font-size: 1.4rem;
  margin-bottom: 0;
  text-align: left;
}
.block-contact .button-container {
  width: 100%;
}
.block-contact .button-container .button {
  margin-top: 12px;
}
@media all and (min-width: 500px) {
  .block-contact form {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .block-contact form .inputs {
    width: 49%;
  }
}
@media all and (min-width: 800px) {
  .block-contact h3 {
    text-align: center;
  }
  .block-contact form {
    gap: 8%;
  }
  .block-contact form .inputs {
    width: 40%;
  }
  .block-contact form .button {
    margin-left: 48%;
  }
}

.block-doubletext article {
  margin-bottom: 40px;
  font-size: 1.8rem;
}
@media all and (min-width: 800px) {
  .block-doubletext .container {
    display: flex;
    gap: 5%;
  }
  .block-doubletext .container article {
    flex: 1 1 50%;
    margin-bottom: 10px;
  }
}

.block-editor .editor {
  margin: auto;
  text-align: center;
  max-width: 1100px;
  font-size: 1.8rem;
}
.block-editor .editor.justify-left {
  text-align: left;
  max-width: 1440px;
}
.block-editor .editor ul, .block-editor .editor ol {
  display: inline-block;
}
.block-editor .editor ul li, .block-editor .editor ol li {
  text-align: left;
}

.block-formcta .success-bar, .block-formcta .alert-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1000;
  color: #FFFCED;
  padding: 10px;
  transition: all 0.25s ease;
}
.block-formcta .success-bar.hidden, .block-formcta .alert-bar.hidden {
  transform: translateY(-100%);
}
.block-formcta .success-bar {
  background-color: #1B4C41;
}
.block-formcta .alert-bar {
  background-color: rgb(211, 50, 50);
}
.block-formcta .form-ctas article {
  margin-bottom: 40px;
}
@media all and (min-width: 800px) {
  .block-formcta .form-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .block-formcta .form-ctas article {
    flex: 1 1 32%;
    margin-bottom: 0;
  }
}
.block-formcta .cta-form-container {
  display: none;
}
.block-formcta .cta-form-container.open {
  display: block;
}
.block-formcta .cta-form-container .overlay {
  position: fixed;
  z-index: 199;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.block-formcta .cta-form-container form {
  position: fixed;
  left: 2%;
  right: 2%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4%;
  padding: 32px 12px;
  z-index: 200;
  top: 5vh;
  max-width: 720px;
  margin: auto;
  background-color: #fff;
  overflow: auto;
  border-radius: 5px;
}
.block-formcta .cta-form-container form .close-form {
  position: absolute;
  right: 12px;
  top: 12px;
}
.block-formcta .cta-form-container form .close-form img {
  width: 14px;
  height: 14px;
}
.block-formcta .cta-form-container form .form-info {
  font-size: 1.4rem;
}
.block-formcta .cta-form-container form .input-group input {
  width: 100%;
}
.block-formcta .cta-form-container form .input-group input:focus {
  border-color: #4D7062;
}
.block-formcta .cta-form-container form .input-group {
  width: 48%;
}
.block-formcta .cta-form-container form .select-group {
  width: 100%;
}
.block-formcta .cta-form-container form .textarea-group {
  width: 100%;
}
.block-formcta .cta-form-container form .select-group label {
  font-size: 1.4rem;
}
.block-formcta .cta-form-container form .select-group select {
  width: 100%;
}
.block-formcta .cta-form-container form .textarea-group {
  margin-bottom: 0;
}
.block-formcta .cta-form-container form .additional-info {
  width: 100%;
}
@media all and (min-width: 500px) {
  .block-formcta .cta-form-container form {
    padding: 32px 32px;
    height: auto;
    max-height: 90vh;
  }
  .block-formcta .cta-form-container form .additional-info {
    display: flex;
    gap: 2%;
  }
  .block-formcta .cta-form-container form .additional-info .select-group {
    width: auto;
    flex: 1 1 49%;
  }
  .block-formcta .cta-form-container form .additional-info .select-group select {
    width: 100%;
    min-width: 0px;
  }
}

.block-gallery .gallery {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media all and (min-width: 500px) {
  .block-gallery .gallery {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
  }
  .block-gallery .gallery li {
    display: flex;
    width: 49%;
    margin-bottom: 2%;
  }
}
@media all and (min-width: 800px) {
  .block-gallery .gallery li {
    flex-basis: 32%;
  }
}

.block-hero {
  position: relative;
}
.block-hero .hero-row {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  padding: 12px 0;
}
.block-hero .hero-row .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.block-hero .hero-row .headline {
  margin: 0.3em 0;
  font-weight: 600;
}
.block-hero .hero-row .button {
  margin-bottom: 4px;
}
.block-hero figure {
  position: relative;
  height: 80vh;
}
.block-hero figure img, .block-hero figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 800px) {
  .block-hero .hero-row {
    top: 80px;
  }
  .block-hero .hero-image {
    max-height: 450px;
  }
}
@media all and (min-width: 1024px) {
  .block-hero .hero-video {
    max-height: calc(100vh - 300px);
  }
}

.block-image figure {
  overflow: hidden;
}
.block-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-linkblurbs .links {
  width: 100%;
}
.block-linkblurbs .links article {
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2%;
}
.block-linkblurbs .links article h3 {
  font-size: 4rem;
  margin-bottom: 1em;
  color: #FFFCED;
  z-index: 1;
}
.block-linkblurbs .links article a {
  z-index: 1;
}
.block-linkblurbs .links article figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.block-linkblurbs .links article figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 500px) {
  .block-linkblurbs .links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2%;
  }
  .block-linkblurbs .links.count-2 article, .block-linkblurbs .links.count-4 article {
    flex: 1 1 49%;
  }
}
@media all and (min-width: 800px) {
  .block-linkblurbs .links article {
    max-height: 500px;
  }
  .block-linkblurbs .links.count-3 article {
    flex: 1 1 32%;
  }
}
@media all and (min-width: 1024px) {
  .block-linkblurbs .links.count-4 article {
    flex: 1 1 23%;
  }
}

.block-partnerlist {
  background-color: #1B4C41;
  padding: 4rem 0;
}
.block-partnerlist h2 {
  padding-bottom: 3.2rem;
  color: #FFFCED;
}
.block-partnerlist .layout {
  --columns: auto-fill;
  --column-size: 9rem;
  --gap: 1.5rem;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--columns), minmax(min(100%, var(--column-size)), 1fr));
}
.block-partnerlist .layout.large {
  --column-size: 12rem;
  --gap: 2rem;
}
.block-partnerlist .layout.small {
  --column-size: 8rem;
}
.block-partnerlist .layout .partner {
  padding: 12%;
  background: #fff;
  aspect-ratio: 1/1;
}
.block-partnerlist .layout .partner img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.block-partnerlist .layout .partner a {
  display: flex;
  aspect-ratio: 1/1;
}
@media all and (min-width: 800px) {
  .block-partnerlist {
    padding-bottom: 8rem;
    padding-top: 6rem;
  }
  .block-partnerlist .layout {
    --column-size: 18rem;
  }
  .block-partnerlist .layout.large {
    --column-size: 20rem;
  }
  .block-partnerlist .layout.small {
    --column-size: 16rem;
  }
}

.block-sidebyside h3 {
  font-weight: 400;
}
.block-sidebyside.block-maillist h3 {
  color: #000;
}
.block-sidebyside.block-maillist h2 {
  color: #C9AA79;
}
.block-sidebyside article h3 {
  color: #C9AA79;
}
.block-sidebyside article figure.sidebyside-image {
  aspect-ratio: 2/1;
  position: relative;
}
.block-sidebyside article .sidebyside-image {
  margin-bottom: 18px;
  border-radius: 5px;
}
.block-sidebyside article .sidebyside-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-sidebyside article .sidebyside-image h2 {
  font-weight: 600;
  font-size: 3.6rem;
  margin-top: 0;
  color: #AED59A;
}
.block-sidebyside article .sidebyside-content {
  font-size: 1.8rem;
}
.block-sidebyside article .sidebyside-content .button-container {
  margin-top: 30px;
}
.block-sidebyside article.bg-main, .block-sidebyside article.bg-dark {
  background: #4D7062;
  color: #FFFCED;
  padding-top: 40px;
  padding-bottom: 40px;
}
.block-sidebyside article.bg-main a, .block-sidebyside article.bg-dark a {
  color: #FFFCED;
}
.block-sidebyside article.bg-main h3 {
  color: #AED59A;
}
.block-sidebyside article.bg-main .sidebyside-image h2 {
  color: #AED59A;
}
.block-sidebyside article.bg-dark {
  background: #1B4C41;
}
@media all and (min-width: 500px) {
  .block-sidebyside article.bg-main, .block-sidebyside article.bg-dark {
    padding-top: clamp(50px, 6vw, 100px);
    padding-bottom: clamp(50px, 6vw, 100px);
  }
  .block-sidebyside article.reverse .container {
    flex-direction: row-reverse;
  }
  .block-sidebyside .container {
    display: flex;
    gap: 4%;
  }
  .block-sidebyside .container .sidebyside-image {
    display: flex;
    flex-direction: column;
    flex: 1 1 48%;
    margin-bottom: 0;
  }
  .block-sidebyside .container .sidebyside-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block-sidebyside .container .sidebyside-content {
    flex: 1 1 48%;
    padding-right: 60px;
  }
  .block-sidebyside .container .sidebyside-content .button-container {
    margin-top: 30px;
  }
}
@media all and (min-width: 800px) {
  .block-sidebyside article .sidebyside-image {
    width: auto;
  }
  .block-sidebyside article .sidebyside-image h2 {
    font-size: 4.8rem;
  }
  .block-sidebyside article .sidebyside-content {
    display: flex;
    flex-direction: column;
  }
  .block-sidebyside article .sidebyside-content h2 {
    font-size: 3.8rem;
  }
}
