<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.2s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/**
 *	Fluid sized fonts
 *	Read more here:
 *	https://css-tricks.com/snippets/css/fluid-typography/
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div &gt; title &gt; list &gt; li &gt; a
*/
/*
	Variables for legacy dc plugins
*/
main .headline {
  font-family: var(--header-font-family);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--color__plum);
  leading-trim: both;
  text-edge: cap;
}

/*
	GLOBAL FONT SIZES
	- heading-size-xlarge
	- heading-size-large
	- heading-size-normal
	- heading-size-small
	- heading-size-xsmall

	- text-size-xlarge
	- text-size-large
	- text-size-normal
	- text-size-small
	- text-size-xsmall
*/
.heading-size-xlarge {
  font-size: 70px;
}

@media screen and (min-width: 480px) {
  .heading-size-xlarge {
    font-size: calc(70px + 60 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-xlarge {
    font-size: 130px;
  }
}
.heading-size-xlarge.headline {
  line-height: 0.85;
}

.heading-size-xlarge.headline {
  font-size: 70px;
}

@media screen and (min-width: 480px) {
  .heading-size-xlarge.headline {
    font-size: calc(70px + 60 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-xlarge.headline {
    font-size: 130px;
  }
}
@media screen and (max-width: 1004px) {
  .heading-size-xlarge.headline {
    line-height: 0.85;
  }
}
.heading-size-large {
  font-size: 50px;
}

@media screen and (min-width: 480px) {
  .heading-size-large {
    font-size: calc(50px + 50 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-large {
    font-size: 100px;
  }
}
.heading-size-large.headline {
  line-height: 0.85;
}

.heading-size-large.headline {
  font-size: 50px;
}

@media screen and (min-width: 480px) {
  .heading-size-large.headline {
    font-size: calc(50px + 50 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-large.headline {
    font-size: 100px;
  }
}
.heading-size-normal {
  line-height: 1.15;
}

.heading-size-normal {
  font-size: 30px;
}

@media screen and (min-width: 480px) {
  .heading-size-normal {
    font-size: calc(30px + 6 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-normal {
    font-size: 36px;
  }
}
.heading-size-normal.headline {
  line-height: 0.85;
}

.heading-size-normal.headline {
  font-size: 36px;
}

@media screen and (min-width: 480px) {
  .heading-size-normal.headline {
    font-size: calc(36px + 44 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-normal.headline {
    font-size: 80px;
  }
}
.heading-size-small {
  line-height: 1.15;
}

.heading-size-small {
  font-size: 22px;
}

@media screen and (min-width: 480px) {
  .heading-size-small {
    font-size: calc(22px + 6 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-small {
    font-size: 28px;
  }
}
@media screen and (max-width: 1004px) {
  .heading-size-small {
    line-height: 1.3;
  }
}
.text-size-xlarge {
  line-height: 1.15;
  font-weight: 300;
}

.text-size-xlarge {
  font-size: 28px;
}

@media screen and (min-width: 480px) {
  .text-size-xlarge {
    font-size: calc(28px + 17 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-xlarge {
    font-size: 45px;
  }
}
.text-size-large {
  line-height: 1.2;
}

.text-size-large {
  font-size: 24px;
}

@media screen and (min-width: 480px) {
  .text-size-large {
    font-size: calc(24px + 4 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-large {
    font-size: 28px;
  }
}
@media screen and (max-width: 1004px) {
  .text-size-large {
    line-height: 1.3;
  }
}
.text-size-normal {
  line-height: 1.5;
}

.text-size-normal {
  font-size: 20px;
}

@media screen and (min-width: 480px) {
  .text-size-normal {
    font-size: calc(20px + 6 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-normal {
    font-size: 26px;
  }
}
@media screen and (max-width: 1004px) {
  .text-size-normal {
    line-height: 1.4;
  }
}
.text-size-normal-plus {
  line-height: 1.5;
}

.text-size-normal-plus {
  font-size: 18px;
}

@media screen and (min-width: 480px) {
  .text-size-normal-plus {
    font-size: calc(18px + 2 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-normal-plus {
    font-size: 20px;
  }
}
@media screen and (max-width: 1004px) {
  .text-size-normal-plus {
    line-height: 1.4;
  }
}
.text-size-small {
  font-size: 1rem;
  line-height: 1.5;
}

.text-size-footer {
  font-size: 1.125rem;
  line-height: 1.4;
}

.text-size-xsmall {
  font-size: 0.75rem;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical &gt; .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode &gt; .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-css-mode &gt; .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal &gt; .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical &gt; .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode &gt; .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered &gt; .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal &gt; .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical &gt; .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.block-section.slider .media-credit-wrapper {
  margin: -0.625rem 3.125rem 0 3.125rem;
}

@media screen and (max-width: 849px) {
  .block-section.slider .media-credit-wrapper {
    margin: -0.625rem 1.875rem 0 1.875rem;
  }
}
.block-section.slider .media-credit-wrapper p {
  text-align: end;
}

.block-section.slider .swiper-navigation-wrapper {
  display: flex;
  justify-content: right;
  gap: 30px;
  max-width: 100%;
}

@media screen and (max-width: 849px) {
  .block-section.slider .swiper-navigation-wrapper {
    gap: 45px;
  }
}
.block-section.slider .swiper-navigation-wrapper .swiper-button-next, .block-section.slider .swiper-navigation-wrapper .swiper-button-prev {
  width: 2.8125rem;
  height: 2.8125rem;
}

.block-section.slider .swiper-navigation-wrapper .swiper-button-next::after, .block-section.slider .swiper-navigation-wrapper .swiper-button-prev::after {
  font-size: 2.25rem;
  font-weight: 300;
}

@media screen and (max-width: 849px) {
  .block-section.slider .swiper-navigation-wrapper .swiper-button-next::after, .block-section.slider .swiper-navigation-wrapper .swiper-button-prev::after {
    font-size: 2.875rem;
  }
}
.block-section.slider .swiper-navigation-wrapper .swiper-button-prev::after {
  rotate: 180deg;
  transform: scaleY(-1);
}

.block-section.slider .swiper-outer-wrapper {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
}

.block-section.slider .swiper-slide {
  overflow: hidden;
}

.block-section.slider .swiper-slide picture,
.block-section.slider .swiper-slide img {
  width: 47.9375rem;
  max-height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 849px) {
  .block-section.slider .swiper-slide picture,
.block-section.slider .swiper-slide img {
    width: 100%;
    height: 16.125rem;
  }
}
.block-section.slider .swiper-wrapper {
  padding-left: 1.25rem;
}

@media screen and (min-width: 850px) {
  .block-section.slider .swiper-wrapper {
    padding-left: 0;
  }
}
@media screen and (min-width: 1600px) {
  .block-section.slider .swiper-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1600px) {
  .block-section.slider .swiper-wrapper {
    padding-left: 0;
  }
}
</pre></body></html>