/*********************
 Design Tokens (Project)
 *********************/
:root {
  /***** Colors *****/
  --color_primary--200: #e6f3fa;
  /* 90% tint */
  --color_primary--300: #cce6f4;
  /* 80% tint */
  --color_primary--400: #80c1e5;
  /* 50% tint */
  --color_primary--500: #0082ca;
  /* Primary */
  --color_primary--600: #0075b6;
  /* 10% shade */
  --color_primary--700: #005b8d;
  /* 30% shade */
  --color_primary--800: #003451;
  /* 60% shade */
  --color_primary--900: #001a28;
  /* 80% shade */
  --color_primary--gradient--light: linear-gradient(90deg, var(--color_primary--200) 0%, var(--color_primary--400) 100%);
  --color_primary--gradient--dark: linear-gradient(90deg, var(--color_primary--500) 0%, var(--color_primary--700) 100%);
  --color_secondary--200: #ecfaf6;
  /* 90% tint */
  --color_secondary--300: #d9f5ec;
  /* 80% tint */
  --color_secondary--400: #9fe7d1;
  /* 50% tint */
  --color_secondary--500: #3fcfa2;
  /* Secondary */
  --color_secondary--600: #39ba92;
  /* 10% shade */
  --color_secondary--700: #206851;
  /* 50% shade */
  --color_secondary--800: #0d2920;
  /* 80% shade */
  --color_secondary--900: #061510;
  /* 90% shade */
  --color_secondary--gradient--light: linear-gradient(90deg, var(--color_secondary--200) 0%, var(--color_secondary--400) 100%);
  --color_secondary--gradient--dark: linear-gradient(90deg, var(--color_secondary--500) 0%, var(--color_secondary--700) 100%);
  --color_crossover-gradient--dark: linear-gradient(90deg, var(--color_primary--500) 0%, var(--color_secondary--500) 100%);
  --color_headings: #0b0b0b;
  --color_body--light: #3a3c41;
  --color_body--dark: #1d1e21;
  /***** Spacing *****/
  --comp-spacing--outer: 144px;
  --comp-spacing--inner: 108px;
  /***** Dimensions *****/
  --p--sm: 24px;
  --p--md: 36px;
  --p--lg: 48px;
  --p--xl: 72px;
  --height_tb: 0px;
  /* Set in JS */
  --height_header: 0px;
  /* Set in JS */
  /***** Base Font Size *****/
  --base-font-size: 17px;
  /***** Font Family *****/
  --font_headings: 'Staatliches', sans-serif;
  --font_body: 'Barlow', sans-serif;
  /***** Border Radius *****/
  --border-radius--sm: 4px;
  --border-radius--md: 12px;
  --border-radius--lg: 24px; }

@media only screen and (max-width: 991px) {
  /***** Spacing *****/
    :root {
      --comp-spacing--outer: 108px;
      --comp-spacing--inner: 96px; } }

@media only screen and (max-width: 480px) {
  /***** Spacing *****/
    :root {
      --comp-spacing--outer: 96px;
      --comp-spacing--inner: 72px; } }

.sticky {
  --sticky_offset: calc(36px + 55px); }
/****************************
 Typography
 ****************************/
/***** Text Editor Settings *****/
.yls_text {
  line-height: var(--type-scale-rel--xl-1);
  letter-spacing: -0.02em; }

.yls_text strong, .yls_text b {
  font-weight: bold; }

a .yls_text {
  color: var(--color_body--dark); }
/***** Inline Link *****/
.yls_text a {
  padding: 0.135em;
  text-decoration: none;
  text-decoration-color: transparent !important;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, var(--color_primary--500) 50%);
  background-position-y: 0%;
  background-size: auto 175%;
  font-weight: inherit;
  color: inherit; }

.yls_text a:hover {
  background-position-y: 100%;
  color: #fff; }
/***** List *****/
.yls_text ul, .yls_text ol {
  --gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: calc(var(--gap) / -2) 0;
  margin-bottom: calc(1em - ( var(--gap) / 2 ));
  padding-left: 1.2em; }

.yls_text ul > li, .yls_text ol > li {
  padding: calc(var(--gap) / 2) 0; }
/***** Headings *****/
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--type-scale-rel--xs);
  font-family: var(--font_headings);
  font-weight: normal;
  color: var(--color_headings);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em; }

h1 {
  font-size: var(--type-scale--xl-4); }

h2 {
  font-size: var(--type-scale--xl-3); }

h3 {
  font-size: var(--type-scale--xl-1); }

h4 {
  font-size: var(--type-scale--xl); }

h5 {
  font-size: var(--type-scale--lg); }

h6 {
  font-size: var(--type-scale--sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing_loose); }

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong {
  font-weight: inherit;
  color: var(--color_primary--700); }

h1 i, h2 i, h3 i, h4 i, h5 i {
  --margin-h: 0.5em;
  margin-top: -0.03em;
  vertical-align: middle;
  font-size: var(--type-scale-rel--xs-1); }

h1 i:first-child, h2 i:first-child, h3 i:first-child, h4 i:first-child, h5 i:first-child {
  margin-right: var(--margin-h); }

h1 i:last-child, h2 i:last-child, h3 i:last-child, h4 i:last-child, h5 i:last-child {
  margin-left: var(--margin-h); }

@media only screen and (max-width: 480px) {
  h1 {
    font-size: var(--type-scale--xl-3); }

  h2 {
    font-size: var(--type-scale--xl-2); } }
/***** Text Selection *****/
::selection {
  background: var(--color_primary--500) !important;
  color: #fff !important; }

::-moz-selection {
  background: var(--color_primary--500) !important;
  color: #fff !important; }

.s-tselect {
  background: var(--color_primary--500) !important;
  color: #fff !important; }
/****************************
 Buttons
 ****************************/
/***** Button List *****/
.yls_btn-list {
  --gap: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin: calc(var(--gap) / -2); }

.yls_btn-list > * {
  margin: calc(var(--gap) / 2); }
/***** Global Button Settings *****/
/* Typography */
.yls_header__nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) {
  font-size: var(--type-scale--lg);
  line-height: 1;
  outline: 0; }

.yls_header__nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, [class*="yls_btn"][class*="label"] {
  font-family: var(--font_headings);
  font-weight: normal;
  letter-spacing: 0.02em;
  text-decoration: none; }

[class*="yls_btn"][class*="label"]:empty {
  display: none; }
/* Dimensions */
[class*="yls_btn"]:not([class*="label"]):not([class*="list"]).wide {
  width: 100%; }

.yls_btn-primary, .yls_btn-secondary, .yls_btn-filter {
  --padding-h: 26px;
  --padding-v: 22px;
  padding: calc(var(--padding-v) * 0.9) var(--padding-h) var(--padding-v) var(--padding-h);
  border-radius: var(--border-radius--sm); }

.yls_btn-primary.small, .yls_btn-secondary.small, .yls_btn-filter.small {
  --padding-h: 20px;
  --padding-v: 8px;
  padding: var(--padding-v) var(--padding-h);
  font-size: var(--type-scale--md) !important; }
/* Icons */
.yls_header__nav a:not([class*="yls_btn"]) i, [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) i {
  font-size: var(--type-scale-rel--xs);
  vertical-align: middle;
  margin-top: -0.03em; }

.yls_header__nav a:not([class*="yls_btn"]) i:first-child, [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) i:first-child {
  margin-right: var(--type-scale-rel--xs-1); }

.yls_header__nav a:not([class*="yls_btn"]) i:last-child, [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) i:last-child {
  margin-left: var(--type-scale-rel--xs-1); }

.yls_header__nav a:not([class*="yls_btn"]) [class*="yls_btn"][class*="label"]:empty ~ i, [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) [class*="yls_btn"][class*="label"]:empty ~ i {
  margin-left: 0;
  margin-right: 0; }

.yls_header__nav a:not([class*="yls_btn"]) i[class=""], [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) i[class=""] {
  display: none !important; }
/***** Primary Button *****/
/* General Settings */
.yls_btn-primary {
  --border-thickness: 0; }

/* Light Mode */

.yls_btn-primary.light {
  background: var(--color_primary--500);
  border: var(--border-thickness) solid var(--color_primary--500); }

.yls_btn-primary.light .yls_btn-primary__label {
  color: var(--color_primary--200); }

.yls_btn-primary.light i {
  color: var(--color_primary--400); }

.yls_btn-primary.light:hover {
  background: var(--color_primary--600); }
/* Dark Mode */
.yls_btn-primary.dark {
  background: var(--color_primary--500);
  border: var(--border-thickness) solid var(--color_primary--300); }

.yls_btn-primary.dark .yls_btn-primary__label {
  color: var(--color_primary--200); }

.yls_btn-primary.dark i {
  color: var(--color_primary--400); }

.yls_btn-primary.dark:hover {
  background: var(--color_primary--600); }
/***** Secondary Button *****/
/* General Settings */
.yls_btn-secondary {
  --border-thickness: 0; }

.yls_btn-secondary__label {
  font-weight: bold; }
/* Light Mode */
.yls_btn-secondary.light {
  background: var(--color_primary--300);
  border: var(--border-thickness) solid var(--color_primary--500); }

.yls_btn-secondary.light .yls_btn-secondary__label {
  color: var(--color_headings); }

.yls_btn-secondary.light i {
  color: var(--color_primary--500); }

.yls_btn-secondary.light:hover {
  background: var(--color_primary--400); }
/* Dark Mode */
.yls_btn-secondary.dark {
  background: rgba(255, 255, 255, 0.2);
  border: var(--border-thickness) solid rgba(255, 255, 255, 0.2); }

.yls_btn-secondary.dark .yls_btn-secondary__label {
  color: #fff; }

.yls_btn-secondary.dark i {
  color: var(--color_primary--400); }

.yls_btn-secondary.dark:hover {
  background: rgba(255, 255, 255, 0.1); }

.yls_btn-secondary.dark:hover .yls_btn-secondary__label {
  color: var(--color_primary--300); }
/***** Filter Button *****/
/* General Settings */
.yls_btn-filter {
  --border-thickness: 2px; }

/* Light Mode */

.yls_btn-filter.light {
  background: #fff;
  border: var(--border-thickness) solid var(--color_primary--300); }

.yls_btn-filter.light .yls_btn-filter__label {
  color: var(--color_primary--800); }

.yls_btn-filter.light i {
  color: var(--color_primary--700); }

.yls_btn-filter.light:hover {
  background: var(--color_primary--300); }
/* Dark Mode */
.yls_btn-filter.dark {
  background: transparent;
  border: var(--border-thickness) solid var(--color_primary--300); }

.yls_btn-filter.dark .yls_btn-filter__label {
  color: var(--color_primary--200); }

.yls_btn-filter.dark i {
  color: var(--color_primary--300); }

.yls_btn-filter.dark:hover {
  background: var(--color_primary--300); }
/* Active */
.yls_btn-filter.light.is-active {
  border-color: var(--color_primary--500);
  background: var(--color_primary--200); }
/***** Link *****/
/* General Settings */
.yls_header__nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, .yls_btn-link__label {
  font-weight: normal; }

.yls_btn-link.small [class*="yls_btn"][class*="label"] {
  font-size: var(--type-scale-rel--sm);
  font-weight: normal; }
/* Light Mode */
.yls_header__nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, .yls_btn-link.light .yls_btn-link__label {
  color: var(--color_headings); }

.yls_header__nav a:not([class*="yls_btn"]) i, .yls_btn-link.light i {
  color: var(--color_primary--500); }

.yls_header__nav a:not([class*="yls_btn"]):hover, .yls_btn-link.light:hover .yls_btn-link__label {
  color: var(--color_primary--600); }
/* Dark Mode */
.yls_btn-link.dark .yls_btn-link__label {
  color: #fff; }

.yls_btn-link.dark i {
  color: var(--color_primary--400); }

.yls_btn-link.dark:hover .yls_btn-link__label {
  color: var(--color_primary--400); }
/****************************
 Social Media
 ****************************/
.yls_social-media {
  --fontsize: var(--type-scale--sm);
  --size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: var(--fontsize); }

.yls_social-media__label {
  margin-right: 12px;
  white-space: nowrap;
  font-size: var(--type-scale--sm);
  line-height: 1; }

.yls_social-media__label:empty {
  display: none; }

.yls_social-media__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: calc(var(--gap) / -2); }

.yls_social-media__item {
  margin: calc(var(--gap) / 2);
  line-height: 0; }

.yls_social-media__item a {
  position: relative;
  display: inline-block;
  width: var(--size);
  height: var(--size);
  overflow: hidden;
  text-decoration: none;
  border-radius: var(--border-radius--sm);
  opacity: 1 !important; }

.yls_social-media__item a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important; }

@media only screen and (max-width: 480px) {
  .yls_social-media {
    --fontsize: var(--type-scale--sm);
    --size: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }

  .yls_social-media__label {
    margin-bottom: var(--type-scale-rel--sm); } }
/***** Solid *****/
.yls_social-media.solid .yls_social-media__list {
  --gap: 8px; }
/* Light */
.yls_social-media.solid.light .yls_social-media__item a {
  background: var(--color_primary--500); }

.yls_social-media.solid.light .yls_social-media__item a i {
  color: #fff; }

.yls_social-media.solid.light .yls_social-media__item a:hover {
  background: var(--color_primary--700); }
/* Dark */
.yls_social-media.solid.dark .yls_social-media__item a {
  background: var(--color_primary--500); }

.yls_social-media.solid.dark .yls_social-media__item a i {
  color: #fff; }

.yls_social-media.solid.dark .yls_social-media__item a:hover {
  background: var(--color_primary--700); }
/***** Floating *****/
.yls_social-media.floating .yls_social-media__list {
  --gap: 0;
  margin-left: calc(( var(--size) - var(--fontsize) ) / -2); }
/* Light */
.yls_social-media.floating.light .yls_social-media__item a {
  background: transparent; }

.yls_social-media.floating.light .yls_social-media__item a i {
  color: var(--color_primary--500); }

.yls_social-media.floating.light .yls_social-media__item a:hover i {
  color: var(--color_primary--700); }
/* Dark */
.yls_social-media.floating.dark .yls_social-media__item a {
  background: transparent; }

.yls_social-media.floating.dark .yls_social-media__item a i {
  color: var(--color_primary--300); }

.yls_social-media.floating.dark .yls_social-media__item a:hover i {
  color: #fff; }
/****************************
 Carousel
 ****************************/
/***** General Settings *****/
.yls_carousel__container {
  --button-size: 40px; }

@media only screen and (max-width: 480px) {
  .yls_carousel__container {
    --button-size: 36px; } }
/* Navigation */
.yls_carousel__container .swiper-button {
  width: var(--button-size);
  height: var(--button-size);
  border-radius: 50%;
  /*box-shadow: var(--shadow--lg);*/ }

.yls_carousel__container .swiper-button i {
  font-size: var(--type-scale--sm); }
/* Pagination */
.yls_carousel__container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-style: solid;
  opacity: 1; }

.yls_carousel__container .swiper-pagination-bullet-active {
  border-color: transparent; }
/* Preloader */
.yls_carousel__container .swiper-lazy-preloader {
  --color: #fff;
  border-left-color: var(--color);
  border-right-color: var(--color);
  border-bottom-color: var(--color);
  opacity: 0.6; }
/***** Inner UI *****/
/* Navigation */
.yls_carousel__container.inner-ui .swiper-button {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px); }

.yls_carousel__container.inner-ui .swiper-button:hover {
  background: rgba(255, 255, 255, 0.75); }

.yls_carousel__container.inner-ui .swiper-button-prev {
  left: 24px; }

.yls_carousel__container.inner-ui .swiper-button-next {
  right: 24px; }

.yls_carousel__container.inner-ui .swiper-button i {
  color: var(--color_primary--900); }

@media only screen and (max-width: 991px) {
  .yls_carousel__container.inner-ui .swiper-button-prev {
    left: 12px; }

  .yls_carousel__container.inner-ui .swiper-button-next {
    right: 12px; } }

@media only screen and (max-width: 480px) {
  .yls_carousel__container.inner-ui .swiper-button {
    width: var(--button-size);
    height: var(--button-size); }

  .yls_carousel__container.inner-ui .swiper-button-prev {
    left: calc(var(--button-size) / -2); }

  .yls_carousel__container.inner-ui .swiper-button-next {
    right: calc(var(--button-size) / -2); } }
/* Pagination */
.yls_carousel__container.inner-ui .swiper-pagination {
  bottom: 0;
  padding-bottom: 24px; }

.yls_carousel__container.inner-ui .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px); }

.yls_carousel__container.inner-ui .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.6);
  border-color: transparent; }

@media only screen and (max-width: 480px) {
  .yls_carousel__container.inner-ui .swiper-pagination {
    padding-bottom: 12px; } }
/***** Outer UI *****/
.yls_carousel__container.outer-ui {
  --gap-x: 30px;
  --gap-y: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden; }

.yls_carousel__container.outer-ui .yls_carousel {
  width: calc(100% - ( var(--button-size) * 2 ) - ( var(--gap-x) * 2 )); }

@media only screen and (max-width: 991px) {
  .yls_carousel__container.outer-ui {
    overflow: visible; }

  .yls_carousel__container.outer-ui .yls_carousel {
    width: calc(100% - ( var(--gap-x) * 2 ));
    width: calc(100% + ( var(--container__padding) * 2 )); } }
/* Navigation */
.yls_carousel__container.outer-ui .swiper-button {
  background: var(--color_primary--500); }

.yls_carousel__container.outer-ui .swiper-button:hover {
  background: var(--color_primary--600); }

.yls_carousel__container.outer-ui .swiper-button i {
  color: var(--color_primary--200); }

@media only screen and (max-width: 991px) {
  .yls_carousel__container.outer-ui .swiper-button {
    display: none;
    opacity: 0;
    visibility: hidden; } }
/* Pagination */
.yls_carousel__container.outer-ui .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  margin-top: var(--gap-y); }

.yls_carousel__container.outer-ui .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 0, 0, 0.1); }

.yls_carousel__container.outer-ui .swiper-pagination-bullet-active {
  background: var(--color_primary--400);
  border-color: transparent; }
/***** Card Carousel *****/
.yls_carousel__container[data-swiper-type="cards"] .yls_carousel {
  overflow: visible; }

.yls_carousel__container[data-swiper-type="cards"] .swiper-slide {
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_carousel__container[data-swiper-type="cards"] .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0; }

.yls_carousel__container[data-swiper-type="cards"] .swiper-slide:not(.swiper-slide-visible) .yls_card {
  transform: scale(0.8); }
/***** Image Carousel *****/
.yls_carousel__container[data-swiper-type="images"] .yls_carousel {
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--xl); }

.yls_carousel__container[data-swiper-type="images"] .yls_carousel__item {
  width: 100%;
  padding-bottom: 83.3%;
  border-radius: inherit; }

.yls_carousel__container[data-swiper-type="images"] .yls_carousel__item img {
  border-radius: inherit; }
/***** Logo Carousel *****/
.yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item {
  width: 100%;
  height: 70px; }

.yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }

.yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item a[href=""] {
  cursor: default; }

.yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item img {
  max-width: 80%;
  max-height: 100%;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

@media only screen and (max-width: 480px) {
  .yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item {
    height: 55px; }

  .yls_carousel__container[data-swiper-type="logos"] .yls_carousel__item img {
    max-width: 100%; }

  .yls_carousel__container[data-swiper-type="logos"] .swiper-slide:not(.swiper-slide-active) img {
    transform: scale(0.8);
    opacity: 0.2;
    filter: saturate(0%); } }
/***** Testimonials Carousel *****/
.yls_carousel__container[data-swiper-type="reviews"] .swiper-wrapper {
  align-items: center; }

.yls_carousel__container[data-swiper-type="reviews"] .yls_text {
  max-width: 60ch;
  margin: 0 auto var(--type-scale-rel--sm) auto;
  font-size: var(--type-scale--lg);
  text-align: center; }

.yls_carousel__container[data-swiper-type="reviews"] .yls_carousel__details {
  max-width: 60ch;
  margin: 0 auto;
  font-size: var(--type-scale--sm);
  text-align: center;
  line-height: var(--type-scale-rel--xl);
  opacity: 0.6; }

@media only screen and (max-width: 480px) {
  .yls_carousel__container[data-swiper-type="reviews"] .yls_text {
    max-width: 60ch;
    font-size: var(--type-scale--md);
    text-align: left; }

  .yls_carousel__container[data-swiper-type="reviews"] .yls_carousel__details {
    text-align: left; }

  .yls_carousel__container[data-swiper-type="reviews"] .swiper-pagination {
    text-align: left; } }
/***** Process Carousel *****/
.yls_carousel__container[data-swiper-type="process"] .yls_carousel {
  --space-between: 30px;
  --icon-size: 60px; }

.yls_carousel__container[data-swiper-type="process"] .yls_process__content {
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_carousel__container[data-swiper-type="process"] .swiper-wrapper {
  align-items: stretch; }

.yls_carousel__container[data-swiper-type="process"] .swiper-slide {
  height: auto; }

@media only screen and (max-width: 991px) {
  .yls_carousel__container[data-swiper-type="process"] .yls_carousel {
    --space-between: 48px;
    --icon-size: 60px;
    overflow: visible; } }
/* Navigation Settings */
.yls_carousel__container[data-swiper-type="process"] .swiper-button-disabled {
  opacity: 0; }
/* Icon Settings */
.yls_carousel__container[data-swiper-type="process"] .yls_process__icon-container {
  position: relative;
  width: 100%; }

.yls_carousel__container[data-swiper-type="process"] .swiper-slide:not(:last-child) .yls_process__icon-container:before {
  position: absolute;
  top: 50%;
  left: var(--icon-size);
  transform: translate(0, -50%);
  z-index: 1;
  width: calc(100% - var(--icon-size) + var(--space-between));
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  content: ''; }

.yls_carousel__container[data-swiper-type="process"] .yls_process__icon {
  position: relative;
  z-index: 5;
  width: var(--icon-size);
  height: var(--icon-size);
  margin: 0;
  overflow: hidden;
  border-radius: var(--border-radius--sm);
  background: var(--color_primary--500);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_carousel__container[data-swiper-type="process"] .swiper-slide:not(.swiper-slide-active) .yls_process__icon {
  opacity: 0.4; }

.yls_carousel__container[data-swiper-type="process"] .yls_process__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-size: clamp(1rem, calc(var(--icon-size) / 2), 1.728rem); }
/* Content Settings */
.yls_carousel__container[data-swiper-type="process"] .yls_process__content {
  will-change: transform; }

.yls_carousel__container[data-swiper-type="process"] .swiper-slide:not(.swiper-slide-active) .yls_process__content {
  transform-origin: center left;
  transform: scale(0.9);
  opacity: 0.4; }

.yls_carousel__container[data-swiper-type="process"] .yls_process__content .yls_text {
  max-width: 42ch; }
/* CTA Settings */
.yls_carousel__container[data-swiper-type="process"] .yls_carousel__item.yls_card {
  height: 100%;
  padding: var(--p--lg) var(--p--md);
  background: var(--color_primary--200);
  box-shadow: none; }

.yls_carousel__container[data-swiper-type="process"] .yls_carousel__item.yls_card > div {
  height: 100%;
  justify-content: center; }

.yls_carousel__container[data-swiper-type="process"] .yls_carousel__item.yls_card h3 {
  text-align: center; }

.yls_carousel__container[data-swiper-type="process"] .yls_carousel__item.yls_card .yls_btn-list {
  justify-content: center; }
/****************************
 Breadcrumbs
 ****************************/
.yls_breadcrumbs {
  --gap: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 calc(var(--gap) / -2);
  font-size: var(--type-scale--md); }

.yls_breadcrumbs > * {
  padding: 0 calc(var(--gap) / 2); }

.yls_breadcrumbs a {
  text-decoration: none; }

.yls_breadcrumbs .s-crumb:not(.s-active) {
  font-weight: normal;
  opacity: 0.6; }

.yls_breadcrumbs .s-crumb:not(.s-active):hover {
  opacity: 1; }

.yls_breadcrumbs .s-crumb.s-active {
  font-weight: bold; }

.yls_breadcrumbs .s-delimiter {
  height: 1em; }

.yls_breadcrumbs .s-delimiter:before {
  position: relative;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: 0% 0%;
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  vertical-align: top;
  content: '';
  border-style: solid;
  border-width: 2px 2px 0 0;
  opacity: 0.4; }
/***** Light Mode *****/
.yls_breadcrumbs.light .s-crumb {
  color: var(--color_body--dark); }

.yls_breadcrumbs.light .s-delimiter:before {
  border-color: var(--color_body--dark); }
/***** Dark Mode *****/
.yls_breadcrumbs.dark .s-crumb, .yls_breadcrumbs.dark .s-delimiter {
  color: #fff; }

.yls_breadcrumbs.dark .s-delimiter:before {
  color: #fff; }
/****************************
 Forms
 ****************************/
.s-form .s-form__fields {
  --gap: 30px; }
/***** Global Styling *****/
.s-form .s-field__wrapper {
  --font-size: var(--type-scale--md); }

.s-form .s-field__wrapper .s-input, .s-form .s-field__wrapper select, .s-form .s-field__wrapper textarea, .s-form .s-field__upload .s-upload__info {
  padding: var(--font-size);
  border-radius: var(--border-radius--sm);
  font-size: var(--font-size);
  line-height: var(--type-scale-rel--lg);
  border: 1px solid transparent;
  outline: 0; }
/* Label */
.s-form .s-field__wrapper .s-input + label, .s-form .s-field__wrapper select + label, .s-form .s-field__wrapper textarea + label, .s-form .s-field__wrapper.s-group__checkbox .s-label, .s-form .s-field__wrapper.s-group__radio .s-label, .s-form .s-field__upload .s-label {
  line-height: 1.5; }

.s-form .s-field__wrapper.s-group__checkbox .s-label, .s-form .s-field__wrapper.s-group__radio .s-label, .s-form .s-field__upload .s-label {
  font-weight: bold; }

.s-form .s-field__wrapper .s-input + label span, .s-form .s-field__wrapper select + label span, .s-form .s-field__wrapper textarea + label span, .s-form .s-field__wrapper .s-input[readonly] + label span, .s-form .s-field__wrapper.s-group__checkbox .s-label span, .s-form .s-field__wrapper.s-group__radio .s-label span, .s-form .s-field__upload .s-label span, .s-form .s-field__wrapper.s-field__optin .s-optin__info span {
  font-size: var(--type-scale-rel--md);
  text-transform: lowercase; }

.s-form .s-field__wrapper.s-group__checkbox .s-label span, .s-form .s-field__wrapper.s-group__radio .s-label span, .s-form .s-field__upload .s-label span, .s-form .s-field__wrapper.s-field__optin .s-optin__info span {
  font-size: var(--type-scale-rel--sm);
  font-weight: normal;
  opacity: 0.8; }

.s-form .s-field__wrapper .s-input + label span:before, .s-form .s-field__wrapper select + label span:before, .s-form .s-field__wrapper textarea + label span:before, .s-form .s-field__wrapper .s-input[readonly] + label span:before, .s-form .s-field__wrapper.s-group__checkbox .s-label span:before, .s-form .s-field__wrapper.s-group__radio .s-label span:before, .s-form .s-field__upload .s-label span:before, .s-form .s-field__wrapper.s-field__optin .s-optin__info span:before {
  content: ' ('; }

.s-form .s-field__wrapper .s-input + label span:after, .s-form .s-field__wrapper select + label span:after, .s-form .s-field__wrapper textarea + label span:after, .s-form .s-field__wrapper .s-input[readonly] + label span:after, .s-form .s-field__wrapper.s-group__checkbox .s-label span:after, .s-form .s-field__wrapper.s-group__radio .s-label span:after, .s-form .s-field__upload .s-label span:after, .s-form .s-field__wrapper.s-field__optin .s-optin__info span:after {
  content: ')'; }
/* Helper Text */
.yls_form__helpertext {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5em 0 0 0;
  font-size: var(--type-scale--sm);
  opacity: 0.8; }

.yls_form__helpertext i {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  width: var(--type-scale-rel--xl-2);
  height: var(--type-scale-rel--xl-2);
  margin-right: 0.5em;
  border-radius: 50%;
  font-size: var(--type-scale-rel--xs-1);
  color: #fff; }

.yls_form__helpertext i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 40%; }
/***** Input Fields - Default *****/
.s-form .s-field__wrapper .s-input, .s-form .s-field__wrapper select, .s-form .s-field__wrapper textarea, .s-form .s-field__upload .s-upload__info {
  color: var(--color_body--dark);
  background-color: #fff;
  box-shadow: 0 0 0 1px var(--color_primary--300); }

.s-form .s-field__wrapper .s-input[readonly]:not(.flatpickr-input) {
  background: var(--color_primary--200); }
/* Label */
.s-form .s-field__wrapper .s-input + label, .s-form .s-field__wrapper select + label, .s-form .s-field__wrapper textarea + label, .s-form .s-field__wrapper .s-input[readonly] + label {
  /*top: 1em;*/
  left: var(--font-size);
  font-size: var(--type-scale-rel--sm);
  color: rgba(30, 30, 30, 0); }
/*
 .s-form .s-field__wrapper .s-input[readonly] + label {
 background: transparent;
 }
 */
.s-form .s-field__wrapper label.hide-label {
  top: 0 !important;
  opacity: 0 !important; }
/* Placeholder */
.s-form .s-field__wrapper .s-input::placeholder, .s-form .s-field__wrapper select::placeholder, .s-form .s-field__wrapper textarea::placeholder {
  color: var(--color_body--dark); }
/***** Input Fields - Filled *****/
.s-form .s-field__wrapper .s-input.filled:not(:focus), .s-form .s-field__wrapper select.filled:not(:focus), .s-form .s-field__wrapper textarea.filled:not(:focus), .s-form .s-field__wrapper .s-input[readonly]:not(.flatpickr-input) {
  box-shadow: 0 0 0 1px var(--color_primary--400); }
/* Label */
.s-form .s-field__wrapper .s-input.filled + label, .s-form .s-field__wrapper select.filled + label, .s-form .s-field__wrapper textarea.filled + label, .s-form .s-field__wrapper .s-input[readonly] + label {
  color: rgba(30, 30, 30, 0.6);
  /*background: rgba(255, 255, 255, 0.9);*/ }
/***** Input Fields - Focus *****/
.s-form .s-field__wrapper .s-input:focus, .s-form .s-field__wrapper select:focus, .s-form .s-field__wrapper textarea:focus {
  box-shadow: 0 0 0 2px var(--color_primary--500); }
/* Label */
.s-form .s-field__wrapper .s-input:focus + label, .s-form .s-field__wrapper select:focus + label, .s-form .s-field__wrapper textarea:focus + label {
  color: rgba(30, 30, 30, 0.6);
  /*background: rgba(255, 255, 255, 0.9);*/ }
/***** Input Fields - Error *****/
/*
 .s-form .s-field__wrapper .s-input:invalid,
 .s-form .s-field__wrapper select:invalid,
 .s-form .s-field__wrapper textarea:invalid {
 box-shadow: 0 0 0 2px red !important;
 }
 */
/***** Required Indicator *****/
/*
 .s-form .s-field__wrapper:is(
 .s-field__input,
 .s-field__textarea,
 .s-field__select
 )[data-necessity="required"]:not([data-state="readonly"]):before {
 position: absolute;
 top: 1.4rem;
 left: 0.4rem;
 transform: translate(0, 0);
 z-index: 10;
 content: '*';
 color: red;
 font-size: var(--type-scale--sm);
 line-height: 1;
 }
 */
/***** Optional Indicator *****/
/***** Input Fields - Select *****/
.s-form .s-field__wrapper.s-field__select:after {
  --border-width: 2px;
  width: 0.5rem;
  height: 0.5rem;
  border-color: rgba(0, 0, 0, 0.3); }
/***** State Fields - Default *****/
.s-form .s-field__wrapper .s-checkbox__opts .s-check__label .s-check__indicator, .s-form .s-field__wrapper .s-radio__opts .s-radio__label .s-radio__indicator, .s-form .s-field__optin .s-optin__label .s-optin__indicator {
  width: 1rem;
  height: 1rem;
  margin-right: var(--type-scale-rel--xs-4);
  box-shadow: 0 0 0 1px var(--color_primary--300); }
/* Horizontal State Fields */
.s-form .s-field__wrapper .s-flexdir--row {
  --gap: 16px; }
/* Vertical State Fields */
.s-form .s-field__wrapper .s-flexdir--col {
  --gap: 16px; }
/* Checkboxes */
.s-form .s-field__wrapper .s-checkbox__opts .s-check__label .s-check__indicator, .s-form .s-field__optin .s-optin__label .s-optin__indicator {
  border-radius: var(--border-radius--sm); }

.s-form .s-field__wrapper .s-checkbox__opts .s-check__label .s-check__indicator:after, .s-form .s-field__optin .s-optin__label .s-optin__indicator:after {
  --border-width: 2px;
  --border-color: #fff;
  --width: 0.3rem;
  --height: 0.6rem; }
/* Radio Buttons */
.s-form .s-field__wrapper .s-radio__opts input:checked + .s-radio__label .s-radio__indicator {
  background: var(--color_primary--500);
  box-shadow: 0 0 0 1px var(--color_primary--500); }

.s-form .s-field__wrapper .s-radio__opts .s-radio__label .s-radio__indicator:after {
  --width: 0%;
  --height: 0%;
  background: #fff;
  opacity: 0; }
/***** State Fields - Active *****/
/* Checkboxes */
.s-form .s-field__wrapper .s-checkbox__opts input:checked + .s-check__label .s-check__indicator, .s-form .s-field__optin input:checked + .s-optin__label .s-optin__indicator {
  background: var(--color_primary--500);
  box-shadow: 0 0 0 1px var(--color_primary--500); }
/* Radio Buttons */
.s-form .s-field__wrapper .s-radio__opts input:checked + .s-radio__label .s-radio__indicator:after {
  --width: 70%;
  --height: 70%;
  opacity: 1; }
/***** Upload *****/
.s-form .s-field__upload .s-upload__info:before {
  color: var(--color_primary--600);
  font-weight: bold; }

.s-form .s-field__upload .s-upload__info::after {
  opacity: 0.6; }
/***** Submit *****/
.s-form .s-field__submit .yls_text.privacy {
  margin-top: calc(( var(--gap) * -1 ) + var(--type-scale-rel--md));
  margin-bottom: var(--type-scale-rel--md);
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--lg); }
/****************************
 Opening Hours
 ****************************/
.yls_openhours h3:empty {
  display: none !important; }

.yls_openhours table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  font-size: var(--type-scale--md);
  line-height: var(--type-scale--md); }

.yls_openhours table tbody, .yls_openhours table tr {
  width: 100%; }

.yls_openhours table tr td {
  --padding-v: var(--type-scale-rel--xs-3);
  padding-top: var(--padding-v);
  padding-bottom: var(--padding-v);
  vertical-align: baseline; }

.yls_openhours table tr:first-child td {
  padding-top: 0; }

.yls_openhours table tr:last-child td {
  padding-bottom: 0; }

.yls_openhours table tr td:first-child {
  padding-right: var(--type-scale-rel--md);
  font-weight: bold; }

.yls_openhours__shorthand {
  font-size: var(--type-scale-rel--sm);
  text-transform: uppercase; }

@media only screen and (min-width: 481px) {
  .yls_openhours__shorthand {
    display: none; } }

@media only screen and (max-width: 480px) {
  .yls_openhours table {
    --gap: var(--type-scale-rel--xs);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; }

  .yls_openhours__label {
    display: none; } }
/****************************
 Cards
 ****************************/
/***** Grid *****/
.yls_cards__grid > .flex_auto__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
/***** Card *****/
.yls_card {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg);
  box-sizing: border-box;
  background: linear-gradient(90deg, var(--color_primary--900) -100%, var(--color_primary--800) 50%, var(--color_primary--900) 200%); }

a.yls_card {
  text-decoration: none; }
/* Visual - Image */
.yls_card .yls_card__visual.image {
  position: relative;
  width: 100%;
  padding-bottom: 61.8%;
  overflow: hidden; }

.yls_card .yls_card__visual.image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  transition-duration: 1.5s !important;
  will-change: transform; }

a.yls_card:hover .yls_card__visual.image img {
  transform: translate(-50%, -50%) scale(1.08); }

a.yls_card .yls_card__visual.image:after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, 0) rotate(45deg);
  z-index: 5;
  width: 200%;
  height: 200%;
  background: var(--color_primary--500);
  opacity: 0.4;
  content: '';
  transition-duration: 1s !important; }

a.yls_card:hover .yls_card__visual.image:after {
  transform: translate(-10%, 0) rotate(45deg); }
/* Content */
.yls_card .yls_card__content {
  padding: calc(24px - 0.2em) 24px 24px 24px; }

.yls_card .yls_card__content .yls_card__title {
  font-size: var(--type-scale--xl);
  line-height: var(--type-scale-rel--lg);
  color: #fff; }

.yls_card .yls_card__content > .flex_auto--rows > .flex_auto__item:last-child .yls_card__title {
  margin-bottom: 0;
  text-align: center; }

@media only screen and (max-width: 991px) {
  .yls_cards__grid > .flex_auto__item {
    min-width: var(--w--6); }

  .yls_card .yls_card__content .yls_card__title {
    font-size: var(--type-scale--lg); } }

@media only screen and (max-width: 480px) {
  .yls_cards__grid > .flex_auto__item {
    min-width: 100%; }

  .yls_card .yls_card__content .yls_card__title {
    font-size: var(--type-scale--lg); } }
/***** Large Content *****/
.yls_card.lg:not(a) {
  padding: var(--p--lg);
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg);
  background: #fff; }

.yls_card.xl:not(a) {
  padding: var(--p--xl);
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--xl);
  background: #fff; }

@media only screen and (max-width: 991px) {
  .yls_card.lg:not(a), .yls_card.xl:not(a) {
    padding: var(--p--lg); } }

@media only screen and (max-width: 480px) {
  .yls_card.lg:not(a), .yls_card.xl:not(a) {
    padding: var(--p--md) var(--p--sm); } }
/****************************
 Figure
 ****************************/
figure {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0; }
/***** Caption *****/
figure figcaption {
  margin-top: var(--type-scale-rel--xs-2);
  padding: 0 5%;
  font-size: var(--type-scale-rel--sm);
  line-height: var(--type-scale-rel--lg);
  text-align: center;
  color: var(--color_body--light);
  opacity: 0.7; }

figure figcaption:empty {
  display: none;
  visibility: hidden;
  opacity: 0; }
/****************************
 Inline Image
 ****************************/
.yls_inlineimg picture {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg); }

.yls_inlineimg picture, .yls_inlineimg picture img, .yls_inlineimg picture .lazyloader {
  -webkit-transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.64s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_inlineimg img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  will-change: transform; }

.yls_inlineimg img.lazyload, .yls_inlineimg img.lazyloading {
  opacity: 0;
  transform: scale(1.1); }

.yls_inlineimg img.lazyloaded {
  opacity: 1;
  transform: scale(1); }

.yls_inlineimg picture .lazyloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent; }

@keyframes lazyloader {
  0% {
    background: var(--color_primary--200); }

  50% {
    background: var(--color_primary--300); }

  100% {
    background: var(--color_primary--200); } }

.yls_inlineimg img.lazyload + .lazyloader, .yls_inlineimg img.lazyloading + .lazyloader {
  animation-name: lazyloader;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards; }
/****************************
 Inline Embed
 ****************************/
.yls_embed, .yls_embed__container {
  width: 100%; }

.yls_embed__container {
  position: relative;
  line-height: 0; }

.yls_embed iframe, .yls_embed embed {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border: 0;
  outline: 0;
  border-radius: inherit; }
/***** Default *****/
.yls_embed--def .yls_embed__container {
  overflow: hidden;
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg); }

.yls_embed--def iframe, .yls_embed--def embed {
  width: 100%;
  height: 450px;
  max-height: 60vh; }
/***** Full Width *****/
.yls_embed--fullw iframe, .yls_embed--fullw embed {
  width: 100%; }
/***** Video *****/
.yls_embed--vid .yls_embed__container {
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg); }

.yls_embed--vid iframe, .yls_embed--vid embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
/****************************
 Counters
 ****************************/
.yls_counter__list.cols--1, .yls_counter__list.cols--2, .yls_counter__list.cols--3 {
  --gap: 60px; }

.yls_counter__list.cols--4 {
  --gap: 48px; }

.yls_counter__list.cols--5 {
  --gap: 30px; }

.yls_counter .s-counter {
  width: 100%;
  padding: 30px 24px;
  border-radius: var(--border-radius--sm);
  box-shadow: var(--shadow--lg); }

.yls_counter .s-counter__value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--type-scale--xl-2);
  line-height: 1;
  color: var(--color_primary--900); }

.yls_counter .s-counter__prefix, .yls_counter .s-counter__suffix {
  font-size: var(--type-scale-rel--xs);
  opacity: 0.4; }

.yls_counter .s-counter__number {
  font-weight: bold; }

.yls_counter .s-counter__label {
  margin-top: var(--type-scale-rel--xs-2);
  font-size: var(--type-scale--md);
  line-height: var(--type-scale-rel--xl);
  font-weight: normal;
  text-align: center;
  color: var(--color_primary--900);
  opacity: 0.8; }

@media only screen and (max-width: 991px) {
  .yls_counter__list.cols--4 .yls_counter__item, .yls_counter__list.cols--5 .yls_counter__item {
    width: var(--w--6); } }

@media only screen and (max-width: 480px) {
  .yls_counter__list {
    --gap: 24px !important; }

  .yls_counter__list .yls_counter__item {
    width: 100% !important; }

  .yls_counter .s-counter {
    padding: 24px; }

  .yls_counter .s-counter__value {
    font-size: var(--type-scale--xl); }

  .yls_counter .s-counter__label {
    font-size: var(--type-scale--sm); } }
/****************************
 Feature List
 ****************************/
.yls_flist__wrapper {
  list-style: none;
  padding: 0; }

.yls_flist__item > div {
  --gap: var(--type-scale--md); }

@media only screen and (max-width: 991px) {
  .yls_flist__wrapper > .flex_auto__item {
    width: 100% !important; }

  .yls_flist__item > div {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important; }

  .yls_flist__wrapper.cols--1 .yls_flist__item > div {
    align-items: center !important; } }

@media only screen and (max-width: 480px) {
  .yls_flist__item > div {
    --gap: var(--type-scale--md);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important; }

  .yls_flist__wrapper.cols--1 .yls_flist__item > div {
    align-items: flex-start !important; } }
/***** Icon *****/
.yls_flist__icon {
  --size: 60px;
  position: relative;
  width: var(--size);
  height: var(--size);
  background: var(--color_primary--300);
  border-radius: var(--border-radius--sm); }

.yls_flist__wrapper.cols--1 .yls_flist__icon {
  --size: 48px; }

.yls_flist__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color_primary--700);
  font-size: calc(var(--size) / 2.5); }

.yls_flist__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  max-height: 50%; }

@media only screen and (max-width: 480px) {
  .yls_flist__icon {
    --size: 48px; } }
/***** Text *****/
.yls_flist__item h3 {
  font-size: var(--type-scale--lg);
  color: var(--color_primary--800);
  opacity: 0.8; }

.yls_flist__item h3:last-child {
  margin-bottom: 0; }

.yls_flist__item h3:not(:last-child) {
  margin-bottom: var(--type-scale-rel--xs-2); }
/****************************
 Gallery
 ****************************/
.yls_gallery__list {
  justify-content: center; }

.yls_gallery__item-trigger:hover {
  text-decoration: none; }

.yls_gallery__item-preview picture {
  padding-bottom: 75%; }

@media only screen and (max-width: 991px) {
  .yls_gallery__list > .flex_auto__item {
    width: 50% !important; } }

@media only screen and (max-width: 991px) and (min-width: 481px) {
  /* Hide uneven last child */
    .yls_gallery__list > .flex_auto__item:last-child:nth-child(odd) {
      display: none; } }

@media only screen and (max-width: 480px) {
  .yls_gallery__list > .flex_auto__item {
    width: 100% !important; } }
/***** Lightbox Settings *****/
.chocolat-wrapper {
  --padding-h: 72px;
  --padding-v: 48px;
  z-index: 99999; }

.chocolat-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.chocolat-overlay.chocolat-visible {
  opacity: 1;
  backdrop-filter: blur(20px);
  -webkit-transition: inherit;
  -moz-transition: inherit;
  transition: inherit; }

.chocolat-wrapper .chocolat-top {
  height: 48px; }

.chocolat-center {
  padding: var(--padding-v) var(--padding-h); }

.chocolat-image-canvas {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius--sm); }

.chocolat-image-wrapper {
  position: absolute;
  border-radius: inherit; }

.chocolat-image-wrapper .chocolat-img {
  border-radius: inherit; }

.chocolat-wrapper .chocolat-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 48px;
  padding: 0 var(--padding-h); }

.chocolat-wrapper .chocolat-description {
  display: none; }

.chocolat-wrapper .chocolat-pagination {
  margin: 0;
  padding: 0;
  line-height: 1; }

.chocolat-wrapper .chocolat-set-title:empty {
  display: none; }

.chocolat-wrapper .chocolat-set-title {
  margin-left: 1em;
  padding-left: 1em;
  padding-right: 0;
  line-height: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 0; }

.chocolat-wrapper .chocolat-fullscreen {
  display: none; }

@media only screen and (max-width: 991px) {
  .chocolat-wrapper {
    --padding-h: 48px;
    --padding-v: 36px; } }

@media only screen and (max-width: 480px) {
  .chocolat-wrapper {
    --padding-h: 24px;
    --padding-v: 30px; } }
/* Navigation */
.chocolat-wrapper .chocolat-left, .chocolat-wrapper .chocolat-right {
  --button-size: calc(var(--padding-h) / 1.5);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: var(--button-size);
  height: var(--button-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.chocolat-wrapper .chocolat-left:hover, .chocolat-wrapper .chocolat-right:hover {
  background: rgba(255, 255, 255, 0.75); }

.chocolat-wrapper .chocolat-left {
  left: calc(var(--padding-h) / 1.5); }

.chocolat-wrapper .chocolat-right {
  right: calc(var(--padding-h) / 1.5); }

.chocolat-wrapper .chocolat-left:before, .chocolat-wrapper .chocolat-right:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: inline-block;
  width: 25%;
  height: 25%;
  vertical-align: top;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-color: var(--color_primary--900);
  content: ''; }

.chocolat-wrapper .chocolat-left:before {
  transform-origin: 60% 45%;
  transform: translate(-50%, -50%) rotate(-135deg); }

.chocolat-wrapper .chocolat-right:before {
  transform-origin: 40% 35%;
  transform: translate(-50%, -50%) rotate(45deg); }

@media only screen and (max-width: 991px) {
  .chocolat-wrapper .chocolat-left, .chocolat-wrapper .chocolat-right {
    --button-size: var(--padding-h); }

  .chocolat-wrapper .chocolat-left {
    left: calc(var(--padding-h) / 2); }

  .chocolat-wrapper .chocolat-right {
    right: calc(var(--padding-h) / 2); } }

@media only screen and (max-width: 480px) {
  .chocolat-wrapper .chocolat-left, .chocolat-wrapper .chocolat-right {
    --button-size: calc(var(--padding-h) * 1.5); }

  .chocolat-wrapper .chocolat-left {
    left: calc(var(--padding-h) / 3); }

  .chocolat-wrapper .chocolat-right {
    right: calc(var(--padding-h) / 3); }

  .chocolat-wrapper .chocolat-left:before, .chocolat-wrapper .chocolat-right:before {
    border-width: 2px 2px 0 0; } }
/* Close Button */
.chocolat-wrapper .chocolat-close {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-left-radius: var(--border-radius--sm);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.chocolat-wrapper .chocolat-close:before, .chocolat-wrapper .chocolat-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  width: 45%;
  height: 2px;
  background: var(--color_primary--900);
  border-radius: 99px;
  content: '';
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.chocolat-wrapper .chocolat-close:before {
  transform: translate(-50%, -50%) rotate(-45deg); }

.chocolat-wrapper .chocolat-close:after {
  transform: translate(-50%, -50%) rotate(45deg); }

.chocolat-wrapper .chocolat-close:hover {
  background: rgba(255, 255, 255, 0.75); }

/****************************
 Team
 ****************************/

@media only screen and (max-width: 991px) {
  .yls_team__grid > .flex_auto__item {
    width: 50% !important; } }

@media only screen and (max-width: 480px) {
  .yls_team__grid > .flex_auto__item {
    width: 100% !important; } }
/***** Card Settings *****/
.yls_team__item {
  --img-size: 120px;
  display: inline-block;
  width: 100%;
  margin-top: calc(var(--img-size) / 2);
  background: var(--color_primary--200);
  border-radius: var(--border-radius--sm); }

.yls_team__img {
  position: relative;
  width: var(--img-size);
  height: var(--img-size);
  margin: calc(var(--img-size) / -2) auto 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow--md); }

.yls_team__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; }

.yls_team__content {
  padding: var(--p--md) var(--p--sm); }

.yls_team__content h3 {
  text-align: center;
  font-size: var(--type-scale--md); }

.yls_team__content .yls_text {
  max-width: 42ch;
  margin: 0 auto;
  text-align: center;
  line-height: var(--type-scale-rel--xl); }

@media only screen and (max-width: 991px) {
  .yls_team__item {
    --img-size: 100px; }

  .yls_team__img {
    margin-left: var(--p--sm);
    margin-right: var(--p--sm); }

  .yls_team__content {
    padding: var(--p--sm); }

  .yls_team__content h3 {
    text-align: left; }

  .yls_team__content .yls_text {
    margin: 0;
    text-align: left; } }

@media only screen and (max-width: 480px) {
  .yls_team__item {
    --img-size: 80px; } }
/****************************
 Accordions
 ****************************/
.yls_accordion__wrapper > .flex_auto--rows {
  --gap: 1rem; }

.yls_accordion {
  --border-radius: var(--border-radius--sm);
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow--lg); }

.yls_accordion__header {
  width: 100%;
  padding: var(--type-scale--sm) var(--p--sm);
  border: 0 !important;
  outline: 0 !important;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow--lg); }

.yls_accordion__header h3 {
  margin: 0;
  padding: 0;
  font-size: var(--type-scale--lg);
  text-align: left; }

.yls_accordion__content-wrapper {
  margin-top: calc(var(--border-radius) * -1);
  padding: calc(var(--p--sm) + var(--border-radius)) var(--p--sm) var(--p--sm) var(--p--sm);
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 var(--border-radius) var(--border-radius); }

.yls_accordion__content-wrapper > .flex_auto--rows {
  --gap: 1rem; }

@media only screen and (max-width: 480px) {
  .yls_accordion__header h3 {
    font-size: var(--type-scale--md); } }
/****************************
 Tabbed Content
 ****************************/
/***** Layout *****/
.yls_tc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: calc(var(--gap-y) / -2) calc(var(--gap-x) / -2); }

.yls_tc > div {
  padding: calc(var(--gap-y) / 2) calc(var(--gap-x) / 2); }
/* Top */
.yls_tc[data-tc-position="top"] {
  --gap-x: 0px;
  --gap-y: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }

.yls_tc[data-tc-position="top"] > div {
  width: 100%; }

.yls_tc[data-tc-position="top"] .yls_btn-list {
  justify-content: center; }
/* Left */
.yls_tc[data-tc-position="left"] {
  --gap-x: 30px;
  --gap-y: 0px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; }

.yls_tc[data-tc-position="left"] .yls_tc__tabs-wrapper {
  width: var(--w--3); }

.yls_tc[data-tc-position="left"] .yls_tc__tabs-content {
  width: var(--w--8); }

.yls_tc[data-tc-position="left"] .yls_btn-list button {
  width: 100%; }
/* Responsive */
@media only screen and (max-width: 991px) {
  .yls_tc[data-tc-position="left"] {
    --gap-x: 0px;
    --gap-y: 48px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; }

  .yls_tc[data-tc-position="left"] .yls_tc__tabs-wrapper, .yls_tc[data-tc-position="left"] .yls_tc__tabs-content {
    width: 100%; }

  .yls_tc[data-tc-position="left"] .yls_btn-list {
    justify-content: center; }

  .yls_tc[data-tc-position="left"] .yls_btn-list button {
    width: auto; } }

@media only screen and (max-width: 480px) {
  .yls_tc[data-tc-position="top"], .yls_tc[data-tc-position="left"] {
    --gap-x: 0px;
    --gap-y: 30px; }

  .yls_tc[data-tc-position="top"] .yls_btn-list button, .yls_tc[data-tc-position="left"] .yls_btn-list button {
    width: 100%; } }
/***** Tabs *****/
/***** Content *****/
.yls_tc__content-wrapper {
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  padding: var(--p--md);
  border-radius: var(--border-radius--sm);
  background: var(--color_primary--200);
  -webkit-transition: all 0.72s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.72s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.72s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_tc__tabs-item.is-active .yls_tc__content-wrapper {
  transform: translateY(0px);
  opacity: 1; }

@media only screen and (max-width: 480px) {
  .yls_tc__content-wrapper {
    padding: var(--p--sm); } }
/****************************
 Table
 ****************************/
.yls_table table {
  width: 100%;
  border: 0;
  border-collapse: collapse; }

.yls_table table tr {
  border-bottom: 1px solid var(--color_primary--300); }

.yls_table table th, .yls_table table td {
  padding: 1rem; }

.yls_table table th {
  color: var(--color_primary--600); }

.yls_table table th:not(:empty) {
  background: var(--color_primary--300); }
/****************************
 Miscellaneous
 ****************************/
.blur {
  -webkit-filter: blur(20px);
  filter: blur(20px); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Staatliches', sans-serif, sans-serif; }

html, body {
  font-family: 'Barlow', sans-serif, sans-serif; }

:root {
  /*--sm-loader-color-smC16908SmSn1p3T6i235-style: var(--sm-loader-color);*/
  /*--sm-loader-display-smC16908SmSn1p3T6i235-style: none;*/
  --sm-loader-color-smC16908SmSn1p3T6i235-style: var(--color_primary--500);
  --sm-loader-background-smC16908SmSn1p3T6i235-style: var(--color_primary--800);
  --sm-loader-size-smC16908SmSn1p3T6i235-style: 100px;
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  /*display: var(--sm-loader-display-smC16908SmSn1p3T6i235-style);*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--sm-loader-background-smC16908SmSn1p3T6i235-style);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__inactive {
  visibility: hidden;
  opacity: 0;
  pointer-events: none; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__active {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style.s-loader__hidden {
  display: none; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader__inner {
  width: var(--sm-loader-size-smC16908SmSn1p3T6i235-style);
  height: var(--sm-loader-size-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-plane, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-chase-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-bounce-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-wave-rect, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-pulse, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-flow-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-swing-dot, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-circle-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-circle-fade-dot:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-grid-cube, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-fold-cube:before, .s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-wander-cube {
  background-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-chase-line {
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style) transparent transparent transparent; }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style .sm-loader-spinner {
  border-color: var(--sm-loader-color-smC16908SmSn1p3T6i235-style) transparent transparent var(--sm-loader-color-smC16908SmSn1p3T6i235-style); }

.s-laycomp84 .s-loader.smC16908SmSn1p3T6i235-style {
  flex-direction: row; }

/****************************
 General Settings
 ****************************/
.s-cookie__modal86 {
  --offset: 48px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }

@media only screen and (max-width: 480px) {
  .s-cookie__modal86 {
    --offset: 24px; } }
/****************************
 Banner
 ****************************/
@keyframes ty {
  from {
    opacity: 0;
    transform: translate(0, 100px); }

  to {
    opacity: 1;
    transform: translate(0, 0); } }

.s-cookie__modal86 .s-banner {
  position: absolute;
  top: auto;
  left: var(--offset);
  right: auto;
  bottom: var(--offset);
  z-index: 100002;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - ( var(--offset) * 2 ));
  max-width: 600px;
  padding: 30px;
  background: #fff;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--xl);
  opacity: 0;
  animation-name: ty;
  animation-duration: 0.38s;
  animation-delay: 0.76s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards; }

.s-cookie__modal86 .s-banner > .flex_auto--rows {
  --gap: 24px; }

.s-cookie__modal86 .s-banner .yls_text {
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }

.s-cookie__modal86 .s-banner .s-action__list .s-settings__btn, .s-cookie__modal86 .s-banner .s-action__list .s-accept__btn {
  cursor: pointer; }

@media only screen and (max-width: 991px) {
  .s-cookie__modal86 .s-banner .yls_btn-list {
    flex-direction: column;
    align-items: stretch; }

  .s-cookie__modal86 .s-banner .yls_btn-list > * {
    text-align: center; } }

@media only screen and (max-width: 480px) {
  .s-cookie__modal86 .s-banner {
    padding: 30px 24px; } }
/****************************
 Modal
 ****************************/
.s-cookie__modal86 .s-modal {
  position: relative;
  z-index: 100001;
  width: calc(100% - ( var(--offset) * 2 ));
  max-width: 800px;
  max-height: 100%;
  padding: 30px;
  overflow: auto !important;
  background: #fff;
  border-radius: var(--border-radius--md);
  box-shadow: var(--shadow--xl); }

.s-cookie__modal86 .s-modal .s-btn--reset {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none; }
/***** Header *****/
.s-cookie__modal86 .s-modal__header {
  display: flex;
  align-items: center; }

.s-cookie__modal86 .s-modal__header h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: var(--type-scale--xl-1);
  line-height: var(--type-scale-rel--lg); }

.s-cookie__modal86 .s-modal__header h2 i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--type-scale-rel--lg);
  /* match line-height */
  height: var(--type-scale-rel--lg);
  /* match line-height */
  margin-right: var(--type-scale-rel--xs-2);
  background: var(--color_secondary--200);
  border-radius: 50%; }

.s-cookie__modal86 .s-modal__header h2 i:before {
  font-size: var(--type-scale-rel--xs); }
/***** Content *****/
.s-cookie__modal86 .s-modal__content .yls_text {
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }
/* Groups */
.s-cookie__modal86 .s-modal__content .s-group__list {
  --gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap); }

.s-cookie__modal86 .s-modal__content .s-group__actions {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-group__title {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-group__title svg {
  --height: 0.4em;
  flex-shrink: 0;
  width: calc(var(--height) * 1.62);
  height: var(--height);
  margin-top: calc(var(--height) / 2);
  margin-left: var(--height);
  fill: rgba(0, 0, 0, 0.4); }

.s-cookie__modal86 .s-modal__content .s-group__accordion {
  overflow: hidden !important;
  max-height: 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.s-cookie__modal86 .s-modal__content .s-group__accordion .s-group__info {
  margin-top: 1em;
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl); }
/* Switches */
.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch {
  --border-width: 2px;
  --color: rgba(0, 0, 0, 0.1);
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  width: 52px;
  height: 26px;
  padding: 3px;
  background: var(--color);
  border: var(--border-width) solid var(--color);
  border-radius: 50px; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch .s-switch__indicator {
  position: relative;
  display: block;
  pointer-events: 'none';
  left: 0% !important;
  height: 100%;
  border-radius: 50%;
  background: #fff; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-active {
  --color: var(--color_primary--500);
  background: var(--color);
  border: var(--border-width) solid var(--color); }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-active .s-switch__indicator {
  left: 100% !important;
  -webkit-transform: translateX(-100%) !important;
  transform: translateX(-100%) !important; }

.s-cookie__modal86 .s-modal__content .s-group__actions .s-switch.s-disabled {
  pointer-events: none;
  opacity: 0.4 !important; }
/* Button List */
.s-cookie__modal86 .s-modal__content .s-action__list {
  justify-content: space-between; }

.s-cookie__modal86 .s-modal__content .s-action__list .s-save__btn, .s-cookie__modal86 .s-modal__content .s-action__list .s-decline__btn {
  cursor: pointer; }

@media only screen and (max-width: 991px) {
  .s-cookie__modal86 .s-modal__content .yls_btn-list {
    flex-direction: column;
    align-items: stretch; }

  .s-cookie__modal86 .s-modal__content .yls_btn-list > * {
    text-align: center; } }

.yls_tb {
  z-index: 55000;
  width: 100%;
  padding: 10px 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_tb.hide-on-load:not(.scroll) {
  transform: translate(0, -100%);
  opacity: 0; }

.yls_tb.hide-on-load.scroll {
  transform: translate(0, 0);
  opacity: 1; }
/***** Offset *****/
.yls_tb.set-offset.absolute + .yls_tb__offset, .yls_tb.set-offset.fixed + .yls_tb__offset {
  height: var(--height_tb); }
/***** Position *****/
.yls_tb.absolute.position--top, .yls_tb.fixed.position--top, .yls_tb.absolute.position--bottom {
  top: 0;
  left: 0; }

.yls_tb.fixed.position--bottom {
  bottom: 0;
  left: 0; }
/***** Color Mode *****/
.yls_tb.light {
  --text_color: var(--color_body--light);
  background: #fff;
  box-shadow: var(--shadow--md); }

.yls_tb.dark {
  --text_color: #fff;
  background: var(--color_primary--900);
  background: linear-gradient(135deg, var(--color_primary--800) 0%, var(--color_primary--900) 100%); }
/****************************
 Group Settings
 ****************************/
.yls_tb__group {
  flex-grow: 1; }

@media only screen and (min-width: 992px) {
  .yls_tb__group.left {
    justify-content: flex-start; }

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

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

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

@media only screen and (max-width: 991px) {
  .yls_tb__group {
    justify-content: center; } }
/****************************
 Announcement
 ****************************/
.yls_tb__announcement {
  --gap: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 calc(var(--gap) / -2); }

.yls_tb__announcement > * {
  padding: 0 calc(var(--gap) / 2); }

.yls_tb__announcement .yls_badge:empty {
  display: none; }

.yls_tb__announcement .yls_text {
  white-space: nowrap; }
/***** Light Mode *****/
/***** Dark Mode *****/
.yls_tb.dark .yls_tb__announcement .yls_text {
  color: var(--text_color); }
/****************************
 Reviews
 ****************************/
.yls_tb__reviews {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  text-decoration: none !important; }

.yls_tb__reviews:hover {
  text-decoration: none; }

.yls_tb__reviews:hover > div:not(.yls_tb__reviews-stars) {
  opacity: 0.6; }

.yls_tb__reviews-label {
  margin-right: 1em;
  font-size: var(--type-scale--sm);
  font-weight: bold;
  color: var(--text_color); }

.yls_tb__reviews-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: -0.2em;
  line-height: 1;
  gap: 1px; }

.yls_tb__reviews-stars i {
  color: var(--color_primary--500); }

.yls_tb__reviews-stars i.fa-star-half:last-child {
  margin-right: -0.5em; }

.yls_tb__reviews:hover .yls_tb__reviews-stars i {
  color: var(--color_primary--700); }

.yls_tb__reviews-rating {
  margin-left: 0.5em;
  font-size: var(--type-scale-rel--sm);
  line-height: 1;
  color: var(--text_color); }
/****************************
 Social Media
 ****************************/
.yls_tb .yls_social-media .yls_social-media__label {
  color: var(--text_color); }
/****************************
 Breadcrumbs
 ****************************/
.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb {
  display: inline-block; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-truncate, .s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-truncate.s-index > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-delimiter {
  display: inline-flex;
  justify-content: center;
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style {
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index {
  align-items: center; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index:hover {
  display: flex !important;
  flex-direction: row; }

.s-laycomp83 .s-breadcrumbs.smC20692SmSn1p3T2-style .s-crumb.s-index.s-active {
  display: flex !important;
  flex-direction: row; }

.yls_footer {
  position: relative;
  padding: calc(var(--comp-spacing--inner) / 2) 0; }
/*
 .yls_footer:after {
 --size: 4vw;
 position: absolute;
 left: 0;
 top: -4px;
 z-index: 10;
 width: 100%;
 height: 8px;
 background: repeating-linear-gradient(
 90deg,
 transparent,
 transparent var(--size),
 var(--color_primary--700) var(--size),
 var(--color_primary--700) calc( var(--size) * 2 )
 );
 content: '';
 }
 */
.yls_footer__col.w--auto {
  width: auto !important; }

@media only screen and (max-width: 991px) {
  .yls_footer__col {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important; } }
/****************************
 Color Mode
 ****************************/
/***** Light *****/
.yls_footer.light {
  --text-color: var(--color_body--light);
  background: var(--color_primary--200); }
/***** Dark *****/
.yls_footer.dark {
  --text-color: #fff;
  background: var(--color_primary--900); }
/****************************
 Typography
 ****************************/
.yls_footer h2, .yls_footer h3, .yls_footer h4, .yls_footer h5, .yls_footer h6 {
  max-width: 24ch;
  color: var(--text-color); }

.yls_footer h2 {
  font-size: var(--type-scale--lg); }

.yls_footer .yls_text {
  max-width: 32ch;
  font-size: var(--type-scale--sm);
  line-height: var(--type-scale-rel--xl);
  color: var(--text-color); }

@media only screen and (max-width: 991px) {
  .yls_footer h2, .yls_footer h3, .yls_footer h4, .yls_footer h5, .yls_footer h6, .yls_footer .yls_text {
    margin-left: auto;
    margin-right: auto; } }
/****************************
 Social Media
 ****************************/
@media only screen and (max-width: 991px) {
  .yls_footer .yls_social-media {
    justify-content: center; } }
/****************************
 Sitemap
 ****************************/
.yls_sitemap {
  --gap: 1rem;
  margin: calc(var(--gap) / -2) 0;
  line-height: 0; }

.yls_sitemap__item {
  padding: calc(var(--gap) / 2) 0; }

@media only screen and (min-width: 992px) {
  .yls_sitemap.cols-2 {
    --col-count: 2; }

  .yls_sitemap.cols-3 {
    --col-count: 3; }

  .yls_sitemap.cols-4 {
    --col-count: 4; }

  .yls_sitemap {
    display: inline-block;
    -webkit-columns: var(--col-count);
    -moz-columns: var(--col-count);
    columns: var(--col-count);
    column-gap: 30px; }

  .yls_sitemap__item {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid; } }

@media only screen and (max-width: 991px) {
  .yls_sitemap__item {
    text-align: center; } }
/****************************
 Credits
 ****************************/
.yls_footer .yls_credits {
  line-height: var(--type-scale-rel--md); }

@media only screen and (min-width: 992px) {
  .yls_footer .yls_credits {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translate(0, -50%) scale(-1);
    z-index: 20;
    writing-mode: vertical-lr; } }

.yls_footer .yls_credits a {
  display: inline-block;
  white-space: nowrap;
  font-size: var(--type-scale--xs);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text-color); }

.yls_footer .yls_credits__label {
  color: inherit;
  white-space: nowrap;
  opacity: 0.6; }

.yls_footer .yls_credits__ref {
  color: inherit;
  white-space: nowrap; }

@media only screen and (max-width: 991px) {
  .yls_footer .yls_credits {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px; } }

.yls_header {
  --padding: 24px;
  position: relative;
  z-index: 50000;
  width: 100%;
  padding: var(--padding) 0;
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

.yls_header.light {
  background: #fff; }

.yls_header.dark {
  /*background: var(--color_primary--900);*/ }

.yls_header.dark:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.6;
  pointer-events: none;
  content: ''; }

.yls_header.absolute, .yls_header.fixed {
  top: auto; }

.yls_header__wrapper {
  align-items: center; }

@media only screen and (max-width: 991px) {
  .yls_header {
    --padding: 24px; } }

@media only screen and (max-width: 480px) {
  .yls_header {
    --padding: 24px; } }
/****************************
 Logo
 ****************************/
.yls_header__logo {
  --max-width: 300px;
  --max-height: 60px;
  flex-grow: 0; }

.yls_header__logo .logo_url {
  display: inline-block; }

.yls_header__logo .sw-logo-pic img {
  max-width: var(--max-width);
  max-height: var(--max-height);
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

@media only screen and (max-width: 480px) {
  .yls_header__logo .sw-logo-pic img {
    --max-height: 36px;
    max-width: 50vw; } }
/****************************
 Navigation Layout
 ****************************/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav {
    flex-grow: 1; }

  .yls_header__nav-wrapper {
    --gap: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 calc(var(--gap) / -2); }

  .yls_header__nav-wrapper.secondary--right {
    flex-direction: row;
    align-items: center; }

  .yls_header__nav-wrapper.secondary--top {
    --gap: 12px;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin: calc(var(--gap) / -2) 0; }

  .yls_header__nav-wrapper.primary--left {
    justify-content: space-between; }

  .yls_header__nav-wrapper.primary--right {
    justify-content: flex-end; }

  .yls_header__nav-wrapper > [class*="yls_header__nav"] {
    margin: 0 calc(var(--gap) / 2); }

  .yls_header__nav-wrapper.secondary--top > [class*="yls_header__nav"] {
    margin: calc(var(--gap) / 2) 0; }

  .yls_header .mobile {
    display: none; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  .yls_header .desktop {
    display: none; }

  .yls_header__nav-trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end; } }
/****************************
 Navigation Items
 ****************************/
/***** Label Styling *****/
.yls_header__nav-wrapper a, .yls_header__nav-wrapper a .yls_btn-primary__label {
  white-space: nowrap; }

.yls_header.dark .yls_header__nav.desktop .yls_header__nav-primary > ul > li > a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav.desktop .yls_header__nav-secondary > ul > li > a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav-modal.mobile ul li a:not([class*="yls_btn"]), .yls_header.dark .yls_header__nav .yls_social-media__label {
  color: #fff; }
/* Active Page */
.yls_header a:not([class*="yls_btn"]).current {
  color: var(--color_primary--300) !important;
  text-decoration: underline;
  text-underline-offset: 0.3em; }
/***** General Layout *****/
[class*="yls_header__nav"] > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none; }

[class*="yls_header__nav"] > ul > li {
  padding: 0; }
/* Desktop */
@media only screen and (min-width: 992px) {
  /* Sub Navigation */
    [class*="yls_header__nav"] > ul {
      --gap: 30px;
      flex-direction: row;
      align-items: center;
      margin: 0 calc(var(--gap) / -2); }
    [class*="yls_header__nav"] > ul > li {
      margin: 0 calc(var(--gap) / 2); }
    .yls_header__nav-primary li.has-sub {
      position: relative; }
    .yls_header__nav-primary .sub-nav-container {
      --background: #fff;
      --padding--h: 36px;
      --padding--v: 20px;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0);
      z-index: 10;
      min-width: calc(100% + ( var(--padding--h) * 2 ));
      padding-top: calc(0.2em + 36px);
      pointer-events: none;
      opacity: 0; }
    .yls_header__nav-primary li.has-sub:hover .sub-nav-container {
      opacity: 1;
      pointer-events: auto; }
    .yls_header__nav-primary .sub-nav-container > ul {
      --gap: 30px;
      position: relative;
      transform: translate(0, 24px);
      min-width: 100%;
      margin: calc(var(--gap) / -2) 0;
      padding: var(--padding--v) var(--padding--h);
      white-space: nowrap;
      background: var(--background);
      border-radius: var(--border-radius--md);
      box-shadow: var(--shadow--lg);
      list-style: none;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header__nav-primary li.has-sub:hover .sub-nav-container > ul {
      transform: translate(0, 0); }
    .yls_header__nav-primary .sub-nav-container > ul:before {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translate(-50%, 0) rotate(45deg);
      z-index: 5;
      width: 16px;
      height: 16px;
      content: '';
      background: var(--background);
      box-shadow: var(--shadow--md); }
    .yls_header__nav-primary .sub-nav-container > ul:after {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, 0);
      z-index: 10;
      width: 32px;
      height: 16px;
      content: '';
      background: var(--background); }
    .yls_header__nav-primary .sub-nav-container > ul > li {
      position: relative;
      z-index: 20;
      margin: calc(var(--gap) / 2) 0; }
    .yls_header__nav-primary .sub-nav-container .back-btn {
      display: none;
      opacity: 0;
      pointer-events: none;
      visibility: hidden; }
    .yls_header__nav-primary .sub-nav-container > ul ul {
      display: none; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  [class*="yls_header__nav"] > ul, .yls_header__nav-primary .sub-nav-container > ul {
    --gap: 24px;
    flex-direction: column;
    align-items: flex-end;
    margin: calc(var(--gap) / -2) 0;
    padding: 0;
    list-style: none; }

  .yls_header__nav-primary .sub-nav-container > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

  [class*="yls_header__nav"] > ul > li, .yls_header__nav-primary .sub-nav-container > ul > li {
    margin: calc(var(--gap) / 2) 0; }

  .yls_header__nav-wrapper {
    position: relative;
    -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

  .yls_header__nav-wrapper.open-sub {
    transform: translate(calc(-100% - var(--padding)), 0); }

  .yls_header__nav-wrapper.open-sub > .yls_header__nav-primary > ul > li:not(.active-sub), .yls_header__nav-wrapper.open-sub .yls_header__nav-secondary {
    opacity: 0; }

  .yls_header__nav-primary li.has-sub > a i {
    position: relative;
    transform: rotate(-90deg); }

  .yls_header__nav-primary .sub-nav-container {
    position: absolute;
    right: calc(-100% - var(--padding));
    width: 100%; }

  .yls_header__nav-primary .has-sub:not(.active-sub) .sub-nav-container {
    opacity: 0;
    pointer-events: none; }

  .yls_header__nav-primary .sub-nav-container .back-btn span {
    opacity: 0.4;
    -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }

  .yls_header__nav-primary .sub-nav-container .back-btn:hover span {
    opacity: 1; } }
/***** Primary Navigation *****/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    padding-top: var(--gap);
    border-top: 1px solid; }

  .yls_header.light .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    border-color: rgba(0, 0, 0, 0.2); }

  .yls_header.dark .yls_header__nav-wrapper.secondary--top .yls_header__nav-primary {
    border-color: rgba(255, 255, 255, 0.2); } }
/***** Secondary Navigation *****/
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav-wrapper.secondary--top .yls_header__nav-secondary a:not([class*="yls_btn"]):not([class*="s-lang"]) {
    opacity: 0.6;
    font-size: 0.95em; }

  .yls_header__nav-wrapper.secondary--top .yls_header__nav-secondary .s-lang:not([class*="s-active"]) span {
    opacity: 0.6; } }
/* Mobile */
@media only screen and (max-width: 991px) {
  .mobile .yls_header__nav-secondary a:not([class*="yls_btn"]) {
    opacity: 0.4;
    font-size: 0.9em; } }
/***** Divider *****/
.yls_header.light .yls_header__nav .yls_divider {
  background: rgba(0, 0, 0, 0.2); }

.yls_header.dark .yls_header__nav .yls_divider {
  background: rgba(255, 255, 255, 0.2); }
/* Desktop */
@media only screen and (min-width: 992px) {
  .yls_header__nav .yls_divider.hori {
    width: 72px;
    height: 1px; }

  .yls_header__nav .yls_divider.vert {
    width: 1px;
    height: 36px; } }

@media only screen and (max-width: 991px) {
  .yls_header__nav .yls_divider {
    width: 50%;
    height: 2px;
    margin-left: auto; } }
/* Language Switcher */
.yls_header__nav .yls_lang-switcher {
  --gap: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 calc(var(--gap) / -2); }

.yls_header__nav .yls_lang-switcher .s-lang, .yls_header__nav .yls_lang-switcher .s-delimiter {
  margin: 0 calc(var(--gap) / 2); }

.yls_header__nav .yls_lang-switcher .s-lang {
  font-size: 1em !important;
  line-height: 1; }

.yls_header__nav .yls_lang-switcher a.s-lang {
  padding-top: 0.1em; }

.yls_header__nav .yls_lang-switcher .s-lang.s-active {
  padding-top: 0.1em; }

.yls_header__nav .yls_lang-switcher .s-lang span {
  font-size: var(--type-scale-rel--sm);
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing--loose); }

.yls_header__nav-wrapper:not(.secondary--top) .s-lang:not(.s-active) span {
  opacity: 0.6; }

.yls_header__nav-wrapper:not(.secondary--top) .s-lang:not(.s-active):hover span {
  opacity: 1; }

.yls_header__nav .yls_lang-switcher .s-delimiter {
  padding-top: 0.2em;
  font-size: var(--type-scale-rel--sm);
  line-height: var(--type-scale-rel--sm);
  opacity: 0.6; }
/***** Mobile Trigger *****/
@media only screen and (max-width: 991px) {
  /* Active */
    .yls_header__nav-trigger-inner {
      position: relative;
      z-index: 99;
      width: 40px;
      height: 40px;
      cursor: pointer; }
    .yls_header__nav-trigger-inner:before {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      content: '';
      border-radius: 50%;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header.light .yls_header__nav-trigger-inner:before {
      background: var(--color_primary--800); }
    .yls_header.dark .yls_header__nav-trigger-inner:before {
      background: var(--color_primary--500); }
    .yls_header__nav-trigger-inner > div {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 20px;
      height: 10px; }
    .yls_header__nav-trigger-inner span {
      position: absolute;
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 0;
      -webkit-transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      -moz-transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
      will-change: top, bottom, transform, width; }
    .yls_header.light .yls_header__nav-trigger-inner span {
      background: var(--color_primary--200); }
    .yls_header.dark .yls_header__nav-trigger-inner span {
      background: var(--color_primary--200); }
    .yls_header__nav-trigger-inner span:nth-child(1) {
      top: 0; }
    .yls_header__nav-trigger-inner span:nth-child(2) {
      bottom: 0;
      width: 60%; }
    .yls_header.mobile-active .yls_header__nav-trigger-inner span:nth-child(1) {
      top: 4px;
      transform: rotate(45deg);
      width: 100%; }
    .yls_header.mobile-active .yls_header__nav-trigger-inner span:nth-child(2) {
      bottom: 4px;
      transform: rotate(-45deg);
      width: 100%; } }
/***** Mobile Overlay *****/
@media only screen and (max-width: 991px) {
  /* Idle */
  /* For browsers that do support backdrop-filter */
  /* Active */
    .yls_header__nav-modal {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 100%;
      height: 100vh; }
    .yls_header:not(.mobile-active) .yls_header__nav-modal {
      pointer-events: none !important; }
    .yls_header__nav-overlay {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      opacity: 0;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .yls_header.light .yls_header__nav-overlay {
      background: rgba(255, 255, 255, 0.99);
      /* For browsers that don't support backdrop-filter */ }
    .yls_header.dark .yls_header__nav-overlay {
      background: rgba(0, 26, 40, 0.99);
      /* For browsers that don't support backdrop-filter */ }
    @supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
    .yls_header__nav-overlay {
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px); }
    .yls_header.light .yls_header__nav-overlay {
      background: rgba(255, 255, 255, 0.8); }
    .yls_header.dark .yls_header__nav-overlay {
      background: rgba(0, 26, 40, 0.8); } }
    .yls_header:not(.mobile-active) .yls_header__nav-overlay {
      transition-delay: 0.5s; }
    .yls_header__nav {
      position: relative;
      transform: translateX(50%);
      z-index: 10;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      justify-content: center;
      width: 100%;
      opacity: 0;
      -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition-delay: 0.5s; }
    .yls_header:not(.mobile-active) .yls_header__nav {
      transition-delay: 0.2s; }
    .yls_header__nav-wrapper {
      --padding: 48px;
      --gap: 24px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      width: calc(100% - ( var(--padding) * 2 ));
      margin: calc(var(--gap) / -2) 0; }
    .yls_header__nav-primary, .yls_header__nav-secondary {
      margin: calc(var(--gap) / 2) 0; }
    .yls_header.mobile-active .yls_header__nav-overlay {
      opacity: 1; }
    .yls_header.mobile-active .yls_header__nav {
      transform: translateX(0%);
      opacity: 1; }
    .yls_header.mobile-active .yls_social-media {
      flex-direction: column;
      align-items: flex-end; }
    .yls_header.mobile-active .yls_social-media__label {
      margin-right: 0;
      margin-bottom: 8px; } }

@media only screen and (max-width: 480px) {
  .yls_header__nav-wrapper {
    --padding: 24px; } }
/****************************
 Header Offset
 ****************************/
.yls_header__offset {
  width: 100%; }

.yls_header.set-offset.absolute + .yls_header__offset, .yls_header.set-offset.fixed + .yls_header__offset {
  height: var(--height_header); }
/****************************
 Fixed Scroll Settings
 ****************************/
.yls_header.fixed.scroll-post {
  will-change: backdrop-filter; }

.yls_header.fixed.scroll-post {
  --padding: 12px;
  top: 0;
  box-shadow: var(--shadow--md); }

.yls_header.fixed.light.scroll-post {
  background: rgba(255, 255, 255, 0.95); }

.yls_header.fixed.dark.scroll-post {
  background: rgba(0, 0, 0, 0.95); }

@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
  .yls_header.fixed.scroll-post {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); }

  .yls_header.fixed.light.scroll-post {
    background: rgba(255, 255, 255, 0.8); }

  .yls_header.fixed.dark.scroll-post {
    background: rgba(0, 0, 0, 0.8); } }

.yls_header.fixed.scroll-post .yls_header__logo {
  --max-height: 30px; }

