:root {
  --textColor: #183D41;
  --linkColor: #183D41;
  --emojiColor: #0FEF37;
  --btnBackground: #0FEF37;
  --btnBackgroundHover: #CDFF9C;
  --btnColor: #183D41;
  --btnColorHover: #183D41;
  --gridGap: 48px;
  --headerHeight: 154px;
  --verticalSpaceLarge: 192px;
  --masonryOffset: 80px;
  --videoDelay: 400ms;
}
@media (max-width: 767px) {
  :root {
    --headerHeight: 119px;
    --gridGap: 24px;
  }
}
:root {
  --deskWidth: 1344px;
  --deskSpace: 40px;
  --deskMaxWidth: calc(100vw - (2 * var(--deskSpace)));
}
@media (max-width: 767px) {
  :root {
    --deskSpace: 24px;
  }
}
:root {
  --spacePart: 14px;
}
@media (max-width: 1023px) {
  :root {
    --spacePart: 14px;
  }
}
@media (max-width: 767px) {
  :root {
    --spacePart: 12px;
  }
}
:root {
  --spaceUnit: 26px;
}
@media (max-width: 1023px) {
  :root {
    --spaceUnit: 26px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceUnit: 26px;
  }
}
:root {
  --spaceTotal: 40px;
}
@media (max-width: 1023px) {
  :root {
    --spaceTotal: 40px;
  }
}
@media (max-width: 767px) {
  :root {
    --spaceTotal: 38px;
  }
}
:root {
  --js-breakpoint: breakpointLarge;
}
@media (max-width: 1023px) {
  :root {
    --js-breakpoint: breakpointMedium;
  }
}
@media (max-width: 767px) {
  :root {
    --js-breakpoint: breakpointSmall;
  }
}
.title1 {
  font-size: clamp(4.25rem, 6.20399579vw + 2.72614353rem, 7.9375rem);
  line-height: clamp(4.75rem, 7.9915878vw + 2.78706625rem, 9.5rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
.title2 {
  font-size: clamp(2.625rem, 4.83701367vw + 1.43690852rem, 5.5rem);
  line-height: clamp(3.0625rem, 5.04731861vw + 1.82275237rem, 6.0625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
.title3 {
  font-size: clamp(2rem, 1.89274448vw + 1.53509464rem, 3.125rem);
  line-height: clamp(2.5rem, 1.78759201vw + 2.06092271rem, 3.5625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
.title4 {
  font-size: clamp(1.5rem, 0.7360673vw + 1.31920347rem, 1.9375rem);
  line-height: clamp(2rem, 1.05152471vw + 1.74171924rem, 2.625rem);
  color: var(--textColor);
  font-weight: bold;
}
.title5 {
  font-size: clamp(0.875rem, 0.42060988vw + 0.7716877rem, 1.125rem);
  line-height: clamp(1.5rem, 0.42060988vw + 1.3966877rem, 1.75rem);
  color: var(--textColor);
  font-weight: bold;
}
.lead {
  font-size: clamp(1.375rem, 0.63091483vw + 1.22003155rem, 1.75rem);
  line-height: clamp(2rem, 1.26182965vw + 1.69006309rem, 2.75rem);
  color: var(--textColor);
}
.small {
  font-size: clamp(0.625rem, 0.21030494vw + 0.57334385rem, 0.75rem);
  line-height: clamp(1rem, 0.42060988vw + 0.8966877rem, 1.25rem);
  color: var(--textColor);
  font-weight: bold;
}
.button {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .button:hover,
  .button:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .button:hover:before,
  .button:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .button:hover:after,
  .button:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .button {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .button:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.textlink2 {
  float: left;
  font-family: inherit;
  font-size: clamp(0.75rem, 0.21030494vw + 0.69834385rem, 0.875rem);
  line-height: clamp(1.125rem, 0.21030494vw + 1.07334385rem, 1.25rem);
  background-size: 0 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .textlink2:hover,
  .textlink2:focus {
    background-size: 100% 1px;
  }
}
.textlink3 {
  float: left;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.71428571;
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .textlink3:hover,
  .textlink3:focus {
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
@keyframes lineAnimation1 {
  0% {
    background-size: 100% 1px;
    background-position: right bottom;
  }
  60% {
    background-size: 0 1px;
    background-position: right bottom;
  }
  60.1% {
    background-size: 0 1px;
    background-position: left bottom;
  }
  100% {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}
@keyframes lineAnimation2 {
  0% {
    background-size: 100% 2px;
    background-position: right bottom;
  }
  60% {
    background-size: 0 2px;
    background-position: right bottom;
  }
  60.1% {
    background-size: 0 2px;
    background-position: left bottom;
  }
  100% {
    background-size: 100% 2px;
    background-position: left bottom;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
@font-face {
  font-family: "Stolzl";
  src: url("/extras/fonts/3327F2_4_0.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Stolzl";
  src: url("/extras/fonts/3327F2_1_0.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Stolzl";
  src: url("/extras/fonts/3327F2_5_0.woff2") format("woff2");
  font-weight: 700;
}
/* noto-emoji-regular - emoji */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Emoji';
  font-style: normal;
  font-weight: 400;
  src: url('/extras/fonts/noto-emoji-v56-emoji-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-emoji-500 - emoji */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Emoji';
  font-style: normal;
  font-weight: 500;
  src: url('/extras/fonts/noto-emoji-v56-emoji-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-emoji-700 - emoji */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Emoji';
  font-style: normal;
  font-weight: 700;
  src: url('/extras/fonts/noto-emoji-v56-emoji-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  background: none;
}
*::selection {
  background: #0FEF37;
  color: #fff;
}
.hidden,
.cb-invisible {
  display: none !important;
}
li {
  list-style-position: inside;
}
img,
audio,
video,
iframe {
  float: left;
  width: 100%;
}
strong {
  font-weight: bold;
}
sup,
sub {
  position: relative;
  vertical-align: baseline;
  top: -0.8em;
  font-size: 70%;
}
sub {
  top: 0.4em;
}
address {
  font-style: normal;
}
input,
textarea {
  border-radius: 0;
  font-family: 'Stolzl', sans-serif;
  font-size: clamp(0.875rem, 0.42060988vw + 0.7716877rem, 1.125rem);
  line-height: clamp(1.5rem, 0.42060988vw + 1.3966877rem, 1.75rem);
}
.unit caption {
  display: none;
}
.flag {
  background: #0FEF37;
  color: #fff;
}
img.cb-loading {
  background-size: 30px 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader.svg);
}
.cbdModule {
  float: left;
  width: 100%;
}
#view .cbdModule.is-empty {
  display: none;
}
.cbDynamicContent__element {
  float: left;
  width: 100%;
}
.area {
  float: left;
  width: 100%;
}
#view .area:empty {
  display: none;
}
.unit {
  float: left;
  width: 100%;
  position: relative;
}
.area .unit {
  margin-top: var(--spaceUnit);
  margin-bottom: var(--spaceUnit);
}
.unit__background {
  float: left;
  width: 100%;
}
.unit__content {
  float: left;
  width: 100%;
}
.unit__head,
.unit__body,
.unit__foot {
  float: left;
  width: 100%;
}
.unit--fold div.less,
.unit--fold div.more {
  float: left;
  width: 100%;
}
.unit--fold .ctrl {
  float: left;
  width: 100%;
}
.part {
  float: left;
  width: 100%;
  position: relative;
}
.unit .part {
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
}
.part__content {
  float: left;
  width: 100%;
}
.pict a {
  float: left;
  width: 100%;
}
.pict img {
  width: 100%;
}
.pict img:not(.svg) {
  width: auto;
  max-width: 100% !important;
}
#root#root#root img.zoom {
  display: none !important;
}
.lazyimage {
  visibility: hidden;
}
.lazyimage.lazyloaded {
  visibility: initial;
}
#edit .part video {
  pointer-events: none;
}
.cb-image-figure {
  float: left;
  width: 100%;
}
.cb-image-container {
  float: left;
  width: 100%;
  position: relative;
}
.cb-image-caption {
  float: left;
  width: 100%;
  margin-top: 6px;
}
#disp.zoom .cb-image-figure {
  height: 100%;
}
#disp.zoom .cb-image-container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom .cb-image-caption {
  display: none;
}
.cb-album .cb-image-figure {
  opacity: 1 !important;
  display: block !important;
}
.cb-album .cb-image-container {
  position: static;
}
.cb-album .cb-image-caption {
  display: none;
}
div.load {
  background: none !important;
}
.show a {
  float: left;
  width: 100%;
  display: block;
}
#edit .line {
  padding-top: 5px;
  padding-bottom: 5px;
}
.line hr {
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--textColor);
}
.line hr.bold {
  border-bottom-width: 2px;
}
.line hr.dash {
  border-bottom-style: dashed;
}
.line hr.spot {
  border-bottom-style: dotted;
}
#edit div.code {
  position: relative;
  min-height: 30px;
}
#edit div.code:after {
  content: 'Code';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #aaa;
  opacity: 0.6;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0 20px;
}
.cb-code-executable {
  float: left;
  width: 100%;
}
.part.cb-youtube iframe,
.part.cb-vimeo iframe {
  height: 100%;
  background-color: #fff;
}
.part.cb-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.part.cb-share .cb-service {
  float: left;
  margin-left: 16px;
}
.part.cb-share .cb-service:first-child {
  margin-left: 0;
}
.part.cb-share .cb-service * {
  float: left;
}
.part.cb-share .cb-service a {
  float: left;
  width: 50px;
  height: 50px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 10000px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.part.cb-share .cb-service a:hover {
  filter: invert(1);
}
.part.cb-share .cb-service.cb-service-facebook-share a {
  background-size: auto 24px;
  background-image: url(/images/cb-default/socialShare-facebook-black.svg);
}
.part.cb-share .cb-service.cb-service-twitter a {
  background-size: auto 18px;
  background-image: url(/images/cb-default/socialShare-twitter-black.svg);
}
.text-section {
  float: left;
  width: 100%;
}
.list {
  float: left;
  width: 100%;
}
.list--bullet li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.list--bullet li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}
.list--numbered {
  counter-reset: numberedList;
}
.list--numbered li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.list--numbered li:before {
  content: counter(numberedList) ".";
  counter-increment: numberedList;
  position: absolute;
  left: 0;
  top: 0;
}
#expo {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
#slides {
  float: left;
  width: 100%;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  position: relative;
  overflow: hidden;
}
#slides .slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
#slides a {
  display: block;
  width: 100%;
  height: 100%;
}
#slides a.null {
  cursor: default;
}
.cb-slides .cb-image-figure {
  height: 100%;
}
.cb-slides .cb-image-container {
  height: 100% !important;
}
#slides img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
#slides img.lazyimage {
  visibility: initial;
  filter: blur(10px);
  transform: scale(1.05);
  transition: all 0.12s;
}
#slides img.lazyimage.lazyloaded {
  filter: blur(0);
  transform: scale(1);
}
#expo div.link {
  display: none;
  float: left;
  width: 100%;
  height: 0;
}
#expo a.link {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 30px;
  height: 50px;
  transform: translateY(-50%);
  background: #0FEF37;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#expo a.link.prev {
  left: 20px;
}
#expo a.link.next {
  right: 20px;
}
table.link,
table.link tbody {
  float: left;
  display: block;
  width: 100%;
  height: 0;
}
.cb-index-all {
  display: block;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cb-index-all td {
  float: left;
  display: block;
  margin: 0 10px;
}
.cb-index-all td.init {
  margin-left: 0;
}
.cb-index-all td.exit {
  margin-right: 0;
}
.cb-index-all a {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s;
}
.cb-index-all td.this a {
  background: #0FEF37;
}
.cb-index-some {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.cb-index-some td {
  float: left;
  display: block;
  color: #fff;
}
.cb-index-some td:first-child:after {
  display: inline-block;
  content: '/';
  margin: 0 5px;
}
.cb-index-some a {
  color: #fff;
}
.cb-index-some a:hover,
.cb-index-some a:focus {
  color: #fff;
}
#over {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8);
}
#disp {
  position: absolute;
  z-index: 5001;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: 1000px !important;
  max-width: 90%;
  min-height: 100vh;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 80px 0 !important;
  font-size: 14px;
  font-family: 'Stolzl', sans-serif;
  line-height: 1.42857143;
  color: var(--textColor);
}
@media (max-width: 767px) {
  #disp {
    padding: 20px 0 !important;
  }
}
.disp-wrapper {
  float: left;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px;
}
@media (max-width: 767px) {
  .disp-wrapper {
    padding: 15px;
  }
}
#disp form {
  float: left;
}
.disp-wrapper > form {
  width: 100%;
}
@media (max-width: 767px) {
  #disp form {
    width: 100%;
  }
}
#disp .fail {
  color: #ae2121;
}
#disp .part {
  margin-top: 4px;
  margin-bottom: 4px;
}
#disp a.mail {
  float: left;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
#disp .head,
#disp .body,
#disp .foot {
  float: left;
  width: 100%;
  position: relative;
}
#disp .body {
  margin: 20px 0;
}
#disp .foot form + form {
  float: right;
}
#disp h2 {
  font-size: 14px;
  line-height: 1.71428571;
  font-weight: normal;
  text-transform: uppercase;
  color: #0FEF37;
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px;
}
#disp h3 {
  color: #0FEF37;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
}
#disp .head .ctrl {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
#disp .head .ctrl > div {
  float: left;
}
#disp .head .ctrl a {
  float: left;
  display: block;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 16px;
  height: 24px;
  background-size: 16px 16px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
#disp .foot input,
#disp .foot a {
  float: left;
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.42857143;
}
#disp .foot input:before,
#disp .foot a:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#disp .foot input:after,
#disp .foot a:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  #disp .foot input:hover,
  #disp .foot a:hover,
  #disp .foot input:focus,
  #disp .foot a:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  #disp .foot input:hover:before,
  #disp .foot a:hover:before,
  #disp .foot input:focus:before,
  #disp .foot a:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  #disp .foot input:hover:after,
  #disp .foot a:hover:after,
  #disp .foot input:focus:after,
  #disp .foot a:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  #disp .foot input,
  #disp .foot a {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  #disp .foot input:before,
  #disp .foot a:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
#disp .foot input.next,
#disp .foot a.next {
  float: right;
}
#disp.mail .foot input {
  float: right;
}
@media (max-width: 767px) {
  #disp .foot input,
  #disp .foot a {
    width: 100%;
    margin: 5px 0;
  }
  #disp .foot input:first-child,
  #disp .foot a:first-child {
    margin-top: 0;
  }
  #disp .foot input:last-child,
  #disp .foot a:last-child {
    margin-bottom: 0;
  }
}
#disp fieldset {
  float: left;
  width: 100%;
  position: relative;
  margin: 4px 0;
}
#disp fieldset.tiny {
  width: 48%;
}
#disp .head fieldset,
#disp .foot fieldset {
  margin: 0;
}
@media (max-width: 767px) {
  #disp fieldset.tiny {
    width: 100%;
  }
}
#disp label.name {
  float: left;
  width: 30%;
  margin-right: 4%;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  #disp label.name {
    width: 100%;
    margin-right: 0;
  }
}
#disp input.text,
#disp textarea {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  min-height: 26px;
  box-sizing: border-box;
  padding: 2px 10px;
}
#disp input.text.fail,
#disp textarea.fail {
  border: 2px solid #ae2121;
}
#disp textarea {
  min-height: 100px;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  #disp input.text,
  #disp textarea {
    width: 100%;
  }
}
#disp select {
  float: right;
  width: 66%;
  background-color: #F0F0F0;
  height: 26px;
}
@media (max-width: 767px) {
  #disp select {
    width: 100%;
  }
}
#disp input + label,
#disp input + label {
  display: block;
  padding-left: 30px;
}
#disp input[type*="radio"],
#disp input[type*="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 20px;
  width: 20px;
}
.cb-sitemap-target {
  float: left;
  margin-bottom: 20px;
  color: #fff;
  padding: 5px 10px;
  background-color: #ae2121;
}
.cb-sitemap-contents {
  float: left;
  width: 100%;
}
.cb-sitemap-contents li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.cb-sitemap-contents li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}
.cb-zoom-indicator {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 18px 18px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-zoom-white.svg);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.05, 0.8, 0.5, 1);
}
a.zoom .cb-zoom-indicator {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1023px) {
  .cb-zoom-indicator {
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
    opacity: 1;
    transform: scale(1);
  }
}
#disp.zoom {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  background: none;
  padding: 0 !important;
  display: block !important;
  transform: none;
}
#disp.zoom .disp-wrapper {
  padding: 0;
  background: none;
  height: 100%;
}
#disp.zoom div.head h2 {
  display: none;
}
#disp.zoom div.head div.ctrl {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}
@media (max-width: 767px) {
  #disp.zoom div.head div.ctrl {
    top: 20px;
    right: 20px;
  }
}
#disp.zoom div.head div.ctrl > div {
  float: left;
  margin: 0 10px;
}
#disp.zoom div.head div.ctrl > div:first-child {
  margin-left: 0;
}
#disp.zoom div.head div.ctrl > div:last-child {
  margin-right: 0;
}
#disp.zoom div.head div.ctrl a {
  float: left;
  display: block;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-white.svg);
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
}
#disp.zoom div.head div.ctrl .next a {
  background-image: url(/images/cb-default/cb-arrow-right-white.svg);
}
#disp.zoom div.head div.ctrl .quit a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
  background-size: 16px 16px;
}
#disp.zoom div.head div.ctrl a:hover {
  transform: scale(1.1);
}
#disp.zoom div.head div.ctrl a:active {
  transform: scale(1);
}
#disp.zoom div.body {
  float: left;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 80px 30px;
  margin: 0;
}
@media (max-width: 767px) {
  #disp.zoom div.body {
    padding: 60px 20px;
  }
}
#disp.zoom div.body > div {
  float: left;
  width: 100% !important;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body a {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#disp.zoom div.body img {
  float: left;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#disp.zoom div.foot {
  display: none;
}
.ie11 #disp.zoom {
  position: absolute;
}
.ie11 #disp.zoom div.body,
.ie11 #disp.zoom div.body > div,
.ie11 #disp.zoom div.body a {
  height: auto;
  display: block;
}
.ie11 #disp.zoom div.body img {
  float: none;
  position: relative;
  height: auto;
  display: block;
  margin: 0 auto;
}
#disp.srch {
  display: block !important;
}
#disp.srch h2 {
  display: none;
}
#disp.srch .disp-wrapper {
  background: none;
  padding: 0;
}
#disp.srch .head .ctrl a {
  background-image: url(/images/cb-default/cb-cross-white.svg);
}
#disp.srch div.body {
  margin: 0;
}
#disp.srch fieldset {
  margin: 0;
}
#disp.srch label.name {
  display: none;
}
#disp.srch input.text {
  font-family: 'Stolzl', sans-serif;
  background-color: transparent;
  margin-top: 40px;
  width: 100%;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  -webkit-font-smoothing: antialiased;
  appearance: none;
}
@media (max-width: 767px) {
  #disp.srch input.text {
    font-size: 18px;
  }
}
.cb-result {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
.cb-result p {
  margin-top: 40px;
}
.cb-result a {
  color: #fff;
  text-decoration: none;
}
.cb-result a:hover {
  color: #fff;
  text-decoration: underline;
}
.cb-result table {
  float: left;
  width: 100%;
  border-collapse: collapse;
}
.cb-result tbody {
  width: 100%;
}
.cb-result th {
  padding-top: 20px;
  font-size: 24px;
  line-height: 1;
  text-align: left;
}
.cb-result th:first-child {
  padding-right: 40px;
  width: 80px;
}
.cb-result td {
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cb-result th,
.cb-result td {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .cb-result {
    font-size: 14px;
  }
  .cb-result th {
    padding-top: 10px;
    font-size: 18px;
  }
  .cb-result th:first-child {
    padding-right: 10px;
    width: 54px;
  }
  .cb-result td {
    padding-bottom: 10px;
    padding-top: 5px;
  }
}
.unit.form form {
  float: left;
  width: 100%;
}
.cb-form-required {
  float: left;
  width: 100%;
}
.unit.form fieldset {
  float: left;
  width: 100%;
  position: relative;
}
.unit.form div.ctrl {
  float: left;
  width: 100%;
}
.unit.form div.ctrl.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
@media (min-width: 768px) {
  .unit.form .tile div.ctrl {
    float: right;
    width: 66%;
  }
}
.unit.form .name {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .unit.form .tile .name {
    padding-bottom: 0;
    width: 30%;
    min-height: 40px;
  }
}
.unit.form input.text,
.unit.form textarea {
  float: left;
  width: 100%;
  box-sizing: border-box;
  background: #F0F0F0;
  min-height: 40px;
  padding: 5px 10px;
  appearance: none;
}
.unit.form input.text.fail,
.unit.form textarea.fail {
  background-color: #e7bcbc;
}
.unit.form textarea {
  padding: 10px;
}
@media (min-width: 768px) {
  .unit.form .tile input.text,
  .unit.form .tile textarea {
    float: right;
    width: 66%;
  }
}
.unit.form div.tick div.ctrl > div {
  float: left;
  width: 100%;
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile div.ctrl > div {
    min-height: 40px;
    align-items: center;
  }
}
.unit.form div.tick label {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.unit.form div.tick input {
  float: left;
  margin-right: 10px;
  flex-shrink: 0;
  width: 20px;
}
@media (min-width: 768px) {
  .unit.form div.tick.tile input {
    align-self: stretch;
  }
}
.unit.form select {
  float: left;
  width: 100%;
  font-family: 'Stolzl', sans-serif;
  font-size: clamp(0.875rem, 0.42060988vw + 0.7716877rem, 1.125rem);
  line-height: clamp(1.5rem, 0.42060988vw + 1.3966877rem, 1.75rem);
  background: #F0F0F0;
  height: 40px;
  border: 1px solid var(--textColor);
  padding: 5px;
}
.unit.form .ship fieldset > div {
  float: left;
  width: 100%;
}
.unit.form .ship fieldset > div.fail {
  box-sizing: border-box;
  padding: 5px;
  background-color: #e7bcbc;
}
.unit.form .ship div.chop {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.unit.form .ship div.chop input {
  float: left;
  width: 100%;
  display: block;
  font-size: 12px;
}
.unit.form .ship div.chop span {
  float: left;
}
.unit.form .ship div.chop span::file-selector-button {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: 16px;
}
.unit.form .ship div.chop span::file-selector-button:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.unit.form .ship div.chop span::file-selector-button:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .unit.form .ship div.chop span::file-selector-button:hover,
  .unit.form .ship div.chop span::file-selector-button:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .unit.form .ship div.chop span::file-selector-button:hover:before,
  .unit.form .ship div.chop span::file-selector-button:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .unit.form .ship div.chop span::file-selector-button:hover:after,
  .unit.form .ship div.chop span::file-selector-button:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .unit.form .ship div.chop span::file-selector-button {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .unit.form .ship div.chop span::file-selector-button:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.unit.form .ship div.chop a {
  float: left;
  display: block;
  margin-left: 10px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  width: 12px;
  height: 12px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-cross-black.svg);
}
@media (min-width: 768px) {
  .unit.form .ship.tile fieldset > div {
    float: right;
    width: 66%;
    min-height: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
}
.unit.form .submit {
  float: right;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.unit.form .submit:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.unit.form .submit:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .unit.form .submit:hover,
  .unit.form .submit:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .unit.form .submit:hover:before,
  .unit.form .submit:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .unit.form .submit:hover:after,
  .unit.form .submit:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .unit.form .submit {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .unit.form .submit:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.calendar {
  position: absolute !important;
  z-index: 2;
  left: 34% !important;
  top: 100% !important;
  right: unset !important;
  background: #fff;
  width: 200px;
  margin: 10px 0 0 0 !important;
  box-shadow: 0 0 6px rgba(160, 160, 160, 0.4);
  font-size: 14px;
  line-height: 1.14285714;
  padding: 20px;
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.calendar th,
.calendar td {
  text-align: center;
  padding: 2px;
}
.calendar tr.month th {
  padding-bottom: 10px;
}
.calendar tr.month th:first-child a,
.calendar tr.month th:last-child a {
  float: left;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-arrow-left-black.svg);
}
.calendar tr.month th:last-child a {
  float: right;
  background-image: url(/images/cb-default/cb-arrow-right-black.svg);
}
.calendar td.today a {
  color: var(--textColor);
  text-decoration: underline;
}
.unit.form .recaptcha-info {
  color: #aaa;
}
.unit.form .recaptcha-info a {
  color: #aaa;
}
.unit.form .recaptcha-info a:hover,
.unit.form .recaptcha-info a:focus {
  text-decoration: underline;
}
.unit.form .part.fail {
  font-size: 16px;
  line-height: 1.25;
  border-left: 4px solid #ae2121;
  box-sizing: border-box;
  padding: 20px;
  background-color: #e7bcbc;
  color: #ae2121;
}
.unit.form div.cb-form-sent {
  float: left;
  width: 100%;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
}
.unit.form div.cb-form-sent a {
  float: right;
  color: #5abb55;
}
#disp.two-step-verification div.body {
  overflow: hidden;
}
#disp.two-step-verification p {
  float: left;
  width: 100%;
}
.two-step-verification-container {
  float: left;
  width: 100%;
  min-width: 300px;
  margin-top: 10px;
  height: 350px;
  position: relative;
}
.two-step-verification-container a {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.two-step-verification-container a:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.two-step-verification-container a:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .two-step-verification-container a:hover,
  .two-step-verification-container a:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .two-step-verification-container a:hover:before,
  .two-step-verification-container a:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .two-step-verification-container a:hover:after,
  .two-step-verification-container a:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .two-step-verification-container a {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .two-step-verification-container a:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.two-step-verification__div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  background-size: 100px 100px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/cb-default/cb-loader-black.svg);
}
.two-step-verification-container.loaded .two-step-verification__div {
  background-image: none;
}
.table {
  float: left;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.table-layout-fixed .table {
  table-layout: fixed;
}
.table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-head tr {
  border-top: none;
}
.table th {
  font-weight: normal;
  padding: 5px 10px;
  vertical-align: top;
}
.table th.init {
  padding-left: 0;
}
.table th.exit {
  padding-right: 0;
}
.table th.align-left {
  text-align: left;
}
.table th.align-center {
  text-align: center;
}
.table th.align-right {
  text-align: right;
}
.table--headline th {
  font-weight: bold;
}
.table td {
  padding: 5px 10px;
  vertical-align: top;
}
.table td.init {
  padding-left: 0;
}
.table td.exit {
  padding-right: 0;
}
.table td.align-left {
  text-align: left;
}
.table td.align-center {
  text-align: center;
}
.table td.align-right {
  text-align: right;
}
#edit .table td {
  border-left: 1px dashed #e0e0e0;
  border-right: 1px dashed #e0e0e0;
}
.table--footer .table-foot td {
  font-weight: bold;
}
@media (max-width: 767px) {
  .part--table .table {
    font-size: 2.60756193vw;
  }
}
html,
body {
  float: left;
  width: 100%;
  min-height: 100vh;
}
.logo--head {
  float: left;
}
.logo--foot {
  float: right;
}
.logo__image {
  width: auto;
  height: 100%;
}
#head {
  float: left;
  width: 100%;
}
.wrapper {
  float: left;
  width: 100%;
  min-height: 100vh;
  background-color: #FFFFED;
  font-family: 'Stolzl', sans-serif;
  font-size: clamp(0.875rem, 0.42060988vw + 0.7716877rem, 1.125rem);
  line-height: clamp(1.5rem, 0.42060988vw + 1.3966877rem, 1.75rem);
  color: var(--textColor);
  accent-color: #0FEF37;
  overflow: hidden;
  hyphens: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-font-smoothing: antialiased;
}
body:not(.layout1, .layout5) .wrapper {
  box-sizing: border-box;
  padding-top: calc(var(--headerHeight) + var(--deskSpace));
}
@media (max-width: 767px) {
  body:not(.layout1, .layout5) .wrapper {
    padding-top: calc(var(--headerHeight) + 48px);
  }
}
.desk {
  *zoom: 1;
  margin: 0 auto;
  max-width: var(--deskMaxWidth);
  width: var(--deskWidth);
  position: relative;
}
.desk:before,
.desk:after {
  display: table;
  content: '';
}
.desk:after {
  clear: both;
}
.container {
  float: left;
  width: 100%;
  position: relative;
}
.section {
  float: left;
  width: 100%;
  position: relative;
}
.section--capriDark {
  --textColor: #A8D1FF;
  --linkColor: #A8D1FF;
  background-color: #0C2745;
}
.section--grasLight {
  background-color: #CDFF9C;
  --btnBackgroundHover: #183D41;
  --btnColorHover: #0FEF37;
}
.section--header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}
.container--head {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}
main {
  float: left;
  width: 100%;
  flex: 1 0;
}
.section--multimood {
  background-color: #0C2745;
}
.container--mood {
  --textColor: #FFFFED;
  --linkColor: #FFFFED;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  height: 100svh;
}
.mood__content {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  margin-bottom: 30px;
}
.mood__image {
  float: left;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50vw);
  top: 0;
  z-index: -1;
}
.mood__video {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.container--moodTitle {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 40px;
}
@media (max-width: 1023px) {
  .container--moodTitle {
    gap: 0 20px;
  }
}
.moodTitle__icon {
  float: left;
  --fluidSize: clamp(4.125rem, 8.30704522vw + 2.08458202rem, 9.0625rem);
  width: var(--fluidSize);
  height: var(--fluidSize);
  background-color: #0FEF37;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: var(--moodTitleIcon, url(/images/icon-moodtitle-01.svg));
          mask-image: var(--moodTitleIcon, url(/images/icon-moodtitle-01.svg));
}
.moodTitle__icon--two {
  --moodTitleIcon: url(/images/icon-moodtitle-02.svg);
}
.moodTitle__icon--three {
  --moodTitleIcon: url(/images/icon-moodtitle-03.svg);
}
.animatedTitles {
  float: left;
  flex-grow: 1;
  position: relative;
  height: var(--fluidSize);
  --fluidSize: clamp(4.6875rem, 8.09674027vw + 2.69873817rem, 9.5rem);
}
@media (max-width: 1300px) {
  .animatedTitles {
    width: 100%;
  }
}
.animatedTitles--icon {
  width: var(--fluidSize);
  flex-grow: unset;
}
.animatedTitle {
  float: left;
  position: absolute;
  left: 0;
  overflow: hidden;
}
.animatedTitle h1 {
  transform: translateY(100%);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: flex;
  gap: 10px;
}
.animatedTitle--one h1 {
  animation: slideFade 8s infinite;
  animation-delay: 0s;
}
.animatedTitle--two h1 {
  animation: slideFade 8s infinite;
  animation-delay: 2s;
}
.animatedTitle--three h1 {
  animation: slideFadeLong 8s infinite;
  animation-delay: 4s;
}
@keyframes slideFade {
  0% {
    transform: translateY(100%);
  }
  5% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slideFadeLong {
  0% {
    transform: translateY(100%);
  }
  5% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.downlink {
  float: left;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
}
.downlink:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 27px;
  height: 19px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/eyes.svg);
}
.downlink:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 2px;
  background-size: 100% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(/images/pupils.svg);
  width: 19px;
  height: 8px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .downlink:before {
    width: 22px;
    height: 16px;
  }
  .downlink:after {
    width: 15px;
    height: 6px;
  }
}
@media (min-width: 768px) {
  .downlink:hover:after,
  .downlink:focus:after {
    left: 4px;
    top: 13px;
  }
}
.container--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
  margin-top: 151px;
  margin-bottom: 191px;
}
@media (max-width: 1023px) {
  .container--cta {
    margin-top: 189px;
    margin-bottom: 189px;
  }
}
@media (max-width: 767px) {
  .container--cta {
    gap: 42px;
    margin-top: 159px;
    margin-bottom: 159px;
  }
}
.cta__title {
  float: left;
  width: 100%;
  max-width: 1112px;
  font-size: clamp(2.625rem, 4.83701367vw + 1.43690852rem, 5.5rem);
  line-height: clamp(3.0625rem, 5.04731861vw + 1.82275237rem, 6.0625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
  text-align: center;
  text-transform: unset;
}
.cta__image {
  display: inline-block;
  width: 88px;
  height: 88px;
  margin-top: -9px;
  margin-left: 26px;
  margin-right: 26px;
  border-radius: 1000px;
  transform: translateY(10%);
  overflow: hidden;
}
.cta__image * {
  height: 100%;
}
.cta__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.cta__image .placeholder {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .cta__image {
    width: 64px;
    height: 64px;
    margin-top: -8px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .cta__image {
    width: 54px;
    height: 54px;
    margin-top: -10px;
    margin-left: 6px;
    margin-right: 6px;
  }
}
.cta__links {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 36px;
}
@media (max-width: 767px) {
  .cta__links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.cbdModule--ctaLinkOne,
.cbdModule--ctaLinkTwo {
  width: auto;
}
.ctaLink {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ctaLink:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ctaLink:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .ctaLink:hover,
  .ctaLink:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .ctaLink:hover:before,
  .ctaLink:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .ctaLink:hover:after,
  .ctaLink:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .ctaLink {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .ctaLink:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.footarea {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footunit {
  float: left;
  width: 100%;
}
.footunit--one {
  display: flex;
  gap: 40px;
}
.footunit--two {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--textColor);
}
.footpart {
  float: left;
}
.footunit--one .footpart--one {
  display: flex;
}
.footunit--two .footpart--one {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
.unit--footLinks {
  width: auto;
  --spacePart: 0;
}
#edit .unit--footLinks {
  min-width: 50px;
  outline-color: var(--textColor);
  min-height: 20px;
}
.unit--footLinks .unit__body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.unit--footLinks .part .open {
  float: left;
  font-family: inherit;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.4375rem, 0.21030494vw + 1.38584385rem, 1.5625rem);
  background-size: 100% 1px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 768px) {
  .unit--footLinks .part .open:hover,
  .unit--footLinks .part .open:focus {
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
.vcard--foot {
  float: left;
  display: flex;
  flex-direction: row;
  gap: 100px;
  color: var(--textColor);
}
.vcard--foot .contact,
.vcard--foot .adr {
  float: left;
}
.vcard--foot .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.vcard--foot a {
  float: left;
  font-family: inherit;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.4375rem, 0.21030494vw + 1.38584385rem, 1.5625rem);
  background-size: 100% 1px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 768px) {
  .vcard--foot a:hover,
  .vcard--foot a:focus {
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
@media (max-width: 1023px) {
  .vcard--foot {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .vcard--foot {
    gap: 22px;
  }
}
.unit--legal {
  width: auto;
  --spacePart: 0;
}
#edit .unit--legal {
  min-width: 50px;
  outline-color: var(--textColor);
  min-height: 20px;
}
.unit--legal .unit__body {
  display: flex;
  gap: 40px;
}
.unit--legal .part {
  width: auto;
}
.unit--legal .part .open {
  float: left;
  font-family: inherit;
  font-size: clamp(0.75rem, 0.21030494vw + 0.69834385rem, 0.875rem);
  line-height: clamp(1.125rem, 0.21030494vw + 1.07334385rem, 1.25rem);
  background-size: 0 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .unit--legal .part .open:hover,
  .unit--legal .part .open:focus {
    background-size: 100% 1px;
  }
}
@media (max-width: 767px) {
  .unit--legal .unit__body {
    gap: 16px;
  }
}
.meta.auth {
  float: left;
  font-family: inherit;
  font-size: clamp(0.75rem, 0.21030494vw + 0.69834385rem, 0.875rem);
  line-height: clamp(1.125rem, 0.21030494vw + 1.07334385rem, 1.25rem);
  background-size: 0 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .meta.auth:hover,
  .meta.auth:focus {
    background-size: 100% 1px;
  }
}
.focus-overlay {
  display: none;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 0 22px #0FEF37;
  transition: all 0.2s cubic-bezier(0, 1, 0, 1);
  border-radius: 5px;
}
.focus-overlay.focus-overlay-active {
  display: block;
}
a {
  color: var(--linkColor);
  text-decoration: none;
}
body.layout1 h1 {
  font-size: clamp(4.25rem, 6.20399579vw + 2.72614353rem, 7.9375rem);
  line-height: clamp(4.75rem, 7.9915878vw + 2.78706625rem, 9.5rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
body:not(.layout1) h1 {
  font-size: clamp(2.625rem, 4.83701367vw + 1.43690852rem, 5.5rem);
  line-height: clamp(3.0625rem, 5.04731861vw + 1.82275237rem, 6.0625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  h1 {
    hyphens: auto;
  }
}
h2 {
  font-size: clamp(2rem, 1.89274448vw + 1.53509464rem, 3.125rem);
  line-height: clamp(2.5rem, 1.78759201vw + 2.06092271rem, 3.5625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
}
h3 {
  font-size: clamp(1.5rem, 0.7360673vw + 1.31920347rem, 1.9375rem);
  line-height: clamp(2rem, 1.05152471vw + 1.74171924rem, 2.625rem);
  color: var(--textColor);
  font-weight: bold;
}
h4 {
  font-size: clamp(0.875rem, 0.42060988vw + 0.7716877rem, 1.125rem);
  line-height: clamp(1.5rem, 0.42060988vw + 1.3966877rem, 1.75rem);
  color: var(--textColor);
  font-weight: bold;
}
.loud {
  font-size: clamp(1.375rem, 0.63091483vw + 1.22003155rem, 1.75rem);
  line-height: clamp(2rem, 1.26182965vw + 1.69006309rem, 2.75rem);
  color: var(--textColor);
}
.norm {
  color: var(--textColor);
}
.pale {
  font-size: clamp(0.625rem, 0.21030494vw + 0.57334385rem, 0.75rem);
  line-height: clamp(1rem, 0.42060988vw + 0.8966877rem, 1.25rem);
  color: var(--textColor);
  font-weight: bold;
}
#head .star,
.area--one .unitOne .star,
.area--one .unitTwo .star,
.area--one .unitThree .star {
  font-family: 'Noto Emoji', sans-serif;
  color: var(--emojiColor);
  line-height: 0;
}
.area--one .unitFour .pale .star {
  display: inline-block;
  padding: 4px 8px 0;
  color: var(--textColor);
  background-color: var(--blogCategoryBackground);
  margin-right: 13px;
}
.area--two .unit .norm .star,
.part--functionFlags .star {
  display: inline-block;
  font-size: clamp(0.625rem, 0.21030494vw + 0.57334385rem, 0.75rem);
  line-height: clamp(1rem, 0.42060988vw + 0.8966877rem, 1.25rem);
  font-weight: bold;
  color: var(--textColor);
  padding: 3px 7px 0;
  border: 1px solid var(--textColor);
}
.area--one .unitFolding .star {
  font-size: clamp(0.625rem, 0.21030494vw + 0.57334385rem, 0.75rem);
  line-height: clamp(1rem, 0.42060988vw + 0.8966877rem, 1.25rem);
  font-weight: bold;
  color: var(--textColor);
}
.area--one {
  margin-top: calc((var(--verticalSpaceLarge) - var(--spaceTotal)));
  margin-bottom: calc((var(--verticalSpaceLarge) - var(--spaceTotal)));
}
.area--one.area1 {
  margin-top: 0;
}
.area--one.area--masonry {
  margin: 0;
}
.layout1 .area1.area--one {
  margin-bottom: var(--spaceTotal);
}
.area--one .unitTwo .unit__body {
  box-sizing: border-box;
}
.area--one .unitThree {
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
  isolation: isolate;
}
.area--one .unitThree:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.area--one .unitThree--bgPink {
  --textColor: #341340;
  --linkColor: #341340;
  --emojiColor: #FFB4EF;
}
.area--one .unitThree--bgPink:before {
  background-color: #FF42CA;
}
.area--one .unitThree--bgPinkDark {
  --textColor: #fff;
  --linkColor: #fff;
  --emojiColor: #FF42CA;
}
.area--one .unitThree--bgPinkDark:before {
  background-color: #341340;
}
.area--one .unitThree .unit__background {
  overflow: hidden;
}
.area--one .unitThree .unit__background * {
  height: 100%;
}
.area--one .unitThree .unit__background img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitThree .unit__background .placeholder {
  padding-bottom: 0;
}
.area--one .unitThree .unit__background img {
  height: 120% !important;
  max-height: 120% !important;
}
.area--one .unitThree .unit__content {
  padding: calc(80px - var(--spacePart)) 0;
}
.area--one .unitThree .unit__body {
  display: grid;
  gap: 0 var(--gridGap);
}
.area--one .unitThree .part:first-child {
  margin-bottom: calc(var(--spacePart) * 2);
}
.area--one .unitThree + .unitThree {
  margin-top: calc(var(--spaceTotal) * -1);
}
.area--one .unitFour {
  --spacePart: 6px;
}
.area--one .unitFour--categoryOne {
  --blogCategoryBackground: #1646FE;
}
.area--one .unitFour--categoryOne .pale .star {
  --textColor: #FFFFED;
}
.area--one .unitFour--categoryTwo {
  --blogCategoryBackground: #FF42CA;
}
.area--one .unitFour--categoryTwo .pale .star {
  --textColor: #FFFFED;
}
.area--one .unitFour--categoryThree {
  --blogCategoryBackground: #FF5E1E;
}
.area--one .unitFour--categoryThree .pale .star {
  --textColor: #FFFFED;
}
.area--one .unitFour--categoryFour {
  --blogCategoryBackground: #0FEF37;
}
.area--one .unitFour--categoryFour .pale .star {
  --textColor: #183D41;
}
.area--one .unitFour--categoryFive {
  --blogCategoryBackground: #A8D1FF;
}
.area--one .unitFour--categoryFive .pale .star {
  --textColor: #183D41;
}
.area--one .unitFour .part.pict:first-child {
  aspect-ratio: 1.77021277;
}
.area--one .unitFour .part.pict:first-child * {
  height: 100%;
}
.area--one .unitFour .part.pict:first-child img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitFour .part.pict:first-child .placeholder {
  padding-bottom: 0;
}
@supports not (aspect-ratio: 416 /  235) {
  .area--one .unitFour .part.pict:first-child:before {
    float: left;
    padding-top: 56.49038462%;
    content: '';
  }
  .area--one .unitFour .part.pict:first-child:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitFour.unit--isAnchor .part.pict {
  overflow: hidden;
}
.area--one .unitFour.unit--isAnchor .part.pict img {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.area--one .unitFour.unit--isAnchor h3 {
  display: inline;
  background-size: 0 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--textColor), var(--textColor));
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .area--one .unitFour.unit--isAnchor:hover .part.pict img {
    transform: scale(1.015);
  }
  .area--one .unitFour.unit--isAnchor:hover h3 {
    background-size: 100% 2px;
  }
}
.area--one .unitFolding {
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
}
.area--one .unitFolding .unit__content {
  border-top: 1px solid var(--textColor);
  border-bottom: 1px solid var(--textColor);
  box-sizing: border-box;
  padding: var(--spacePart) 0;
}
.area--one .unitFolding div.more {
  display: block !important;
  box-sizing: border-box;
}
#view .area--one .unitFolding div.more {
  height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#view .area--one .unitFolding div.more .part {
  opacity: 0;
  transform: translateY(-25px);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.area--one .unitFolding div.more .part:first-child {
  margin-top: 0;
}
.area--one .unitFolding .fold-toggle {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(1.375rem, 0.63091483vw + 1.22003155rem, 1.75rem);
  line-height: clamp(2rem, 1.26182965vw + 1.69006309rem, 2.75rem);
  color: var(--textColor);
  box-sizing: border-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.area--one .unitFolding .fold-toggle .star {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.area--one .unitFolding .fold-toggle:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0FEF37;
  transform: translateY(-50%);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
  color: var(--textColor);
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#FF5E1E, #FF5E1E);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .area--one .unitFolding .fold-toggle:hover {
    gap: 0 33px;
  }
  .area--one .unitFolding .fold-toggle:hover:after {
    background-size: 100% 100%;
  }
}
.area--one .unitFolding .fold-toggle--open:after {
  content: '-';
  background-color: #FF5E1E;
}
#view .area--one .unitFolding.unit--foldOpen div.more {
  height: var(--js-elementHeight);
}
#view .area--one .unitFolding.unit--foldOpen div.more .part {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s 0.2s;
}
.area--one .unitFolding .unit__foot {
  display: none;
}
.area--one .unitFolding + .unitFolding {
  margin-top: calc((var(--spaceTotal) + 1px) * -1);
}
.area--one .unitFolding + .unitFolding .unit__content {
  border-top: none;
}
.area--one .unitTeam div.more {
  display: block !important;
  --textColor: #4A1624;
  --linkColor: #4A1624;
  margin-top: var(--spacePart);
  margin-bottom: var(--spacePart);
  box-sizing: border-box;
  position: relative;
  hyphens: auto;
  background-color: #FDD6BA;
  transform-origin: bottom left;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#view .area--one .unitTeam div.more {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  overflow-y: scroll;
  transform: scale(0);
}
#view .area--one .unitTeam div.more .part {
  opacity: 0;
  transform: translateX(-25px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.area--one .unitTeam div.less .part.pict:first-child {
  aspect-ratio: 416 / 565;
  height: var(--js-elementHeight);
}
.area--one .unitTeam.unit--foldOpen div.more {
  pointer-events: all;
}
#view .area--one .unitTeam.unit--foldOpen div.more {
  transform: scale(1);
}
#view .area--one .unitTeam.unit--foldOpen div.more .part {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.area--one .unitTeam:not(:has(.less .part.pict:first-child)) div.ctrl {
  display: none;
}
.area--one .unitTeam div.ctrl {
  width: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.area--one .unitTeam div.ctrl .link {
  font-size: 0;
  overflow: hidden;
  text-indent: 101%;
  color: transparent;
  float: left;
  position: relative;
  background-color: #0FEF37;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#FF5E1E, #FF5E1E);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
}
.area--one .unitTeam div.ctrl .link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--textColor);
  text-indent: 0;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
}
.area--one .unitTeam div.ctrl .link.less {
  background-color: #FF5E1E;
}
.area--one .unitTeam div.ctrl .link.less:before {
  content: '-';
}
.area--one .unitTeam div.ctrl .link.more:before {
  content: '+';
}
@media (min-width: 768px) {
  .area--one .unitTeam div.ctrl .link:hover {
    background-size: 100% 100%;
  }
}
.area--one .unitTeam .part.pict:first-child * {
  height: 100%;
}
.area--one .unitTeam .part.pict:first-child img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitTeam .part.pict:first-child .placeholder {
  padding-bottom: 0;
}
.area--one .unitQuote {
  text-align: center;
}
.area--one .unitQuote .unit__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area--one .unitQuote .part--image {
  width: 88px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1000px;
}
.area--one .unitQuote .part--image * {
  height: 100%;
}
.area--one .unitQuote .part--image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitQuote .part--image .placeholder {
  padding-bottom: 0;
}
@supports not (aspect-ratio: 1 /  1) {
  .area--one .unitQuote .part--image:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .area--one .unitQuote .part--image:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitQuote .part--author {
  margin-top: 0;
}
.area--one .unitGallery {
  --spacePart: 0;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-top: calc(var(--verticalSpaceLarge) - var(--spaceTotal));
  margin-bottom: calc(var(--verticalSpaceLarge) - var(--spaceTotal));
}
.area--one .unitGallery .part * {
  height: 100%;
}
.area--one .unitGallery .part img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitGallery .part .placeholder {
  padding-bottom: 0;
}
.area--one .unitSlider {
  margin-top: calc(var(--verticalSpaceLarge) - var(--spaceTotal));
  margin-bottom: calc(var(--verticalSpaceLarge) - var(--spaceTotal));
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.area--one .unitVideo {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-top: var(--spaceTotal);
  margin-bottom: var(--spaceTotal);
}
.area--one .unit--spaceTopLarge {
  margin-top: calc((var(--verticalSpaceLarge) - var(--spacePart)));
}
.area--one .unit--spaceTopLarge.unitThree,
.area--one .unit--spaceTopLarge.unitFolding,
.area--one .unit--spaceTopLarge.unitunitGallery,
.area--one .unit--spaceTopLarge.unitSlider {
  margin-top: var(--verticalSpaceLarge);
}
.area--one .unit--spaceBottomLarge {
  margin-bottom: calc((var(--verticalSpaceLarge) - var(--spacePart)));
}
.area--one .unit--spaceTopNone {
  margin-top: 0;
}
.area--one .unit--spaceBottomNone {
  margin-bottom: 0;
}
.area--two {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc((var(--verticalSpaceLarge) - var(--spaceTotal)));
}
.layout1 .area--two {
  margin-bottom: 0;
}
.layout2 .area--two {
  margin-bottom: var(--verticalSpaceLarge);
}
.layout6 .area--two {
  margin-bottom: 0;
}
#view.area3--empty.layout6 .area--two {
  margin-bottom: var(--verticalSpaceLarge);
}
.area--two .unit {
  margin: 0;
}
.area--two .unit .unit__body {
  box-sizing: border-box;
  padding: 0 var(--deskSpace);
}
.area--two .unit .part:first-child {
  margin-top: 0;
}
.area--two .unit .part:last-child {
  margin-bottom: 0;
}
.area--two .unit .part.pict:first-child,
.area--two .unit .part.film:first-child {
  width: calc(100% + (var(--deskSpace) * 2));
  margin-left: calc(var(--deskSpace) * -1);
}
.area--two .unit .part.pict:first-child *,
.area--two .unit .part.film:first-child * {
  height: 100%;
}
.area--two .unit .part.pict:first-child img,
.area--two .unit .part.film:first-child img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--two .unit .part.pict:first-child .placeholder,
.area--two .unit .part.film:first-child .placeholder {
  padding-bottom: 0;
}
.area--two .unit .part.pict:first-child video,
.area--two .unit .part.film:first-child video {
  object-fit: cover;
}
.area--two .unit .star {
  margin-right: 15px;
}
.area--two .unit.unit--isAnchor .part.pict:first-child,
.area--two .unit.unit--isAnchor .part.film:first-child {
  overflow: hidden;
}
.area--two .unit.unit--isAnchor .part.pict:first-child img,
.area--two .unit.unit--isAnchor .part.film:first-child img,
.area--two .unit.unit--isAnchor .part.pict:first-child video,
.area--two .unit.unit--isAnchor .part.film:first-child video {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .area--two .unit.unit--isAnchor:hover .part.pict:first-child img,
  .area--two .unit.unit--isAnchor:hover .part.film:first-child img,
  .area--two .unit.unit--isAnchor:hover .part.pict:first-child video,
  .area--two .unit.unit--isAnchor:hover .part.film:first-child video {
    transform: scale(1.015);
  }
}
.area .part.link--button .open {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.area .part.link--button .open:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.area .part.link--button .open:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .area .part.link--button .open:hover,
  .area .part.link--button .open:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .area .part.link--button .open:hover:before,
  .area .part.link--button .open:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .area .part.link--button .open:hover:after,
  .area .part.link--button .open:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .area .part.link--button .open {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .area .part.link--button .open:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.area .part.link--linkArrow .open {
  display: inline;
  font-size: clamp(2rem, 1.89274448vw + 1.53509464rem, 3.125rem);
  line-height: clamp(2.5rem, 1.78759201vw + 2.06092271rem, 3.5625rem);
  color: var(--textColor);
  text-transform: lowercase;
  background-size: 100% 2px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  padding-left: 45px;
}
.area .part.link--linkArrow .open:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  --fluidSize: clamp(1.625rem, 1.05152471vw + 1.36671924rem, 2.25rem);
  width: var(--fluidSize);
  aspect-ratio: 1.22580645;
  background-color: var(--linkColor);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
}
@supports not (aspect-ratio: 38 /  31) {
  .area .part.link--linkArrow .open:before:before {
    float: left;
    padding-top: 81.57894737%;
    content: '';
  }
  .area .part.link--linkArrow .open:before:after {
    display: block;
    content: '';
    clear: both;
  }
}
@media (max-width: 1023px) {
  .area .part.link--linkArrow .open {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .area .part.link--linkArrow .open {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  .area .part.link--linkArrow .open:hover,
  .area .part.link--linkArrow .open:focus {
    animation-name: lineAnimation2;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
.area .part.text .open:not(.fold-toggle) {
  background-size: 100% 1px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
}
@media (min-width: 768px) {
  .area .part.text .open:not(.fold-toggle):hover,
  .area .part.text .open:not(.fold-toggle):focus {
    color: inherit;
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
.part--functionFlags {
  font-size: clamp(0.625rem, 0.21030494vw + 0.57334385rem, 0.75rem);
  line-height: clamp(1rem, 0.42060988vw + 0.8966877rem, 1.25rem);
  color: var(--textColor);
  font-weight: bold;
}
.part--functionFlags .part__content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#view #head,
#view .container--moodTitle {
  opacity: 0;
  transform: scaleY(0.9) translateY(50px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
#view #head.is-intersecting,
#view .container--moodTitle.is-intersecting {
  opacity: 1;
  transform: scaleY(1) translateY(0);
}
#view .unit:not(.unitVideo,.unit--standaloneLinks) {
  opacity: 0;
  transform: scaleY(0.9) translateY(50px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
#view .unit:not(.unitVideo,.unit--standaloneLinks).is-intersecting {
  opacity: 1;
  transform: scaleY(1) translateY(0);
}
div.navi {
  float: left;
}
div.navi > .item {
  float: left;
}
div.navi > .item > .menu {
  display: block;
}
.togglenavigation {
  float: left;
  cursor: pointer;
  z-index: 2001;
  position: fixed;
  top: var(--deskSpace);
  left: var(--deskSpace);
  box-sizing: border-box;
  padding: 13px 44px 10px 25px;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
  color: #183D41;
  background-color: #0FEF37;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#183D41, #183D41);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.togglenavigation:before {
  content: 'Menu';
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.togglenavigation:after {
  content: '+';
  position: absolute;
  right: 25px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .togglenavigation:hover,
  .togglenavigation:focus {
    color: #0FEF37;
    background-size: 100% 100%;
  }
}
.cb-toggle-target-active .togglenavigation {
  color: #FF5E1E;
  background-color: #4A1624;
  background-image: linear-gradient(#4A1624, #4A1624);
}
.cb-toggle-target-active .togglenavigation:before {
  content: 'Close';
}
.cb-toggle-target-active .togglenavigation:after {
  content: '-';
}
@media (max-width: 767px) {
  .togglenavigation {
    padding: 9px 34px 7px 17px;
  }
  .togglenavigation:after {
    right: 17px;
  }
}
.navigationWrapper {
  --textColor: #4A1624;
  --linkColor: #4A1624;
  --btnBackground: #FDD6BA;
  --btnBackgroundHover: #FF5E1E;
  --btnColor: #4A1624;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 2000;
  overflow: hidden;
  overflow-y: auto;
  background-color: transparent;
  transition: all 0s 0.5s, background 0.5s;
}
body.cb-toggle-target-active .navigationWrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background 0.6s;
}
.navigation {
  float: left;
  position: absolute;
  left: var(--deskSpace);
  top: var(--deskSpace);
  background-color: #FFFFED;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s 0.1s;
}
body.cb-toggle-target-active .navigation {
  width: 1112px;
  height: var(--js-elementHeight);
  transition: all 0.6s;
}
@media (max-width: 1208px) {
  body.cb-toggle-target-active .navigation {
    width: calc(100vw - (var(--deskSpace) * 2));
  }
}
.navigation__content {
  float: left;
  width: 1112px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0 var(--gridGap);
  align-items: flex-end;
  box-sizing: border-box;
  padding: 104px 116px;
}
@media (max-width: 1208px) {
  .navigation__content {
    width: calc(100vw - (var(--deskSpace) * 2));
  }
}
@media (max-width: 1023px) {
  .navigation__content {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 767px) {
  .navigation__content {
    gap: 40px;
    padding: 96px 40px 40px;
  }
}
.navigation__part {
  float: left;
  width: 100%;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.2s;
}
.cb-toggle-target-active .navigation__part {
  opacity: 1;
  transform: translateX(0);
}
.navigation__part--navi {
  grid-column: span 6;
}
.cb-toggle-target-active .navigation__part--navi {
  transition: all 0.6s 0.3s;
}
.navigation__part--address {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 38px;
  grid-column: span 4;
}
body.cb-toggle-target-active .navigation__part--address {
  transition: all 0.6s 0.4s;
}
@media (max-width: 1023px) {
  .navigation__part--address {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .navigation__part--address {
    gap: 24px;
  }
}
.vcard--navi {
  float: left;
  width: 100%;
  color: var(--textColor);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.vcard--navi .adr {
  float: left;
}
.vcard--navi .contact {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.vcard--navi a {
  float: left;
  font-family: inherit;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.4375rem, 0.21030494vw + 1.38584385rem, 1.5625rem);
  background-size: 100% 1px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 768px) {
  .vcard--navi a:hover,
  .vcard--navi a:focus {
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
@media (max-width: 1023px) {
  .vcard--navi {
    order: 2;
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .vcard--navi {
    width: 100%;
    gap: 24px;
  }
  .vcard--navi .contact {
    flex-direction: row;
  }
}
.navigation .unit--footLinks {
  width: 100%;
}
@media (max-width: 1023px) {
  .navigation .unit--footLinks {
    order: 2;
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .navigation .unit--footLinks {
    width: 100%;
  }
  .navigation .unit--footLinks .unit__body {
    flex-direction: row;
  }
  .navigation .unit--footLinks .part {
    width: auto;
  }
}
.homelink {
  float: left;
  width: 100%;
}
.homelink__button {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.homelink__button:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.homelink__button:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .homelink__button:hover,
  .homelink__button:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .homelink__button:hover:before,
  .homelink__button:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .homelink__button:hover:after,
  .homelink__button:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .homelink__button {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .homelink__button:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1023px) {
  .homelink {
    order: 1;
  }
}
.navigation div.navi {
  float: left;
  width: 100%;
  display: block;
  position: relative;
}
.navigation div.navi > .cb-toggle {
  display: none;
}
.navigation div.navi > .item {
  float: left;
  width: 100%;
  position: relative;
}
.navigation div.navi > .item.item-empty > .cb-toggle {
  display: none;
}
.navigation div.navi > .item > .menu {
  float: left;
}
.navigation div.sub1 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.navigation div.sub1 > .item > .menu {
  box-sizing: border-box;
  padding: 13px 24px 3px;
  color: #4A1624;
  background-color: #FF5E1E;
  font-size: clamp(2rem, 1.89274448vw + 1.53509464rem, 3.125rem);
  line-height: clamp(2.5rem, 1.78759201vw + 2.06092271rem, 3.5625rem);
  color: var(--textColor);
  font-weight: bold;
  text-transform: lowercase;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#4A1624, #4A1624);
}
.navigation div.sub1 > .item > .menu:before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 39px;
  height: 38px;
  background-color: #FF5E1E;
  opacity: 0;
  translate: -24px 0;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .navigation div.sub1 > .item > .menu:hover,
  .navigation div.sub1 > .item > .menu:focus {
    padding-left: 80px;
    color: #FF5E1E;
    background-size: 100% 100%;
  }
  .navigation div.sub1 > .item > .menu:hover:before,
  .navigation div.sub1 > .item > .menu:focus:before {
    opacity: 1;
    translate: 0 0;
  }
}
@media (max-width: 767px) {
  .navigation div.sub1 > .item > .menu {
    padding: 8px 16px 2px;
  }
}
.logo--head {
  width: 140px;
  height: 95px;
}
.logo--foot {
  height: 129px;
}
.layout2 #head,
.layout3 #head,
.layout4 #head,
.layout6 #head {
  margin-top: 138px;
  margin-bottom: var(--spacePart);
}
.layout2 #head {
  margin-bottom: 56px;
}
.container--head {
  padding: var(--deskSpace) var(--deskSpace) 0;
}
.footarea {
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.footunit--one {
  flex-direction: column;
}
.footunit--two {
  padding-top: 15px;
}
.footpart {
  width: 100%;
}
.footunit--one .footpart--one {
  flex-direction: column;
  gap: 22px;
}
.footunit--two .footpart--one {
  gap: 16px;
}
.area--one .unitOne--1-1 .unit__body,
.area--one .unitOne--1-1indentLeft .unit__body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 var(--gridGap);
}
.area--one .unitOne--1-1 .part,
.area--one .unitOne--1-1indentLeft .part {
  grid-column: span 6;
}
.area--one .unitOne--1-1 .part--1-2,
.area--one .unitOne--1-1indentLeft .part--1-2 {
  grid-column: span 6;
}
.area--one .unitOne--1-1 .part--1-3,
.area--one .unitOne--1-1indentLeft .part--1-3 {
  grid-column: span 3;
}
.area--one .uniTwo .unit__body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 var(--gridGap);
}
.area--one .uniTwo .part {
  grid-column: span 6;
}
.area--one .uniTwo .part--1-2 {
  grid-column: span 6;
}
.area--one .uniTwo .part--1-3 {
  grid-column: span 3;
}
.area--one .unitThree .unit__background {
  width: 100vw;
  margin-left: calc(var(--deskSpace) * -1);
}
@media (max-width: 1023px) {
  .area--one .unitThree .unit__background {
    aspect-ratio: 1.77828054;
  }
  @supports not (aspect-ratio: 393 /  221) {
    .area--one .unitThree .unit__background:before {
      float: left;
      padding-top: 56.23409669%;
      content: '';
    }
    .area--one .unitThree .unit__background:after {
      display: block;
      content: '';
      clear: both;
    }
  }
}
.area--one .unitThree .unit__content {
  padding: calc(80px - var(--spacePart)) 0;
}
.area--one .unitThree .unit__body {
  grid-template-columns: repeat(4, 1fr);
}
.area--one .unitThree .part {
  grid-column: 2 / span 3;
}
.area--one .unitThree .part:first-child {
  grid-column: span 4;
}
.area--one .unitFour {
  --spaceUnit: calc(26px + 6px);
}
.area--one .unitFour .part.pict:first-child {
  margin-bottom: calc(24px - var(--spacePart));
}
@media (max-width: 767px) {
  .area--one .unitFour + .unitFour {
    margin-top: 0;
  }
}
.area--one .unitFolding div.more {
  padding-left: 30px;
  padding-right: 60px;
}
.area--one .unitFolding .fold-toggle {
  min-height: 40px;
  padding-left: 30px;
  padding-right: 60px;
}
.area--one .unitFolding .fold-toggle:after {
  width: 40px;
  height: 40px;
}
.area--one .unitTeam div.more {
  padding: calc(32px - var(--spacePart)) 24px 40px;
  aspect-ratio: 0.73628319;
}
@supports not (aspect-ratio: 416 /  565) {
  .area--one .unitTeam div.more:before {
    float: left;
    padding-top: 135.81730769%;
    content: '';
  }
  .area--one .unitTeam div.more:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitTeam div.ctrl {
  --fluidSize: clamp(11.125rem, 135.97883598vw + -5.8723545rem, 59.3125rem);
  top: calc(var(--js-elementHeight) + var(--spacePart) - 40px);
}
.area--one .unitTeam div.ctrl .link {
  width: 40px;
  height: 40px;
}
.area--one .unitGallery .part--1-1 {
  aspect-ratio: 0.50775194;
}
@supports not (aspect-ratio: 393 /  774) {
  .area--one .unitGallery .part--1-1:before {
    float: left;
    padding-top: 196.94656489%;
    content: '';
  }
  .area--one .unitGallery .part--1-1:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitGallery .part--1-2 {
  aspect-ratio: 1.03149606;
}
@supports not (aspect-ratio: 393 /  381) {
  .area--one .unitGallery .part--1-2:before {
    float: left;
    padding-top: 96.94656489%;
    content: '';
  }
  .area--one .unitGallery .part--1-2:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--two {
  gap: calc(var(--spaceTotal) + var(--spacePart)) 0;
}
.area--two .unit:nth-child(4n + 1) .part.pict:first-child,
.area--two .unit:nth-child(4n + 4) .part.pict:first-child,
.area--two .unit:nth-child(4n + 1) .part.film:first-child,
.area--two .unit:nth-child(4n + 4) .part.film:first-child {
  aspect-ratio: 1;
}
@supports not (aspect-ratio: 1 /  1) {
  .area--two .unit:nth-child(4n + 1) .part.pict:first-child:before,
  .area--two .unit:nth-child(4n + 4) .part.pict:first-child:before,
  .area--two .unit:nth-child(4n + 1) .part.film:first-child:before,
  .area--two .unit:nth-child(4n + 4) .part.film:first-child:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .area--two .unit:nth-child(4n + 1) .part.pict:first-child:after,
  .area--two .unit:nth-child(4n + 4) .part.pict:first-child:after,
  .area--two .unit:nth-child(4n + 1) .part.film:first-child:after,
  .area--two .unit:nth-child(4n + 4) .part.film:first-child:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--two .unit:nth-child(4n + 2) .part.pict:first-child,
.area--two .unit:nth-child(4n + 3) .part.pict:first-child,
.area--two .unit:nth-child(4n + 2) .part.film:first-child,
.area--two .unit:nth-child(4n + 3) .part.film:first-child {
  aspect-ratio: 0.75;
}
@supports not (aspect-ratio: 3 /  4) {
  .area--two .unit:nth-child(4n + 2) .part.pict:first-child:before,
  .area--two .unit:nth-child(4n + 3) .part.pict:first-child:before,
  .area--two .unit:nth-child(4n + 2) .part.film:first-child:before,
  .area--two .unit:nth-child(4n + 3) .part.film:first-child:before {
    float: left;
    padding-top: 133.33333333%;
    content: '';
  }
  .area--two .unit:nth-child(4n + 2) .part.pict:first-child:after,
  .area--two .unit:nth-child(4n + 3) .part.pict:first-child:after,
  .area--two .unit:nth-child(4n + 2) .part.film:first-child:after,
  .area--two .unit:nth-child(4n + 3) .part.film:first-child:after {
    display: block;
    content: '';
    clear: both;
  }
}
#cb-cookie-warning {
  --textColor: #fff;
  --linkColor: #fff;
  float: left;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Stolzl', sans-serif;
  font-size: 14px;
  line-height: 1.71428571;
  color: var(--textColor);
  background-color: #183D41;
  -webkit-font-smoothing: antialiased;
}
#cb-cookie-warning a {
  background-size: 100% 1px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
}
@media (min-width: 768px) {
  #cb-cookie-warning a:hover,
  #cb-cookie-warning a:focus {
    color: inherit;
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
#cb-cookie-warning.cb-cookie-warning--hidden {
  display: none;
}
.cb-cookie-warning--container {
  float: left;
  width: var(--deskWidth);
  max-width: var(--deskMaxWidth);
  box-sizing: border-box;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cb-cookie-warning--text {
  float: left;
  width: 100%;
  text-align: center;
}
.cb-cookie-warning--actions {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .cb-cookie-warning--actions {
    gap: 15px;
  }
}
.cb-cookie-warning__button {
  --linkColor: #0FEF37;
  float: left;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.71428571;
  background-size: 100% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, var(--linkColor), var(--linkColor));
  cursor: pointer;
  color: var(--linkColor);
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .cb-cookie-warning__button:hover,
  .cb-cookie-warning__button:focus {
    animation-name: lineAnimation1;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
  }
}
.container--banner {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.section--footer .container--banner {
  margin-top: -50px;
}
.banner {
  float: left;
  width: 100vw;
  position: relative;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 8px 0;
}
.banner--sangria {
  --textColor: #4A1624;
  background-color: #FF5E1E;
  rotate: 1.77deg;
  z-index: 3;
}
.banner--pink {
  --textColor: #341340;
  background-color: #FF42CA;
  rotate: -0.25deg;
  z-index: 2;
}
.banner--gras {
  --textColor: #183D41;
  background-color: #0FEF37;
  rotate: 1.78deg;
  z-index: 1;
}
@media (max-width: 767px) {
  .banner {
    padding: 5px 0;
  }
}
.banner__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.banner__content {
  display: flex;
  align-items: center;
  gap: 15px;
  box-sizing: border-box;
  padding: 0 0 0 15px;
  white-space: nowrap;
}
#edit .banner__content {
  width: 100%;
  justify-content: center;
}
.banner .cbdModule {
  width: auto;
}
.bannerText {
  font-size: clamp(1.5rem, 0.7360673vw + 1.31920347rem, 1.9375rem);
  line-height: clamp(2rem, 1.05152471vw + 1.74171924rem, 2.625rem);
  color: var(--textColor);
  font-weight: bold;
}
.banner__icon {
  float: left;
  height: 32px;
  background-color: var(--textColor);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.banner__icon--stars {
  width: 37px;
  -webkit-mask-image: url(/images/icon-stars.svg);
          mask-image: url(/images/icon-stars.svg);
}
.banner__icon--peace {
  width: 22px;
  -webkit-mask-image: url(/images/icon-peace.svg);
          mask-image: url(/images/icon-peace.svg);
}
.banner__icon--lightning {
  width: 26px;
  -webkit-mask-image: url(/images/icon-lightning.svg);
          mask-image: url(/images/icon-lightning.svg);
}
.ns-slider {
  float: left;
  width: 100%;
  position: relative;
}
.ns-slider__section {
  float: left;
  width: 100%;
}
.ns-slider__section--controls {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 var(--deskSpace);
  margin-top: calc(((100% / 1440 * 94) - var(--spaceTotal)) * -1);
}
.ns-slider__cover {
  float: left;
  width: 100%;
}
.ns-slider__stage {
  float: left;
  width: 100%;
}
.ns-slider__area {
  float: left;
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.ns-slide {
  float: left;
  flex-shrink: 0;
  width: calc(100% / 1440 * 928);
  transition: all 0.6s;
}
@media (max-width: 1023px) {
  .ns-slide {
    width: 100%;
  }
  .ns-slide.is-active {
    width: 100%;
  }
}
.ns-slide__content {
  float: left;
  width: 100%;
}
.ns-slider__part {
  float: left;
  width: 100%;
}
.ns-slider__part--image {
  aspect-ratio: 1.53135314;
  overflow: hidden;
  transform-origin: 0 0;
  transition: all 0.6s;
}
.ns-slider__part--image * {
  height: 100%;
}
.ns-slider__part--image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.ns-slider__part--image .placeholder {
  padding-bottom: 0;
}
@supports not (aspect-ratio: 928 /  606) {
  .ns-slider__part--image:before {
    float: left;
    padding-top: 65.30172414%;
    content: '';
  }
  .ns-slider__part--image:after {
    display: block;
    content: '';
    clear: both;
  }
}
.ns-slider__part--image .ns-sliderImage {
  transition: all 0.6s;
}
.ns-slide:not(.is-active) .ns-slider__part--image .ns-sliderImage {
  height: calc(100% / 606 * 512) !important;
}
.ns-slider__controls {
  float: left;
  display: flex;
  gap: 24px;
}
@media (min-width: 1024px) {
  .ns-slider__controls {
    display: block;
  }
}
.ns-sliderControl {
  float: left;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background-color: #0FEF37;
  position: relative;
}
.ns-sliderControl:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 15px;
  height: 10px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--textColor);
}
.ns-sliderControl--prev:before {
  -webkit-mask-image: url(/images/arrow-left.svg);
          mask-image: url(/images/arrow-left.svg);
}
.ns-sliderControl--next:before {
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
}
@media (max-width: 767px) {
  .ns-sliderControl {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .ns-sliderControl {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: transparent;
  }
  .ns-sliderControl:before {
    content: none;
  }
  .ns-sliderControl--prev {
    left: 0;
  }
  .ns-sliderControl--next {
    right: 0;
  }
}
.ns-sliderIndex {
  float: left;
  margin-left: auto;
}
.ns-sliderIndex__content {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ns-sliderIndex__item {
  float: left;
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: relative;
}
.ns-sliderIndex__item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  box-sizing: border-box;
  border: 1px solid var(--textColor);
  scale: 0;
  transition: all 0.6s;
}
.ns-sliderIndex__item:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--textColor);
  border-radius: 1000px;
}
.ns-sliderIndex__item.is-active:before {
  scale: 1;
}
.cursorStalker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  /* hidden off-screen initially */
  will-change: transform;
  transition: transform 0.05s linear;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursorStalker {
    display: block;
  }
}
.arrow,
.face {
  position: absolute;
  inset: 0;
  width: 69px;
  height: 69px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  transform: scale(0);
}
.show-eyes.is-hovered .face {
  transform: scale(1);
}
.show-arrow-prev.is-hovered .arrow,
.show-arrow-next.is-hovered .arrow {
  transform: scale(1);
}
.container--eyes {
  display: flex;
  justify-content: center;
  gap: 0px;
}
.eye {
  box-sizing: border-box;
  width: 26px;
  height: 35px;
  background: white;
  border: 2px solid #183D41;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pupil {
  box-sizing: border-box;
  width: 10px;
  height: 13px;
  background: #183D41;
  border-radius: 50%;
  position: absolute;
  transition: all 0.05s ease-out;
}
.glare {
  width: 5px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: 0px;
}
.arrow:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 33px;
  height: 23px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--textColor);
}
.show-arrow-prev .arrow:before {
  -webkit-mask-image: url(/images/arrow-left.svg);
          mask-image: url(/images/arrow-left.svg);
}
.show-arrow-next .arrow:before {
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
}
#edit .unit--react.video,
#edit .videoUnit__wrapper {
  min-height: 100px;
}
.videoUnit__wrapper {
  float: left;
  width: 100%;
}
.videoUnit__snippet {
  float: left;
  width: 100%;
}
.videoUnit__videoSnippet {
  aspect-ratio: 1.83673469;
  object-fit: cover;
  object-position: center;
}
@supports not (aspect-ratio: 1440 /  784) {
  .videoUnit__videoSnippet:before {
    float: left;
    padding-top: 54.44444444%;
    content: '';
  }
  .videoUnit__videoSnippet:after {
    display: block;
    content: '';
    clear: both;
  }
}
@media (max-width: 1023px) {
  .videoUnit__videoSnippet {
    aspect-ratio: 0.69628286;
  }
  @supports not (aspect-ratio: 768 /  1103) {
    .videoUnit__videoSnippet:before {
      float: left;
      padding-top: 143.61979167%;
      content: '';
    }
    .videoUnit__videoSnippet:after {
      display: block;
      content: '';
      clear: both;
    }
  }
}
@media (max-width: 767px) {
  .videoUnit__videoSnippet {
    aspect-ratio: 0.50813008;
  }
  @supports not (aspect-ratio: 375 /  738) {
    .videoUnit__videoSnippet:before {
      float: left;
      padding-top: 196.8%;
      content: '';
    }
    .videoUnit__videoSnippet:after {
      display: block;
      content: '';
      clear: both;
    }
  }
}
.videoUnit__videoFull {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
  animation-delay: var(--videoDelay);
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.videoUnit__overlay {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.videoUnit__overlay.visible {
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.videoUnit__playButton {
  display: inline-block;
  position: relative;
  background-color: var(--btnBackground);
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  color: var(--btnColor);
  padding-top: 14px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 45px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--btnBackgroundHover), var(--btnBackgroundHover));
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.videoUnit__playButton:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-curved-right.svg);
          mask-image: url(/images/arrow-curved-right.svg);
  background-color: var(--btnColor);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.videoUnit__playButton:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/arrow-right.svg);
          mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnColor);
  opacity: 0;
  translate: -15px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .videoUnit__playButton:hover,
  .videoUnit__playButton:focus {
    padding-left: 20px;
    padding-right: 45px;
    background-size: 100% 100%;
    color: var(--btnColorHover);
  }
  .videoUnit__playButton:hover:before,
  .videoUnit__playButton:focus:before {
    opacity: 0;
    translate: 16px 0;
  }
  .videoUnit__playButton:hover:after,
  .videoUnit__playButton:focus:after {
    opacity: 1;
    translate: 0 0;
    background-color: var(--btnColorHover);
  }
}
@media (max-width: 767px) {
  .videoUnit__playButton {
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .videoUnit__playButton:before {
    left: 16px;
    width: 14px;
    height: 14px;
  }
}
.videoUnit__closeButton {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: #0FEF37;
  background-size: 0 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(#FF5E1E, #FF5E1E);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.videoUnit__closeButton::before {
  content: '+';
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  color: var(--textColor);
  text-indent: 0;
  background-image: none;
  font-size: clamp(0.875rem, 0.21030494vw + 0.82334385rem, 1rem);
  line-height: clamp(1.5rem, 0.21030494vw + 1.44834385rem, 1.625rem);
  font-weight: bold;
  cursor: pointer;
}
@media (min-width: 768px) {
  .videoUnit__closeButton:hover {
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .videoUnit__closeButton {
    width: 40px;
    height: 40px;
  }
}
/*# sourceMappingURL=./screen-small.css.map */