@charset "UTF-8";
/*
	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 > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
/**
 * This file includes all the Site styling.
 *
 * Note that the Gutenberg blocks are imported block-by-block,
 * in the src/blocks directory.
 */
/*
	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 > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
/**
* Plugin files
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: currentColor;
}

.hamburger-box {
  width: 20px;
  height: 14.5px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.75px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6.5px;
}

.hamburger-inner::after {
  bottom: -6.5px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 40px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 6.5px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 13px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 6.5px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 13px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 6.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -40px;
  top: -40px;
  transform: translate3d(40px, 40px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -40px;
  top: -40px;
  transform: translate3d(-40px, 40px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 6.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -40px;
  top: 40px;
  transform: translate3d(40px, -40px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -40px;
  top: 40px;
  transform: translate3d(-40px, -40px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 0.75px;
}

.hamburger--slider .hamburger-inner::before {
  top: 6.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 13px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.8571428571px, -5px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.75px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 6.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 13px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(2.8571428571px, -5px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.75px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 6.5px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/**
 * Common files shared between app and admin.
 */
/**
 * This file includes all the common files used between the frontend and the Gutenberg editor.
 * By including a file here, it will get also be included into app.scss and admin.scss
 *
 * Note that the Gutenberg blocks are imported block-by-block,
 * in the src/blocks directory.
 */
/**
 * Base files
 */
:root {
  --spacing-block: 7.5rem;
  --spacing-content: 5rem;
  --spacing-grid-gap: 4rem;
  --element-width-wide: 100%;
  --element-width-normal: 1340px;
  --element-width-narrow: 1068px;
  --element-width-content: 950px;
  --element-border-radius: 6px;
  --font-family: "Helvetica Neue", Helvetica, arial, sans-serif;
  --font-size-ui: 16px;
  --color__white: #ffffff;
  --color__black: #24232b;
  --color__grey: #6F6F6D;
  --color__grey-light: #D9D9D9;
  --color__grey-lighter: #F4F6F5;
  --color__grey-middle: #999C9F;
  --color__green: #00877D;
  --color__green-light: #CCE7E5;
  --color__green-lighter: #E6F3F2;
  --color__yellow: #ECBC5F;
  --color__yellow-light: #F9E9CA;
  --color__yellow-lighter: #FBF2DF;
  --color__blue: #006DEB;
  --color__blue-dark: #263546;
  --color__blue-darker: #182838;
  --color__blue-light: #ACBED6;
  --color__blue-lighter: #D5DFEA;
  --color__blue-lightest: #E6ECF3;
  --color__blue-lightest2: #829EC1;
  --color__blue-hoegh: #446181;
}

@media screen and (min-width: 1000px) {
  :root {
    --element-width-wide: calc(100% - 100px);
  }
}
@media screen and (max-width: 999px) {
  :root {
    --element-width-wide: calc(100% - 40px);
  }
}
@media screen and (max-width: 849px) {
  :root {
    --element-width-wide: 100%;
  }
}
@media screen and (max-width: 999px) {
  :root {
    --font-size-ui: 14px;
  }
}
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figure {
  padding: 0;
  margin: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Add the correct global box-sizing for all browsers
 */
* {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  font-display: swap;
  color: var(--color__blue-darker);
  line-height: 1.4;
  font-family: var(--font-family);
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-weight: 400;
  margin: 0;
}

.text-wrapper h1 {
  margin-bottom: 3.75rem;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
  margin: 0.625rem 0;
}

.text-wrapper > :first-child {
  margin-top: 0;
}

.text-wrapper > :last-child {
  margin-bottom: 0;
}

.text-wrapper p + h1,
.text-wrapper p + h2,
.text-wrapper p + h3,
.text-wrapper p + h4,
.text-wrapper p + h5,
.text-wrapper p + h6,
.text-wrapper ol + h1,
.text-wrapper ol + h2,
.text-wrapper ol + h3,
.text-wrapper ol + h4,
.text-wrapper ol + h5,
.text-wrapper ol + h6,
.text-wrapper ul + h1,
.text-wrapper ul + h2,
.text-wrapper ul + h3,
.text-wrapper ul + h4,
.text-wrapper ul + h5,
.text-wrapper ul + h6 {
  margin-top: 0.625rem;
}

.text-wrapper h1 + hr,
.text-wrapper h2 + hr,
.text-wrapper h3 + hr,
.text-wrapper h4 + hr,
.text-wrapper h5 + hr,
.text-wrapper h6 + hr {
  margin-top: 0;
}

.text-wrapper p {
  margin-top: 0;
}

.text-wrapper ol,
.text-wrapper ul {
  list-style: disc;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  margin-left: 0;
  padding-left: 0;
}

.text-wrapper ol li,
.text-wrapper ul li {
  margin-left: 1.25rem;
  margin-bottom: 0.3125rem;
}

.text-wrapper ol + hr,
.text-wrapper ul + hr {
  margin-top: 0;
}

.text-wrapper ol {
  list-style: decimal;
}

.text-wrapper div.small-tag {
  margin: 0 0 1.25rem;
  padding: 0.25rem 0.875rem;
  display: inline-block;
  color: var(--color__blue-darker);
  background: var(--color__blue-lighter);
  border-radius: 3.75rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-wrapper div.small-tag + hr {
  margin-top: 1.25rem;
}

.text-wrapper hr {
  margin: 2.5rem 0 0.625rem;
  border: 0;
  height: 0.0625rem;
  background-color: var(--color__blue-darker);
}

/*
	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-alt {
  font-weight: 500;
  line-height: 1.1;
}

.heading-size-xlarge-alt {
  font-size: 40px;
}

@media screen and (min-width: 480px) {
  .heading-size-xlarge-alt {
    font-size: calc(40px + 40 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-xlarge-alt {
    font-size: 80px;
  }
}
.heading-size-xlarge {
  font-weight: 500;
  line-height: 1.1;
}

.heading-size-xlarge {
  font-size: 40px;
}

@media screen and (min-width: 480px) {
  .heading-size-xlarge {
    font-size: calc(40px + 40 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-xlarge {
    font-size: 80px;
  }
}
.heading-size-large,
.text-wrapper h1 {
  font-weight: 500;
  line-height: 1.2;
}

.heading-size-large,
.text-wrapper h1 {
  font-size: 26px;
}

@media screen and (min-width: 480px) {
  .heading-size-large,
  .text-wrapper h1 {
    font-size: calc(26px + 18 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-large,
  .text-wrapper h1 {
    font-size: 44px;
  }
}
.heading-size-normal,
.text-wrapper h2 {
  font-weight: 500;
  line-height: 1.2;
}

.heading-size-normal,
.text-wrapper h2 {
  font-size: 22px;
}

@media screen and (min-width: 480px) {
  .heading-size-normal,
  .text-wrapper h2 {
    font-size: calc(22px + 12 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-normal,
  .text-wrapper h2 {
    font-size: 34px;
  }
}
.heading-size-small,
.text-wrapper h3 {
  font-weight: 500;
  line-height: 1.2;
}

.heading-size-small,
.text-wrapper h3 {
  font-size: 18px;
}

@media screen and (min-width: 480px) {
  .heading-size-small,
  .text-wrapper h3 {
    font-size: calc(18px + 8 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-small,
  .text-wrapper h3 {
    font-size: 26px;
  }
}
.heading-size-xsmall,
.highlight-first-para > p:nth-child(1),
.highlighted-paragraph,
.tablepress-table-name,
.text-wrapper h4 {
  font-weight: 500;
  line-height: 1.4;
}

.heading-size-xsmall,
.highlight-first-para > p:nth-child(1),
.highlighted-paragraph,
.tablepress-table-name,
.text-wrapper h4 {
  font-size: 16px;
}

@media screen and (min-width: 480px) {
  .heading-size-xsmall,
  .highlight-first-para > p:nth-child(1),
  .highlighted-paragraph,
  .tablepress-table-name,
  .text-wrapper h4 {
    font-size: calc(16px + 6 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .heading-size-xsmall,
  .highlight-first-para > p:nth-child(1),
  .highlighted-paragraph,
  .tablepress-table-name,
  .text-wrapper h4 {
    font-size: 22px;
  }
}
.text-numbers {
  font-weight: 500;
  line-height: 1.1;
}

.text-numbers {
  font-size: 54px;
}

@media screen and (min-width: 480px) {
  .text-numbers {
    font-size: calc(54px + 36 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-numbers {
    font-size: 90px;
  }
}
.text-tag,
table thead th,
.text-wrapper h5,
.heading-size-xxsmall {
  font-weight: 500;
  line-height: 1.2;
}

.text-tag,
table thead th,
.text-wrapper h5,
.heading-size-xxsmall {
  font-size: 14px;
}

@media screen and (min-width: 480px) {
  .text-tag,
  table thead th,
  .text-wrapper h5,
  .heading-size-xxsmall {
    font-size: calc(14px + 6 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-tag,
  table thead th,
  .text-wrapper h5,
  .heading-size-xxsmall {
    font-size: 20px;
  }
}
table thead th {
  font-weight: normal;
}

.text-size-large {
  line-height: 1.4;
}

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

@media screen and (min-width: 480px) {
  .text-size-large {
    font-size: calc(16px + 2 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-large {
    font-size: 18px;
  }
}
.text-size-normal,
table td,
.text-wrapper h5 {
  line-height: 1.5;
}

.text-size-normal,
table td,
.text-wrapper h5 {
  font-size: 14px;
}

@media screen and (min-width: 480px) {
  .text-size-normal,
  table td,
  .text-wrapper h5 {
    font-size: calc(14px + 2 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .text-size-normal,
  table td,
  .text-wrapper h5 {
    font-size: 16px;
  }
}
.tablepress-table-description {
  font-size: 14px;
}

@media screen and (min-width: 480px) {
  .tablepress-table-description {
    font-size: calc(14px + 2 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .tablepress-table-description {
    font-size: 16px;
  }
}
.text-size-small,
.text-wrapper h6 {
  font-size: 14px;
  line-height: 1.5;
}

.text-size-xsmall {
  font-size: 12px;
}

body,
html {
  scroll-behavior: smooth;
}

.element-width--full {
  max-width: 90%;
  margin: 0 auto;
}

.element-width--wide {
  max-width: var(--element-width-wide, 1600px);
  margin: 0 auto;
}

.element-width--normal {
  max-width: var(--element-width-normal, 1340px);
  margin: 0 auto;
}

.element-width--narrow {
  max-width: var(--element-width-narrow, 1068px);
  margin: 0 auto;
}

.element-width--content {
  max-width: var(--element-width-content, 950px);
  margin: 0 auto;
}

.has-rounded-corners {
  border-radius: var(--element-border-radius);
}

/*
	Auto generate classes for wp-colors
	.has-background-[colorname] - Default of gutenberg
	.has-color-[colorname]      - Default of gutenberg
	.dc-highlight-[colorname]   - Optional, used for custom wysiwyg buttons, can be changed to has-color in .js
*/
.has-background-white,
.has-white-background-color {
  background-color: #ffffff;
  --current-bg-color: #ffffff;
  --current-text-color: ;
}

.dc-highlight-white,
.has-color-white {
  color: #ffffff;
}

.has-background-black,
.has-black-background-color {
  background-color: #182838;
  color: #ffffff;
  --current-bg-color: #182838;
  --current-text-color: #ffffff;
}

.dc-highlight-black,
.has-color-black {
  color: #182838;
}

.has-background-grey,
.has-grey-background-color {
  background-color: #F4F6F5;
  color: #ffffff;
  --current-bg-color: #F4F6F5;
  --current-text-color: #ffffff;
}

.dc-highlight-grey,
.has-color-grey {
  color: #F4F6F5;
}

.has-background-grey-light,
.has-grey-light-background-color {
  background-color: #D9D9D9;
  color: #182838;
  --current-bg-color: #D9D9D9;
  --current-text-color: #182838;
}

.dc-highlight-grey-light,
.has-color-grey-light {
  color: #D9D9D9;
}

.has-background-green,
.has-green-background-color {
  background-color: #00877D;
  color: #ffffff;
  --current-bg-color: #00877D;
  --current-text-color: #ffffff;
}

.dc-highlight-green,
.has-color-green {
  color: #00877D;
}

.has-background-green-light,
.has-green-light-background-color {
  background-color: #AAD7D4;
  color: #182838;
  --current-bg-color: #AAD7D4;
  --current-text-color: #182838;
}

.dc-highlight-green-light,
.has-color-green-light {
  color: #AAD7D4;
}

.has-background-yellow,
.has-yellow-background-color {
  background-color: #ECBC5F;
  color: #182838;
  --current-bg-color: #ECBC5F;
  --current-text-color: #182838;
}

.dc-highlight-yellow,
.has-color-yellow {
  color: #ECBC5F;
}

.has-background-yellow-light,
.has-yellow-light-background-color {
  background-color: #F9E9CA;
  color: #182838;
  --current-bg-color: #F9E9CA;
  --current-text-color: #182838;
}

.dc-highlight-yellow-light,
.has-color-yellow-light {
  color: #F9E9CA;
}

.has-background-blue,
.has-blue-background-color {
  background-color: #006DEB;
  color: #ffffff;
  --current-bg-color: #006DEB;
  --current-text-color: #ffffff;
}

.dc-highlight-blue,
.has-color-blue {
  color: #006DEB;
}

.has-background-blue-dark,
.has-blue-dark-background-color {
  background-color: #263546;
  color: #ffffff;
  --current-bg-color: #263546;
  --current-text-color: #ffffff;
}

.dc-highlight-blue-dark,
.has-color-blue-dark {
  color: #263546;
}

.has-background-blue-darker,
.has-blue-darker-background-color {
  background-color: #182838;
  color: #ffffff;
  --current-bg-color: #182838;
  --current-text-color: #ffffff;
}

.dc-highlight-blue-darker,
.has-color-blue-darker {
  color: #182838;
}

.has-background-blue-light,
.has-blue-light-background-color {
  background-color: #ACBED6;
  color: #182838;
  --current-bg-color: #ACBED6;
  --current-text-color: #182838;
}

.dc-highlight-blue-light,
.has-color-blue-light {
  color: #ACBED6;
}

.has-background-blue-lighter,
.has-blue-lighter-background-color {
  background-color: #D5DFEA;
  color: #182838;
  --current-bg-color: #D5DFEA;
  --current-text-color: #182838;
}

.dc-highlight-blue-lighter,
.has-color-blue-lighter {
  color: #D5DFEA;
}

/*
	Only used for custom colors in wysiwyg acf fields.
	Ignore if not used. See inc/acf.php
*/
.dc-highlight-red {
  color: #f4163b !important;
}

.entry-content {
  background-color: var(--color__white) !important;
  overflow: hidden;
}

.block-section {
  overflow: visible;
  margin: var(--spacing-block) auto;
  /* WP BG COLORS HERE */
}

@media screen and (max-width: 849px) {
  .block-section {
    margin: calc(var(--spacing-block) / 2) auto;
  }
}
.block-section.has-main-content-col-right + .block-section.has-main-content-col-right {
  margin-top: 0;
}

.block-section:not(.has-background).top-spacing-none {
  margin-top: 0 !important;
}

.block-section:not(.has-background).bottom-spacing-none {
  margin-bottom: 0 !important;
}

.block-section:not(.has-background).top-spacing-half:not(.hero):not(.hero-homepage) {
  margin-top: calc(var(--spacing-block) / 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).top-spacing-half:not(.hero):not(.hero-homepage) {
    margin-top: calc(var(--spacing-block) / 4) !important;
  }
}
.block-section:not(.has-background).bottom-spacing-half {
  margin-bottom: calc(var(--spacing-block) / 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).bottom-spacing-half {
    margin-bottom: calc(var(--spacing-block) / 4) !important;
  }
}
.block-section:not(.has-background).top-spacing-33p:not(.hero):not(.hero-homepage) {
  margin-top: calc(var(--spacing-block) / 3) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).top-spacing-33p:not(.hero):not(.hero-homepage) {
    margin-top: calc(var(--spacing-block) / 6) !important;
  }
}
.block-section:not(.has-background).bottom-spacing-33p {
  margin-bottom: calc(var(--spacing-block) / 3) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).bottom-spacing-33p {
    margin-bottom: calc(var(--spacing-block) / 6) !important;
  }
}
.block-section:not(.has-background).top-spacing-66p:not(.hero):not(.hero-homepage) {
  margin-top: calc(var(--spacing-block) / 3 * 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).top-spacing-66p:not(.hero):not(.hero-homepage) {
    margin-top: calc(var(--spacing-block) / 6 * 2) !important;
  }
}
.block-section:not(.has-background).bottom-spacing-66p {
  margin-bottom: calc(var(--spacing-block) / 3 * 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).bottom-spacing-66p {
    margin-bottom: calc(var(--spacing-block) / 6 * 2) !important;
  }
}
.block-section:not(.has-background).top-spacing-more:not(.hero):not(.hero-homepage) {
  margin-top: calc(var(--spacing-block) * 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).top-spacing-more:not(.hero):not(.hero-homepage) {
    margin-top: var(--spacing-block) !important;
  }
}
.block-section:not(.has-background).bottom-spacing-more {
  margin-bottom: calc(var(--spacing-block) * 2) !important;
}

@media screen and (max-width: 849px) {
  .block-section:not(.has-background).bottom-spacing-more {
    margin-bottom: var(--spacing-block) !important;
  }
}
.block-section.has-background {
  margin: 0 auto;
  padding: var(--spacing-block) 0;
}

.block-section.has-background.top-spacing-none {
  padding-top: 0 !important;
}

.block-section.has-background.bottom-spacing-none {
  padding-bottom: 0 !important;
}

.block-section.has-background.top-spacing-half:not(.hero):not(.hero-homepage) {
  padding-top: calc(var(--spacing-block) / 2) !important;
}

.block-section.has-background.bottom-spacing-half {
  padding-bottom: calc(var(--spacing-block) / 2) !important;
}

.block-section.has-background.top-spacing-33p:not(.hero):not(.hero-homepage) {
  padding-top: calc(var(--spacing-block) / 3) !important;
}

.block-section.has-background.bottom-spacing-33p {
  padding-bottom: calc(var(--spacing-block) / 3) !important;
}

.block-section.has-background.top-spacing-66p:not(.hero):not(.hero-homepage) {
  padding-top: calc(var(--spacing-block) / 3 * 2) !important;
}

.block-section.has-background.bottom-spacing-66p {
  padding-bottom: calc(var(--spacing-block) / 3 * 2) !important;
}

.block-section.has-background.top-spacing-more:not(.hero):not(.hero-homepage) {
  padding-top: calc(var(--spacing-block) * 2) !important;
}

.block-section.has-background.bottom-spacing-more {
  padding-bottom: calc(var(--spacing-block) * 2) !important;
}

.block-section.has-background-blue-light {
  background-color: var(--color__blue-light);
}

.block-section.has-background-blue-dark {
  background-color: var(--color__blue-dark);
}

.block-section.has-background-blue-darker {
  background-color: var(--color__blue-darker);
}

.block-section.has-background-green {
  background-color: var(--color__green);
}

.block-section.has-background-yellow {
  background-color: var(--color__yellow);
}

.block-section.has-background-grey {
  background-color: var(--color__grey);
}

.block-section.core-block .block-section-wrapper {
  max-width: var(--element-width-wide, 950px);
  margin: 0 auto;
}

@media screen and (min-width: 1000px) and (max-width: 1440px) {
  .element-width--narrow,
  .element-width--normal,
  .element-width--wide {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 999px) {
  .element-width--narrow,
  .element-width--normal,
  .element-width--wide {
    max-width: calc(100% - 40px);
  }
}
.block-section-wrapper {
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

@media screen and (max-width: 849px) {
  .block-section-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 849px) {
  .block-section-wrapper.element-width--wide {
    max-width: 100%;
  }
}
@media screen and (max-width: 849px) {
  .block-section-wrapper.element-width--normal {
    max-width: 100%;
  }
}
.block-section-wrapper.element-width--full {
  width: 100%;
  max-width: unset;
}

/*
	Only used for custom colors in wysiwyg acf fields.
	Ignore if not used. See inc/acf.php
*/
.dc-highlight-red {
  color: #f4163b !important;
}

.dc-highlight-green {
  color: #3dd48b !important;
}

.dc-highlight-black {
  color: #212322 !important;
}

/**
 * Vendor
 */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.lenis.lenis-stopped {
  overflow: auto !important;
}

/**
 * UI files
 */
/**
 * Plugin files
 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: currentColor;
}

.hamburger-box {
  width: 20px;
  height: 14.5px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.75px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -6.5px;
}

.hamburger-inner::after {
  bottom: -6.5px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 40px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 40px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 6.5px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 13px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 6.5px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 13px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 6.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -40px;
  top: -40px;
  transform: translate3d(40px, 40px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -40px;
  top: -40px;
  transform: translate3d(-40px, 40px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 6.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -40px;
  top: 40px;
  transform: translate3d(40px, -40px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -40px;
  top: 40px;
  transform: translate3d(-40px, -40px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 0.75px;
}

.hamburger--slider .hamburger-inner::before {
  top: 6.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 13px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-2.8571428571px, -5px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.75px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 6.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 13px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(2.8571428571px, -5px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -13px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.75px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 6.5px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6.5px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6.5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -13px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -6.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

#menu-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-height: 2.75rem;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  pointer-events: all;
}

button:hover .icon-has-circle.icon-has-circle-light, button:focus .icon-has-circle.icon-has-circle-light {
  background-color: var(--color__blue);
  color: var(--color__white);
}

.arrow-button {
  background-color: var(--color__teal);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 800px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.arrow-button svg {
  fill: currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.arrow-button:hover {
  opacity: 0.8;
}

.text-link {
  color: var(--color__blue);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.text-link i {
  margin-left: 0.625rem;
}

.text-link .label {
  text-decoration: underline;
}

.text-link:hover, .text-link:focus {
  color: var(--color__blue-dark);
}

.text-link:hover .label, .text-link:focus .label {
  text-decoration: none;
}

button,
.stm-button,
.icon-has-circle {
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

button:hover, button:focus,
.stm-button:hover,
.stm-button:focus,
.icon-has-circle:hover,
.icon-has-circle:focus {
  cursor: pointer;
}

.stm-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 1.25rem 1.875rem;
  line-height: 1.3;
  border-radius: var(--element-border-radius);
  color: var(--color__white);
  background-color: var(--color__blue);
  font-size: var(--font-size-ui);
  line-height: var(--font-size-ui);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
}

.stm-button.margin {
  margin: 2rem auto 0;
}

.stm-button:hover {
  background: var(--color__blue-dark);
}

.stm-button.dark {
  background-color: var(--color__blue-dark);
  color: var(--color__white);
}

.stm-button.dark:hover, .stm-button.dark:focus {
  background-color: var(--color__blue);
  color: var(--color__white);
}

.stm-button.yellow {
  background-color: var(--color__yellow);
  color: var(--color__blue-darker);
}

.stm-button.yellow:hover, .stm-button.yellow:focus {
  background-color: var(--color__yellow-light);
  color: var(--color__blue-darker);
}

.stm-button.white {
  background-color: var(--color__white);
  color: var(--color__blue);
}

.stm-button.white:hover, .stm-button.white:focus {
  background-color: var(--color__blue);
  color: var(--color__white);
}

.stm-button.white.dark-text {
  color: var(--color__blue-dark);
}

.stm-button.white.dark-text:hover, .stm-button.white.dark-text:focus {
  background-color: var(--color__blue-dark);
}

.stm-button.outlined {
  border: solid 1px currentColor;
  background: transparent;
}

.stm-button.outlined:hover {
  background: currentColor;
  border-color: currentColor;
}

.stm-button.outlined:hover span.text {
  color: var(--color__white);
  transition: inherit;
}

.has-blue-dark-background-color .stm-button.white:hover, .has-blue-dark-background-color .stm-button.white:focus,
.has-blue-darker-background-color .stm-button.white:hover,
.has-blue-darker-background-color .stm-button.white:focus {
  background-color: var(--color__blue);
  color: var(--color__white);
}

.icon-has-circle {
  background-color: var(--color__blue-dark);
  color: var(--color__white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 849px) {
  .icon-has-circle {
    background-color: transparent;
    color: inherit;
  }
}
.icon-has-circle.icon-has-circle-light {
  background-color: var(--color__white);
  color: var(--color__blue-dark);
}

@media screen and (max-width: 849px) {
  .icon-has-circle.icon-has-circle-light {
    background-color: var(--color__white);
    color: var(--color__blue-dark);
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.875rem 1.875rem 1.25rem;
  border-radius: var(--element-border-radius);
  text-decoration: none;
}

@media screen and (min-width: 850px) {
  .card {
    max-width: 23.875rem;
    min-height: 23.875rem;
  }
}
.card .link-action {
  order: 2;
  margin-right: 3.125rem;
}

.card .link-title {
  order: 1;
  margin-bottom: 3.125rem;
}

.card .link-action {
  font-weight: 500;
}

.card .link-action {
  font-size: 12px;
}

@media screen and (min-width: 480px) {
  .card .link-action {
    font-size: calc(12px + 4 * (100vw - 480px) / 1120);
  }
}
@media screen and (min-width: 1600px) {
  .card .link-action {
    font-size: 16px;
  }
}
.card i {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5625rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--color__white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color__black);
  border-radius: 100%;
  transition: all 350ms ease-in-out;
}

.card:hover i, .card:focus i {
  right: 1.25rem;
}

.card-alt {
  border-radius: var(--element-border-radius);
  padding: 1.25rem 1.875rem;
}

@media screen and (min-width: 850px) {
  .card-alt {
    padding: 3.75rem 2.5rem;
  }
}
figure.stm-figure-wrapper picture {
  display: block;
  width: 100%;
}

figure.stm-figure-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--element-border-radius);
}

figure.stm-figure-wrapper figcaption {
  max-width: 270px;
  margin-top: 1.25rem;
  padding-left: 0.8125rem;
  border-left: 2px solid var(--color__blue);
}

ul.has-left-lines {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

ul.has-left-lines li {
  position: relative;
  border-left: 1px solid var(--color__grey);
  padding: 0 1.875rem 3.75rem 2.5rem;
}

@media screen and (min-width: 850px) {
  ul.has-left-lines li {
    width: 50%;
  }
}
ul.has-left-lines li h2 {
  margin-top: -1.25rem;
}

ul.has-left-lines li:before {
  content: "";
  display: block;
  background-color: var(--color__blue);
  width: 0.75rem;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  left: -0.0625rem;
}

@media screen and (max-width: 849px) {
  ul.has-left-lines li {
    padding-left: 4.375rem;
  }
}
ul.text-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.text-list li {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 850px) {
  ul.text-list li {
    display: flex;
  }
}
ul.text-list li .text-wrapper {
  padding-top: 0.625rem;
  border-top: 1px solid var(--color__grey);
}

.block-section a:not(.stm-button, .has-blue-dark-background-color, .has-blue-darker-background-color, .has-blue-background-color, .has-green-background-color),
footer a:not(.text-link) {
  color: inherit;
}

.block-section a:not(.stm-button, .has-blue-dark-background-color, .has-blue-darker-background-color, .has-blue-background-color, .has-green-background-color):hover, .block-section a:not(.stm-button, .has-blue-dark-background-color, .has-blue-darker-background-color, .has-blue-background-color, .has-green-background-color):focus,
footer a:not(.text-link):hover,
footer a:not(.text-link):focus {
  text-decoration: unset;
}

/**
 * Icons
 */
@font-face {
  font-family: "icon";
  src: url("../fonts/icons/icon.eot?t=1776331000547"); /* IE9*/
  src: url("../fonts/icons/icon.eot?t=1776331000547#iefix") format("embedded-opentype"), url("../fonts/icons/icon.woff2?t=1776331000547") format("woff2"), url("../fonts/icons/icon.woff?t=1776331000547") format("woff"), url("../fonts/icons/icon.ttf?t=1776331000547") format("truetype"), url("../fonts/icons/icon.svg?t=1776331000547#icon") format("svg"); /* iOS 4.1- */
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "А";
}

.icon-arrow-left:before {
  content: "Б";
}

.icon-arrow-right:before {
  content: "В";
}

.icon-arrow-up:before {
  content: "Г";
}

.icon-close:before {
  content: "Д";
}

.icon-download:before {
  content: "Е";
}

.icon-mail:before {
  content: "Ж";
}

.icon-phone:before {
  content: "З";
}

.icon-play-icon:before {
  content: "И";
}

.icon-plus:before {
  content: "Й";
}

.icon-search:before {
  content: "К";
}

.acf-block-component .acf-block-fields {
  background: #F9F8FF !important;
}

.stem_block_name {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
  text-align: left;
  background-color: #E2DDFF;
  font-weight: bold;
}

.stem_block_name .acf-label {
  display: none;
}

.stem_block_name .acf-input p {
  font-size: 0.875rem !important;
  margin: 8px !important;
}

/**
 * Layout files
 */
body {
  background-color: var(--color__grey-lighter);
}

body.admin-bar #topbarNavigation {
  top: 32px;
}

#topbarNavigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  display: flex;
  flex-flow: column;
  overflow: auto;
}

.main-navigation__is-visible #topbarNavigation, .report-navigation__is-visible #topbarNavigation, .search-navigation__is-visible #topbarNavigation {
  bottom: 0;
}

#topbar {
  position: fixed;
  top: 0;
  right: 3.125rem;
  z-index: 100;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--color__white);
  transition: opacity 200ms ease-in-out;
}

@media screen and (max-width: 849px) {
  #topbar {
    right: 1.875rem;
  }
}
.sticky-table-in-view #topbar {
  opacity: 0;
}

#topbar * {
  color: inherit;
}

#topbar .left,
#topbar .menu-container,
#topbar .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#topbar .left * {
  color: inherit;
  display: block;
  text-decoration: underline;
}

#topbar .topbar-menu-wrapper ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  list-style: none;
}

#topbar .topbar-menu-wrapper ul a {
  text-decoration: none;
  color: inherit;
}

#topbar .topbar-menu-wrapper ul li {
  margin: 0;
}

#toggle-search button {
  width: 44px;
  margin-right: 18px;
  padding: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color__blue-darker);
  background: var(--color__white);
  border-radius: 50%;
}

.main-navigation__is-visible #toggle-search button, .report-navigation__is-visible #toggle-search button, .search-navigation__is-visible #toggle-search button {
  background: var(--color__grey-lighter);
}

#toggle-search button:focus-visible, #toggle-search button:hover {
  background-color: var(--color__grey-light);
}

#toggle-search button .open-icon,
#toggle-search button .close-icon {
  opacity: 0;
  position: absolute;
  display: flex;
  transition: opacity 200ms ease-in-out;
}

#toggle-search button .open-icon {
  margin: 4px 0 0 -3px;
  opacity: 1;
}

.search-navigation__is-visible #toggle-search button .open-icon {
  opacity: 0;
}

.search-navigation__is-visible #toggle-search button .close-icon {
  opacity: 1;
}

#toggle-menu {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
}

#toggle-menu button {
  padding: 0.875rem;
  display: flex;
  line-height: 1;
  background-color: var(--color__blue);
  border-radius: var(--element-border-radius);
}

@media screen and (min-width: 1000px) {
  #toggle-menu button {
    padding: 0.875rem 1.875rem;
  }
}
#toggle-menu button:focus-visible, #toggle-menu button:hover {
  background-color: var(--color__blue-dark);
}

@media screen and (min-width: 1000px) {
  #toggle-menu .hamburger {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  #toggle-menu .menu-icon-text {
    display: none;
  }
}
#menu-buttons-wrapper {
  display: flex;
  align-items: center;
}

body:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  z-index: 399;
  transition: all 150ms ease-out;
}

body.main-navigation__is-visible:after, body.report-navigation__is-visible:after, body.search-navigation__is-visible:after {
  opacity: 1;
  transition: all 350ms ease-out;
}

body.main-navigation__is-visible #toggle-menu button, body.report-navigation__is-visible #toggle-menu button, body.search-navigation__is-visible #toggle-menu button {
  color: var(--color__blue-darker);
  background-color: var(--color__grey-light);
}

body.main-navigation__is-visible #toggle-menu button:focus-visible, body.main-navigation__is-visible #toggle-menu button:hover, body.report-navigation__is-visible #toggle-menu button:focus-visible, body.report-navigation__is-visible #toggle-menu button:hover, body.search-navigation__is-visible #toggle-menu button:focus-visible, body.search-navigation__is-visible #toggle-menu button:hover {
  color: var(--color__white);
  background-color: var(--color__grey-middle);
}

body.main-navigation__is-visible #hidden-anchor-link-nav-wrapper, body.report-navigation__is-visible #hidden-anchor-link-nav-wrapper, body.search-navigation__is-visible #hidden-anchor-link-nav-wrapper {
  z-index: 90;
}

.hoegh-logo {
  fill: var(--color__blue-dark);
  transition: fill 350ms ease-out, opacity 250ms ease-out;
  height: auto;
}

.has-white-site-logo .hoegh-logo {
  fill: var(--color__white);
}

.main-navigation__is-visible .hoegh-logo, .search-navigation__is-visible .hoegh-logo {
  fill: var(--color__blue-dark);
}

.hoegh-logo-mobile {
  fill: none;
  height: auto;
}

.hoegh-logo-mobile .st1 {
  fill: #023f5f;
}

.hoegh-logo-mobile .st5 {
  fill: var(--color__blue-dark);
}

.has-white-site-logo .hoegh-logo-mobile .st1 {
  fill: #023f5f;
}

.has-white-site-logo .hoegh-logo-mobile .st5 {
  fill: var(--color__white);
}

.main-navigation__is-visible .hoegh-logo-mobile .st1,
.main-navigation__is-visible .hoegh-logo-mobile .st5, .search-navigation__is-visible .hoegh-logo-mobile .st1,
.search-navigation__is-visible .hoegh-logo-mobile .st5 {
  fill: var(--color__blue-dark);
}

#top-site-logo {
  position: absolute;
  top: 1.25rem;
  left: 3.125rem;
  z-index: 150;
  display: block;
  line-height: 0;
}

body.admin-bar #top-site-logo {
  top: calc(32px + 1.25rem);
}

#top-site-logo:focus .hoegh-logo,
#top-site-logo:focus .hoegh-logo-mobile, #top-site-logo:hover .hoegh-logo,
#top-site-logo:hover .hoegh-logo-mobile {
  opacity: 0.7;
}

@media screen and (max-width: 849px) {
  #top-site-logo {
    left: max(1rem, env(safe-area-inset-left, 0px));
  }
}
#top-site-logo .hoegh-logo {
  display: block;
  width: 12.375rem;
}

@media screen and (max-width: 849px) {
  #top-site-logo .hoegh-logo {
    display: none;
  }
}
#top-site-logo .hoegh-logo-mobile {
  display: block;
  width: 7.5rem;
}

@media screen and (min-width: 850px) {
  #top-site-logo .hoegh-logo-mobile {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .primary-navigation-wrapper {
    position: relative;
    height: 100%;
  }
  .primary-navigation-wrapper nav {
    height: 70vh;
    overflow: auto;
  }
}
.primary-navigation-wrapper .mobile-menu-swap-container {
  padding: 0.9375rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color__blue-dark);
  border-radius: 0 0 var(--element-border-radius) var(--element-border-radius);
}

@media screen and (min-width: 1000px) {
  .primary-navigation-wrapper .mobile-menu-swap-container {
    height: 5.75rem;
    padding: 0.5rem 0 0;
    margin: -0.5rem 0 0;
  }
}
.primary-navigation-wrapper .mobile-menu-swap-container .stm-button {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.primary-navigation-wrapper .mobile-menu-swap {
  padding: 0.4375rem 0.875rem;
}

@media screen and (max-width: 999px) {
  .primary-navigation-wrapper .mobile-menu-swap {
    display: inline-flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  .primary-navigation-wrapper .mobile-menu-swap {
    padding: 0.625rem 1.25rem;
  }
}
.primary-navigation-wrapper .mobile-menu-swap:focus, .primary-navigation-wrapper .mobile-menu-swap:hover {
  background-color: var(--color__blue-dark);
}

.primary-navigation-wrapper .mobile-menu-swap:focus i, .primary-navigation-wrapper .mobile-menu-swap:hover i {
  background-color: var(--color__white);
}

.primary-navigation-wrapper .mobile-menu-swap:focus i:before, .primary-navigation-wrapper .mobile-menu-swap:hover i:before {
  color: var(--color__blue-dark);
}

.primary-navigation-wrapper .mobile-menu-swap .label {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

@media screen and (min-width: 1000px) {
  .primary-navigation-wrapper .mobile-menu-swap .label {
    font-size: 1.375rem;
  }
}
.primary-navigation-wrapper .mobile-menu-swap i {
  width: 2.875rem;
  height: 2.875rem;
  background-color: var(--color__blue);
}

.primary-navigation-wrapper .mobile-menu-swap i:before {
  color: var(--color__white);
  transition: color 0.4s ease-in-out;
}

.primary-navigation-wrapper .mobile-menu-swap i.icon-arrow-left {
  margin-right: 0.625rem;
}

.primary-navigation-wrapper .mobile-menu-swap i.icon-arrow-right {
  margin-left: 0.625rem;
}

#main-menu {
  color: var(--color__black);
  width: 100%;
  display: block;
  position: fixed;
  z-index: 95;
  transition: opacity 350ms ease-in-out;
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 1000px) {
  #main-menu {
    top: -100vh;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 999px) {
  #main-menu {
    padding: 6.25rem 0 3.125rem;
    top: 0;
    right: -100vw;
  }
}
@media screen and (max-width: 999px) and (min-height: 750px) {
  #main-menu {
    padding-top: 11.25rem;
  }
}
#main-menu .primary-navigation-wrapper-inner {
  margin: 0 25px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 850px) {
  #main-menu .primary-navigation-wrapper-inner {
    margin: 0 50px;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .primary-navigation-wrapper-inner {
    max-width: 1255px;
    margin: 0 auto;
  }
}
#main-menu:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0196078431);
  background-color: var(--color__white);
  background-image: url("../images/hoegh-pattern.svg");
}

@media screen and (min-width: 1000px) {
  #main-menu:after {
    bottom: 5.125rem;
  }
}
#main-menu.open {
  position: relative;
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  #main-menu.open {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    top: 0;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu.open {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}
@media screen and (min-width: 1600px) {
  #main-menu.open {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
}
@media screen and (max-width: 999px) {
  #main-menu.open {
    right: 0;
  }
}
#main-menu .menu-item {
  list-style: none;
  font-weight: 500;
  color: var(--color__grey);
}

@media screen and (max-width: 999px) {
  #main-menu .menu-item {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu .menu-item {
    margin-bottom: 0.625rem;
    padding-right: 5%;
  }
  #main-menu .menu-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .menu-item {
    max-width: 380px;
  }
}
#main-menu .menu-item a {
  font-size: 1.25rem;
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}

#main-menu .menu-item a .menu-link-text {
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 200ms ease-in-out, text-decoration-color 200ms ease-in-out;
}

#main-menu .menu-item a:hover, #main-menu .menu-item a:focus {
  color: var(--color__blue-dark);
}

#main-menu .menu-item .icon-has-circle {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
  visibility: hidden;
  opacity: 0;
  margin-left: 0;
  width: 1.875rem;
  height: 1.875rem;
  color: var(--color__blue-dark);
  background-color: var(--color__grey-light);
  transition: opacity 200ms ease-in-out;
}

@media screen and (max-width: 849px) {
  #main-menu li:not(.active) ul.sub-menu {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#main-menu ul {
  margin: 0;
  padding: 0;
}

#main-menu ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

@media screen and (max-width: 999px) {
  #main-menu ul.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 350ms ease-out;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu ul.sub-menu {
    width: 33.3333%;
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu ul.sub-menu {
    max-width: 380px;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu ul.sub-menu a {
    font-size: 1.375rem;
  }
}
#main-menu ul.sub-menu .current-menu-item > a {
  color: var(--color__blue-darker);
}

#main-menu li {
  margin: 0;
  padding: 0;
}

#main-menu .submenu-opened > .sub-menu {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 999px) {
  #main-menu .submenu-opened > .sub-menu {
    margin-top: 1.5rem;
    max-height: none;
  }
}
#main-menu .submenu-opened > a {
  color: var(--color__blue-darker);
}

@media screen and (max-width: 999px) {
  #main-menu .submenu-opened > a {
    display: inline-flex;
    flex-direction: row-reverse;
  }
}
#main-menu .submenu-opened > a:hover, #main-menu .submenu-opened > a:focus {
  color: var(--color__blue-darker);
}

#main-menu .submenu-opened > a > .icon-has-circle {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 999px) {
  #main-menu .submenu-opened > a > .icon-has-circle {
    margin-left: 0;
    transform: scaleX(-1);
    background-color: transparent;
    border: 1px solid var(--color__blue-darker);
  }
}
@media screen and (max-width: 999px) {
  #main-menu .hide-on-mobile {
    max-height: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu .depth-0 {
    max-width: 33.3333%;
    margin-bottom: 1.25rem;
  }
  #main-menu .depth-0:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu .depth-0 > .sub-menu {
    left: 33.3333333333%;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .depth-0 > .sub-menu {
    left: 418.3333333333px;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .depth-0 > a {
    font-size: 1.625rem;
  }
}
#main-menu .depth-1 > .sub-menu {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #main-menu .depth-1 > .sub-menu {
    left: 100%;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .depth-1 > .sub-menu {
    left: 418.3333333333px;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu .menu-item-has-children > a:focus > .icon-has-circle, #main-menu .menu-item-has-children > a:hover > .icon-has-circle {
    visibility: visible;
    opacity: 1;
  }
}
#main-menu .not-a-parent > a:focus, #main-menu .not-a-parent > a:hover {
  color: var(--color__blue-darker);
}

@media screen and (min-width: 1000px) {
  #main-menu .not-a-parent > a:focus > .menu-link-text, #main-menu .not-a-parent > a:hover > .menu-link-text {
    text-decoration-color: var(--color__blue-darker);
  }
}
#main-menu .not-a-parent > a > .icon-has-circle {
  width: auto;
  padding: 0;
  color: inherit;
  background: none;
  visibility: visible;
  opacity: 1;
}

#main-menu .download-pdf > a > .icon-has-circle:before {
  content: "Е";
}

#main-menu .vertical-line {
  width: 1.5px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color__grey-light);
}

@media screen and (max-width: 999px) {
  #main-menu .vertical-line {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .vertical-line {
    margin-left: -32px;
  }
}
@media screen and (min-width: 1000px) {
  #main-menu .vertical-line.depth-0 {
    left: calc((100vw - 100px) / 3 + 1.5vw);
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .vertical-line.depth-0 {
    left: calc((100vw - 1255px) / 2 + 418.3333333333px);
  }
}
#main-menu .vertical-line.depth-1 {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

@media screen and (min-width: 1000px) {
  #main-menu .vertical-line.depth-1 {
    left: calc((100vw - 100px) / 3 * 2 + 1.5vw);
  }
}
@media screen and (min-width: 1440px) {
  #main-menu .vertical-line.depth-1 {
    left: calc((100vw - 1255px) / 2 + 836.6666666667px);
  }
}
@media screen and (min-width: 1000px) {
  #main-menu.depth-1-on-stage .vertical-line.depth-1 {
    opacity: 1;
  }
}
@media screen and (max-width: 999px) {
  #main-menu.depth-1-on-stage .depth-0.submenu-opened > a {
    display: none;
  }
  #main-menu.depth-1-on-stage .depth-0.submenu-opened > .sub-menu {
    margin-top: 0;
  }
}
#reports-menu {
  background-color: var(--color__blue);
  position: fixed;
  top: 0;
  z-index: 95;
  padding: 6.25rem 3.5rem;
  visibility: hidden;
  right: -100vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 37.8125rem;
  max-width: 100%;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
  opacity: 0;
}

@media screen and (max-width: 849px) {
  #reports-menu {
    width: 100%;
    padding: 0;
  }
}
#reports-menu nav {
  padding-top: 2.5rem;
}

#reports-menu nav a {
  width: 100%;
  text-decoration: none;
  color: var(--color__white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6875rem 0;
}

@media screen and (min-width: 850px) {
  #reports-menu nav a {
    min-width: 31.5625rem;
  }
}
@media screen and (max-width: 849px) {
  #reports-menu nav a {
    padding: 0.9375rem 0;
  }
}
#reports-menu nav a i.icon-has-circle {
  margin-left: 0.9375rem;
  width: 2.375rem;
  height: 2.375rem;
  transition: color 350ms ease-out, background-color 350ms ease-out;
}

@media screen and (max-width: 999px) {
  #reports-menu nav a i.icon-has-circle {
    background-color: var(--color__white);
    color: var(--color__blue-dark);
  }
}
#reports-menu nav a:not(:last-child) {
  border-bottom: 0.0625rem solid var(--color__white);
}

#reports-menu nav a:focus i.icon-has-circle, #reports-menu nav a:hover i.icon-has-circle {
  background-color: var(--color__white);
  color: var(--color__blue-dark);
}

#reports-menu.open {
  right: 0;
  padding: 6.25rem 3.5rem;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 849px) {
  #reports-menu.open {
    padding: 2.1875rem 0;
  }
}
#reports-menu .mobile-menu-swap {
  border-radius: 0;
}

#search-panel {
  color: var(--color__black);
  width: 100%;
  max-height: 100%;
  display: block;
  position: fixed;
  z-index: 95;
  transition: opacity 350ms ease-in-out;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0196078431);
  background-color: var(--color__white);
  background-image: url("../images/hoegh-pattern.svg");
  overflow: auto;
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 1000px) {
  #search-panel {
    top: -100vh;
    left: 0;
    right: 0;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 999px) {
  #search-panel {
    padding: 6.25rem 0 3.125rem;
    top: 0;
    right: -100vw;
  }
}
@media screen and (max-width: 999px) and (min-height: 750px) {
  #search-panel {
    padding-top: 11.25rem;
  }
}
@media screen and (min-width: 1000px) and (min-height: 550px) {
  #search-panel {
    padding-top: 9.375rem;
    padding-bottom: 3.125rem;
  }
}
@media screen and (min-width: 1400px) and (min-height: 700px) {
  #search-panel {
    padding-top: 12.5rem;
  }
}
#search-panel.search-results-on-stage {
  padding-top: 5.625rem;
}

@media screen and (min-width: 850px) {
  #search-panel.search-results-on-stage {
    padding-top: 0;
  }
}
#search-panel.search-results-on-stage .search-form .terms {
  display: none;
}

.search-navigation__is-visible #search-panel {
  position: relative;
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .search-navigation__is-visible #search-panel {
    top: 0;
  }
}
@media screen and (max-width: 999px) {
  .search-navigation__is-visible #search-panel {
    right: 0;
  }
}
#search-panel .search-form {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form {
    max-width: 50%;
  }
}
@media screen and (min-width: 1440px) {
  #search-panel .search-form {
    max-width: 660px;
  }
}
#search-panel .search-form input {
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  display: block;
  font-weight: inherit;
  font-size: 1.375rem;
  line-height: 1.2;
  text-align: inherit;
  border-bottom: 1px solid var(--color__grey);
  border-radius: 0;
  background: none;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form input {
    font-size: 2.75rem;
  }
}
#search-panel .search-form .terms {
  margin-top: 7.5rem;
  font-size: 0.875rem;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form .terms {
    font-size: 1.125rem;
  }
}
#search-panel .search-form .terms ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form .terms ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#search-panel .search-form .terms li {
  margin: 0.625rem 0;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form .terms li {
    margin: 0.875rem 0.9375rem;
  }
}
#search-panel .search-form .terms button {
  padding: 0;
  border: 0;
  color: var(--color__blue);
  background: none;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 850px) {
  #search-panel .search-form .terms button {
    font-size: 1.375rem;
  }
}
#search-panel .search-results {
  margin-top: 1.875rem;
  overflow: auto;
}

#search-panel .search-results .no-results {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
}

#search-panel .search-results ul {
  margin: 0;
  padding: 0 0.9375rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#search-panel .search-results li {
  padding: 0.9375rem;
  width: 100%;
  display: block;
}

@media screen and (min-width: 480px) {
  #search-panel .search-results li {
    width: 50%;
  }
}
@media screen and (min-width: 850px) {
  #search-panel .search-results li {
    width: 33.3333%;
    margin: 0 0 1.25rem;
  }
}
@media screen and (min-width: 1000px) {
  #search-panel .search-results li {
    width: 25%;
  }
}
@media screen and (min-width: 1440px) {
  #search-panel .search-results li {
    width: 16.6666%;
  }
}
#search-panel .search-results a {
  text-decoration: none;
  color: inherit;
}

#search-panel .search-results a:focus .title, #search-panel .search-results a:hover .title {
  text-decoration-color: currentColor;
}

#search-panel .search-results a:focus .image img, #search-panel .search-results a:hover .image img {
  transform: scale(1.05);
}

#search-panel .search-results .image,
#search-panel .search-results .color {
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  margin-bottom: 0.625rem;
}

#search-panel .search-results .image {
  overflow: hidden;
}

#search-panel .search-results .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 350ms ease-in-out;
}

#search-panel .search-results .color {
  background-color: var(--color__blue-dark);
}

#search-panel .search-results .color.blue-light {
  background-color: var(--color__blue-light);
}

#search-panel .search-results .color.blue-dark {
  background-color: var(--color__blue-dark);
}

#search-panel .search-results .color.blue-darker {
  background-color: var(--color__blue-darker);
}

#search-panel .search-results .color.green {
  background-color: var(--color__green);
}

#search-panel .search-results .color.yellow {
  background-color: var(--color__yellow);
}

#search-panel .search-results .color.grey {
  background-color: var(--color__grey);
}

#search-panel .search-results .parent {
  color: var(--color__grey);
  font-size: 1rem;
  font-weight: 500;
}

#search-panel .search-results .title {
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 250ms ease-in-out;
}

.site-footer {
  background: #182838;
  color: var(--color__white);
  overflow: hidden;
  /* For wpml dev site */
}

.site-footer .hoegh-logo {
  display: block;
  width: 15.75rem;
  fill: var(--color__white);
}

@media screen and (max-width: 849px) {
  .site-footer .hoegh-logo {
    width: 10.5rem;
  }
}
.site-footer .footer-column.logo {
  text-align: left;
}

@media screen and (max-width: 849px) {
  .site-footer .footer-column,
  .site-footer .footer-ending > div {
    margin: 0 auto;
  }
  .site-footer .footer-column {
    width: 100%;
  }
  .site-footer .footer-ending > div {
    max-width: calc(100% - 40px);
  }
}
.site-footer a,
.site-footer p,
.site-footer ul {
  color: inherit;
  margin: 0;
  padding: 0;
}

.site-footer h1 strong {
  display: block;
}

.site-footer .footer-title {
  margin-bottom: 0.5em;
}

.site-footer .footer-ending {
  background: var(--color__blue-hoegh, #182838);
  padding: 1rem 0;
}

.site-footer .footer-ending p {
  display: block !important;
}

@media screen and (min-width: 850px) {
  .site-footer .footer-ending .wrapper > * {
    flex: 0 33%;
  }
  .site-footer .footer-ending .wrapper > *:nth-child(2) {
    display: flex;
    justify-content: center;
  }
  .site-footer .footer-ending .wrapper > *:last-child {
    text-align: right;
  }
}
@media screen and (min-width: 850px) {
  .site-footer .footer-ending .wrapper,
  .site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (max-width: 999px) {
  .site-footer .footer-column.logo {
    margin-bottom: 3.125rem;
  }
}
.site-footer .footer-contact-info-cols {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 850px) {
  .site-footer .footer-contact-info-cols {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 999px) {
  .site-footer .footer-contact-info-cols {
    margin-top: 1.875rem;
    flex-direction: column;
  }
}
.site-footer .footer-contact-info-col {
  font-size: 0.9375rem;
  line-height: 1.875rem;
}

@media screen and (min-width: 850px) {
  .site-footer .footer-contact-info-col {
    width: 45%;
  }
}
.site-footer .footer-content {
  padding: 3.75rem 0;
}

@media screen and (min-width: 850px) {
  .site-footer .footer-content {
    padding: 7.5rem 0;
  }
}
.site-footer .footer-content li {
  list-style: none;
  margin: 0.3em 0;
}

@media screen and (max-width: 999px) {
  .site-footer .footer-content .footer-column {
    flex: 0 100%;
  }
}
@media screen and (min-width: 1000px) {
  .site-footer .footer-content .footer-column {
    flex: 0 50%;
  }
}
.site-footer .footer-content .footer-column.info p {
  margin-top: 0.5rem;
}

.site-footer .small-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.site-footer .small-footer-links li {
  margin: 0 3.125rem 0 0;
}

.site-footer dd {
  margin-left: 0;
}

.site-footer .otgs-development-site-front-end,
.site-footer .wpml-ls-statics-footer {
  display: none;
}

/**
 * Templates files
 */
.not-found-content .text-wrapper {
  padding-bottom: 1.25rem;
}
