@charset "UTF-8";
/*Used for grey borders */
:root {
  font-size: 16px;
}

#standard-space-jquery {
  width: 16px;
}
@media only screen and (min-width: 600px) {
  #standard-space-jquery {
    width: 24px;
  }
}

#view-check {
  width: 1px;
}
@media only screen and (min-width: 600px) {
  #view-check {
    width: 2px;
  }
}
@media only screen and (min-width: 950px) {
  #view-check {
    width: 3px;
  }
}
@media only screen and (min-width: 1100px) {
  #view-check {
    width: 4px;
  }
}

@supports (display: grid) {
  .grid-1-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-2-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-2-columns > * {
    width: auto;
  }
  @media only screen and (min-width: 600px) {
    .grid-2-columns {
      grid-template-columns: 1fr 1fr;
    }
  }
  .grid-min-2-max-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .grid-min-2-max-4-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-min-2-max-4-columns {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (min-width: 950px) {
    .grid-min-2-max-4-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .grid-min-4-max-4-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-min-4-max-4-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .grid-min-1-max-3-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-min-1-max-3-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .grid-min-1-max-4-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media only screen and (min-width: 950px) {
    .grid-min-1-max-4-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .grid-min-2-max-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-min-2-max-3-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .grid-min-2-max-5-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-min-2-max-5-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  @media only screen and (min-width: 1100px) {
    .grid-min-2-max-5-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .grid-3-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  @media only screen and (min-width: 600px) {
    .grid-3-columns {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (min-width: 950px) {
    .grid-3-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .grid-3-columns > * {
    width: auto;
  }
  .grid-4-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-4-columns > * {
    width: auto;
  }
  @media only screen and (min-width: 600px) {
    .grid-4-columns {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (min-width: 950px) {
    .grid-4-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  @media only screen and (min-width: 1100px) {
    .grid-4-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .grid-5-columns {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-5-columns > * {
    width: auto;
  }
  @media only screen and (min-width: 600px) {
    .grid-5-columns {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  @media only screen and (min-width: 950px) {
    .grid-5-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  @media only screen and (min-width: 1100px) {
    .grid-5-columns {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .grid-gap {
    display: grid;
    grid-gap: 24px;
  }
  .grid-gap > * {
    margin: 0;
    width: auto !important;
  }
  .grid-gap-double {
    display: grid;
    grid-gap: 48px;
  }
  .grid-gap-double > * {
    margin: 0;
    width: auto !important;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.center-horizontal-vertical {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-horizontal {
  display: flex;
  justify-content: center;
}

.center-vertical, .woocommerce-message, .woocommerce-info, .woocommerce-error li, .wpforms-container .wpforms-field-checkbox ul li {
  display: flex;
  align-items: center;
}

.flow-horizontal, .wpforms-container .wpforms-field-checkbox ul li {
  display: flex;
  flex-direction: row;
}

.flow-vertical {
  display: flex;
  flex-direction: column;
}

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

.justify-self-center {
  justify-self: center;
}

.align-start {
  align-items: flex-start;
}

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

.align-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-base {
  justify-self: baseline;
}

.align-base {
  align-self: baseline;
}

.space-between {
  justify-content: space-between;
}

@keyframes moveup {
  0% {
    transform: translateY(0px);
  }
  20% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes arrow-right {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  30%, 60% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}
.blurred-background {
  background: rgba(var(--background-color-raw),0.98);
}
@supports (-webkit-backdrop-filter: blur(20px)) {
  .blurred-background {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(var(--background-color-raw),0.7);
  }
}

.blurred-background-menu, header nav .sub-menu, header nav > ul {
  background: rgba(var(--background-color-raw),0.98);
}
@supports (-webkit-backdrop-filter: blur(20px)) {
  .blurred-background-menu, header nav .sub-menu, header nav > ul {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(var(--background-color-raw),0.85);
  }
}

.full-height-header {
  height: 100vh;
}

.main-content {
  position: relative;
  padding-top: 64px;
}
@media only screen and (min-width: 600px) {
  .main-content {
    padding-top: 72px;
  }
}

header, .logo, .logo * {
  transition: all 0.2s linear;
}

.fixed-header header {
  position: fixed;
  transition: box-shadow 0.2s linear, background 0.2s linear;
}
.fixed-header .no-margin-top {
  padding-top: 0;
}
.fixed-header .header-scrolled, .fixed-header .menu-active, .fixed-header .header-blurred {
  box-shadow: 0px -6px 33px 0px rgba(0, 0, 0, 0.34);
  background: rgba(var(--background-color-raw), 0.98);
}
.fixed-header .header-scrolled .logo, .fixed-header .menu-active .logo, .fixed-header .header-blurred .logo {
  opacity: 1 !important;
}
header {
  width: 100vw;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background: var(--background-color);
}
@media only screen and (min-width: 950px) {
  header {
    overflow: visible;
  }
}
header .header-content-page-width {
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
}
@media only screen and (min-width: 950px) {
  header .header-content-page-width {
    width: 1080px;
  }
}
@media only screen and (min-width: 950px) {
  header .logo {
    display: none;
  }
}
header .menu-svg, header .menu-logo, header .logo {
  width: 20px;
  height: 20px;
}
header .menu-svg *, header .menu-logo *, header .logo * {
  fill: var(--font-color);
}
header .header-darkmode-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  line-height: 0;
}
@media only screen and (min-width: 600px) {
  header .header-darkmode-icon {
    left: 24px;
  }
}
header .header-darkmode-icon * {
  fill: var(--font-color);
  transition: fill 0.8s linear;
}
header .m-btn, header .m-back-btn {
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: absolute;
}
@media only screen and (min-width: 950px) {
  header .m-btn, header .m-back-btn {
    display: none;
  }
}

.clean-header {
  background: transparent;
}

.section-gradient-block {
  --photo-container-height:auto;
}
@media only screen and (min-width: 600px) {
  .section-gradient-block {
    --photo-container-height:500px;
  }
}
.section-gradient-block .section-container .section-gradient-block-container {
  height: var(--photo-container-height);
}
@media only screen and (min-width: 600px) {
  .section-gradient-block .section-container .section-gradient-block-container {
    justify-content: center;
    align-items: flex-start;
  }
}
.section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-gradient, .section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-image {
  width: calc(50% + var(--section-gap));
  height: 164px;
  position: absolute;
  top: -56px;
  right: calc(var(--section-gap) * -1);
  background-size: cover;
  background-position: 50% 50%;
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-gradient, .section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-image {
    right: 0;
    width: 60%;
    height: 40px;
    top: 0;
    height: var(--photo-container-height);
  }
}
.section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-content {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .section-gradient-block .section-container .section-gradient-block-container .section-gradient-block-content {
    width: 60%;
  }
}
.section-gradient-block.rtl .section-gradient-block-container {
  justify-content: flex-end;
}
.section-gradient-block.rtl .section-gradient-block-container .section-gradient-block-image {
  left: calc(var(--section-gap) * -1);
  right: auto;
}

.section-gradient-block-title-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .section-gradient-block-title-container {
    width: auto;
  }
}
.section-gradient-block-title-container .section-gradient-block-bottom-gradient {
  width: 100%;
  height: 24px;
  position: absolute;
  left: 0;
  bottom: 16px;
  z-index: -1;
}
@media only screen and (min-width: 600px) {
  .section-gradient-block-title-container .section-gradient-block-bottom-gradient {
    bottom: 24px;
  }
}

.SwitchControl {
  border-radius: 100px;
  background: var(--switch-color);
  width: 50px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.SwitchControl .SwitchControl--slider {
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50px);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1) !important;
}
.SwitchControl .SwitchControl--slider .SwitchControl--knob {
  width: 20px;
  height: 20px;
  background: #7e7e7e;
  position: absolute;
  left: calc(50% - 10px);
  top: 2px;
  border-radius: 100px;
}
.SwitchControl .SwitchControl--slider .SwitchControl--icon_left, .SwitchControl .SwitchControl--slider .SwitchControl--icon_right {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
}
.SwitchControl .SwitchControl--slider .SwitchControl--icon_left *, .SwitchControl .SwitchControl--slider .SwitchControl--icon_right * {
  fill: var(--background-color-alternate) !important;
}
.SwitchControl .SwitchControl--slider .SwitchControl--icon_left {
  left: 18px;
}
.SwitchControl .SwitchControl--slider .SwitchControl--icon_right {
  right: 18px;
}
.SwitchControl.on .SwitchControl--slider {
  transform: translateX(13px);
}
.SwitchControl.off .SwitchControl--slider {
  transform: translateX(-13px);
}

:root {
  --error-color: #af0000;
  --font-color-permanent: #1c1c1c;
  --container-medium-width: 1080px;
  --accent-color-1: #0bf1ff;
  --accent-color-2: #797979;
  --accent-color-3: #a7a7a7;
  --accent-color-4: #797979;
  --button-color: #0bf1ff;
  --button-color-hover: #00b3be;
  --button-contrast-color: rgb(27, 27, 27);
  --button-contrast-color-hover: #fff;
  --gradient-color-1: #0bf1ff;
  --gradient-color-2: #797979;
  --gradient-color-3: #a7a7a7;
  --gradient-color-4: #797979;
  --gradient-color-1-dark: #00cbd7;
  --gradient-color-2-dark: #606060;
  --gradient-color-3-dark: #8e8e8e;
  --gradient-color-4-dark: #606060;
  --icon-color-foreground: #0bf1ff;
  --icon-color-background: #565656;
  --icon-color-blend:#262626;
  --accent-contrast-color:rgb(27, 27, 27);
  --accent-contrast-color-2:rgb(241, 241, 241);
}

.color-scheme-regular {
  --font-color: #292929;
  --switch-color: rgb(68, 68, 68);
  --light-grey: #f1f1f1;
  --border-color: #dadada;
  --background-color-raw: 255,255,255;
  --background-color:rgb(var(--background-color-raw));
  --background-color-alternate: rgb(245, 245, 245);
  --background-color-alternate-2: rgb(230, 230, 230);
  --background-color-alternate-3: rgb(209, 209, 209);
  --background-color-alternate-4: rgb(160,160,160);
}

.color-scheme-dark {
  --font-color: #e0e0e0;
  --switch-color: rgb(216, 216, 216);
  --light-grey:rgb(232,232,232);
  --border-color:#4e4e4e;
  --background-color-raw:20, 20,20;
  --background-color:rgb(var(--background-color-raw));
  --background-color-alternate: rgb(30,30,30);
  --background-color-alternate-2: rgb(40,40,40);
  --background-color-alternate-3: rgb(60,60,60);
  --background-color-alternate-4: rgb(80,80,80);
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  box-sizing: border-box;
}

img, object, embed, video {
  max-width: 100%;
}

.slideshow-transition,
.slideshow-transition header .nav-item,
.slideshow-transition header svg *, .slideshow-transition .slides * {
  transition: all 2s cubic-bezier(0.56, 0.045, 0, 1), fill 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.darkmode-transition, .darkmode-transition *,
.darkmode-transition *::before, .darkmode-transition *::after {
  transition: all 0.35s linear !important;
  transition-duration: 0.35s !important;
  transition-timing-function: linear !important;
}

.no-transitions, .no-transitions * {
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  transition: none !important;
}

.no-transitions-this-class {
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  transition: none !important;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

::selection {
  background: var(--font-color);
  color: white;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

* {
  margin: 0;
  color: var(--font-color);
}

svg:not(.BlendIcon):not(.keep-colors):not(.btn-arrow-svg) *:not(.keep-colors) {
  fill: var(--font-color);
}
svg:not(.BlendIcon):not(.keep-colors):not(.btn-arrow-svg) .accent-color-1 {
  fill: var(--icon-color-foreground);
}
svg:not(.BlendIcon):not(.keep-colors):not(.btn-arrow-svg) .accent-color-2 {
  fill: var(--icon-color-background);
}

.section-connector {
  position: absolute;
  top: 0;
  width: 20px;
  height: 100px;
  background: var(--accent-color-1);
  transform: translateY(-50%) skewY(-45deg);
  pointer-events: none;
}
.section-connector.section-connector-right {
  right: 16px;
}
@media only screen and (min-width: 600px) {
  .section-connector.section-connector-right {
    right: 24px;
  }
}
.section-connector.section-connector-left {
  left: 16px;
}
@media only screen and (min-width: 600px) {
  .section-connector.section-connector-left {
    left: 24px;
  }
}

.section-connector-center {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 6px;
  background: var(--accent-color-1);
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.arrow-icon * {
  fill: var(--background-color) !important;
}

div {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.container-small, .woocommerce .woocommerce-order, .woocommerce .cart-collaterals .wc-proceed-to-checkout, .container-medium, .container-reading, .container-large, .container-full, .force-full-width {
  padding: 0 16px;
  overflow: visible;
}
@media only screen and (min-width: 600px) {
  .container-small, .woocommerce .woocommerce-order, .woocommerce .cart-collaterals .wc-proceed-to-checkout, .container-medium, .container-reading, .container-large, .container-full, .force-full-width {
    padding: 0 24px;
  }
}

.container-small, .woocommerce .woocommerce-order, .woocommerce .cart-collaterals .wc-proceed-to-checkout, .container-medium, .container-reading, .container-large, .container-full {
  max-width: 100%;
  margin: 0 auto 24px auto;
}

.container-no-center {
  margin-left: 0;
  margin-right: 0;
}

.container-full {
  max-width: 100%;
}

.container-small, .woocommerce .woocommerce-order, .woocommerce .cart-collaterals .wc-proceed-to-checkout {
  width: 700px;
}

.container-reading {
  width: 850px;
}

.container-medium {
  width: 1080px;
}

.container-large {
  width: 1440px;
}

.container-full {
  width: 100%;
}

.force-full-width {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.container-small .container-large, .woocommerce .woocommerce-order .container-large, .woocommerce .cart-collaterals .wc-proceed-to-checkout .container-large, .container-small .container-reading, .woocommerce .woocommerce-order .container-reading, .woocommerce .cart-collaterals .wc-proceed-to-checkout .container-reading, .container-small .container-medium, .woocommerce .woocommerce-order .container-medium, .woocommerce .cart-collaterals .wc-proceed-to-checkout .container-medium, .container-small .container-small, .woocommerce .woocommerce-order .container-small, .container-small .woocommerce .woocommerce-order, .woocommerce .container-small .woocommerce-order, .woocommerce .woocommerce-order .woocommerce-order, .woocommerce .cart-collaterals .wc-proceed-to-checkout .container-small, .woocommerce .cart-collaterals .wc-proceed-to-checkout .woocommerce-order, .container-small .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .woocommerce-order .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .container-small .wc-proceed-to-checkout, .woocommerce .cart-collaterals .woocommerce-order .wc-proceed-to-checkout, .woocommerce .cart-collaterals .wc-proceed-to-checkout .wc-proceed-to-checkout, .container-small .container-full, .woocommerce .woocommerce-order .container-full, .woocommerce .cart-collaterals .wc-proceed-to-checkout .container-full, .container-medium .container-large, .container-medium .container-reading, .container-medium .container-medium, .container-medium .container-small, .container-medium .woocommerce .woocommerce-order, .woocommerce .container-medium .woocommerce-order, .container-medium .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .container-medium .wc-proceed-to-checkout, .container-medium .container-full, .container-large .container-large, .container-large .container-reading, .container-large .container-medium, .container-large .container-small, .container-large .woocommerce .woocommerce-order, .woocommerce .container-large .woocommerce-order, .container-large .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .container-large .wc-proceed-to-checkout, .container-large .container-full, .container-reading .container-large, .container-reading .container-reading, .container-reading .container-medium, .container-reading .container-small, .container-reading .woocommerce .woocommerce-order, .woocommerce .container-reading .woocommerce-order, .container-reading .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .container-reading .wc-proceed-to-checkout, .container-reading .container-full, .container-full .container-large, .container-full .container-reading, .container-full .container-medium, .container-full .container-small, .container-full .woocommerce .woocommerce-order, .woocommerce .container-full .woocommerce-order, .container-full .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .container-full .wc-proceed-to-checkout, .container-full .container-full, .force-full-width .container-large, .force-full-width .container-reading, .force-full-width .container-medium, .force-full-width .container-small, .force-full-width .woocommerce .woocommerce-order, .woocommerce .force-full-width .woocommerce-order, .force-full-width .woocommerce .cart-collaterals .wc-proceed-to-checkout, .woocommerce .cart-collaterals .force-full-width .wc-proceed-to-checkout, .force-full-width .container-full {
  padding: 0;
}

.container-large .with-padding, .container-medium .with-padding, .container-small .with-padding, .woocommerce .woocommerce-order .with-padding, .woocommerce .cart-collaterals .wc-proceed-to-checkout .with-padding, .container-full .with-padding {
  padding: 0 16px;
}
@media only screen and (min-width: 600px) {
  .container-large .with-padding, .container-medium .with-padding, .container-small .with-padding, .woocommerce .woocommerce-order .with-padding, .woocommerce .cart-collaterals .wc-proceed-to-checkout .with-padding, .container-full .with-padding {
    padding: 0 24px;
  }
}

/*
.no-padding {
    .container-large, .container-reading, .container-medium, .container-small, .container-full {
        padding:0 $standard_space_mobile;
        @include mq($tablet) {
            padding:0 $standard_space;
        }
    }
}*/
main {
  background: var(--background-color);
  transition: background 0.2s linear;
}

.disclaimer-text {
  text-transform: none;
  font-size: calc(1rem - 3px);
}

.italic {
  font-style: italic;
}

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

body {
  position: relative;
}

html, body, form, input, input::placeholder, textarea, textarea::placeholder, span, button,
h1, h2, h3, h4, h5, h6 {
  font-family: "Muli", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-osx-font-smoothing: subpixel-antialiased !important;
}

.no-overflow {
  overflow-x: hidden;
  overflow-y: hidden;
}

.fill-with-contrast {
  fill: var(--background-color);
}

.fb-like-container {
  margin: 12px 0 0 5px;
  height: 28px;
}
a {
  color: var(--font-color);
  text-decoration: none;
}
a:hover, a:active {
  color: var(--font-color);
}

.link-underline {
  padding-bottom: 0;
  transition: all 0.1s ease-in-out;
}
.link-underline:hover {
  box-shadow: inset 0px -2px 0px 0px;
}

strong {
  color: var(--font-color);
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: black;
  opacity: 0.4;
}

.top-gradient, .bottom-gradient {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  height: 200px;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  visibility: visible;
}

.bottom-gradient {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  top: auto;
  bottom: 0;
}

p {
  line-height: 1.5rem;
}

.standard-v-padding {
  padding: 24px 0;
}

.badge {
  font-size: calc(1rem - 1px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
}

.badge-next-to-btn {
  padding: calc(16px + 4px) 24px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--font-color);
  line-height: 0.95em;
  margin-bottom: 0.1em;
}

h4, h5, h6 {
  font-family: "Muli", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
}

h2, h3, h4, h5, h6 {
  margin-bottom: 8px;
}

h1 {
  font-size: calc(3rem - 0.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
@media only screen and (min-width: 600px) {
  h1 {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1em;
  font-weight: 500;
}

h4 {
  letter-spacing: 0;
  font-size: 1.1rem;
}

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

.margin-horizontal-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.no-border {
  border-width: 0;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0 !important;
}

.space-right {
  margin-right: 24px;
}

.space-right-small {
  margin-right: 8px;
}

.space-left-small {
  margin-left: 8px;
}

.space-top-large {
  margin-top: 72px;
}

.space-top {
  margin-top: 24px;
}

.space-top-small {
  margin-top: 16px;
}

.space-bottom-large {
  margin-bottom: 72px;
}

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

.space-bottom-small {
  margin-bottom: 16px;
}

.space-bottom-4 {
  margin-bottom: 4px !important;
}

.inner-padding {
  padding: 16px 24px;
}

.inner-padding-small {
  padding: 8px 12px;
}

@keyframes pulseInOut {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.m-btn {
  top: 11.5px;
  right: 16px;
}
@media only screen and (min-width: 600px) {
  .m-btn {
    right: 24px;
  }
}

.m-back-btn {
  top: 11.5px;
  right: calc(16px + 60px);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s cubic-bezier(0.56, 0.045, 0, 1);
  pointer-events: none;
}
@media only screen and (min-width: 600px) {
  .m-back-btn {
    right: calc(24px + 60px);
  }
}
.m-back-btn.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.m-btn svg rect, .menu {
  transition: all 0.6s cubic-bezier(0.56, 0.045, 0, 1);
}

.m-btn-ext > svg .top {
  transform: rotate(45deg) translate(72px, -45px);
}

.m-btn-ext > svg .center {
  transform: rotate(45deg) translate(65px, -145px);
}

.m-btn-ext > svg .bottom {
  transform: rotate(-45deg) translate(-150px, -30px);
}

header nav {
  width: 100%;
}
header nav ul {
  padding: 0;
}
header nav > ul {
  width: 100%;
  position: absolute;
  transform: translateX(100vw);
  transition: all 0.5s cubic-bezier(0.56, 0.045, 0, 1);
  top: 48px;
  left: 0;
  width: 100%;
  height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 950px) {
  header nav > ul {
    transform: none;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 950px) {
  header nav > ul {
    background: transparent;
    -webkit-backdrop-filter: none;
    height: 48px;
    right: 0;
    top: 0;
    left: auto;
    flex-direction: row;
    width: auto;
  }
}
@media only screen and (min-width: 950px) {
  header nav > ul > li > a > .nav-item > .sub-menu-arrow {
    display: none;
  }
}
header nav li {
  width: 100%;
  text-align: center;
  list-style-type: none;
}
@media only screen and (min-width: 950px) {
  header nav li {
    width: auto;
    background: transparent;
    border: none;
    position: relative;
    text-align: left;
    height: 100%;
  }
}
@media only screen and (min-width: 950px) {
  header nav li:first-child {
    border-top: none;
  }
}
header nav li a {
  display: inline-block;
  width: 100%;
  padding: 24px 0;
}
@media only screen and (min-width: 950px) {
  header nav li a {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
header nav li .nav-item {
  color: var(--font-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  font-family: "Muli", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
  white-space: nowrap;
  transition: opacity 0.2s linear;
}
@media only screen and (min-width: 950px) {
  header nav li .nav-item {
    font-size: calc(1rem - 2px);
    opacity: 0.75;
  }
}
header nav li .menu-svg, header nav li .menu-logo {
  opacity: 0.8;
  transition: opacity 0.2s linear;
}
header nav li .menu-svg *:not(g), header nav li .menu-logo *:not(g) {
  transition: fill 0.8s linear;
}
@media only screen and (min-width: 950px) {
  header nav li:hover > a > .nav-item {
    opacity: 1;
  }
  header nav li:hover > a > .nav-item * {
    opacity: 1;
  }
  header nav li:hover svg {
    opacity: 1;
  }
  header nav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0px);
  }
}
header nav .sub-menu {
  height: calc(100vh - 48px);
  width: 100%;
  position: absolute;
  top: 0;
  left: 100vw;
  overflow: hidden;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.1));
}
header nav .sub-menu .arrow-icon {
  display: none;
}
@media only screen and (min-width: 950px) {
  header nav .sub-menu {
    -webkit-backdrop-filter: none;
    background: transparent !important;
    border-radius: 8px;
    min-width: 100%;
    width: auto;
    opacity: 0;
    padding-top: 20px;
    pointer-events: none;
    height: auto;
    left: 50%;
    transform: translate(-50%, 5%);
    top: 100%;
    transition: all 0.4s cubic-bezier(0.56, 0.045, 0, 1);
  }
  header nav .sub-menu .nav-item {
    font-weight: 400;
    font-size: 1rem;
  }
  header nav .sub-menu li:first-of-type {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
  }
  header nav .sub-menu .arrow-icon {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
  }
}
header nav .sub-menu a .nav-item {
  opacity: 1;
}
@media only screen and (min-width: 950px) {
  header nav .sub-menu a {
    background: var(--background-color);
    padding: 13.3333333333px 48px;
  }
  header nav .sub-menu a:hover {
    background: var(--accent-color-1);
  }
  header nav .sub-menu a:hover .nav-item {
    color: var(--accent-contrast-color);
  }
}
header nav .sub-menu-arrow-wrapper {
  padding: 15px 16px 15px 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
}
@media only screen and (min-width: 950px) {
  header nav .sub-menu-arrow-wrapper {
    display: none;
  }
}
header nav .sub-menu-arrow-wrapper .sub-menu-arrow {
  width: 20px;
  height: 20px;
}
header nav .sub-menu-arrow-wrapper .sub-menu-arrow * {
  fill: var(--font-color);
}

footer {
  background: var(--background-color-alternate);
  padding: 24px 0;
}
footer .footer-container {
  margin-bottom: 0;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  footer .footer-container {
    flex-direction: row;
  }
}
footer .footer-container > div {
  padding: 24px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  footer .footer-container > div {
    width: 33.3%;
  }
}
footer .footer-container .switch-darkmode {
  margin: 0;
}
footer .footer-container .footer-logo {
  width: 100px;
  height: 100px;
}
footer .footer-container .footer-logo * {
  fill: var(--font-color);
}
@media only screen and (min-width: 950px) {
  footer .footer-container .footer-right {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 950px) {
  footer .footer-container .footer-left {
    justify-content: flex-start;
  }
}
footer .footer-container ul {
  list-style-type: none;
  padding: 0;
}
footer .footer-container ul li {
  padding: 1px 0;
}
footer .footer-container ul li a {
  padding-bottom: 2px;
  transition: all 0.1s ease-in-out;
  font-size: calc(1rem - 1px);
  color: var(--font-color);
}
footer .footer-container ul li a:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
footer .footer-container ul li a:hover {
  color: var(--font-color);
}
footer .footer-bottom {
  margin-top: 16px;
}
footer .footer-bottom .footer-copyright {
  font-size: calc(1rem - 1px);
  opacity: 1;
  text-align: center;
}
@media only screen and (min-width: 950px) {
  footer .footer-bottom .footer-copyright {
    text-align: center;
  }
}

.lightisol-map {
  border-radius: 8px;
}

.page-content p, .page-content figure {
  margin-bottom: 24px;
}
.page-content p a:not(.page-numbers):not(.button) {
  color: var(--accent-color-1);
  font-weight: 500;
  transition: color 0.1s linear;
}
.page-content p a:not(.page-numbers):not(.button):hover {
  color: var(--font-color);
}
.page-content table {
  border-spacing: 0px;
}
.page-content table tr:nth-child(odd) {
  background: var(--background-color-alternate-2);
}
.page-content table tr:nth-child(even) {
  background: var(--background-color-alternate);
}
.page-content table td, .page-content table th {
  padding: 16px 24px;
}
.page-content table td a, .page-content table th a {
  color: var(--accent-color-1);
  font-weight: 500;
  transition: color 0.1s linear;
}
.page-content table td a:hover, .page-content table th a:hover {
  color: var(--font-color);
}
.page-content .wp-block-code {
  padding: 16px 24px;
  background: var(--background-color-alternate);
  border: none;
  margin-bottom: 24px;
}
.page-content .wp-block-code .prism-titlename {
  color: var(--font-color);
  background: transparent;
}

.wp-block-columns {
  margin-bottom: 24px;
}
.wp-block-columns .wp-block-column:not(:first-child) {
  margin-left: 0;
  margin-top: 24px;
}
@media only screen and (min-width: 600px) {
  .wp-block-columns .wp-block-column:not(:first-child) {
    margin-left: 24px;
    margin-top: 0;
  }
}

.single-post article {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Montserrat", Roboto, Ubuntu;
  line-height: 150%;
}
.single-post .post-content {
  margin-top: 48px;
}
.single-post .post-content .social-info-container {
  margin-top: 12px;
}
.single-post .post-content .social-info-container .social-link-wrapper {
  margin: 10px;
}

.front-background {
  width: 100vw;
  height: 100vh;
  min-height: 400px;
  max-height: 100vh;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 950px) {
  .front-background {
    height: 100vh;
  }
}
.front-background .home-darkmode-btn-wrap {
  position: absolute;
  bottom: 25px;
  right: 24px;
  border-radius: 8px;
}
@media only screen and (min-width: 950px) {
  .front-background .home-darkmode-btn-wrap {
    display: none;
  }
}
.front-background .home-darkmode-btn-wrap svg {
  width: 25px;
  height: 25px;
}
.front-background .home-darkmode-btn-wrap * {
  transition: fill 0.8s cubic-bezier(0.56, 0.045, 0, 1);
}

.btn-filled, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a, .woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button, .woocommerce button.button, .wpforms-container input[type=submit], .wpforms-container button[type=submit], .wpforms-container .wpforms-page-button, .btn-outlined, .btn-blank,
.wp-block-button__link, .wp-block-button__link:visited, .wp-block-button__link:active,
.button,
#place_order, button:not(.pswp__button), .woocommerce button.single_add_to_cart_button,
.woocommerce button.button.alt,
.checkout-button, .woocommerce a.button.alt, .woocommerce a.button,
.wp-block-lightisol-button, .wp-block-lightisol-button.is-style-outlined,
.download-link {
  background-color: var(--button-color);
  color: var(--button-contrast-color);
  font-family: "Muli", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
  padding: 13.3333333333px 32px !important;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: row;
  align-items: center;
  outline: none;
  justify-content: center;
  font-size: calc(1rem - 2px);
  font-weight: 400 !important;
  line-height: inherit;
  cursor: pointer;
  height: auto;
  -webkit-appearance: none;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  border-radius: 100px;
  border: 2px solid var(--button-color);
  width: auto;
  white-space: nowrap;
  position: relative;
}
@media only screen and (min-width: 950px) {
  .btn-filled, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a, .woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button, .woocommerce button.button, .wpforms-container input[type=submit], .wpforms-container button[type=submit], .wpforms-container .wpforms-page-button, .btn-outlined, .btn-blank,
  .wp-block-button__link, .wp-block-button__link:visited, .wp-block-button__link:active,
  .button,
  #place_order, button:not(.pswp__button), .woocommerce button.single_add_to_cart_button,
  .woocommerce button.button.alt,
  .checkout-button, .woocommerce a.button.alt, .woocommerce a.button,
  .wp-block-lightisol-button, .wp-block-lightisol-button.is-style-outlined,
  .download-link {
    padding: 8px 32px !important;
  }
}
.btn-filled:after, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:after, .woocommerce-message a.button:after, .woocommerce-info a.button:after, .woocommerce-error a.button:after, .woocommerce button.button:after, .wpforms-container input[type=submit]:after, .wpforms-container button[type=submit]:after, .wpforms-container .wpforms-page-button:after, .btn-outlined:after, .btn-blank:after,
.wp-block-button__link:after, .wp-block-button__link:visited:after, .wp-block-button__link:active:after,
.button:after,
#place_order:after, button:not(.pswp__button):after, .woocommerce button.single_add_to_cart_button:after,
.woocommerce button.button.alt:after,
.checkout-button:after, .woocommerce a.button.alt:after, .woocommerce a.button:after,
.wp-block-lightisol-button:after, .wp-block-lightisol-button.is-style-outlined:after,
.download-link:after {
  /*content:"";
  width:100%;
  height:100%;
  position:absolute;
  top:-6px;
  left:6px;
  border-right:6px solid var(--button-color);
  border-top:6px solid var(--button-color);
  opacity:0.35;
  transition:border-color .3s $ease-custom-1;*/
}
.btn-filled:hover, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover, .woocommerce-message a.button:hover, .woocommerce-info a.button:hover, .woocommerce-error a.button:hover, .woocommerce button.button:hover, .wpforms-container input[type=submit]:hover, .wpforms-container button[type=submit]:hover, .wpforms-container .wpforms-page-button:hover, .btn-outlined:hover, .btn-blank:hover,
.wp-block-button__link:hover, .wp-block-button__link:visited:hover, .wp-block-button__link:active:hover,
.button:hover,
#place_order:hover, button:not(.pswp__button):hover, .woocommerce button.single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.checkout-button:hover, .woocommerce a.button.alt:hover, .woocommerce a.button:hover,
.wp-block-lightisol-button:hover, .wp-block-lightisol-button.is-style-outlined:hover,
.download-link:hover {
  color: var(--button-contrast-color-hover);
  background: var(--button-color-hover);
  border-color: var(--button-color-hover);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1) !important;
}
.btn-filled:hover:after, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover:after, .woocommerce button.button:hover:after, .wpforms-container input[type=submit]:hover:after, .wpforms-container button[type=submit]:hover:after, .wpforms-container .wpforms-page-button:hover:after, .btn-outlined:hover:after, .btn-blank:hover:after,
.wp-block-button__link:hover:after, .wp-block-button__link:visited:hover:after, .wp-block-button__link:active:hover:after,
.button:hover:after,
#place_order:hover:after, button:not(.pswp__button):hover:after, .woocommerce button.single_add_to_cart_button:hover:after,
.woocommerce button.button.alt:hover:after,
.checkout-button:hover:after, .woocommerce a.button.alt:hover:after, .woocommerce a.button:hover:after,
.wp-block-lightisol-button:hover:after, .wp-block-lightisol-button.is-style-outlined:hover:after,
.download-link:hover:after {
  border-color: var(--button-color-hover);
}
.btn-filled:hover svg *, .btn-filled:hover *, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover *, .woocommerce-message a.button:hover *, .woocommerce-info a.button:hover *, .woocommerce-error a.button:hover *, .woocommerce button.button:hover *, .wpforms-container input[type=submit]:hover *, .wpforms-container button[type=submit]:hover *, .wpforms-container .wpforms-page-button:hover *, .btn-outlined:hover svg *, .btn-outlined:hover *, .btn-blank:hover svg *, .btn-blank:hover *,
.wp-block-button__link:hover svg *,
.wp-block-button__link:hover *, .wp-block-button__link:visited:hover svg *, .wp-block-button__link:visited:hover *, .wp-block-button__link:active:hover svg *, .wp-block-button__link:active:hover *,
.button:hover svg *,
.button:hover *,
#place_order:hover svg *,
#place_order:hover *, button:not(.pswp__button):hover svg *, button:not(.pswp__button):hover *, .woocommerce button.single_add_to_cart_button:hover svg *, .woocommerce button.single_add_to_cart_button:hover *,
.woocommerce button.button.alt:hover svg *,
.woocommerce button.button.alt:hover *,
.checkout-button:hover svg *,
.checkout-button:hover *, .woocommerce a.button.alt:hover svg *, .woocommerce a.button.alt:hover *, .woocommerce a.button:hover svg *, .woocommerce a.button:hover *,
.wp-block-lightisol-button:hover svg *,
.wp-block-lightisol-button:hover *, .wp-block-lightisol-button.is-style-outlined:hover svg *, .wp-block-lightisol-button.is-style-outlined:hover *,
.download-link:hover svg *,
.download-link:hover * {
  fill: var(--button-contrast-color-hover);
  color: var(--button-contrast-color-hover);
}
.btn-filled:hover .btn-arrow-svg, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover .btn-arrow-svg, .wpforms-container input[type=submit]:hover .btn-arrow-svg, .wpforms-container button[type=submit]:hover .btn-arrow-svg, .wpforms-container .wpforms-page-button:hover .btn-arrow-svg, .btn-outlined:hover .btn-arrow-svg, .btn-blank:hover .btn-arrow-svg,
.wp-block-button__link:hover .btn-arrow-svg, .wp-block-button__link:visited:hover .btn-arrow-svg, .wp-block-button__link:active:hover .btn-arrow-svg,
.button:hover .btn-arrow-svg,
#place_order:hover .btn-arrow-svg, button:not(.pswp__button):hover .btn-arrow-svg, .woocommerce button.single_add_to_cart_button:hover .btn-arrow-svg,
.woocommerce button.button.alt:hover .btn-arrow-svg,
.checkout-button:hover .btn-arrow-svg, .woocommerce a.button.alt:hover .btn-arrow-svg, .woocommerce a.button:hover .btn-arrow-svg,
.wp-block-lightisol-button:hover .btn-arrow-svg, .wp-block-lightisol-button.is-style-outlined:hover .btn-arrow-svg,
.download-link:hover .btn-arrow-svg {
  transform: translateX(0px);
}
.btn-filled:hover .btn-arrow-svg .arrow-straight, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover .btn-arrow-svg .arrow-straight, .wpforms-container input[type=submit]:hover .btn-arrow-svg .arrow-straight, .wpforms-container button[type=submit]:hover .btn-arrow-svg .arrow-straight, .wpforms-container .wpforms-page-button:hover .btn-arrow-svg .arrow-straight, .btn-outlined:hover .btn-arrow-svg .arrow-straight, .btn-blank:hover .btn-arrow-svg .arrow-straight,
.wp-block-button__link:hover .btn-arrow-svg .arrow-straight, .wp-block-button__link:visited:hover .btn-arrow-svg .arrow-straight, .wp-block-button__link:active:hover .btn-arrow-svg .arrow-straight,
.button:hover .btn-arrow-svg .arrow-straight,
#place_order:hover .btn-arrow-svg .arrow-straight, button:not(.pswp__button):hover .btn-arrow-svg .arrow-straight, .woocommerce button.single_add_to_cart_button:hover .btn-arrow-svg .arrow-straight,
.woocommerce button.button.alt:hover .btn-arrow-svg .arrow-straight,
.checkout-button:hover .btn-arrow-svg .arrow-straight, .woocommerce a.button.alt:hover .btn-arrow-svg .arrow-straight, .woocommerce a.button:hover .btn-arrow-svg .arrow-straight,
.wp-block-lightisol-button:hover .btn-arrow-svg .arrow-straight, .wp-block-lightisol-button.is-style-outlined:hover .btn-arrow-svg .arrow-straight,
.download-link:hover .btn-arrow-svg .arrow-straight {
  transform: scaleX(1);
}
.btn-filled:hover .btn-arrow-svg *, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a:hover .btn-arrow-svg *, .wpforms-container input[type=submit]:hover .btn-arrow-svg *, .wpforms-container button[type=submit]:hover .btn-arrow-svg *, .wpforms-container .wpforms-page-button:hover .btn-arrow-svg *, .btn-outlined:hover .btn-arrow-svg *, .btn-blank:hover .btn-arrow-svg *,
.wp-block-button__link:hover .btn-arrow-svg *, .wp-block-button__link:visited:hover .btn-arrow-svg *, .wp-block-button__link:active:hover .btn-arrow-svg *,
.button:hover .btn-arrow-svg *,
#place_order:hover .btn-arrow-svg *, button:not(.pswp__button):hover .btn-arrow-svg *, .woocommerce button.single_add_to_cart_button:hover .btn-arrow-svg *,
.woocommerce button.button.alt:hover .btn-arrow-svg *,
.checkout-button:hover .btn-arrow-svg *, .woocommerce a.button.alt:hover .btn-arrow-svg *, .woocommerce a.button:hover .btn-arrow-svg *,
.wp-block-lightisol-button:hover .btn-arrow-svg *, .wp-block-lightisol-button.is-style-outlined:hover .btn-arrow-svg *,
.download-link:hover .btn-arrow-svg * {
  fill: var(--button-contrast-color-hover) !important;
}
.btn-filled svg, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a svg, .woocommerce-message a.button svg, .woocommerce-info a.button svg, .woocommerce-error a.button svg, .woocommerce button.button svg, .wpforms-container input[type=submit] svg, .wpforms-container button[type=submit] svg, .wpforms-container .wpforms-page-button svg, .btn-outlined svg, .btn-blank svg,
.wp-block-button__link svg, .wp-block-button__link:visited svg, .wp-block-button__link:active svg,
.button svg,
#place_order svg, button:not(.pswp__button) svg, .woocommerce button.single_add_to_cart_button svg,
.woocommerce button.button.alt svg,
.checkout-button svg, .woocommerce a.button.alt svg, .woocommerce a.button svg,
.wp-block-lightisol-button svg, .wp-block-lightisol-button.is-style-outlined svg,
.download-link svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.btn-filled svg *:not(g), .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a svg *:not(g), .woocommerce-message a.button svg *:not(g), .woocommerce-info a.button svg *:not(g), .woocommerce-error a.button svg *:not(g), .woocommerce button.button svg *:not(g), .wpforms-container input[type=submit] svg *:not(g), .wpforms-container button[type=submit] svg *:not(g), .wpforms-container .wpforms-page-button svg *:not(g), .btn-outlined svg *:not(g), .btn-blank svg *:not(g),
.wp-block-button__link svg *:not(g), .wp-block-button__link:visited svg *:not(g), .wp-block-button__link:active svg *:not(g),
.button svg *:not(g),
#place_order svg *:not(g), button:not(.pswp__button) svg *:not(g), .woocommerce button.single_add_to_cart_button svg *:not(g),
.woocommerce button.button.alt svg *:not(g),
.checkout-button svg *:not(g), .woocommerce a.button.alt svg *:not(g), .woocommerce a.button svg *:not(g),
.wp-block-lightisol-button svg *:not(g), .wp-block-lightisol-button.is-style-outlined svg *:not(g),
.download-link svg *:not(g) {
  fill: var(--button-contrast-color);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.btn-filled *:not(g):not(svg), .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a *:not(g):not(svg), .woocommerce-message a.button *:not(g):not(svg), .woocommerce-info a.button *:not(g):not(svg), .woocommerce-error a.button *:not(g):not(svg), .woocommerce button.button *:not(g):not(svg), .wpforms-container input[type=submit] *:not(g):not(svg), .wpforms-container button[type=submit] *:not(g):not(svg), .wpforms-container .wpforms-page-button *:not(g):not(svg), .btn-outlined *:not(g):not(svg), .btn-blank *:not(g):not(svg),
.wp-block-button__link *:not(g):not(svg), .wp-block-button__link:visited *:not(g):not(svg), .wp-block-button__link:active *:not(g):not(svg),
.button *:not(g):not(svg),
#place_order *:not(g):not(svg), button:not(.pswp__button) *:not(g):not(svg), .woocommerce button.single_add_to_cart_button *:not(g):not(svg),
.woocommerce button.button.alt *:not(g):not(svg),
.checkout-button *:not(g):not(svg), .woocommerce a.button.alt *:not(g):not(svg), .woocommerce a.button *:not(g):not(svg),
.wp-block-lightisol-button *:not(g):not(svg), .wp-block-lightisol-button.is-style-outlined *:not(g):not(svg),
.download-link *:not(g):not(svg) {
  color: var(--button-contrast-color);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.btn-filled div, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a div, .woocommerce-message a.button div, .woocommerce-info a.button div, .woocommerce-error a.button div, .woocommerce button.button div, .wpforms-container input[type=submit] div, .wpforms-container button[type=submit] div, .wpforms-container .wpforms-page-button div, .btn-outlined div, .btn-blank div,
.wp-block-button__link div, .wp-block-button__link:visited div, .wp-block-button__link:active div,
.button div,
#place_order div, button:not(.pswp__button) div, .woocommerce button.single_add_to_cart_button div,
.woocommerce button.button.alt div,
.checkout-button div, .woocommerce a.button.alt div, .woocommerce a.button div,
.wp-block-lightisol-button div, .wp-block-lightisol-button.is-style-outlined div,
.download-link div {
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.btn-filled .btn-arrow-svg, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a .btn-arrow-svg, .woocommerce-message a.button .btn-arrow-svg, .woocommerce-info a.button .btn-arrow-svg, .woocommerce-error a.button .btn-arrow-svg, .woocommerce button.button .btn-arrow-svg, .wpforms-container input[type=submit] .btn-arrow-svg, .wpforms-container button[type=submit] .btn-arrow-svg, .wpforms-container .wpforms-page-button .btn-arrow-svg, .btn-outlined .btn-arrow-svg, .btn-blank .btn-arrow-svg,
.wp-block-button__link .btn-arrow-svg, .wp-block-button__link:visited .btn-arrow-svg, .wp-block-button__link:active .btn-arrow-svg,
.button .btn-arrow-svg,
#place_order .btn-arrow-svg, button:not(.pswp__button) .btn-arrow-svg, .woocommerce button.single_add_to_cart_button .btn-arrow-svg,
.woocommerce button.button.alt .btn-arrow-svg,
.checkout-button .btn-arrow-svg, .woocommerce a.button.alt .btn-arrow-svg, .woocommerce a.button .btn-arrow-svg,
.wp-block-lightisol-button .btn-arrow-svg, .wp-block-lightisol-button.is-style-outlined .btn-arrow-svg,
.download-link .btn-arrow-svg {
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 0px;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform: translateX(-4px);
}
.btn-filled .btn-arrow-svg .arrow-straight, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a .btn-arrow-svg .arrow-straight, .wpforms-container input[type=submit] .btn-arrow-svg .arrow-straight, .wpforms-container button[type=submit] .btn-arrow-svg .arrow-straight, .wpforms-container .wpforms-page-button .btn-arrow-svg .arrow-straight, .btn-outlined .btn-arrow-svg .arrow-straight, .btn-blank .btn-arrow-svg .arrow-straight,
.wp-block-button__link .btn-arrow-svg .arrow-straight, .wp-block-button__link:visited .btn-arrow-svg .arrow-straight, .wp-block-button__link:active .btn-arrow-svg .arrow-straight,
.button .btn-arrow-svg .arrow-straight,
#place_order .btn-arrow-svg .arrow-straight, button:not(.pswp__button) .btn-arrow-svg .arrow-straight, .woocommerce button.single_add_to_cart_button .btn-arrow-svg .arrow-straight,
.woocommerce button.button.alt .btn-arrow-svg .arrow-straight,
.checkout-button .btn-arrow-svg .arrow-straight, .woocommerce a.button.alt .btn-arrow-svg .arrow-straight, .woocommerce a.button .btn-arrow-svg .arrow-straight,
.wp-block-lightisol-button .btn-arrow-svg .arrow-straight, .wp-block-lightisol-button.is-style-outlined .btn-arrow-svg .arrow-straight,
.download-link .btn-arrow-svg .arrow-straight {
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform-origin: 100% 50%;
  transform: scaleX(0);
}

.is-style-outline .wp-block-button__link, .btn-outlined,
.wp-block-lightisol-button.is-style-outlined {
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--font-color);
}
.is-style-outline .wp-block-button__link:after, .btn-outlined:after,
.wp-block-lightisol-button.is-style-outlined:after {
  display: none;
}
.is-style-outline .wp-block-button__link:hover, .btn-outlined:hover,
.wp-block-lightisol-button.is-style-outlined:hover {
  background: var(--button-color-hover);
  border-color: var(--button-color-hover) !important;
  color: var(--button-contrast-color-hover) !important;
}
.is-style-outline .wp-block-button__link:hover:before, .btn-outlined:hover:before,
.wp-block-lightisol-button.is-style-outlined:hover:before {
  display: none;
}
.is-style-outline .wp-block-button__link:hover svg *:not(g), .btn-outlined:hover svg *:not(g),
.wp-block-lightisol-button.is-style-outlined:hover svg *:not(g) {
  fill: var(--button-contrast-color-hover) !important;
}
.is-style-outline .wp-block-button__link svg *:not(g), .btn-outlined svg *:not(g),
.wp-block-lightisol-button.is-style-outlined svg *:not(g) {
  fill: var(--font-color);
}
.is-style-outline .wp-block-button__link *:not(g):not(svg), .btn-outlined *:not(g):not(svg),
.wp-block-lightisol-button.is-style-outlined *:not(g):not(svg) {
  color: var(--font-color);
}

.btn-blank,
.wp-block-lightisol-button.is-style-blank {
  border: 2px solid transparent;
  background: transparent;
  color: var(--font-color);
}
.btn-blank:after,
.wp-block-lightisol-button.is-style-blank:after {
  display: none;
}
.btn-blank *:not(g):not(svg),
.wp-block-lightisol-button.is-style-blank *:not(g):not(svg) {
  color: var(--font-color);
}
.btn-blank svg *:not(g),
.wp-block-lightisol-button.is-style-blank svg *:not(g) {
  fill: var(--font-color);
}
.btn-blank:hover,
.wp-block-lightisol-button.is-style-blank:hover {
  background: transparent;
  border-color: transparent;
}
.btn-blank:hover *:not(g):not(svg),
.wp-block-lightisol-button.is-style-blank:hover *:not(g):not(svg) {
  color: var(--font-color);
}
.btn-blank:hover svg *:not(g),
.wp-block-lightisol-button.is-style-blank:hover svg *:not(g) {
  fill: var(--font-color) !important;
}
.btn-blank:hover .btn-arrow-svg *,
.wp-block-lightisol-button.is-style-blank:hover .btn-arrow-svg * {
  fill: var(--font-color) !important;
}

/*
.btn-outlined-white {
    border-color:white;
    color:white;
    &:hover {
        border-color:white !important;
        background:white;
        color:var(--font-color) !important;
        * {
            color:var(--font-color)!important;
        }
        svg {
            * {
                fill:var(--font-color) !important;
            }
        }
    }
    svg {
        width:$icon_size;
        height:$icon_size;
        * {
            fill:white;
        }
    }
    * {
        color:white;
    }
}*/
.btn-underlined {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 4px;
  transition: all 0.1s ease-in-out;
}
.btn-underlined:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
.btn-underlined svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.btn-underlined svg * {
  fill: var(--font-color);
}

.wp-block-buttons, .wp-block-lightisol-buttons {
  display: flex;
  flex-direction: row;
  margin-bottom: 24px;
}
.wp-block-buttons .wp-block-lightisol-button, .wp-block-lightisol-buttons .wp-block-lightisol-button {
  margin-left: 24px;
}
.wp-block-buttons .wp-block-lightisol-button:first-child, .wp-block-lightisol-buttons .wp-block-lightisol-button:first-child {
  margin-left: 0;
}

.wp-block-button {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 24px;
}
.wp-block-button:first-child {
  margin-left: 0;
}

.inline-btn, .inline {
  display: inline-block;
}

.margin-btn {
  margin-top: calc(16px / 2);
  margin-bottom: calc(16px / 2);
}
@media only screen and (min-width: 600px) {
  .margin-btn {
    margin-left: 24px;
    margin-right: 24px;
  }
}

.popout-button {
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform-origin: center;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.3));
}
.popout-button:hover {
  transform: scale(1.06);
  filter: drop-shadow(0px 18px 12px rgba(0, 0, 0, 0.3));
}

.btn-no-popout:hover {
  transform: scale(1) !important;
}

.btn-text, .woocommerce .shop_table tfoot th, .woocommerce .shop_table thead tr th, .woocommerce .shop_table thead tr th span, .woocommerce ul.order_details li strong, .woocommerce table.order_details .wc-item-meta > li ul li span.text, .woocommerce table.order_details .wc-item-meta > li .wc-item-meta-label, .woocommerce nav.woocommerce-MyAccount-navigation a, .btn-filled, .woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a, .woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button, .woocommerce button.button, .wpforms-container input[type=submit], .wpforms-container button[type=submit], .wpforms-container .wpforms-page-button, .btn-outlined, .btn-blank,
.wp-block-button__link, .wp-block-button__link:visited, .wp-block-button__link:active,
.button,
#place_order, button:not(.pswp__button), .woocommerce button.single_add_to_cart_button,
.woocommerce button.button.alt,
.checkout-button, .woocommerce a.button.alt, .woocommerce a.button,
.wp-block-lightisol-button, .wp-block-lightisol-button.is-style-outlined,
.download-link {
  font-size: calc(1rem - 2px);
  font-weight: 400;
  letter-spacing: 0px;
}

.btn-sub-text {
  text-transform: none;
  margin-top: 3px;
  font-size: calc(1rem - 3px);
  white-space: pre-wrap;
}

.page-content li {
  margin-bottom: 10px;
}

.page-content ul {
  list-style: none; /* Remove default bullets */
}

.page-content ul:not(.page-numbers):not([id^=wpforms-]) li::before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--font-color); /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1.2em; /* Also needed for space (tweak if needed) */
}

.page-content ul li a:not(.page-numbers) {
  color: var(--accent-color-1);
  font-weight: 500;
  transition: color 0.1s linear;
}
.page-content ul li a:not(.page-numbers):hover {
  color: var(--font-color);
}

.pagination {
  margin: 24px 0;
}
.pagination ul.page-numbers {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.pagination ul.page-numbers li {
  list-style-type: none;
  margin: 0 10px;
}
.pagination ul.page-numbers li .dots {
  display: block;
  margin-top: 6px;
}
.pagination ul.page-numbers li a.page-numbers, .pagination ul.page-numbers li span.current {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  line-height: 31px;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
  border: 2px solid var(--font-color);
  color: var(--font-color);
  display: inline-block;
  transition: all 0.1s ease-in-out;
}
.pagination ul.page-numbers li a.page-numbers:hover, .pagination ul.page-numbers li span.current:hover {
  background: var(--accent-color-1);
  color: var(--accent-contrast-color);
  border-color: var(--accent-color-1);
}
.pagination ul.page-numbers li span.current {
  background: var(--accent-color-1);
  border-color: var(--accent-color-1);
  color: var(--accent-contrast-color);
  pointer-events: none;
}

input[type=text], input[type=tel], input[type=password], input[type=email], textarea, input[type=text].nf-element {
  padding: 16px 24px !important;
  font-size: 1rem !important;
  border: 2px solid var(--border-color) !important;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 8px !important;
  height: auto !important;
  max-width: 100% !important;
  background: none !important;
  color: var(--font-color) !important;
  transition: all 0.3s linear;
}
input[type=text]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=email]:focus, textarea:focus, input[type=text].nf-element:focus {
  border-color: var(--font-color) !important;
}

select {
  width: 100%;
  font-size: 100%;
  font-weight: 300;
  cursor: pointer;
  border-radius: 0;
  background-color: var(--background-color-alternate);
  border: none;
  color: var(--font-color);
  padding: 16px 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 8px;
  transition: all 0.1s linear;
}
select:after {
  content: "";
  width: 20px;
  height: 20px;
}

input[type=number] {
  border: none;
  padding: 8px 12px;
  background: var(--background-color-alternate);
  width: auto;
  border-radius: 8px;
}

textarea {
  resize: none;
}

.wpforms-container input, .wpforms-container textarea {
  margin-top: 8px;
}
.wpforms-container input[type=checkbox] {
  margin-top: 0;
}
.wpforms-container input[type=submit], .wpforms-container button[type=submit], .wpforms-container .wpforms-page-button {
  border: none;
  margin: 12px 0;
  width: 100%;
}
.wpforms-container .wpforms-field {
  padding: 8px 0;
}
.wpforms-container .wpforms-field input:not([type=checkbox]), .wpforms-container .wpforms-field textarea {
  width: 100%;
  margin-bottom: 8px;
}
.wpforms-container .wpforms-field textarea {
  height: 230px !important;
}
.wpforms-container .wpforms-field label.wpforms-error {
  color: var(--error-color);
}
.wpforms-container .wpforms-field-checkbox ul {
  padding: 0;
}
.wpforms-container .wpforms-field-checkbox ul li {
  justify-content: flex-start;
}
.wpforms-container .wpforms-field-checkbox ul li:before {
  content: "";
}
.wpforms-container .wpforms-field-checkbox ul li input {
  margin-right: 5px;
}
.wpforms-container .wpforms-field-checkbox ul li a {
  color: var(--accent-color-1);
  font-weight: 500;
  transition: color 0.1s linear;
}
.wpforms-container .wpforms-field-checkbox ul li a:hover {
  color: var(--font-color);
}
.wpforms-container .wpforms-label-hide {
  position: absolute;
  left: -99999px;
}
.wpforms-container .wpforms-field-hp {
  display: none;
}

div.wpforms-container-full {
  width: 700px !important;
}

.wpforms-confirmation-container-full {
  border: none !important;
  background: var(--background-color-alternate) !important;
  border-radius: 8px !important;
}

.social-info-container .social-link-wrapper {
  margin-top: 5px;
  margin-bottom: 5px;
}
.social-info-container .social-link-wrapper .social-link-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  opacity: 1;
  transition: all 0.1s linear;
}
.social-info-container .social-link-wrapper .social-link-icon * {
  fill: var(--font-color);
  transition: all 0.1s linear;
}
.social-info-container .social-link-wrapper .social-link-text {
  color: var(--font-color);
  opacity: 1;
  transition: all 0.1s linear;
  font-size: calc(1rem - 1px);
  padding-bottom: 3px;
  transition: all 0.1s ease-in-out;
}
.social-info-container .social-link-wrapper .social-link-text:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
.social-info-container .social-link-wrapper .social-link-text:hover {
  color: var(--font-color);
}
.social-info-container .social-link-wrapper:hover .social-link-icon {
  opacity: 1;
}
.social-info-container .social-link-wrapper:hover .social-link-text {
  opacity: 1;
}

.slides {
  width: 100%;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.slides .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
}
.slides .slide .regular-bg, .slides .slide .darkmode-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s linear;
  background-size: cover;
  z-index: -2;
}
.slides .slide .bg-stripe {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 300px;
  background: var(--accent-color-1);
  transform: translateY(-50%) skewY(-2deg);
}
.slides .slide .darkmode-bg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
}
.slides .slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s linear;
  visibility: visible;
}
.slides .slide .slide-content {
  backface-visibility: hidden;
  padding: 0 24px;
  will-change: transform;
  max-width: 100%;
}
@media only screen and (min-width: 600px) {
  .slides .slide .slide-content {
    padding: 0 24px;
  }
}
.slides .slide .slide-content > * {
  transform: scale(1.7) translateY(-100%);
  will-change: transform;
  opacity: 0;
  color: inherit;
}
.slides .slide .slide-content .slide-icon {
  transform: scale(10) translateY(-250%);
  height: auto;
  fill: inherit;
}
.slides .slide .slide-content .slide-icon * {
  fill: inherit;
}
.slides .slide .slide-content h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transform: scale(2) translateY(-200px);
  transition-delay: 0.3s;
  hyphens: auto;
}
@media only screen and (min-width: 950px) {
  .slides .slide .slide-content h1 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1100px) {
  .slides .slide .slide-content h1 {
    font-size: 96px;
  }
}
.slides .slide .slide-content h2 {
  /*font-family: "Damion", cursive;*/
  font-size: 24px;
  font-weight: 300;
  transform: scale(2.5) translateY(-80px);
  transition-duration: 2.3s;
}
@media only screen and (min-width: 600px) {
  .slides .slide .slide-content h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 950px) {
  .slides .slide .slide-content h2 {
    font-size: 56px;
    font-weight: 200;
  }
}
@media only screen and (min-width: 1100px) {
  .slides .slide .slide-content h2 {
    font-size: 64px;
  }
}
.slides .slide .slide-content h2.bold {
  font-weight: 800;
}
.slides .slide .slide-content h3 {
  font-size: 16px;
  font-weight: 100;
}
@media only screen and (min-width: 600px) {
  .slides .slide .slide-content h3 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 950px) {
  .slides .slide .slide-content h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1100px) {
  .slides .slide .slide-content h3 {
    font-size: 36px;
  }
}
.slides .slide .slide-content h3.bold {
  font-weight: 800;
}
.slides .slide .slide-content .hs-1 {
  font-size: 42px;
  line-height: 1.1em;
}
@media only screen and (min-width: 950px) {
  .slides .slide .slide-content .hs-1 {
    font-size: 54px;
    line-height: 1.2em;
  }
}
@media only screen and (min-width: 1100px) {
  .slides .slide .slide-content .hs-1 {
    font-size: 60px;
  }
}
.slides .slide .slide-content .wp-block-lightisol-buttons {
  margin-top: 16px;
}
.slides .active-slide .slide-content > *, .slides .active-slide .slide-content h1, .slides .active-slide .slide-content h2, .slides .active-slide .slide-content h3, .slides .active-slide .slide-content h4, .slides .active-slide .slide-content h5, .slides .active-slide .slide-content h6, .slides .active-slide .slide-content .slide-icon, .slides .no-content-transition .slide-content > *, .slides .no-content-transition .slide-content h1, .slides .no-content-transition .slide-content h2, .slides .no-content-transition .slide-content h3, .slides .no-content-transition .slide-content h4, .slides .no-content-transition .slide-content h5, .slides .no-content-transition .slide-content h6, .slides .no-content-transition .slide-content .slide-icon, .slides .temp-slide-transition .slide-content > *, .slides .temp-slide-transition .slide-content h1, .slides .temp-slide-transition .slide-content h2, .slides .temp-slide-transition .slide-content h3, .slides .temp-slide-transition .slide-content h4, .slides .temp-slide-transition .slide-content h5, .slides .temp-slide-transition .slide-content h6, .slides .temp-slide-transition .slide-content .slide-icon {
  transform: scale(1) translateY(0%);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-button {
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 24px;
  opacity: 0.8;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 950px) {
  .slide-button:hover {
    transform: scale(1.4);
    opacity: 0.8;
  }
}
.slide-button * {
  transition: fill 0.8s linear;
}

.button-next {
  right: 16px;
}
@media only screen and (min-width: 950px) {
  .button-next {
    right: 24px;
  }
}

.button-prev {
  left: 16px;
}
@media only screen and (min-width: 950px) {
  .button-prev {
    left: 24px;
  }
}

.contact-information-container {
  /*
       @include columns-2($inner_padding_vertical);
       @include mq($tablet) {
           @include columns-1($inner_padding_vertical);
       }
   */
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 600px) {
  .contact-information-container {
    grid-template-columns: 1fr;
  }
}
.contact-information-container .contact-information-picture {
  height: auto;
  max-height: 100%;
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 600px) {
  .contact-information-container .contact-information-picture {
    max-height: 250px;
    width: auto;
  }
}
.contact-information-container .contact-title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 600px) {
  .contact-information-container .contact-title {
    font-size: 2.4rem;
  }
}
.contact-information-container .social-link-wrapper {
  margin-bottom: 16px !important;
  cursor: pointer;
}
.contact-information-container .social-link-wrapper .social-link-icon {
  width: 20px !important;
  height: 20px !important;
  margin-right: 16px;
}
.contact-information-container .social-link-wrapper.no-label .social-link-icon {
  margin-right: 24px;
}

.response-time-wrapper .response-time-icon {
  margin-right: 5px;
}
.pswp {
  z-index: 999999 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pswp .pswp__ui {
  height: 100%;
}
.pswp .pswp__bg {
  opacity: 0.9 !important;
}
.pswp .pswp__top-bar {
  background: transparent;
}
.pswp .pswp__button:hover {
  background-color: transparent;
}
.pswp button.pswp__button.pswp__button--arrow--left::before {
  background-position: center !important;
  background: url(/wp-content/themes/dist/svg/icons/prev_white.svg) !important;
}
.pswp button.pswp__button.pswp__button--arrow--right::before {
  background-position: center !important;
  background: url(/wp-content/themes/dist/svg/icons/next_white.svg) !important;
}
.pswp .pswp__counter {
  display: none;
}

.gallery-container-wrap {
  margin-bottom: 24px;
}
.gallery-container-wrap .gallery-container .gallery-wrapper {
  height: 240px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .add-to-gallery-btn {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .add-to-gallery-btn svg {
  width: 20px;
  height: 20px;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .gallery-title-wrapper {
  padding: 16px 24px;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .gallery-title-wrapper .gallery-title {
  font-size: 1rem;
  margin-bottom: 0px;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .gallery-title-wrapper .gallery-title {
    font-size: 1.5rem;
  }
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-information .gallery-title-wrapper .gallery-title-gradient {
  max-height: 170%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 100%);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images {
  height: 100%;
  overflow: hidden;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform-origin: top center;
  will-change: transform;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap:nth-of-type(1) {
  transform: scale(0.8) translate(0, 0px);
  filter: brightness(30%);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap:nth-of-type(2) {
  transform: scale(0.9) translate(0, 15px);
  filter: brightness(50%);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap:nth-of-type(3) {
  transform: scale(1) translate(0, 30px);
  filter: brightness(100%);
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap:nth-of-type(3) .gallery-preview-img-overlay {
  display: none;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap .gallery-preview-img {
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-container-wrap .gallery-container .gallery-wrapper .gallery-preview-images .gallery-preview-img-wrap .gallery-preview-img .gallery-preview-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color-1);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
@media only screen and (min-width: 600px) {
  .gallery-container-wrap .gallery-container .gallery-wrapper:hover .gallery-preview-img-wrap {
    opacity: 1 !important;
  }
  .gallery-container-wrap .gallery-container .gallery-wrapper:hover .gallery-preview-img-wrap:nth-of-type(1) {
    transform: scale(0.9) translate(0, 0px);
    filter: brightness(94%);
  }
  .gallery-container-wrap .gallery-container .gallery-wrapper:hover .gallery-preview-img-wrap:nth-of-type(2) {
    transform: scale(0.95) translate(0, 40px);
    filter: brightness(98%);
  }
  .gallery-container-wrap .gallery-container .gallery-wrapper:hover .gallery-preview-img-wrap:nth-of-type(3) {
    transform: scale(1) translate(0, 80px);
    filter: brightness(100%);
  }
  .gallery-container-wrap .gallery-container .gallery-wrapper:hover .gallery-preview-img-wrap .gallery-preview-img .gallery-preview-img-overlay {
    opacity: 0;
  }
}

.photo-container {
  margin-bottom: 24px;
}
.photo-container figure.gallery-image-wrap {
  position: relative;
  margin-bottom: 0;
}
.photo-container figure.gallery-image-wrap .photo-wrapper {
  overflow: hidden;
  cursor: pointer;
}
.photo-container figure.gallery-image-wrap .photo-wrapper .photo {
  width: 100%;
  height: 380px;
  background-size: cover;
  transition: transform 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: transform;
}
.photo-container figure.gallery-image-wrap:hover .photo {
  transform: scale(1.1);
}
.photo-container figure.gallery-image-wrap:hover .photo-single-url-wrap {
  opacity: 0.7;
}
.photo-container figure.gallery-image-wrap .photo-urls-wrap {
  display: flex;
  position: absolute;
  bottom: 16px;
  right: 24px;
}
.photo-container figure.gallery-image-wrap .photo-single-url-wrap {
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  opacity: 0.6;
  margin-right: 12px;
}
@media only screen and (min-width: 950px) {
  .photo-container figure.gallery-image-wrap .photo-single-url-wrap {
    opacity: 0;
  }
}
.photo-container figure.gallery-image-wrap .photo-single-url-wrap svg * {
  fill: white;
}
.photo-container figure.gallery-image-wrap .photo-single-url-wrap:last-child {
  margin-right: 0;
}
.photo-container figure.gallery-image-wrap .photo-single-url-wrap:hover {
  transform: scale(1.2);
  opacity: 1;
}

.photo-single > img {
  width: auto;
  max-height: calc(100vh - 48px - 16px * 2);
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 950px) {
  .photo-single > img {
    max-height: calc(100vh - 48px - 24px * 2);
  }
}
.photo-single .photo-information {
  margin-top: 24px;
}

.photo-exif-information .exif-setting .exif-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.photo-exif-information .exif-setting .exif-title {
  margin-bottom: 0;
  font-size: calc(1rem - 3px);
}

.preset-container {
  margin-bottom: 24px;
}
.preset-container .preset-wrapper {
  height: 380px;
  overflow: hidden;
}
.preset-container .preset-wrapper:hover .preset-before-after-wrapper {
  transform: scale(1.1);
}
.preset-container .preset-wrapper .preset-before-after-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform-origin: center;
  will-change: transform;
}
.preset-container .preset-wrapper .preset-before-after-wrapper .preset-before-wrap, .preset-container .preset-wrapper .preset-before-after-wrapper .preset-after-wrap {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.preset-container .preset-wrapper .preset-before-after-wrapper .preset-before-wrap .preset-before, .preset-container .preset-wrapper .preset-before-after-wrapper .preset-before-wrap .preset-after, .preset-container .preset-wrapper .preset-before-after-wrapper .preset-after-wrap .preset-before, .preset-container .preset-wrapper .preset-before-after-wrapper .preset-after-wrap .preset-after {
  height: 100%;
  background-size: cover;
}
.preset-container .preset-wrapper .preset-before-after-wrapper .preset-before-wrap {
  z-index: 2;
  width: 50%;
  transition: width 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.preset-container .preset-wrapper .preset-before-after-wrapper .preset-before-wrap .preset-before {
  width: 200%;
  transition: width 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.preset-container .preset-wrapper .preset-before-after-wrapper .preset-after-wrap {
  width: 100%;
}

.preset-single .preset-before-after-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: calc(100vh - 48px - 16px * 2);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  transform-origin: center;
  will-change: transform;
  margin-bottom: 24px;
}
@media only screen and (min-width: 600px) {
  .preset-single .preset-before-after-wrapper {
    height: calc(100vh - 48px - 24px * 2);
  }
}
.preset-single .preset-before-after-wrapper .btn-show-preset-settings {
  position: absolute;
  left: 24px;
  bottom: 16px;
  z-index: 10;
  display: none;
}
@media only screen and (min-width: 600px) {
  .preset-single .preset-before-after-wrapper .btn-show-preset-settings {
    display: flex;
  }
}
.preset-single .preset-before-after-wrapper .preset-slider-active {
  opacity: 1 !important;
}
.preset-single .preset-before-after-wrapper .preset-slider-active:before {
  transform: scale(1) !important;
  border-width: 3px !important;
}
.preset-single .preset-before-after-wrapper .preset-slider-active .slider-line {
  max-height: calc(50% - 22.5px) !important;
  transform: scaleX(1.5);
}
.preset-single .preset-before-after-wrapper .preset-slider {
  position: absolute;
  top: 0;
  left: calc(100%);
  transform: translateX(-50%);
  width: 45px;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: opacity;
}
.preset-single .preset-before-after-wrapper .preset-slider:hover, .preset-single .preset-before-after-wrapper .preset-slider.preset-slider-out {
  opacity: 1;
}
.preset-single .preset-before-after-wrapper .preset-slider:hover:before, .preset-single .preset-before-after-wrapper .preset-slider.preset-slider-out:before {
  transform: scale(1);
  border-width: 3px;
}
.preset-single .preset-before-after-wrapper .preset-slider:hover .slider-line, .preset-single .preset-before-after-wrapper .preset-slider.preset-slider-out .slider-line {
  max-height: calc(50% - 22.5px);
  transform: scaleX(1.5);
}
.preset-single .preset-before-after-wrapper .preset-slider:before {
  content: "";
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: absolute;
  top: calc(50% - 22.5px);
  left: 0;
  border: 2px solid white;
  border-radius: 100%;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: transform;
}
.preset-single .preset-before-after-wrapper .preset-slider .slider-line {
  position: absolute;
  left: calc(50% - 1px);
  background: white;
  height: 50%;
  max-height: 50%;
  width: 2px;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.preset-single .preset-before-after-wrapper .preset-slider .slider-line-top {
  top: 0;
}
.preset-single .preset-before-after-wrapper .preset-slider .slider-line-bottom {
  bottom: 0;
}
.preset-single .preset-before-after-wrapper .preset-slider.preset-slider-out:before {
  background: var(--font-color);
  opacity: 0.8;
  border-color: transparent;
  animation: pulseInOut 2s infinite cubic-bezier(0.56, 0.045, 0, 1);
}
.preset-single .preset-before-after-wrapper .preset-slider.preset-slider-out .slider-line {
  background: transparent;
}
.preset-single .preset-before-after-wrapper .preset-before-wrap, .preset-single .preset-before-after-wrapper .preset-after-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.preset-single .preset-before-after-wrapper .preset-before-wrap .preset-before, .preset-single .preset-before-after-wrapper .preset-before-wrap .preset-after, .preset-single .preset-before-after-wrapper .preset-after-wrap .preset-before, .preset-single .preset-before-after-wrapper .preset-after-wrap .preset-after {
  height: 100%;
  background-size: cover;
}
.preset-single .preset-before-after-wrapper .preset-before-wrap {
  z-index: 2;
}
.preset-single .preset-before-after-wrapper .preset-before-wrap .preset-before {
  max-width: calc(100vw - 32px);
}
.preset-single .preset-before-after-wrapper .preset-after-wrap {
  width: 100%;
}

.preset-setting {
  margin-bottom: 16px;
}
.preset-setting .preset-setting-slider {
  width: 100%;
  height: 6px;
}
.preset-setting .preset-setting-title {
  margin-bottom: 5px;
  margin-top: 20px;
}
.preset-setting .preset-setting-value {
  position: absolute;
  bottom: -5px;
  width: 20px;
  height: 20px;
  background: var(--font-color);
  border-radius: 100%;
  transform: translateX(-50%);
}
.preset-setting .preset-setting-value .preset-setting-value-content {
  position: absolute;
  top: 15px;
  left: 0;
  width: 200%;
  text-align: center;
  font-size: calc(1rem - 1px);
  font-weight: 600;
  transform: translateX(-25%);
}

.preset-tone-curve {
  width: 400px;
  height: 400px;
  max-width: calc(100vw - 16px * 2);
  max-height: calc(100vw - 16px * 2);
  background: #f1f1f1;
}
.preset-tone-curve pattern path {
  fill: none;
}
.preset-tone-curve rect {
  fill: url(scss/layout.css?ver=1.0#grid);
}

.preset-setting-separator {
  margin-top: calc(24px + 20px);
  margin-bottom: 5px;
}

@media only screen and (min-width: 600px) {
  .bookings-container-wrap {
    height: calc(100vh - 48px);
  }
}
.bookings-container-wrap .bookings-container-title {
  text-align: center;
  margin-bottom: 24px;
}
.bookings-container-wrap .bookings-container {
  margin-bottom: 24px;
}
.bookings-container-wrap .bookings-container .booking-wrapper {
  padding: 16px 24px;
  background: var(--background-color-alternate);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: transform;
  height: 100%;
  cursor: pointer;
}
.bookings-container-wrap .bookings-container .booking-wrapper:hover {
  transform: scale(1.1);
}
.bookings-container-wrap .bookings-container .booking-wrapper .booking-title {
  text-align: center;
}
.bookings-container-wrap .bookings-container .booking-wrapper .booking-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.bookings-container-wrap .bookings-container .booking-wrapper .booking-description {
  text-align: center;
}

.booking-form {
  opacity: 0;
  height: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  margin-top: 16px !important;
}
.booking-form .category-input {
  display: none;
}
.booking-form .category-title {
  margin-bottom: 0;
}
.booking-form .category-icon-container .booking-icon {
  width: 30px !important;
  height: 30px !important;
  margin-right: 5px;
}

.website-features-container-wrap {
  margin-bottom: 24px;
}
.website-features-container-wrap .website-features-container-grid .website-feature-icon svg {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.website-features-container-wrap .website-features-container-grid .website-feature-title {
  text-align: center;
}
.website-features-container-wrap .website-features-container-rows .website-features-wrapper {
  margin-bottom: 24px;
}
.website-features-container-wrap .website-features-container-rows .website-features-wrapper .website-feature-icon svg {
  width: 36px;
  height: 36px;
  margin-right: 24px;
  overflow: visible;
}

.website-features-full-width-container {
  padding-top: 96px;
  padding-bottom: 72px;
  margin-bottom: 24px;
  background: var(--background-color-alternate);
}
.website-features-full-width-container .website-features-container-wrap .website-features-container {
  grid-gap: 64px 24px;
}
.website-features-full-width-container .website-features-container-wrap .website-features-container .website-feature-icon * {
  fill: var(--font-color) !important;
}

section.page-section-box {
  padding: 16px 0;
}
section.page-section-box .page-section-content-wrap {
  height: 100%;
}
section.page-section-box .page-section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
section.page-section-box .page-section-content .page-section-svg {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}
section.page-section-box .page-section-content .page-section-svg svg {
  width: 100%;
  height: 100%;
}
section.page-section-box .page-section-content .page-section-svg svg .background-layer {
  fill: var(--background-color);
}
section.page-section-box .page-section-content .page-section-title-container {
  margin-bottom: 8px;
}
section.page-section-box .page-section-content .page-section-inner-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
}
section.page-section-box .page-section-content .page-section-inner-content p {
  margin-bottom: 16px;
}
section.page-section-box .page-section-content .page-section-inner-content .wp-block-lightisol-buttons {
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

section.page-section-diagonal {
  padding: 50px 16px;
  position: relative;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal {
    padding: 180px 24px;
  }
}
section.page-section-diagonal.page-section-bottom-space {
  margin-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal.page-section-bottom-space {
    margin-bottom: 90px;
  }
}
section.page-section-diagonal .page-section-background {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewY(-5deg);
  pointer-events: none;
  z-index: -1;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal:first-of-type {
    padding: 80px 24px 180px;
  }
}
section.page-section-diagonal .page-section-content .wp-block-lightisol-buttons:last-of-type {
  margin-bottom: 0;
}
section.page-section-diagonal:nth-of-type(even):last-of-type .page-section-background-bottom-fill {
  width: 100%;
  height: 50%;
  bottom: -20%;
  left: 0;
  position: absolute;
  pointer-events: none;
  background: var(--accent-color-1);
}
section.page-section-diagonal:nth-of-type(even):last-of-type .page-section-background-inner {
  display: none;
}
section.page-section-diagonal:nth-of-type(even) .page-section-background {
  background-color: var(--accent-color-1);
  /*.page-section-background-inner {
      background:$accent_color_2;
      position: absolute;
      bottom:0;
      left:0;
      width:100%;
      height:20px;
      transform:rotate(-2deg) scale(4) translateY(20%);
  }*/
}
section.page-section-diagonal:nth-of-type(even) .page-section-title, section.page-section-diagonal:nth-of-type(even) .page-section-content, section.page-section-diagonal:nth-of-type(even) .page-section-content p {
  color: var(--accent-contrast-color);
}
section.page-section-diagonal:nth-of-type(even) .wp-block-lightisol-button {
  background: var(--accent-contrast-color);
  border-color: var(--accent-contrast-color);
  color: var(--accent-color-1);
}
section.page-section-diagonal:nth-of-type(even) .wp-block-lightisol-button .btn-arrow-svg * {
  fill: var(--accent-color-1);
}
section.page-section-diagonal:nth-of-type(even) .wp-block-lightisol-button:hover .btn-arrow-svg * {
  fill: var(--accent-color-1) !important;
}
section.page-section-diagonal:nth-of-type(even) .page-section-svg svg .background-layer {
  fill: var(--accent-color-1);
}
section.page-section-diagonal:nth-of-type(even) .page-section-svg svg *:not(.background-layer) {
  fill: var(--accent-contrast-color);
}
section.page-section-diagonal:nth-of-type(odd) .page-section-svg svg .background-layer {
  fill: var(--background-color);
}
section.page-section-diagonal .page-section-inner {
  height: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal .page-section-inner {
    flex-direction: row;
  }
}
section.page-section-diagonal .page-section-inner .page-section_left, section.page-section-diagonal .page-section-inner .page-section_right {
  height: 100%;
}
section.page-section-diagonal .page-section-inner .page-section_left {
  flex-shrink: 0;
  margin-bottom: 16px;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal .page-section-inner .page-section_left {
    padding-right: 24px;
    width: auto;
    margin-bottom: 0;
  }
}
section.page-section-diagonal .page-section-inner .page-section_right {
  width: 100%;
}
section.page-section-diagonal .page-section-inner .page-section_right .page-section-content-wrap {
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal .page-section-inner .page-section_right .page-section-content-wrap {
    text-align: left;
  }
}
section.page-section-diagonal .page-section-inner .page-section_right .page-section-content-wrap .wp-block-buttons {
  margin-bottom: 16px;
}
section.page-section-diagonal .page-section-inner .page-section_right .page-section-content-wrap p {
  margin-bottom: 16px;
}
section.page-section-diagonal .page-section-inner .page-section-image {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
}
section.page-section-diagonal .page-section-inner .page-section-image img {
  width: 100%;
  height: 100%;
}
section.page-section-diagonal .page-section-inner .page-section-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
@media only screen and (min-width: 600px) {
  section.page-section-diagonal .page-section-inner .page-section-svg {
    width: 140px;
    height: 140px;
  }
}
section.page-section-diagonal .page-section-inner .page-section-svg svg {
  width: 100%;
  height: 100%;
}

section.page-section-full .page-section-inner {
  padding: 80px 0;
}
section.page-section-full .page-section-inner .page-section_image {
  width: 80%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-75%, -50%);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
section.page-section-full .page-section-inner .page-section_right {
  padding: 40px;
  background: var(--background-color-alternate);
  border-radius: 8px;
}
section.page-section-full .page-section-inner .page-section-content .wp-block-lightisol-buttons:last-of-type {
  margin-bottom: 0;
}

.wpml-ls .wpml-ls-item .wpml-ls-link img {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  transition: transform 0.3s cubic-bezier(0.56, 0.045, 0, 1), opacity 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: transform;
}
.wpml-ls .wpml-ls-item .wpml-ls-link:hover img {
  transform: scale(1.1);
}

.wpml-ls-legacy-dropdown {
  background: none !important;
  z-index: 99999;
}
.wpml-ls-legacy-dropdown:hover .wpml-ls-item-toggle {
  border-radius: 8px 8px 0 0;
}
.wpml-ls-legacy-dropdown .wpml-ls-item-toggle {
  border-radius: 8px;
  background: none !important;
  padding: 8px 12px;
}
.wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover {
  background: none !important;
  border-radius: 8px 8px 0 0;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border-top: none;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-link {
  background-color: white;
  padding: 8px 12px;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a {
  background: #f1f1f1;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover {
  background: var(--accent-color-1);
  border-color: var(--accent-color-1);
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover .wpml-ls-native {
  color: var(---accent-contrast-color);
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item:last-child a {
  border-radius: 0 0 8px 8px;
}

.notification-stack {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99999;
  width: calc(100% - 16px * 2);
  max-width: 500px;
  pointer-events: none;
}
@media only screen and (min-width: 600px) {
  .notification-stack {
    width: 600px;
    bottom: 24px;
    right: 24px;
  }
}
.notification-stack .notification {
  width: 100%;
  background: var(--background-color-alternate);
  box-shadow: 0px 0px 28px -4px rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
  border-radius: 8px;
  transition: all 0.7s cubic-bezier(0.56, 0.045, 0, 1);
  max-height: 400px;
  transform: translateY(100px) scale(1.2);
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  margin-top: 16px;
}
@media only screen and (min-width: 600px) {
  .notification-stack .notification {
    margin-top: 24px;
  }
}
.notification-stack .notification.notification-active {
  transform: translateY(0) scale(1);
  pointer-events: all;
  opacity: 1;
  display: block;
}
.notification-stack .notification.notification-done {
  transform: translateY(-100px) scale(0.8);
  opacity: 0;
  pointer-events: none;
}
.notification-stack .notification.notification-zero {
  max-height: 0;
  padding: 0;
  margin-top: 0;
}
.notification-stack .notification .notification-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 24px;
}
.notification-stack .notification .notification-icon * {
  fill: var(--font-color);
}
.notification-stack .notification .notification-timeout-progress {
  position: absolute;
  top: 6px;
  right: 6px;
  transform: rotate(-90deg);
  stroke-dasharray: 251; /* (2PI * 40px) */
  stroke-dashoffset: 0;
}
.notification-stack .notification .notification-timeout-progress * {
  fill: transparent;
}
.notification-stack .notification .notification-content .notification-title {
  margin-bottom: 3px;
  font-weight: 600;
}
.notification-stack .notification .notification-btns .btn-notification {
  margin-top: 16px;
  margin-right: 24px;
  justify-self: flex-start;
  border-radius: 4px;
  padding: 8px 12px !important;
}
.notification-stack .notification .notification-btns .btn-notification:last-child {
  margin-right: 0;
}

.lightisol-cart-btn {
  position: relative;
}
.lightisol-cart-btn .cart-count {
  position: absolute;
  color: var(--background-color);
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  top: 54%;
  left: 32%;
}

.lightisol-shop .product-grid .product .product-link:hover .product-photo, .related_products .product-grid .product .product-link:hover .product-photo {
  transform: scale(1.1);
}
.lightisol-shop .product-grid .product .product-link .product-photo-wrapper, .related_products .product-grid .product .product-link .product-photo-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.lightisol-shop .product-grid .product .product-link .product-photo-wrapper .product-photo, .related_products .product-grid .product .product-link .product-photo-wrapper .product-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s cubic-bezier(0.56, 0.045, 0, 1);
  will-change: transform;
}
.lightisol-shop .product-grid .product .product-link .product-title, .related_products .product-grid .product .product-link .product-title {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0 !important;
}
.lightisol-shop .product-grid .product .product-link .product-price, .related_products .product-grid .product .product-link .product-price {
  text-align: center;
}
.lightisol-shop .product-grid .product .product-link .product-price *, .related_products .product-grid .product .product-link .product-price * {
  font-weight: 300;
}

.related_products {
  clear: both;
}

.select2-results__option--highlighted {
  background-color: var(--font-color) !important;
}

.woocommerce .blockUI.blockOverlay:before,
.woocommerce .loader:before {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  display: block;
  content: "";
  -webkit-animation: none;
  -moz-animation: none;
  animation: none;
  background-image: url("/wp-content/themes/lightisol/svg/icons/spinner.svg") !important;
  background-position: center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
}

.woocommerce form .form-row {
  padding: 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
  padding: 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation a {
  padding-bottom: 3px;
  transition: all 0.1s ease-in-out;
}
.woocommerce nav.woocommerce-MyAccount-navigation a:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
.woocommerce input[name=account_display_name] + span {
  font-size: calc(1rem - 3px);
}
.woocommerce .woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--border-color);
  margin-top: 16px;
}
.woocommerce button.button {
  margin-top: 16px;
}
.woocommerce .paypal-button-container .paypal-button, .woocommerce .paypal-button-container div[role=button] {
  border-radius: 8px !important;
}

.woocommerce button.single_add_to_cart_button,
.woocommerce button.button.alt,
.checkout-button, .woocommerce a.button.alt, .woocommerce a.button {
  padding: 12px !important;
  border-radius: 16px !important;
}

.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 1.5rem;
  display: none;
}
.woocommerce .cart-collaterals .checkout-button {
  font-size: 1rem !important;
  margin: 24px 0 !important;
  border-radius: 8px !important;
}
.woocommerce-cart-form .product-name a {
  color: var(--font-color);
}
.woocommerce-cart-form .product-thumbnail {
  display: none;
}

.woocommerce input.button:disabled[disabled] {
  opacity: 0;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top: none;
  border: 3px solid var(--border-color);
  background: transparent;
  border-radius: 8px;
}
.woocommerce-message:before, .woocommerce-info:before, .woocommerce-error:before {
  display: none;
}

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

.woocommerce-invalid #terms {
  outline-color: var(--error-color);
}

.woocommerce .required, .woocommerce a.remove {
  color: var(--error-color) !important;
}

.woocommerce a.remove {
  line-height: 1.04;
  font-weight: 400;
}
.woocommerce a.remove:hover {
  background: var(--error-color) !important;
}

.woocommerce-info a.showcoupon {
  padding-bottom: 0;
  transition: all 0.1s ease-in-out;
}
.woocommerce-info a.showcoupon:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
@media only screen and (min-width: 600px) {
  .woocommerce-info a.showcoupon {
    margin-left: 24px;
  }
}

.woocommerce-error, .woocommerce-message, .woocommerce-info {
  padding: 16px 24px;
}
.woocommerce-error:before, .woocommerce-message:before, .woocommerce-info:before {
  content: "";
}
.woocommerce-error li, .woocommerce-message li, .woocommerce-info li {
  margin-bottom: 0;
  list-style-type: none;
}
.woocommerce-error li:before, .woocommerce-message li:before, .woocommerce-info li:before {
  display: none !important;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error li {
  flex-direction: column;
}
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error li .button {
  margin-bottom: 24px !important;
}
@media only screen and (min-width: 600px) {
  .woocommerce-message, .woocommerce-info, .woocommerce-error li {
    flex-direction: row;
  }
  .woocommerce-message .button, .woocommerce-info .button, .woocommerce-error li .button {
    margin-bottom: 0 !important;
    margin-right: 16px !important;
  }
}

form.checkout_coupon {
  border: 3px solid var(--border-color) !important;
}
form.checkout_coupon button.button {
  margin-top: 0;
  padding: 19px 24px !important;
}

.woocommerce form.checkout .woocommerce-billing-fields label,
.woocommerce form.checkout .woocommerce-additional-fields label {
  font-size: calc(1rem - 1px);
  font-weight: 600;
}
.woocommerce form.checkout .form-row-first, .woocommerce form.checkout .form-row-last {
  width: 48% !important;
}
.woocommerce form.checkout .col-1 {
  margin-bottom: 24px;
}
.woocommerce form.checkout .woocommerce-additional-fields {
  margin-top: 24px;
}
.woocommerce form.checkout .select2-selection {
  border-color: var(--border-color);
  border-width: 2px;
  border-radius: 8px;
  height: 59px;
  background: transparent;
}
.woocommerce form.checkout .select2-selection .select2-selection__rendered {
  line-height: 56px;
  padding-left: 24px;
  color: var(--font-color);
}
.woocommerce form.checkout .select2-selection .select2-selection__arrow {
  height: 56px;
  right: 2px;
  color: var(--font-color);
}
.woocommerce form.checkout #billing_country_field {
  margin-bottom: 10px;
}
.woocommerce form.checkout .form-row-first, .woocommerce form.checkout .form-row-last {
  width: 49.5%;
}
.woocommerce form.checkout #payment div.payment_box {
  background-color: var(--background-color-alternate);
}
.woocommerce form.checkout #payment div.payment_box::before {
  border-bottom-color: var(--background-color-alternate);
}
.woocommerce form.checkout #payment div.payment_box #stripe-payment-data .form-row {
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce form.checkout #payment {
  background: var(--background-color-alternate);
  border-radius: 8px;
}
.woocommerce form.checkout .place-order button {
  width: 100% !important;
}

.woocommerce .woocommerce-customer-details address {
  line-height: 1.6em;
  padding: 0;
  border: none;
}
.woocommerce .woocommerce-customer-details address .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details address .woocommerce-customer-details--phone {
  padding-left: 0;
}
.woocommerce .woocommerce-customer-details address .woocommerce-customer-details--email::before,
.woocommerce .woocommerce-customer-details address .woocommerce-customer-details--phone::before {
  display: none;
}
.woocommerce li::before {
  display: none !important;
}
.woocommerce .woocommerce-Price-amount bdi {
  font-weight: 900 !important;
}
.woocommerce .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  margin-right: 2px;
}
.woocommerce table.order_details .product-name > a, .woocommerce table.order_details .product-name > strong {
  font-size: 1.5rem;
}
.woocommerce table.order_details a {
  padding-bottom: 3px;
  transition: all 0.1s ease-in-out;
  color: var(--font-color);
}
.woocommerce table.order_details a:hover {
  box-shadow: inset 0px -2px 0px 0px;
}
.woocommerce table.order_details strong {
  color: var(--font-color);
}
.woocommerce table.order_details .wc-item-meta {
  margin-top: 16px;
}
.woocommerce table.order_details .wc-item-meta li {
  margin-bottom: 0;
}
.woocommerce table.order_details .wc-item-meta > li {
  margin-bottom: 24px;
}
.woocommerce table.order_details .wc-item-meta > li .wc-item-meta-label {
  float: none !important;
}
.woocommerce table.order_details .wc-item-meta > li .wc-item-meta-label span {
  font-size: 1.5rem;
}
.woocommerce table.order_details .wc-item-meta > li ul li strong {
  font-weight: 400;
}
.woocommerce ul.order_details {
  padding: 0;
}
.woocommerce ul.order_details li {
  border-right: none;
  float: none;
  font-size: calc(1rem - 3px);
  font-weight: 400;
  text-transform: none;
}
@media only screen and (min-width: 600px) {
  .woocommerce ul.order_details li {
    width: 45%;
    float: left;
  }
}
.woocommerce .woocommerce-thankyou-order-received {
  font-size: 1.5rem;
}
@media only screen and (min-width: 600px) {
  .woocommerce .woocommerce-thankyou-order-received {
    text-align: center;
  }
}
.woocommerce .shop_table {
  border-radius: 8px !important;
  border: none !important;
  overflow: hidden;
}
.woocommerce .shop_table thead tr {
  background: var(--font-color);
}
.woocommerce .shop_table thead tr th, .woocommerce .shop_table thead tr th span {
  color: var(--background-color);
}
.woocommerce .shop_table .product-remove a.remove {
  box-shadow: none;
  line-height: 1.1em;
  font-size: 1.2em;
  height: 1.2em;
  width: 1.2em;
}
.woocommerce .shop_table td, .woocommerce .shop_table th {
  border-top: none !important;
  padding: 16px 24px !important;
}
.woocommerce .shop_table td.actions {
  display: none;
}
.woocommerce .shop_table .woocommerce-orders-table__cell-order-actions a {
  display: inline-block;
}
.woocommerce .shop_table .woocommerce-orders-table__cell {
  padding: 16px 24px;
}

.select2-dropdown, .select2-search__field {
  background-color: var(--background-color-alternate);
  border-color: var(--border-color) !important;
  border-width: 2px !important;
}
.select2-dropdown .select2-results__option[aria-selected=true], .select2-dropdown .select2-results__option[data-selected=true], .select2-search__field .select2-results__option[aria-selected=true], .select2-search__field .select2-results__option[data-selected=true] {
  background-color: var(--background-color) !important;
  color: var(--font-color);
}

.pswp__caption__center {
  display: none;
}

.woocommerce div.product .product_title {
  margin-bottom: 0;
}
.woocommerce div.product .onsale {
  border-radius: 8px;
  padding: 8px 12px;
  line-height: inherit;
  font-weight: 600;
  min-height: 0;
  min-width: 0;
  top: 8px;
  left: 12px;
  position: absolute;
  background-color: var(--background-color);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--font-color);
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.woocommerce div.product .woocommerce-product-gallery__trigger {
  top: 8px !important;
  right: 12px !important;
  border-radius: 100px !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--font-color);
}
@supports (-webkit-backdrop-filter: blur(10px)) {
  .woocommerce div.product .onsale, .woocommerce div.product .woocommerce-product-gallery__trigger {
    background-color: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.woocommerce div.product del {
  margin-right: 5px;
}
.woocommerce div.product del * {
  color: grey;
}
.woocommerce div.product ins {
  text-decoration: none;
}
.woocommerce div.product .amount, .woocommerce div.product .woocommerce-Price-currencySymbol {
  font-weight: 400 !important;
  font-size: 1rem;
}
.woocommerce div.product .woocommerce-Price-currencySymbol {
  margin-right: 5px;
}
.woocommerce div.product .woocommerce-variation-price {
  margin-bottom: 16px;
}
.woocommerce div.product .woocommerce-variation-price .price del {
  display: block;
}
.woocommerce div.product .woocommerce-variation-price .price * {
  font-size: 1.5rem;
}
.woocommerce div.product .woocommerce-price-suffix {
  font-size: calc(1rem - 3px);
}
.woocommerce div.product p.stock {
  font-size: calc(1rem - 3px) !important;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.woocommerce div.product p.stock:before {
  content: "•";
  display: inline-block;
  font-size: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  line-height: 20px;
}
.woocommerce div.product .cart {
  margin: 16px 0 !important;
}
.woocommerce div.product .cart .wc-box-office-ticket-form {
  margin: 3em 0 16px 0;
}
.woocommerce div.product .cart .wc-box-office-ticket-form .form-row {
  padding: 0;
  margin-bottom: 16px;
}
.woocommerce div.product .cart .wc-box-office-ticket-form .woocommerce-single-ticket-description {
  margin-bottom: 16px;
}
.woocommerce div.product table.variations tr {
  display: flex;
  flex-direction: row;
}
.woocommerce div.product table.variations tr td.label {
  vertical-align: middle;
  padding: 0 24px !important;
  text-align: center;
  background: var(--background-color-alternate);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
}
.woocommerce div.product table.variations tr td.label label {
  font-weight: 400;
}
.woocommerce div.product table.variations tr td.value {
  flex-grow: 1;
  padding: 0;
}
.woocommerce div.product table.variations select {
  border-radius: 0 8px 8px 0;
}
.woocommerce div.product table.variations .reset_variations {
  display: none !important;
}
.woocommerce div.product .woocommerce-variation-availability {
  margin-bottom: 16px;
}
.woocommerce div.product #wc-stripe-payment-request-wrapper {
  padding-top: 16px !important;
}
.woocommerce div.product .wcppec-checkout-buttons {
  margin: 0 !important;
}
.woocommerce div.product #wc-stripe-payment-request-wrapper,
.woocommerce div.product .wcppec-checkout-buttons {
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.woocommerce div.product #wc-stripe-payment-request-wrapper:hover,
.woocommerce div.product .wcppec-checkout-buttons:hover {
  transform: scale(1.05);
}
.woocommerce div.product input[name=quantity] {
  width: 100px;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  margin: 16px 0;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 1px solid #dadada;
  border-radius: 8px;
}

.woocommerce-form-login__rememberme {
  margin-top: 20px;
}

.woocommerce.single-product .product_title {
  font-size: 2.4rem;
}

.single_add_to_cart_button {
  width: 100% !important;
  border-radius: 4px !important;
}

.woocommerce button.button.alt.disabled {
  background-color: var(--font-color);
  border-color: var(--font-color);
  opacity: 0.4;
}
.woocommerce button.button.alt.disabled:hover {
  background-color: var(--font-color);
}

#wc-stripe-payment-request-button-separator,
.wcppec-checkout-buttons__separator {
  display: none !important;
}

.payment_method_stripe #stripe-card-element, .payment_method_stripe #stripe-exp-element, .payment_method_stripe #stripe-cvc-element {
  padding: 16px 24px;
  border-radius: 8px;
}

#wc-stripe-payment-request-button, .wcppec-checkout-buttons .paypal-buttons {
  border-radius: 16px;
  overflow: hidden;
}

.reference-wrapper {
  padding: 16px 24px;
  background: var(--background-color-alternate);
  position: relative;
  cursor: pointer;
}
.reference-wrapper .title {
  text-align: center;
  margin-bottom: 0;
}
.reference-wrapper .subtitle {
  opacity: 0.5;
  font-size: calc(1rem - 3px);
  text-align: center;
}
.reference-wrapper .logo {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 16px auto;
}
.reference-wrapper .tag-list-container {
  margin-top: 8px;
}
.reference-wrapper .tag-list-container .item {
  font-size: calc(1rem - 3px);
  padding: 4px 8px;
  background: var(--background-color-alternate-3);
  margin-right: 4px;
  border-radius: 8px;
  margin-top: 8px;
}
.reference-wrapper .photo-btn {
  font-size: calc(1rem - 1px);
  display: block;
  margin: 16px auto 0 auto;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.reference-wrapper .photo-btn .photo-btn-icon {
  width: 20px;
  height: 20px;
}
.reference-wrapper .photo-indicator {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.reference-wrapper .photo-indicator > div {
  width: 16px;
  height: 16px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.56, 0.045, 0, 1);
}
.reference-wrapper .photo-indicator .top-left {
  border-left: 3px solid var(--accent-color-1);
  border-top: 3px solid var(--accent-color-1);
  top: 0;
  left: 0;
}
.reference-wrapper .photo-indicator .top-right {
  border-right: 3px solid var(--accent-color-1);
  border-top: 3px solid var(--accent-color-1);
  top: 0;
  right: 0;
}
.reference-wrapper .photo-indicator .bottom-left {
  border-bottom: 3px solid var(--accent-color-1);
  border-left: 3px solid var(--accent-color-1);
  bottom: 0;
  left: 0;
}
.reference-wrapper .photo-indicator .bottom-right {
  border-bottom: 3px solid var(--accent-color-1);
  border-right: 3px solid var(--accent-color-1);
  bottom: 0;
  right: 0;
}
.reference-wrapper:hover .photo-indicator {
  opacity: 1;
}
.reference-wrapper:hover .photo-indicator .top-left {
  transform: translate(6px, 6px);
}
.reference-wrapper:hover .photo-indicator .top-right {
  transform: translate(-6px, 6px);
}
.reference-wrapper:hover .photo-indicator .bottom-left {
  transform: translate(6px, -6px);
}
.reference-wrapper:hover .photo-indicator .bottom-right {
  transform: translate(-6px, -6px);
}

.photo-container-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: rgba(var(--background-color-raw), 0.8);
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.56, 0.045, 0, 1);
}
.photo-container-wrap.show-reference-photos {
  pointer-events: all;
  opacity: 1;
  transform: scale(1);
}
.photo-container-wrap .photo-container.photo-container-references,
.photo-container-wrap .photo-container-disabled.photo-container-references {
  width: 100vw;
  height: auto;
  max-height: 100vh;
  overflow: scroll;
  margin-bottom: 0;
  background: var(--background-color-alternate);
  filter: drop-shadow(0px 0px 70px rgba(0, 0, 0, 0.35));
  padding: 36px;
}
@media only screen and (min-width: 800px) {
  .photo-container-wrap .photo-container.photo-container-references,
  .photo-container-wrap .photo-container-disabled.photo-container-references {
    width: 700px;
    height: auto;
  }
}
.photo-container-wrap .photo-container.photo-container-references figure.gallery-image-wrap .photo-wrapper .photo,
.photo-container-wrap .photo-container-disabled.photo-container-references figure.gallery-image-wrap .photo-wrapper .photo {
  height: 160px;
}
.photo-container-wrap .photo-container.photo-container-references .reference-photos-close-btn,
.photo-container-wrap .photo-container-disabled.photo-container-references .reference-photos-close-btn {
  width: 24px;
  height: 24px;
  padding: 6px;
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 12px;
}
.photo-container-wrap .photo-container.photo-container-references .reference-photos-close-btn:hover,
.photo-container-wrap .photo-container-disabled.photo-container-references .reference-photos-close-btn:hover {
  background: var(--font-color);
}
.photo-container-wrap .photo-container.photo-container-references .reference-photos-close-btn:hover *,
.photo-container-wrap .photo-container-disabled.photo-container-references .reference-photos-close-btn:hover * {
  fill: var(--background-color);
}

.reference-single .logo {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 16px auto;
}
.reference-single .title {
  text-align: center;
}

.language-switcher-container {
  transform: none;
  position: relative;
  perspective: 200px;
}
.language-switcher-container .language-switcher-active-container {
  box-shadow: none;
}
.language-switcher-container .language-switcher-active-container:hover + .language-switcher-all-languages-container {
  opacity: 1;
  transform: translate(-50%, -100%);
  pointer-events: all;
}
.language-switcher-container .language-switcher-all-languages-container {
  padding-bottom: 20px;
  position: absolute;
  top: 0px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 999999;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.1));
  transform: translate(-50%, -95%);
  transition: all 0.5s cubic-bezier(0.56, 0.045, 0, 1);
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list {
  list-style-type: none;
  padding: 0;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item {
  background: var(--background-color);
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item a svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item:first-child {
  border-radius: 8px 8px 0 0;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item:last-child {
  border-radius: 0 0 8px 8px;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item.language-list-item-active {
  font-weight: 700;
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item:hover {
  background: var(--accent-color-1);
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item:hover a {
  color: var(--accent-contrast-color);
}
.language-switcher-container .language-switcher-all-languages-container .language-switcher-all-languages-content .language-list .language-list-item:hover a svg * {
  fill: var(--accent-contrast-color);
}
.language-switcher-container .language-switcher-all-languages-container .arrow-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.language-switcher-container .language-switcher-all-languages-container:hover {
  opacity: 1;
  transform: translate(-50%, -100%);
  pointer-events: all;
}

header .header-language-switcher {
  z-index: 999;
  cursor: pointer;
}
header .header-language-switcher:hover .language-switcher-all-languages-container {
  transform: translate(-50%, 0px);
  opacity: 1;
  pointer-events: all;
}
header .header-language-switcher svg {
  margin-right: 8px;
}
header .header-language-switcher .nav-item {
  text-transform: uppercase;
}
header .language-switcher-container {
  height: 100%;
}
header .language-switcher-container .language-switcher-all-languages-container {
  padding-bottom: 0;
  padding-top: 68px;
  transform: translate(-50%, 5%);
}
header .language-switcher-container .language-switcher-all-languages-container:hover {
  transform: translate(-50%, 0px);
}
header .language-switcher-container .language-switcher-all-languages-container .arrow-icon {
  bottom: auto;
  top: 48px;
  transform: translateX(-50%) rotate(180deg);
}
header .language-switcher-container .language-switcher-active-container:hover + .language-switcher-all-languages-container {
  transform: translate(-50%, 0px);
}

.BlendIcon__container {
  --svg-size:96px;
  --icon-size:48px;
  min-height: var(--icon-size);
}
.BlendIcon__container .BlendIcon {
  position: absolute;
  left: calc(var(--icon-size) / -2);
  top: calc(-1 * (var(--svg-size) - var(--icon-size)) / 2);
  width: var(--svg-size);
  height: var(--svg-size);
  display: block;
  pointer-events: none;
}

.BlendIcon__responsive .BlendIcon__foreground {
  transform-origin: 20% 50%;
  animation: BlendIconAnimation__responsive__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}
.BlendIcon__responsive .BlendIcon__background {
  transform-origin: 20% 50%;
  animation: BlendIconAnimation__responsive__background 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__responsive_2 .BlendIcon__foreground {
  transform-origin: 20% 50%;
  animation: BlendIconAnimation__responsive_2__smartphone 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__presets .BlendIcon__foreground {
  transform-origin: 20% 50%;
  animation: BlendIconAnimation__presets__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__photo .BlendIcon__foreground {
  transform-origin: 50%;
  animation: BlendIconAnimation__photo__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__contact .BlendIcon__foreground {
  animation: BlendIconAnimation__contact__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}
.BlendIcon__contact .BlendIcon__background {
  animation: BlendIconAnimation__contact__background 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__gallery .BlendIcon__foreground {
  animation: BlendIconAnimation__gallery__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}
.BlendIcon__gallery *[href="#galleryBackgroundPath_1"] {
  animation: BlendIconAnimation__gallery__background_1 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}
.BlendIcon__gallery *[href="#galleryBackgroundPath_2"] {
  animation: BlendIconAnimation__gallery__background_2 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}
.BlendIcon__gallery *[href="#galleryBackgroundPath_3"] {
  animation: BlendIconAnimation__gallery__background_3 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
}

.BlendIcon__slider .BlendIcon__foreground {
  transform: translateX(-10px);
}
.BlendIcon__slider *[href="#sliderForegroundPath_1"] {
  animation: BlendIconAnimation__slider__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
  animation-delay: 0;
}
.BlendIcon__slider *[href="#sliderForegroundPath_2"] {
  animation: BlendIconAnimation__slider__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
  animation-delay: 0.3s;
}
.BlendIcon__slider *[href="#sliderForegroundPath_3"] {
  animation: BlendIconAnimation__slider__foreground 12s cubic-bezier(0.56, 0.045, 0, 1) infinite;
  animation-delay: 0.6s;
}

.BlendIcon__container .BlendIcon * {
  animation-play-state: paused;
}

@keyframes BlendIconAnimation__gallery__foreground {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(0.5) translate(18px, 60px);
  }
}
@keyframes BlendIconAnimation__gallery__background_1 {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(0.5) translate(12px, 21px);
  }
}
@keyframes BlendIconAnimation__gallery__background_2 {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(0.5) translate(55px, 21px);
  }
}
@keyframes BlendIconAnimation__gallery__background_3 {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(0.5) translate(55px, 64px);
  }
}
@keyframes BlendIconAnimation__responsive__foreground {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(1.8, 2.5) translate(18px, -19px) rotate(90deg);
  }
}
@keyframes BlendIconAnimation__responsive__background {
  0%, 70% {
    transform: rotate(0) translate(0, 0) scale(1, 1);
  }
  20%, 50% {
    transform: scale(1.75) translate(-12px, -1px);
  }
}
@keyframes BlendIconAnimation__presets__foreground {
  0%, 70% {
    transform: translateX(0);
  }
  20%, 50% {
    transform: translateX(30px);
  }
}
@keyframes BlendIconAnimation__photo__foreground {
  0%, 70% {
    transform: rotateY(0deg);
  }
  20%, 50% {
    transform: rotateY(360deg);
  }
}
@keyframes BlendIconAnimation__contact__foreground {
  0%, 70% {
    transform: translateY(0deg);
  }
  20%, 50% {
    transform: translateY(7px);
  }
}
@keyframes BlendIconAnimation__contact__background {
  0%, 70% {
    transform: translateY(0deg);
  }
  20%, 50% {
    transform: translateY(-7px);
  }
}
@keyframes BlendIconAnimation__slider__foreground {
  0%, 70% {
    transform: translateX(-10px);
  }
  20%, 50% {
    transform: translateX(10px);
  }
}
.IconSection .IconSection--title {
  margin-top: 16px;
  text-align: left;
}
.IconSection .IconSection--text {
  font-weight: 300;
  text-align: left;
}

/*# sourceMappingURL=layout.css.map */


  

@font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: normal;
     font-display: swap;
     src: local('Muli Regular'), url('fonts/Muli-Regular.woff') format('woff');
     }
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: normal;
     font-display: swap;
     src: local('Muli Italic'), url('fonts/Muli-Italic.woff') format('woff');
     }
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 100,200;
     font-display: swap;
     src: local('Muli ExtraLight'), url('fonts/Muli-ExtraLight.woff') format('woff');
     }
     
     
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 300;
     font-display: swap;
     src: local('Muli Light'), url('fonts/Muli-Light.woff') format('woff');
     }
     
     
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 500, 600;
     font-display: swap;
     src: local('Muli SemiBold'), url('fonts/Muli-SemiBold.woff') format('woff');
     }
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 700;
     font-display: swap;
     src: local('Muli Bold'), url('fonts/Muli-Bold.woff') format('woff');
     }
     
     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 800;
     font-display: swap;
     src: local('Muli ExtraBold'), url('fonts/Muli-ExtraBold.woff') format('woff');
     }
     

     
     
     @font-face {
     font-family: 'Muli';
     font-style: normal;
     font-weight: 900;
     font-display: swap;
     src: local('Muli Black'), url('fonts/Muli-Black.woff') format('woff');
     }
     

     /* playfair-display-regular - latin */
@font-face {
     font-family: 'Playfair Display';
     font-style: normal;
     font-weight: 400;
     src: url('fonts/playfair-display-v21-latin-regular.eot'); /* IE9 Compat Modes */
     src: local(''),
          url('fonts/playfair-display-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
          url('fonts/playfair-display-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
          url('fonts/playfair-display-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
          url('fonts/playfair-display-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
          url('fonts/playfair-display-v21-latin-regular.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
   }
   /* playfair-display-500 - latin */
   @font-face {
     font-family: 'Playfair Display';
     font-style: normal;
     font-weight: 500;
     src: url('fonts/playfair-display-v21-latin-500.eot'); /* IE9 Compat Modes */
     src: local(''),
          url('fonts/playfair-display-v21-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
          url('fonts/playfair-display-v21-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
          url('fonts/playfair-display-v21-latin-500.woff') format('woff'), /* Modern Browsers */
          url('fonts/playfair-display-v21-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
          url('fonts/playfair-display-v21-latin-500.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
   }
   /* playfair-display-800 - latin */
   @font-face {
     font-family: 'Playfair Display';
     font-style: normal;
     font-weight: 800;
     src: url('fonts/playfair-display-v21-latin-800.eot'); /* IE9 Compat Modes */
     src: local(''),
          url('fonts/playfair-display-v21-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
          url('fonts/playfair-display-v21-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
          url('fonts/playfair-display-v21-latin-800.woff') format('woff'), /* Modern Browsers */
          url('fonts/playfair-display-v21-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
          url('fonts/playfair-display-v21-latin-800.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
   }
   /* playfair-display-italic - latin */
   @font-face {
     font-family: 'Playfair Display';
     font-style: italic;
     font-weight: 400;
     src: url('fonts/playfair-display-v21-latin-italic.eot'); /* IE9 Compat Modes */
     src: local(''),
          url('fonts/playfair-display-v21-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
          url('fonts/playfair-display-v21-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
          url('fonts/playfair-display-v21-latin-italic.woff') format('woff'), /* Modern Browsers */
          url('fonts/playfair-display-v21-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
          url('fonts/playfair-display-v21-latin-italic.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
   }