/*********************
 Design Tokens (Project)
 *********************/
:root {
  /***** Colors *****/
  --color_primary-300: #f4f5e1;
  --color_primary-400: #dbdf80;
  --color_primary-500: #b6be00;
  --color_primary-600: #a4ab00;
  --color_primary-700: #7f8500;
  --color_primary-800: #494c00;
  --color_primary-900: #242600;
  --color_primary-gradient-light: linear-gradient(90deg, var(--color_primary-300) 0%, var(--color_primary-400) 100%);
  --color_primary-gradient-dark: linear-gradient(90deg, var(--color_primary-500) 0%, var(--color_primary-600) 100%);
  --color_secondary-300: #e9eff5;
  --color_secondary-400: #6795b3;
  --color_secondary-500: #046;
  --color_secondary-600: #003047;
  --color_secondary-700: #001b29;
  --color_secondary-800: #000e14;
  --color_secondary-gradient-light: linear-gradient(90deg, var(--color_secondary-300) 0%, var(--color_secondary-400) 100%);
  --color_secondary-gradient-dark: linear-gradient(90deg, var(--color_secondary-500) 0%, var(--color_secondary-600) 100%);
  --color_crossover-gradient-dark: linear-gradient(90deg, var(--color_primary-500) 0%, var(--color_secondary-500) 100%);
  --color_headings: #046;
  --color_body-light: #3a3c41;
  --color_body-dark: #1d1e21;
  /***** Spacing *****/
  --comp-spacing_outer: 144px;
  --comp-spacing_inner: 96px;
  /***** Dimensions *****/
  --height_top-bar: 0px;
  --height_header: 91px;
  --height_header-scroll: 66px;
  /***** Base Font Size *****/
  --base-font-size: 19px;
  /***** Font Family *****/
  --headings_font: 'bilo', sans-serif;
  --body_font: 'bilo', sans-serif;
  /***** Border Radius *****/
  --border-radius_sm: 3px;
  --border-radius_md: 6px;
  --border-radius_lg: 12px; }

@media only screen and (max-width: 1200px) {
  /***** Dimensions *****/
    :root {
      --height_header: 72px; } }

@media only screen and (max-width: 991px) {
  /***** Spacing *****/
    :root {
      --comp-spacing_outer: 108px;
      --comp-spacing_inner: 96px;
      /***** Dimensions *****/
      --height_header: 98px; } }

@media only screen and (max-width: 480px) {
  /***** Spacing *****/
    :root {
      --comp-spacing_outer: 96px;
      --comp-spacing_inner: 72px;
      /***** Dimensions *****/
      --height_header: 88px; } }
/****************************
 Typography
 ****************************/
/***** Global Typography Settings *****/
body, html {
  font-family: var(--body_font);
  font-size: var(--base-font-size);
  line-height: 1; }
/***** Text Editor Settings *****/
.yls_text {
  font-weight: 400;
  line-height: var(--type-scale-rel_xl-1);
  letter-spacing: -0.02em;
  color: var(--color_body-dark); }

.yls_text > h2:not(:first-child), .yls_text > div:not(:first-child) > h2, .yls_text > h3:not(:first-child), .yls_text > div:not(:first-child) > h3, .yls_text > h4:not(:first-child), .yls_text > div:not(:first-child) > h4, .yls_text > h5:not(:first-child), .yls_text > div:not(:first-child) > h5 {
  margin-top: 1em; }

.yls_text p:last-child {
  margin-bottom: 0 !important; }

.yls_text strong, .yls_text b {
  font-weight: var(--font-weight_bold); }
/***** 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; }
/***** Headings *****/
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--type-scale-rel_xs);
  font-family: var(--headings_font);
  font-weight: 800;
  color: var(--color_headings);
  line-height: 1.2;
  letter-spacing: -0.04em; }

h1 {
  font-size: var(--type-scale_xl-5); }

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 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: inherit; }

h1 strong:before, h2 strong:before, h3 strong:before, h4 strong:before, h5 strong:before {
  position: absolute;
  left: 50%;
  bottom: -0.06em;
  z-index: -1;
  transform: translate(-50%, 0);
  width: 120px;
  height: calc(120px * 0.14);
  content: '';
  background-image: url('https://cloud.sitemn.gr/users/VisitKinrooi/swfiles/body/wave-secondary-400.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat; }

h1 u, h2 u, h3 u, h4 u, h5 u {
  font-style: normal;
  text-decoration: none;
  color: var(--color_primary-500); }

h2 img.title-icon {
  width: auto;
  height: 1em;
  max-width: 2em;
  margin-top: -0.2em;
  margin-right: var(--type-scale-rel_xs-2); }

h2 img.title-icon[src*="placehold"], h2 img.title-icon[src=""] {
  display: none !important; }

@media only screen and (max-width: 991px) {
  h2 img.title-icon {
    height: var(--type-scale-rel_sm); } }

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

  h2 {
    font-size: var(--type-scale_xl-2); }

  h2.has-icon {
    position: relative;
    padding-left: calc(1em + var(--type-scale-rel_xs-3));
    font-size: var(--type-scale_xl-2); }

  h2 img.title-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: auto;
    margin-top: 0.2em;
    margin-right: 0; } }
/****************************
 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 *****/
/* Reset */
.yls_header-nav a:not([class*="yls_btn"]), [class*="yls_btn"]:not([class*="label"]):not([class*="list"]) {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer; }
/* 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_md); }

.yls_header-nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, [class*="yls_btn"][class*="label"] {
  font-family: var(--headings_font);
  letter-spacing: -0.04em; }
/* Dimensions */
[class*="yls_btn"]:not([class*="label"]):not([class*="list"]).wide {
  width: 100%; }

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

.yls_btn-primary.small, .yls_btn-secondary.small {
  --padding-h: 20px;
  --padding-v: 12px;
  padding: var(--padding-v) var(--padding-h); }
/* 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-1);
  vertical-align: middle;
  margin-top: -0.08em; }

.yls_header-nav a:not([class*="yls_btn"]):empty, .yls_lang-switcher .s-lang span:empty, [class*="yls_btn"][class*="label"]:empty {
  display: none; }

.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"]):empty ~ i, .yls_lang-switcher .s-lang span:empty ~ i, [class*="yls_btn"][class*="label"]:empty ~ i {
  margin-left: 0 !important;
  margin-right: 0 !important; }
/***** Primary Button *****/
/* General Settings */
.yls_btn-primary__label {
  font-weight: 500; }
/* 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: #fff; }

.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-500); }

.yls_btn-primary.dark .yls_btn-primary__label {
  color: #fff; }

.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__label {
  font-weight: 500; }
/* Light Mode */
.yls_btn-secondary.light {
  background: var(--color_secondary-300);
  border: var(--border-thickness) solid var(--color_secondary-300); }

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

.yls_btn-secondary.light i {
  color: var(--color_secondary-400); }

.yls_btn-secondary.light:hover {
  background: #fff; }
/* Dark Mode */
.yls_btn-secondary.dark {
  background: var(--color_secondary-400);
  border: var(--border-thickness) solid var(--color_secondary-500); }

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

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

.yls_btn-secondary.dark:hover {
  background: var(--color_secondary-500); }
/***** Link *****/
/* General Settings */
.yls_header-nav a:not([class*="yls_btn"]), .yls_lang-switcher .s-lang span, .yls_btn-link__label {
  font-weight: 500;
  letter-spacing: -0.06em; }
/* 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-500); }

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

.yls_social-media-label {
  margin-right: 12px;
  white-space: nowrap;
  font-size: var(--type-scale_sm); }

.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); }

.yls_social-media-item a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  font-size: var(--type-scale_xs-1);
  text-decoration: none;
  border-radius: var(--border-radius_md); }

.yls_social-media-item a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--type-scale-rel_md);
  color: var(--color_primary-500); }
/***** Variant: Solid *****/
.yls_social-media.solid .yls_social-media-list {
  --gap: 8px; }
/* Default */
.yls_social-media.solid .yls_social-media-item a {
  background: transparent;
  border: 2px solid var(--color_primary-500); }

.yls_social-media.solid .yls_social-media-item a i {
  color: var(--color_primary-500); }
/* Hover */
.yls_social-media.solid .yls_social-media-item a:hover {
  background: var(--color_primary-500); }

.yls_social-media.solid .yls_social-media-item a:hover i {
  color: #fff; }
/***** Variant: Ghost *****/
.yls_social-media.ghost .yls_social-media-list {
  --gap: 0; }
/* Default */
.yls_social-media.ghost .yls_social-media-item a {
  background: transparent; }

.yls_social-media.ghost .yls_social-media-item a i {
  color: var(--color_primary-500); }
/* Hover */
/*
 .yls_social-media.ghost .yls_social-media-item a:hover {
 background: transparent;
 }
 */
.yls_social-media.ghost .yls_social-media-item a:hover i {
  color: var(--color_primary-700); }
/****************************
 Date
 ****************************/
.yls_date {
  font-size: var(--type-scale_sm);
  font-weight: 600;
  color: var(--color_secondary-500); }
/****************************
 Card
 ****************************/
.yls_card-container {
  position: relative; }

.yls_card {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: var(--border-radius_sm); }

.yls_card .yls_card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius_sm); }

.yls_card .yls_card-img img {
  z-index: 2;
  -webkit-transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  -moz-transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important; }

.yls_card .yls_card-img-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 75%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 0.6; }

.yls_card .yls_card-img .yls_badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10; }

.yls_card .yls_card-img .yls_badge:empty {
  display: none; }

.yls_card .yls_card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  padding: 30px; }

.yls_card .yls_card-content > * {
  position: relative;
  z-index: 10; }

.yls_card .yls_card-content h3 {
  position: relative;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: calc(var(--type-scale-rel_lg) * 3);
  margin-bottom: var(--type-scale-rel_xs-2);
  padding: 0 !important;
  overflow: hidden;
  font-size: var(--type-scale-rel_xl);
  text-overflow: ellipsis;
  line-height: var(--type-scale-rel_lg);
  -webkit-line-clamp: 3;
  color: #fff;
  text-decoration: none;
  text-decoration-color: transparent; }

.yls_card .yls_card-content h3 strong:before {
  display: none; }

.yls_card .yls_card-content > h2:last-child, .yls_card .yls_card-content > h3:last-child, .yls_card .yls_card-content > h4:last-child, .yls_card .yls_card-content .yls_wrapper-item:last-child h2, .yls_card .yls_card-content .yls_wrapper-item:last-child h3, .yls_card .yls_card-content .yls_wrapper-item:last-child h4 {
  margin-bottom: 0 !important;
  text-align: center; }

.yls_card .yls_card-content .yls_text {
  color: var(--color_body-light); }

a.yls_card .yls_card-content .yls_text {
  opacity: 0.6; }

.yls_card .yls_card-content .yls_date {
  color: #fff;
  font-size: var(--type-scale_sm);
  font-weight: 500; }

.yls_card .yls_card-content .yls_badge {
  margin-bottom: 12px; }

@media only screen and (max-width: 991px) {
  .yls_card .yls_card-img {
    padding-bottom: 100% !important; } }

@media only screen and (max-width: 480px) {
  .yls_card .yls_card-content {
    padding: 24px; } }
/***** Hover *****/
@media only screen and (min-width: 992px) {
  a.yls_card:hover .yls_card-img img {
    transform: translate(-50%, -50%) scale(1.15); }

  a.yls_card:hover .yls_card-img-overlay {
    opacity: 0.9; }

  a.yls_card:hover .yls_card-content .yls_text {
    opacity: 1; } }
/***** Secondary CTA *****/
.yls_card-secondary-cta {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate(-50%, 100%);
  width: 100%;
  text-align: center; }

.yls_card-secondary-cta a {
  opacity: 0.6; }

.yls_card-secondary-cta a:hover {
  opacity: 1; }
/****************************
 Badge
 ****************************/
.yls_badge {
  display: inline-block;
  background: var(--color_secondary-400);
  color: #fff;
  font-weight: 400;
  letter-spacing: var(--letter-spacing_normal);
  line-height: 1;
  white-space: nowrap; }

.yls_badge.small {
  padding: var(--type-scale-rel_xs-2);
  /*padding-top: calc( var(--type-scale-rel_xs-2) - 0.1em );*/
  font-size: var(--type-scale_sm); }

.yls_badge.large {
  padding: var(--type-scale-rel_xs-2);
  font-size: var(--type-scale_sm); }
/****************************
 Feature List - Compact
 ****************************/
.yls_feat-list.compact {
  --gap: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: calc(var(--gap) / -2); }

.yls_feat-list.compact.columns__1 {
  --width: 100%; }

.yls_feat-list.compact.columns__2 {
  --width: 50%; }

.yls_feat-list.compact.columns__3 {
  --width: 33.333%; }

.yls_feat-list.compact .yls_feat-list-item {
  width: var(--width);
  padding: calc(var(--gap) / 2); }

.yls_feat-list.compact .yls_feat-list-item > .yls_wrapper {
  --gap: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: calc(var(--gap) / -2) 0; }

.yls_feat-list.compact .yls_feat-list-item > .yls_wrapper > * {
  margin: calc(var(--gap) / 2) 0; }

.yls_feat-list.compact .yls_feat-list-icon {
  position: relative;
  width: 72px;
  height: 72px;
  background: var(--color_secondary-gradient-dark);
  border-radius: var(--border-radius_lg);
  box-shadow: var(--shadow_lg); }

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

.yls_feat-list.compact .yls_feat-list-item h3 {
  font-size: var(--type-scale_md); }
/****************************
 Inline Image
 ****************************/
.yls_inline-img {
  position: relative; }

.yls_inline-img img {
  border-radius: var(--border-radius_sm); }

@media only screen and (min-width: 992px) {
  .yls_inline-img:not(.natural) {
    display: inline-block;
    width: 100%;
    box-shadow: var(--shadow_xl); }

  .yls_inline-img:not(.natural), .yls_inline-img.natural img {
    box-shadow: var(--shadow_xl); }

  .yls_inline-img.natural img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 65vh;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow_xl); }

  .yls_inline-img:not(.natural) img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center; } }

@media only screen and (min-width: 481px) and (max-width: 991px) {
  .yls_inline-img:not(.md_natural) {
    display: inline-block;
    width: 100%; }

  .yls_inline-img.md_natural {
    padding-bottom: 0; }

  .yls_inline-img:not(.md_natural), .yls_inline-img.md_natural img {
    box-shadow: var(--shadow_xl); }

  .yls_inline-img.md_natural img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 65vh;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow_xl); }

  .yls_inline-img:not(.md_natural) img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center; } }

@media only screen and (max-width: 480px) {
  .yls_inline-img:not(.sm_natural) {
    display: inline-block;
    width: 100%; }

  .yls_inline-img.sm_natural {
    padding-bottom: 0; }

  .yls_inline-img:not(.sm_natural), .yls_inline-img.sm_natural img {
    box-shadow: var(--shadow_xl); }

  .yls_inline-img.sm_natural img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 65vh;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow_xl); }

  .yls_inline-img:not(.sm_natural) img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center; } }
/***** Waves *****/
/* Over - General */
.yls_inline-img.wave__over-a:after, .yls_inline-img.wave__over-b:after {
  position: absolute;
  z-index: 20;
  width: 240px;
  height: calc(240px * 0.14);
  content: '';
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat; }

.yls_inline-img.wave__over-a:after {
  left: 0;
  bottom: 24px;
  transform: translate(-50%, 0);
  background-image: url(https://cloud.sitemn.gr/users/VisitKinrooi/swfiles/body/wave-primary-500.svg); }

.yls_inline-img.wave__over-b:after {
  right: 0;
  top: 24px;
  transform: translate(50%, 0);
  background-image: url(https://cloud.sitemn.gr/users/VisitKinrooi/swfiles/body/wave-secondary-400.svg); }

@media only screen and (max-width: 991px) {
  .yls_inline-img.wave__over-a:after, .yls_inline-img.wave__over-b:after {
    width: 160px;
    height: calc(160px * 0.14); } }
/* Mask */
.yls_inline-img.wave__mask {
  box-shadow: none; }

.yls_inline-img.wave__mask:after {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%, 0);
  z-index: 20;
  width: 105%;
  padding-bottom: calc(105% * 0.1516);
  content: '';
  background-image: url(https://cloud.sitemn.gr/users/VisitKinrooi/swfiles/body/waves-overlay-white.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat; }
/****************************
 Inline Embed
 ****************************/
.yls_inline-embed[class*="aspect"] {
  position: relative; }

.yls_inline-embed[class*="aspect"] embed, .yls_inline-embed[class*="aspect"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--border-radius_sm);
  box-shadow: var(--shadow_xl); }
/****************************
 Carousel
 ****************************/
/***** Controls - Navigation *****/
.yls_carousel .swiper-button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 52px;
  height: 52px;
  margin: 0;
  background: var(--color_secondary-400);
  border: 6px solid #fff;
  border-radius: 50%;
  outline: 0; }

.yls_carousel .swiper-button-disabled {
  opacity: 0; }

.yls_carousel .swiper-button-prev {
  left: -26px; }

.yls_carousel .swiper-button-next {
  right: -26px; }

.yls_carousel .swiper-button i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--type-scale_xs);
  color: #fff; }

.yls_carousel .swiper-button-prev i {
  padding: 0 0.15em 0 0; }

.yls_carousel .swiper-button-next i {
  padding: 0 0 0 0.15em; }

.yls_carousel .swiper-button::after {
  display: none; }

@media only screen and (max-width: 480px) {
  .yls_carousel .swiper-button {
    border-width: 2px; } }
/* Overlayed Mode */
@media only screen and (max-width: 991px) {
  .yls_carousel.overlay-ui .swiper-button-prev {
    left: 12px; }

  .yls_carousel.overlay-ui .swiper-button-next {
    right: 12px; } }

@media only screen and (max-width: 480px) {
  .yls_carousel.overlay-ui .swiper-button {
    width: 36px;
    height: 36px; }

  .yls_carousel.overlay-ui .swiper-button-prev {
    left: 24px; }

  .yls_carousel.overlay-ui .swiper-button-next {
    right: 24px; } }
/***** Controls - Pagination *****/
.yls_carousel .swiper-pagination {
  bottom: 0; }

.yls_carousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.2);
  outline: 0;
  opacity: 1; }
/* For browsers that do support backdrop-filter */
@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
  .yls_carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); } }

.yls_carousel .swiper-pagination-bullet-active {
  background: var(--color_primary-500);
  border-color: transparent; }
/* Overlayed Mode */
.yls_carousel.overlay-ui .swiper-pagination {
  bottom: 0;
  padding-bottom: 24px; }

.yls_carousel.overlay-ui .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2); }

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

@media only screen and (max-width: 480px) {
  .yls_carousel.overlay-ui .swiper-pagination {
    padding-bottom: 12px; } }
/***** Lazy Load *****/
/*
 .yls_carousel img.swiper-lazy,
 .yls_carousel img.swiper-lazy ~ .yls_card-img-overlay,
 .yls_carousel img.swiper-lazy ~ .swiper-lazy-preloader {
 transition-delay: .38s !important;
 }
 */
.yls_carousel .yls_img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--color_secondary-400);
  -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 .yls_img-placeholder i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff; }

.yls_carousel .swiper-lazy-preloader {
  --color: #fff;
  border-left-color: var(--color);
  border-right-color: var(--color);
  border-bottom-color: var(--color);
  opacity: 0.6; }
/* Loading */
.yls_carousel img.swiper-lazy:not(.swiper-lazy-loaded) {
  opacity: 0; }

.yls_carousel img.swiper-lazy:not(.swiper-lazy-loaded) ~ .yls_card-img-overlay {
  opacity: 0; }

.yls_carousel img.swiper-lazy.swiper-lazy-loaded ~ .yls_img-placeholder {
  background: transparent; }
/****************************
 Page Title
 ****************************/
.yls_page-title {
  position: relative;
  z-index: 30; }

.yls_page-title .yls_container > div {
  justify-content: space-between; }

@media only screen and (max-width: 991px) {
  .yls_page-title .yls_container > div {
    flex-direction: column;
    justify-content: flex-start; } }
/***** Content *****/
.yls_page-title-content {
  position: relative;
  display: inline-block;
  margin-top: -73px;
  padding: 30px 48px;
  background: var(--color_secondary-300);
  border-radius: var(--border-radius_md); }

.yls_page-title-content .flex_auto__rows {
  --gap: 24px; }

.yls_page-title-content h1 {
  margin-bottom: 0;
  font-size: var(--type-scale_xl-4);
  line-height: var(--type-scale-rel_sm); }

.yls_page-title-content h1 strong:before {
  background-image: url('https://cloud.sitemn.gr/users/VisitKinrooi/swfiles/body/wave-secondary-400.svg'); }

.yls_page-title-content .yls_btn-list {
  margin-bottom: calc(( (var(--gap) / 2) + 30px + 29px ) * -1); }

@media only screen and (max-width: 991px) {
  .yls_page-title-content {
    margin-top: -48px; }

  .yls_page-title-content h1 {
    font-size: var(--type-scale_xl-1); } }

@media only screen and (max-width: 480px) {
  .yls_page-title-content {
    width: 100%;
    margin-top: -42px;
    padding: 30px 24px; }

  .yls_page-title-content .flex_auto__rows {
    --gap: 12px; }

  .yls_page-title-content h1 {
    font-size: var(--type-scale_xl); } }
/****************************
 Table
 ****************************/
.yls_table {
  max-width: 100%;
  overflow-x: auto; }

.yls_table table {
  width: 100%;
  border: 0;
  border-collapse: collapse; }

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

.yls_table table th, .yls_table table td {
  padding: 1rem;
  white-space: nowrap; }

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

.yls_table table th:not(:empty) {
  background: var(--color_secondary-300); }

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

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

.yls_footer {
  position: relative;
  background: var(--color_secondary-500); }
/****************************
 Layout
 ****************************/
.yls_footer .yls_container > .flex_auto__grid > .flex_auto-item > .flex_auto__rows {
  --gap: 18px; }
/****************************
 Title
 ****************************/
.yls_footer h2 {
  font-size: var(--type-scale_md);
  color: #fff; }
/****************************
 Text
 ****************************/
.yls_footer .yls_text {
  line-height: var(--type-scale-rel_xl);
  color: #fff; }

.yls_footer .yls_text a {
  padding: 0;
  background: transparent;
  font-weight: 600;
  color: #fff;
  opacity: 0.65; }

.yls_footer .yls_text a:hover {
  color: var(--color_primary-500);
  opacity: 1; }
/****************************
 Credits
 ****************************/
.yls_footer-credits {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%) scale(-1);
  writing-mode: vertical-lr;
  line-height: var(--type-scale-rel_md); }

.yls_footer-credits a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-size: var(--type-scale_xs);
  color: var(--color_secondary-300);
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.yls_footer-credits-label {
  font-weight: 500;
  opacity: 0.6; }

.yls_footer-credits a:hover .yls_footer-credits-label {
  opacity: 1; }

.yls_footer-credits-ref {
  font-weight: 700; }
/****************************
 Sitemap
 ****************************/
.yls_sitemap .cgrid {
  --gap-y: 12px; }

/* Default css from Loader */
:root {
  --sm-loader-color-smC16908SmSn1p3T8i235-style: var(--sm-loader-color);
  --sm-loader-display-smC16908SmSn1p3T8i235-style: none; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  display: var(--sm-loader-display-smC16908SmSn1p3T8i235-style); }

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

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

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style.s-loader__hidden {
  display: none; }

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

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

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

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  background-color: #fff; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  z-index: 99999; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  display: flex; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  position: fixed; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px; }

:root {
  --sm-loader-color-smC16908SmSn1p3T8i235-style: #6795b3;
  border-color: #6795b3; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style .sm-loader__inner {
  width: 100px;
  height: 100px; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  flex-direction: row; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  justify-content: center; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  align-items: center; }

.s-laycomp94 .s-loader.smC16908SmSn1p3T8i235-style {
  -webkit-transition: all 0.22s ease 0s;
  transition: all 0.22s ease 0s; }

.yls_header {
  --padding: 12px;
  position: relative;
  z-index: 50000;
  width: 100%;
  padding: var(--padding) 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow_md);
  -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); }
/* For browsers that do support backdrop-filter */
@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
  @media only screen and (min-width: 1201px) {
    .yls_header {
      background: rgba(255, 255, 255, 0.9);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px); } } }

.yls_header.scroll {
  --padding: 6px; }
/*
 .yls_header__offset {
 min-height: var(--height_header);
 }
 */
.yls_header-wrapper {
  --gap: 48px;
  align-items: center; }

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

@media only screen and (max-width: 480px) {
  .yls_header {
    --padding: 12px; } }
/****************************
 Logo
 ****************************/
.yls_header-logo {
  --max-width: clamp(0px, 200px, 15vw);
  --max-height: 80px;
  flex-grow: 0; }

.yls_header.scroll .yls_header-logo {
  --max-width: 200px;
  --max-height: 60px; }

.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: 1201px) {
  .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: 1200px) {
  .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
 ****************************/
/***** 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; }

.yls_header-nav a:not([class*="yls_btn"]) {
  font-size: var(--type-scale_md);
  color: var(--color_secondary-600);
  white-space: nowrap; }

.yls_header-nav a[class*="yls_btn"] {
  white-space: nowrap; }

.yls_header-nav a.yls_btn-secondary {
  --padding-h: 15px;
  background: transparent !important; }

.yls_header-nav a.yls_btn-secondary:hover {
  background: var(--color_secondary-300) !important; }

.yls_header-nav a.yls_btn-secondary i {
  font-size: var(--type-scale-rel_sm) !important;
  color: var(--color_secondary-600) !important; }

.yls_header.dark .yls_header-nav-primary > ul > li > a:not([class*="yls_btn"]), .yls_header.dark .yls_header-nav-secondary > ul > li > a:not([class*="yls_btn"]) {
  color: #fff; }
/* Desktop */
@media only screen and (min-width: 1201px) {
  /* Sub Navigation */
    [class*="yls_header-nav"] > ul {
      --gap: 22px;
      flex-direction: row;
      align-items: center;
      margin: 0 calc(var(--gap) / -2); }
    .yls_header-nav-secondary > ul {
      --gap: 8px; }
    [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: 1200px) {
  [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;
    top: 50%;
    right: calc(-100% - var(--padding));
    transform: translate(0, -50%);
    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: 1201px) {
  .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: 1201px) {
  .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: 1200px) {
  .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: 1201px) {
  .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: 1200px) {
  .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_normal); }

.yls_header-nav-wrapper:not(.secondary__top) .s-lang:not(.s-active) span {
  opacity: 0.8; }

.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; }

@media only screen and (min-width: 1201px) {
  .yls_header-nav .yls_lang-switcher {
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 1; }

  .yls_header-nav .yls_lang-switcher .s-lang__menu {
    --padding: 8px;
    position: absolute;
    top: 100%;
    left: calc(var(--padding) * -1);
    display: none;
    padding: var(--padding);
    border-radius: var(--border-radius_md);
    background: #fff; }

  .yls_header-nav .yls_lang-switcher:hover .s-lang__menu {
    display: block; }

  .yls_header-nav .yls_lang-switcher .s-active {
    cursor: default; }

  .yls_header-nav .yls_lang-switcher .s-active span {
    font-weight: 500; } }
/***** Mobile Trigger *****/
@media only screen and (max-width: 1200px) {
  /* 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: '';
      background: rgba(0, 0, 0, 0.05);
      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-nav-trigger-inner > div {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 10px; }
    .yls_header-nav-trigger-inner span {
      position: absolute;
      display: block;
      width: 100%;
      height: 2px;
      background: var(--color_primary-900);
      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-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.dark .yls_header-nav-trigger-inner:before {
      background: rgba(255, 255, 255, 0.05); }
    .yls_header.mobile-active.dark .yls_header-nav-trigger-inner span {
      background: #fff; }
    .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: 1200px) {
  /* 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, 0, 0, 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, 0, 0, 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; } }

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

/* Default css from To Top */
.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  display: flex;
  justify-content: center;
  align-items: center; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style[aria-hidden='true'] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style svg {
  fill: rgba(0, 68, 102, 0.3); }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style svg {
  width: 40%; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style svg {
  height: 40%; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  background-color: #e9eff5; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  width: 64px; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  height: 64px; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  z-index: 9999; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  -ms-transform: translate3d(0px, 20px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(0px, 20px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform: translate3d(0px, 20px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1); }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  position: fixed; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style {
  top: auto;
  bottom: 30px;
  left: auto;
  right: 30px; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style:hover svg {
  fill: #046; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style:hover {
  background-color: #6795b3; }

.s-laycomp83 .s-to__top.smC16908SmSn1p3T2i189-style[aria-hidden='false'] {
  -ms-transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1); }

/****************/
/* Cookie Modal */
/****************/
/* Add custom CSS here */
/*******************/
/* SiteManager CSS */
/*******************/
/* General */
.s-cookie__modal95 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center; }
/* Banner Main */
.s-cookie__modal95 .s-banner {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100002;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.s-cookie__modal95 .s-banner .s-text p {
  margin-bottom: 0; }

@media (max-width: 991px) {
  .s-cookie__modal95 .s-banner {
    flex-direction: column; } }
/* Banner Content */
.s-cookie__modal95 .s-banner .s-action__list {
  display: flex;
  align-items: center; }

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

@media (max-width: 576px) {
  .s-cookie__modal95 .s-banner .s-action__list {
    flex-direction: column; } }
/* Modal Main */
.s-cookie__modal95 .s-modal {
  position: relative;
  z-index: 100001;
  overflow: auto !important;
  max-height: 100%; }

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

.s-cookie__modal95 .s-modal__header .s-logo[src*="placehold.it"], .s-cookie__modal95 .s-modal__header .s-logo[src=""] {
  display: none; }

.s-cookie__modal95 .s-modal__header .s-close__btn {
  display: flex;
  margin-left: auto !important;
  flex-shrink: 0; }

.s-cookie__modal95 .s-modal__header .s-close__btn svg {
  height: 100%;
  width: 100%; }
/* Modal Content */
.s-cookie__modal95 .s-modal__content .s-group__list {
  display: flex;
  flex-direction: column; }

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

.s-cookie__modal95 .s-modal__content .s-group__actions .s-group__title {
  display: flex;
  align-items: center;
  cursor: pointer; }

.s-cookie__modal95 .s-modal__content .s-group__actions .s-group__title svg {
  flex-shrink: 0; }

.s-cookie__modal95 .s-modal__content .s-group__actions .s-switch {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0; }

.s-cookie__modal95 .s-modal__content .s-group__actions .s-switch .s-switch__indicator {
  position: relative;
  display: block;
  pointer-events: 'none';
  left: 0% !important;
  height: 100%; }

.s-cookie__modal95 .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__modal95 .s-modal__content .s-group__actions .s-switch.s-disabled {
  pointer-events: none;
  opacity: 0.4 !important; }

.s-cookie__modal95 .s-modal__content .s-group__accordion {
  overflow: hidden !important;
  max-height: 0; }

.s-cookie__modal95 .s-modal__content .s-action__list {
  display: flex;
  align-items: center;
  justify-content: flex-end; }

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

.s-cookie__modal95 {
  background-color: rgba(103, 149, 179, 0.5); }

.s-cookie__modal95 {
  padding: 0px 0px 0px 0px; }

.s-cookie__modal95 .s-modal {
  background-color: #fff; }

.s-cookie__modal95 .s-modal {
  width: 100%; }

.s-cookie__modal95 .s-modal {
  min-width: auto;
  max-width: 700px; }

.s-cookie__modal95 .s-modal {
  min-height: auto;
  max-height: 100%; }

.s-cookie__modal95 .s-modal .s-modal__header {
  background-color: #f7f7f7; }

.s-cookie__modal95 .s-modal .s-modal__header {
  padding: 30px 30px 30px 30px; }

.s-cookie__modal95 .s-modal .s-modal__header .s-logo {
  min-width: auto;
  max-width: 50px; }

.s-cookie__modal95 .s-modal .s-modal__header .s-logo {
  display: none !important; }

.s-cookie__modal95 .s-modal .s-modal__header .s-title {
  font-size: 24px; }

.s-cookie__modal95 .s-modal .s-modal__header .s-title {
  color: #1d1e21; }

.s-cookie__modal95 .s-modal .s-modal__header .s-close__btn {
  width: 20px; }

.s-cookie__modal95 .s-modal .s-modal__header .s-close__btn {
  height: 20px; }

.s-cookie__modal95 .s-modal .s-modal__header .s-close__btn {
  fill: #b6be00; }

.s-cookie__modal95 .s-modal .s-modal__content {
  padding: 30px 30px 30px 30px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-text {
  font-size: 1rem; }

.s-cookie__modal95 .s-modal .s-modal__content .s-text {
  line-height: 1.2; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list {
  margin: -10px 0px -10px 0px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list {
  padding: 30px 0px 0px 0px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group {
  padding: 10px 0px 10px 0px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  background-color: #fff; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  -webkit-border-radius: 50px 50px 50px 50px;
  border-radius: 50px 50px 50px 50px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  border: 2px solid #e9eff5; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  width: 48px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  height: 24px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  padding: 3px 3px 3px 3px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  background-color: #fff; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  border: 2px solid #e9eff5; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch.s-active {
  background-color: #b6be00; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch.s-active {
  border: 2px solid #b6be00; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  -webkit-transition: all 0.22s ease 0s;
  transition: all 0.22s ease 0s; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch.s-active .s-switch__indicator {
  border: 2px solid #fff; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  -webkit-transition: all 0.22s ease 0s;
  transition: all 0.22s ease 0s; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title {
  font-size: 0.83rem; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title {
  font-weight: bold; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title {
  letter-spacing: -0.03rem; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title {
  text-transform: uppercase; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title svg {
  margin: 0px 0px 0px 7px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title svg {
  fill: #b6be00; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  margin: 15px 0px 0px 0px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__accordion {
  -webkit-transition: all 0.12s ease 0s;
  transition: all 0.12s ease 0s; }

.s-cookie__modal95 .s-modal .s-modal__content .s-action__list .s-link {
  color: #b6be00; }

.s-cookie__modal95 .s-modal .s-modal__content .s-action__list .s-link {
  text-decoration: underline; }

.s-cookie__modal95 .s-modal .s-modal__content .s-action__list .s-link {
  margin: 0px 20px 0px 0px; }

.s-cookie__modal95 .s-modal .s-modal__content .s-action__list {
  padding: 30px 0px 0px 0px; }

.s-cookie__modal95 .s-banner {
  background-color: #fff; }

.s-cookie__modal95 .s-banner {
  padding: 30px 30px 30px 30px; }

.s-cookie__modal95 .s-banner .s-text {
  text-align: left; }

.s-cookie__modal95 .s-banner .s-text {
  width: 50%; }

.s-cookie__modal95 .s-banner .s-action__list {
  padding: 0px 0px 0px 0px; }

.s-cookie__modal95 .s-banner .s-action__list .s-link {
  color: #b6be00; }

.s-cookie__modal95 .s-banner .s-action__list .s-link {
  text-decoration: underline; }

.s-cookie__modal95 .s-banner .s-action__list .s-link {
  margin: 0px 20px 0px 0px; }

@media (max-width: 768px) {
  .s-cookie__modal95 .s-banner .s-text {
    text-align: center; }

  .s-cookie__modal95 .s-banner .s-text {
    width: 100%; }

  .s-cookie__modal95 .s-banner .s-action__list {
    padding: 20px 0px 0px 0px; } }

@media (max-width: 480px) {
  .s-cookie__modal95 {
    padding: 15px 15px 15px 15px; }

  .s-cookie__modal95 .s-modal .s-modal__header {
    padding: 15px 15px 15px 15px; }

  .s-cookie__modal95 .s-modal .s-modal__header .s-logo {
    min-width: auto;
    max-width: 30px; }

  .s-cookie__modal95 .s-modal .s-modal__content {
    padding: 15px 15px 15px 15px; }

  .s-cookie__modal95 .s-modal .s-modal__content .s-group__list {
    padding: 15px 0px 0px 0px; }

  .s-cookie__modal95 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
    width: 52px; }

  .s-cookie__modal95 .s-modal .s-modal__content .s-action__list {
    padding: 15px 0px 0px 0px; }

  .s-cookie__modal95 .s-banner {
    padding: 30px 15px 30px 15px; }

  .s-cookie__modal95 .s-banner .s-text {
    text-align: center; }

  .s-cookie__modal95 .s-banner .s-text {
    width: 100%; }

  .s-cookie__modal95 .s-banner .s-action__list {
    padding: 15px 0px 0px 0px; }

  .s-cookie__modal95 .s-banner .s-action__list .s-link {
    margin: 0px 0px 20px 0px; } }

