@import 'https://kit.fontawesome.com/028c371dc6.css';
@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");
@import url("https://use.typekit.net/xhm7krr.css");
@import 'bootstrap.min.css';
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
@keyframes fadeInFull {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.675;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider .slick-list {
  margin: 0 -1rem;
  padding: 1px 0;
  display: flex;
  flex-direction: column;
}
.slider .slick-list .slick-track {
  margin: 0 0 1.5rem;
  display: flex;
}
.slider .slick-list .slick-track .slider-item {
  padding: 0 1rem;
  float: none;
  height: auto;
}
.slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.slider .slick-dots li button {
  background: #222222;
  border-width: 0;
  opacity: 0.25;
  font-size: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
}
.slider .slick-dots li button:focus {
  box-shadow: none;
}
.slider .slick-dots li button:hover {
  opacity: 0.5;
}
.slider .slick-dots li.slick-active button {
  opacity: 1;
}

.button {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: #222222;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-width: 0;
  border-radius: 0.125rem;
  gap: 0.375rem;
  align-items: center;
  justify-content: center;
}
.button.button-arrow:after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
}
.button.button-plus:before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
}
.button.button-plus .collapse-btn-text:before {
  content: "Visa mer";
}
.button.button-plus.toggled:before {
  content: "\f068";
}
.button.button-plus.toggled .collapse-btn-text:before {
  content: "Visa mindre";
}
.button.button-icon-only {
  min-width: auto;
  padding: 0;
  width: 2.25rem;
  height: 2.25rem;
}
.button:hover {
  background: #6a6a6a;
  color: #fff;
}
.button.button-outline {
  box-shadow: 0 0 0 2px #222;
  background-color: transparent;
  color: #222;
}
.button.button-outline:hover {
  background: #222;
  color: #fff;
}
.button.button-light-outline {
  box-shadow: 0 0 0 2px #f8f7f6;
  background-color: transparent;
  color: #f8f7f6;
}
.button.button-light-outline:hover {
  background: #f8f7f6;
  color: #222222;
}
.button.button-sm {
  min-width: 7rem;
  padding: 0.5rem 1.25rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.75rem;
}

.card {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-width: 0;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
  color: #222222;
}
.card .card-image {
  width: 100%;
}
.card .card-image .image-container {
  border-radius: 0;
  background-color: #000;
}
.card .card-image .image-container img {
  transition: all 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}
.card .card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  min-height: 12rem;
}
.card .card-body .card-top-title {
  font-size: 0.85rem;
  margin: 0 0 0.25rem;
  color: rgba(34, 34, 34, 0.75);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card .card-body .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
}
.card .card-body .card-text {
  font-size: 0.85rem;
}
.card .card-body .card-text-clip {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2rem;
}
.card .card-body .card-link {
  padding-top: 1.5rem;
  margin: auto 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  gap: 0.25rem;
  color: #222222;
}
.card .card-body .card-link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  transition: transform 0.25s;
}
.card:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25), 0 2px 1rem rgba(0, 34, 51, 0.125);
  background: #fff;
  color: #222222;
}
.card:hover:not(.card--full-bg) .card-image .image-container img {
  transform: scale(1.075);
  opacity: 0.75;
}
.card:hover .card-body .card-link:after {
  transform: translateX(0.25rem);
}
.card[target=_blank] .card-body .card-link {
  align-items: center;
  gap: 0.25rem;
}
.card[target=_blank] .card-body .card-link:after {
  content: "\f061";
  transform: rotate(-45deg);
}
.card[target=_blank]:hover .card-body .card-link:after {
  transform: rotate(-45deg) translate(0.25rem, 0.25rem);
}
.card.card--hours {
  box-shadow: 0 0.25rem 2rem -1rem rgba(0, 0, 0, 0.175);
}
.card.card--hours .card-body {
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem;
  min-height: 20rem;
}
.card.card--hours .card-body .card-top-title, .card.card--hours .card-body .card-title {
  color: inherit;
}
.card.card--hours .card-body .card-top-title:after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 0.125rem;
  background: #222222;
  margin: 1rem auto 0;
}
.card.card--hours .card-body .card-title {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .card.card--hours .card-body {
    padding: 3rem;
  }
  .card.card--hours .card-body .card-title {
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
  }
}
.card.card--full-bg {
  position: relative;
  color: #fff;
  align-items: center;
  height: 100%;
  min-height: 20rem;
  box-shadow: 0 0.25rem 2rem -1rem rgba(0, 0, 0, 0.175);
}
.card.card--full-bg .card-image {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card.card--full-bg .card-image .image-container {
  background-color: #fff;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.card.card--full-bg .card-body {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(3rem + 3vw) 1.75rem;
  max-width: 40rem;
  min-height: 25rem;
}
.card.card--full-bg .card-body .card-title {
  color: inherit;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.card.card--full-bg .card-body .card-text {
  color: inherit;
}
.card.card--full-bg .card-body .button {
  margin: 0;
  transition: all 0.25s;
}
@media (min-width: 992px) {
  .card.card--full-bg .card-body .card-text {
    font-size: 1rem;
  }
}
.card.card--full-bg:hover .card-image img {
  opacity: 0.75;
}
.card.card--full-bg:hover .card-body .button {
  background: #fff;
  color: #222222;
}
.card-muted .card-image .image-container img {
  filter: grayscale(1);
  opacity: 0.75;
}
.card-column {
  margin-bottom: 2rem;
}

.jumbotron {
  background: #000;
  color: #fff;
  padding: 1.75rem 1.75rem;
  position: relative;
  min-height: 35rem;
  display: flex;
  align-items: flex-end;
  border-radius: 0.25rem;
  overflow: hidden;
}
.jumbotron:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, transparent 70%);
}
@media (min-width: 768px) {
  .jumbotron:before {
    background: linear-gradient(to top right, #000, transparent 50%);
  }
}
.jumbotron .jumbotron-body {
  position: relative;
  z-index: 1;
  max-width: 30rem;
}
.jumbotron .jumbotron-body .jumbotron-title {
  color: inherit;
  font-size: 1.75rem;
  text-wrap: balance;
}
.jumbotron .jumbotron-body .jumbotron-text {
  text-wrap: balance;
}
.jumbotron .jumbotron-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .jumbotron {
    padding: 3rem;
  }
}

@media (max-width: 1600px) {
  html {
    font-size: clamp(1rem, 1.119vw + 0.033rem, 1.25rem);
  }
}
@media (min-width: 1600px) {
  html {
    font-size: clamp(1.155rem, 1600px, 1.155rem);
  }
}

body {
  font-size: 1.25rem;
  line-height: 1.3;
  font-family: "futura-pt", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #f8f7f6;
  background-position: top center;
  color: #222222;
}
body.customize-support .site-header {
  top: 46px;
}
@media (min-width: 768px) {
  body.customize-support .site-header {
    top: 32px;
  }
}

h1, h2, h3, h4 {
  line-height: 1.125;
  font-weight: bold;
  letter-spacing: -0.025em;
  color: #222222;
}

a,
button {
  transition-property: background, border-color, color, opacity, transform, box-shadow;
  cursor: pointer;
  transition-duration: 0.25s;
  text-decoration: none;
  color: #6a6a6a;
}
a:hover,
button:hover {
  color: #6a6a6a;
}
a:focus,
button:focus {
  outline: 0;
}
a:focus-visible,
button:focus-visible {
  outline-color: #4D90FE;
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px;
}

strong, b {
  font-weight: 500;
}

img {
  max-width: 100%;
}

hr {
  opacity: 0.175;
  background: #222222;
}

.lead {
  font-size: 1.75rem;
  font-weight: 300;
}

.font-alt {
  font-family: "Shadows Into Light";
  font-weight: normal;
}

.container {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  max-width: 80rem;
}
.container.container-xxs {
  max-width: 35rem;
}
.container.container-xs {
  max-width: 45rem;
}
.container.container-sm {
  max-width: 50rem;
}
.container.container-md {
  max-width: 55rem;
}
.container.container-lg {
  max-width: 65rem;
}
.container.container-max {
  max-width: none;
}
@media (max-width: 576px) {
  .container.container-fill {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.row:not(.g-0) {
  margin-left: -1rem;
  margin-right: -1rem;
}
.row:not(.g-0) > [class*=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.row.row-xs {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row.row-xs > [class*=col] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .row.row-sm {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .row.row-sm > [class*=col] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row.row-md {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
  .row.row-md > [class*=col] {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .row.row-lg {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
  .row.row-lg > [class*=col] {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.small {
  font-size: 0.85rem;
}

.link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #6a6a6a;
  gap: 0.375rem;
}
.link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  transition: transform 0.25s;
  font-size: 1rem;
}
.link:hover:after {
  transform: translateX(0.25rem);
}
.link.link-plus {
  background: transparent;
  border-width: 0;
  padding: 0;
}
.link.link-plus:after {
  content: "\f067";
}
.link.link-plus:hover:after {
  transform: rotate(180deg);
}
.link[target=_blank] {
  gap: 0.375rem;
}
.link[target=_blank]:after {
  content: "\f061";
  transform: rotate(-45deg);
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #f8f7f6;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
  transition: all 0.25s;
}
.site-header.sticky {
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.075);
}
.site-header .site-header-bar {
  position: relative;
  padding: 1.25rem 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.site-header .site-header-bar .col-aside {
  display: flex;
  align-items: center;
}
.site-header .site-header-bar .col-aside .menu-toggle {
  position: relative;
  z-index: 10;
  margin-left: auto;
  background: transparent;
  padding: 0;
  border-width: 0;
  color: #222222;
  font-size: 2rem;
  line-height: 2rem;
}
.site-header .site-header-bar .col-aside .menu-toggle.toggled {
  transform: rotate(90deg);
}
.site-header .site-header-bar .col-aside .menu-toggle.toggled .icon:before {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
}
.site-header .site-header-bar .col-aside .button {
  display: none;
}
.site-header .site-header-bar .logo {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 10rem;
  transition: all 0.25s;
}
.site-header .site-header-bar .logo img {
  width: 100%;
  transition: opacity 0.25s;
}
.site-header .site-header-bar .logo img.default {
  opacity: 1;
}
.site-header .site-header-bar .logo img.inverse {
  position: absolute;
  left: 0;
  opacity: 0;
}
.site-header .site-navigation {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(0, 0, 0, 0.5);
}
.site-header .site-navigation .site-navigation-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  height: 100%;
  overflow-y: auto;
  background: #f8f7f6;
  display: flex;
  flex-direction: column;
  padding: 8rem 3rem 3rem;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  width: 80%;
  max-width: 25rem;
}
.site-header .site-navigation .site-navigation-content .nav {
  flex-direction: column;
  margin: 0;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item > a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 1.5rem;
  color: #222222;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.current-menu-item > a {
  opacity: 0.5;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item {
  margin-top: 2rem;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item .wpml-ls-flag {
  display: inline;
  vertical-align: baseline;
  width: 1.1rem;
  height: 1.1rem;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 0;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item--lang {
  padding-top: 2rem;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item--lang > a img {
  width: 1rem;
  height: 1rem;
  object-fit: cover;
  border-radius: 50%;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children {
  position: relative;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children > a {
  display: flex;
  gap: 0.375rem;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children > a:after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  transition: transform 0.25s;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu .menu-item a {
  display: block;
  color: #222222;
  padding: 0.25rem 1rem;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu--lang .menu-item {
  width: 100%;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu--lang .menu-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu--lang .menu-item a img {
  max-width: 1rem;
  object-fit: contain;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu--lang .menu-item a.selected {
  background-color: rgba(0, 0, 0, 0.075);
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu--lang .menu-item a.selected:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  margin-left: auto;
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children.open > a:after {
  transform: rotate(-180deg);
}
.site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children.open .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 100vh;
}
.site-header.open .site-header-bar .nav .nav-item .nav-link {
  color: #222222;
  opacity: 1;
  pointer-events: all;
}
.site-header.open .site-header-bar .nav .nav-item.nav-item--toggle {
  border-color: rgba(34, 34, 34, 0.125);
}
.site-header.open .site-header-bar .nav .nav-item.nav-item--toggle .icon:before {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  transform: rotate(90deg);
}
.site-header.open .site-navigation {
  opacity: 1;
  pointer-events: all;
}
.site-header.open .site-navigation .site-navigation-content {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .site-header .site-header-bar .col-aside {
    position: absolute;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    max-width: 12.75rem;
  }
  .site-header .site-header-bar .col-aside .logo {
    margin: auto;
    max-width: 9.5rem;
  }
  .site-header .site-header-bar .nav .nav-item.nav-item--toggle {
    display: none;
  }
  .site-header .site-navigation {
    position: static;
    height: auto;
    opacity: 1;
    pointer-events: all;
    background: transparent;
  }
  .site-header .site-navigation .site-navigation-content {
    margin: 0;
    height: auto;
    padding: 0;
    background: transparent;
    transform: none;
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: center;
    overflow: visible;
  }
  .site-header .site-navigation .site-navigation-content .nav {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item {
    margin: 0;
    padding: 0 0.5rem;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item > a {
    opacity: 1;
    font-size: 1.15rem;
    position: relative;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item > a:hover {
    color: #222222;
    box-shadow: 0 2px 0 0 rgba(34, 34, 34, 0.5);
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item:nth-child(3) {
    margin-right: auto;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item {
    padding-top: 0;
    position: relative;
    margin-left: 0.5rem;
    padding-left: 1.25rem;
    margin-top: 0;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item .wpml-ls-native {
    display: none;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item .wpml-ls-flag {
    display: inline;
    vertical-align: baseline;
    width: 1rem;
    height: 1rem;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 0;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item a {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item a:hover {
    opacity: 0.5;
    box-shadow: none;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.wpml-ls-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 75%;
    background: rgba(34, 34, 34, 0.125);
    transform: translateY(-50%);
    transition: background-color 0.25s;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item--lang {
    padding-top: 0;
    position: relative;
    margin-left: 0.5rem;
    padding-left: 1.25rem;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item--lang a {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item--lang:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 75%;
    background: rgba(34, 34, 34, 0.125);
    transform: translateY(-50%);
    transition: background-color 0.25s;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 100;
    left: -0.25rem;
    background-color: #f8f7f6;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.125), 0 0 0 1px rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    min-width: 8rem;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children .sub-menu .menu-item a {
    font-size: 0.75rem;
  }
  .site-header .site-navigation .site-navigation-content .nav > .menu-item.menu-item-has-children:last-child .sub-menu {
    left: auto;
    right: -0.25rem;
  }
}

.fade-in {
  animation: fadeIn 0.5s;
}

.hero {
  position: relative;
  background: #000;
  color: #f8f7f6;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36rem;
  height: 75vh;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    min-height: 40rem;
    height: 80vh;
  }
}
.hero .hero-text {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 0.75s 0.25s forwards;
  text-align: center;
}
.hero .hero-text h1 {
  font-size: 2rem;
  color: inherit;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
}
@media (min-width: 992px) {
  .hero .hero-text h1 {
    font-size: 3rem;
  }
}
.hero .hero-text p {
  font-family: "Shadows Into Light";
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .hero .hero-text p {
    font-size: 2.25rem;
  }
}
.hero .hero-text .button {
  margin-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero .hero-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.675;
}
.hero .hero-bg .slick-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-bg .slick-list .slick-track {
  height: 100%;
}
.hero .hero-bg .hero-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-group {
  animation: fadeInUp 0.5s;
}
.section-group .section {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .section-group .section {
    padding: 5rem 0;
  }
}
.section-group .section.section-default + .section-default {
  padding-top: 0;
}
.section-group .section.section-page-intro + .section-default {
  padding-top: 0;
}
.section-group .section .top-title {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  color: #222222;
}
.section-group .section .section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.section-group .section.section-page-intro {
  padding: 3rem 0 5rem 0;
}
@media (min-width: 992px) {
  .section-group .section.section-page-intro {
    padding: 5rem 0 5rem 0;
  }
}
.section-group .section.section-page-intro:after {
  content: "";
  display: block;
  height: 2px;
  background: rgb(0, 0, 0);
  max-width: 4rem;
  margin: 2rem auto -1rem auto;
}
.section-group .section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-group .section .section-header .lead {
  font-weight: normal;
  max-width: 52rem;
  font-size: 1.5rem;
  margin: 0 auto 4rem;
}
.section-group .section .section-footer {
  text-align: center;
  padding-top: 0.5rem;
}
.section-group .section.section-image-text .section-image-col .image-container {
  height: 100%;
}
.section-group .section.section-image-text .section-text-col {
  display: flex;
  align-items: center;
}
.section-group .section.section-image-text .section-text-col .section-text {
  padding: 1rem 0 0;
}
@media (min-width: 992px) {
  .section-group .section.section-image-text .section-text-col .section-text {
    padding: 0;
  }
}
.section-group .section.section-divider {
  padding: 0;
}
.section-group .section.section-divider hr {
  background: transparent;
  border-bottom: 2px dotted rgba(34, 34, 34, 0.375);
  opacity: 1;
  margin: 0;
}
.section-group .section.section-rte .section-title {
  margin-bottom: 1.5rem;
}
.section-group .section.section-rte .section-title:last-child {
  margin-bottom: 0;
}
.section-group .section.section-rte .section-title.font-alt {
  text-align: center;
  font-size: 2.5rem;
}

.page-header {
  padding-top: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .page-header {
    padding-top: 6rem;
  }
}
.page-header .back-link {
  display: inline-block;
  font-weight: 500;
  font-size: 0.85rem;
  color: #222222;
  margin-bottom: 0.5rem;
}
.page-header .back-link:before {
  content: "\f104";
  font-family: "Font Awesome 6 Pro";
  margin-right: 0.375rem;
}
.page-header h1 {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .page-header h1 {
    font-size: 3rem;
  }
}
.page-header .lead {
  font-weight: normal;
  margin: 1rem 0 0;
}
.page-header .page-header-content {
  animation: fadeInUp 0.5s;
}
.page-header.page-header-has-image {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: calc(3rem + 4vw) 0;
}
.page-header.page-header-has-image:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 25%;
}
.page-header.page-header-has-image .page-header-content {
  position: relative;
  z-index: 1;
}
.page-header.page-header-has-image .page-header-content h1, .page-header.page-header-has-image .page-header-content .lead {
  color: inherit;
}
.page-header.page-header-has-image .page-header-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}

.opening-hours {
  margin: 1rem 0;
}
.opening-hours h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.opening-hours .opening-hours-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.085);
}
.opening-hours .opening-hours-item p {
  margin: 0;
}
.opening-hours .opening-hours-item .title {
  font-weight: 500;
}
.opening-hours .opening-hours-item .note {
  margin-top: 0.5rem;
  font-size: 90%;
  opacity: 0.65;
}

.rte-content img {
  max-width: 100%;
  height: auto;
}
.rte-content .wp-caption {
  max-width: 100% !important;
}
.rte-content h2 {
  font-size: 1.5rem;
}
.rte-content h2:not(:first-child) {
  margin-top: 1.75rem;
}
.rte-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.rte-content h3:not(:first-child) {
  margin-top: 1.75rem;
}
.rte-content h3.menu-title, .rte-content h4.menu-title {
  display: flex;
  align-items: flex-end;
}
.rte-content h3.menu-title span, .rte-content h4.menu-title span {
  display: block;
}
.rte-content h3.menu-title span:last-child, .rte-content h4.menu-title span:last-child {
  max-width: 4rem;
}
.rte-content h3.menu-title .menu-title-fill, .rte-content h4.menu-title .menu-title-fill {
  flex: 1;
  margin: 0.25rem 0.5rem;
  border-bottom: 2px dotted rgba(34, 34, 34, 0.5);
}
.rte-content h3.menu-title + .menu-title, .rte-content h4.menu-title + .menu-title {
  margin-top: 1rem;
}
.rte-content blockquote {
  font-style: italic;
  padding-left: 1rem;
  margin: 2rem 0;
  font-size: 1.5rem;
  color: #000;
  position: relative;
  border-left: 2px solid #222222;
}
.rte-content h4 {
  font-size: 1.25rem;
}
.rte-content h5, .rte-content h6 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025rem;
}
.rte-content a {
  position: relative;
  border-bottom: 1px solid;
}
.rte-content a[href*="tel:"] {
  border-width: 0;
  color: inherit;
}
.rte-content ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.rte-content ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.rte-content ul li:before {
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
}
.rte-content .alignleft, .rte-content .alignright {
  display: block;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .rte-content .alignleft, .rte-content .alignright {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .rte-content .alignleft {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
  }
}
@media (min-width: 768px) {
  .rte-content .alignright {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
  }
}

.column {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .column.block-view {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
  }
  .column.block-view .column-image {
    flex: 1;
  }
  .column.block-view .column-image .image-container {
    margin: 0;
    padding-bottom: 65%;
  }
  .column.block-view .column-text {
    flex: 1;
  }
  .column.block-view .column-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .column.block-view:nth-child(even) .column-image {
    order: 2;
  }
  .column.block-view:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.column .image-container {
  margin-bottom: 1.5rem;
}
.column .icon-container {
  margin-bottom: 2rem;
  background-color: #fff;
  display: flex;
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  align-content: center;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.75rem 1rem 0rem rgba(0, 0, 0, 0.075);
}
.column h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025rem;
}
.column .rte-content ul:first-child {
  margin: 0.5rem 0 0;
}
.column .rte-content ul li {
  padding-bottom: 0.25rem;
}
.panel {
  background: #fff;
  box-shadow: 0 0.25rem 2rem -1rem rgba(0, 0, 0, 0.175);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.panel .lead {
  text-wrap: balance;
  font-size: 1.5rem;
}
.panel .small {
  font-size: 1.25rem;
  font-family: "Shadows Into Light";
  margin: auto 0 0;
}
@media (min-width: 768px) {
  .panel {
    padding: 3rem;
  }
}

.pagination {
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .nav-links .page-numbers {
  display: block;
  width: 2.25rem;
  line-height: 2.25rem;
  border-radius: 100%;
  text-align: center;
  margin: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  color: #222222;
}
.pagination .nav-links .page-numbers.current {
  color: #fff;
  background: #222222;
}
.pagination .nav-links .page-numbers:hover:not(.current):not(.dots) {
  box-shadow: 0 0 0 1px #222222;
}

.video-container {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container--wide {
  padding-bottom: 56.25%;
}

.image-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 0.25rem;
  overflow: hidden;
}
.image-container img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .image-container--tall {
    padding-bottom: 80%;
  }
}
.image-container--square {
  padding-bottom: 100%;
}
.image-container[href] {
  display: block;
  background-color: #222222;
}
.image-container[href] img {
  transition: opacity 0.25s;
}
.image-container[href]:hover img {
  opacity: 0.75;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.image-grid .image-grid-cell {
  flex: 0 0 calc(50% - 0.125rem);
}
.image-grid .image-grid-cell .image-container {
  padding-bottom: 75%;
  background-color: #222222;
}
.image-grid .image-grid-cell .image-container img {
  transition: all 0.25s;
}
.image-grid .image-grid-cell:hover .image-container img {
  opacity: 0.75;
}
@media (min-width: 992px) {
  .image-grid .image-grid-cell {
    flex: 0 0 calc(33.333% - 0.1666666667rem);
  }
}

.site-footer .site-footer-content {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  display: flex;
  text-align: center;
  border-top: 1px solid rgba(34, 34, 34, 0.125);
}
.site-footer .site-footer-content .logo {
  display: block;
  max-width: 10rem;
  margin: auto;
}
.site-footer .site-footer-content .logo img {
  width: 100%;
}
.site-footer .site-footer-content .lead {
  font-family: "Shadows Into Light";
  font-size: 2rem;
}
.site-footer .site-footer-content .nav {
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.site-footer .site-footer-content .nav li a {
  display: block;
  color: #222222;
  padding: 0.25rem 0;
  font-size: 1.25rem;
  border-bottom: 2px solid transparent;
}
.site-footer .site-footer-content .nav li a:hover {
  border-color: #222222;
}
.site-footer .site-footer-content .nav.nav-icons {
  gap: 0.5rem;
}
.site-footer .site-footer-content .nav.nav-icons li a {
  border-width: 0;
  width: 2.25rem;
  line-height: 2.25rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #222222;
  font-size: 1rem;
}
.site-footer .site-footer-content .nav.nav-icons li a:hover {
  background: #222222;
  color: #fff;
}
@media (min-width: 992px) {
  .site-footer .site-footer-image {
    margin-top: -10%;
  }
}

.otgs-development-site-front-end {
  display: none;
}

.gallery .mb-4 {
  margin-bottom: 2rem !important;
}
.gallery.square .image {
  padding-bottom: 100%;
  background-size: cover;
  position: relative;
}
.gallery.square .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=main.min.css.map */
