/*********************
 VARIABLES
 *********************/
:root {
  /* COLORS - PRIMARY */
  --color_primary-400: #cf5a4f;
  /* Shade - 30% */
  --color_primary-500: #ff6f61;
  /* Base color */
  --color_primary-600: #ff8675;
  /* Tint - 30% */
  --color_primary-700: #ffa38e;
  /* Tint - 50% */
  /* COLORS - SECONDARY */
  --color_secondary-gray: #b3bec2;
  --color_secondary-blue: #1c3947;
  --color_secondary-pink: #f0d2c6;
  --color_secondary-powder-blue: #b1dbd7;
  --color_secondary-green: #003b39;
  --color_secondary-orange: #f1dabb;
  --color_secondary-gray: #b3bec2;
  /* COLORS - TEXT */
  --color_headings: #1c3947;
  --color_body: #1c3947;
  /* TYPOGRAPHY - FONTS */
  --font-family_headings: "DM Serif Display", serif;
  --font-family_body: "DM Sans", sans-serif;
  --font-family_alt: "Eveleth", sans-serif;
  /* TYPOGRAPHY - WEIGHTS */
  --font-weight_hairline: 100;
  --font-weight_extra-light: 200;
  --font-weight_light: 300;
  --font-weight_regular: 400;
  --font-weight_book: 500;
  --font-weight_medium: 600;
  --font-weight_bold: 700;
  --font-weight_black: 800;
  --font-weight_heavy: 900;
  /* TYPOGRAPHY - SCALE */
  --scale_xs-5: 0.233;
  --scale_xs-5: 0.279;
  --scale_xs-4: 0.335;
  --scale_xs-3: 0.402;
  --scale_xs-2: 0.482;
  --scale_xs-1: 0.579;
  --scale_xs: 0.694;
  --scale_sm: 0.833;
  --scale_md: 1;
  --scale_lg: 1.2;
  --scale_xl: 1.44;
  --scale_xl-1: 1.728;
  --scale_xl-2: 2.074;
  --scale_xl-3: 2.488;
  --scale_xl-4: 2.986;
  --scale_xl-5: 3.583;
  --scale_xl-6: 4.3;
  /* LAYOUT - WHITE SPACE */
  --whitespace_xs-4: 12px;
  --whitespace_xs-3: 24px;
  --whitespace_xs-2: 30px;
  --whitespace_xs-1: 36px;
  --whitespace_xs: 48px;
  --whitespace_sm: 72px;
  --whitespace_md: 96px;
  --whitespace_lg: 108px;
  --whitespace_xl: 144px;
  /* LAYOUT - BREAKPOINTS */
  --breakpoint_xs: 480px;
  --breakpoint_sm: 768px;
  --breakpoint_md: 991px;
  --breakpoint_lg: 1140px;
  --breakpoint_xl: 1280px;
  /* BORDERS - BORDER RADIUS */
  --border-radius_sm: 2px;
  --border-radius_md: 6px;
  --border-radius_lg: 36px;
  /* EFFECTS - SHADOWS */
  --shadow_sm: 0 1px 1px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow_md: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow_lg: 0 2px 20px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow_xl: 0 8px 20px rgba(0, 0, 0, 0.06), 0 24px 60px rgba(0, 0, 0, 0.12);
  /* MISC */
  --header_height: 118px;
  --header_height-sticky: 90px;
  --footer_height: -320px;
  --sticky-offset: calc(var(--whitespace_xs-1) + var(--header_height-sticky)); }

@media only screen and (max-width: 991px) {
  /* MISC */
    :root {
      --header_height: 102px; } }

@media only screen and (max-width: 480px) {
  /* MISC */
    :root {
      --header_height: 96px; } }
/*********************
 DEFAULT CLASSES
 *********************/
html, body {
  scroll-behavior: smooth; }

body {
  position: relative;
  overflow-x: hidden; }

.hide, .hidden, .s-hidden {
  display: none !important; }

.no-scroll {
  height: 100%;
  overflow-y: hidden; }

div[data-anchor="true"]:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0; }

.row::after {
  display: none; }

.fade {
  opacity: 0.5 !important; }
/***** Auto Layout *****/
.auto-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.auto-layout-v {
  flex-direction: column; }

.auto-layout-v > * {
  margin: calc(var(--whitespace_xs-1) / 2) 0; }

.auto-layout-v .reset-layout-spacing {
  margin-bottom: calc(var(--whitespace_xs-1) * -1); }
/***** Quick Flex Align *****/
@media only screen and (min-width: 992px) {
  .xl-align-left {
    justify-content: flex-start !important; }

  .xl-align-center {
    justify-content: center !important; }

  .xl-align-right {
    justify-content: flex-end !important; }

  .xl-align-distribute {
    justify-content: space-between !important; } }

@media only screen and (min-width: 481px) and (max-width: 991px) {
  .md-align-left {
    justify-content: flex-start !important;
    text-align: left; }

  .md-align-center {
    justify-content: center !important; }

  .md-align-right {
    justify-content: flex-end !important; }

  .md-align-distribute {
    justify-content: space-between !important; } }

@media only screen and (max-width: 480px) {
  .xs-align-left {
    justify-content: flex-start !important;
    text-align: left; }

  .xs-align-center {
    justify-content: center !important; }

  .xs-align-right {
    justify-content: flex-end !important; }

  .xs-align-distribute {
    justify-content: space-between !important; } }
/****************************
 BACKGROUNDS
 ****************************/
/***** Light *****/
.orange {
  background: var(--color_secondary-orange); }

.pink {
  background: var(--color_secondary-pink); }

.powder-blue {
  background: var(--color_secondary-powder-blue); }

.gray {
  background: var(--color_secondary-gray); }

.orange .db-item--content .db-item--date, .pink .db-item--content .db-item--date, .powder-blue .db-item--content .db-item--date, .gray .db-item--content .db-item--date, .orange .db-item--content .db-item--time, .pink .db-item--content .db-item--time, .powder-blue .db-item--content .db-item--time, .gray .db-item--content .db-item--time, .orange .db-item--content .db-item--location, .pink .db-item--content .db-item--location, .powder-blue .db-item--content .db-item--location, .gray .db-item--content .db-item--location, .orange .db-item--content h2, .pink .db-item--content h2, .powder-blue .db-item--content h2, .gray .db-item--content h2, .orange .db-item--content h3, .pink .db-item--content h3, .powder-blue .db-item--content h3, .gray .db-item--content h3, .orange .db-item--content h4, .pink .db-item--content h4, .powder-blue .db-item--content h4, .gray .db-item--content h4, .orange .db-item--content h5, .pink .db-item--content h5, .powder-blue .db-item--content h5, .gray .db-item--content h5, .orange .db-item--content h6, .pink .db-item--content h6, .powder-blue .db-item--content h6, .gray .db-item--content h6, .orange .db-item--content .s-text, .pink .db-item--content .s-text, .powder-blue .db-item--content .s-text, .gray .db-item--content .s-text, .orange .db-item--content .db-item--readmore, .pink .db-item--content .db-item--readmore, .powder-blue .db-item--content .db-item--readmore, .gray .db-item--content .db-item--readmore {
  color: var(--color_secondary-blue) !important; }

.orange .social-media_list.full .social-media_item a {
  background: var(--color_primary-500); }
  .orange .social-media_list.full .social-media_item a i {
    color: var(--color_secondary-orange); }

.pink .social-media_list.full .social-media_item a {
  background: var(--color_secondary-green); }
  .pink .social-media_list.full .social-media_item a i {
    color: #fff; }

.powder-blue .social-media_list.full .social-media_item a {
  background: var(--color_secondary-blue); }
  .powder-blue .social-media_list.full .social-media_item a i {
    color: #fff; }
/***** Dark *****/
.blue {
  background: var(--color_secondary-blue); }

.green {
  background: var(--color_secondary-green); }

.coral {
  background: var(--color_primary-500); }

.blue h1, .green h1, .coral h1, .blue h2, .green h2, .coral h2, .blue h3, .green h3, .coral h3, .blue h4, .green h4, .coral h4, .blue h5, .green h5, .coral h5, .blue h6, .green h6, .coral h6, .blue .s-text, .green .s-text, .coral .s-text, .blue .db-item--date, .green .db-item--date, .coral .db-item--date, .blue .db-item--time, .green .db-item--time, .coral .db-item--time, .blue .db-item--location, .green .db-item--location, .coral .db-item--location, .blue .db-item--readmore, .green .db-item--readmore, .coral .db-item--readmore, .blue .result > div, .green .result > div, .coral .result > div, .blue .s-btn-alt > div, .green .s-btn-alt > div, .coral .s-btn-alt > div {
  color: #fff !important; }
  .blue .icon img, .green .icon img, .coral .icon img {
    filter: invert(100%); }

.blue .social-media_list.full .social-media_item a {
  background: var(--color_secondary-powder-blue); }
  .blue .social-media_list.full .social-media_item a i {
    color: var(--color_secondary-blue); }

.green .social-media_list.full .social-media_item a {
  background: var(--color_secondary-pink); }
  .green .social-media_list.full .social-media_item a i {
    color: var(--color_secondary-green); }

.coral .social-media_list.full .social-media_item a {
  background: var(--color_secondary-orange); }
  .coral .social-media_list.full .social-media_item a i {
    color: var(--color_primary-500); }
/*********************
 BUTTONS
 *********************/
.s-button-list {
  --gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: calc(var(--gap) * -1); }

.s-button-list > * {
  margin: calc(var(--gap) / 2); }
/***** GLOBAL *****/
.s-btn, .s-btn-alt, .s-btn-text {
  --padding-h: 24px;
  --padding-v: 16px;
  --border-thickness: 2px;
  position: relative;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden !important;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--border-radius_md); }

.s-btn > div, .s-btn-alt > div, .s-btn-alt.filter-btn, .s-btn-alt.s-load__more, .s-btn-text > div {
  position: relative;
  z-index: 10;
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  font-size: calc(var(--scale_xs) * 1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /*padding-bottom: 0.2em;*/ }

.s-btn i, .s-btn-alt i, .s-btn-text i {
  font-size: 0.579em;
  vertical-align: middle;
  margin: 0 0 0 0.694em;
  color: inherit; }
/***** DEFAULT BUTTON *****/
/* Enabled */
.s-btn {
  padding: var(--padding-v) var(--padding-h);
  background: var(--color_primary-500); }

.s-btn > div, input[type="submit"].s-btn, .s-btn > i {
  color: #fff; }
/* Hover */
.s-btn:hover {
  background: var(--color_primary-400); }
/***** ALTERNATIVE BUTTON *****/
/* Enabled */
.s-btn-alt {
  padding: calc(var(--padding-v) - var(--border-thickness)) calc(var(--padding-h) - var(--border-thickness));
  border: var(--border-thickness) solid var(--color_primary-500);
  background: transparent;
  backdrop-filter: blur(20px); }

.s-btn-alt.dark-mode {
  border-color: var(--color_secondary-pink); }

.s-btn-alt > div {
  color: var(--color_headings); }
/* Hover */
.s-btn-alt:hover {
  border-color: var(--color_primary-400);
  background: var(--color_primary-400); }

.s-btn-alt:hover > div {
  color: #fff; }
/***** TEXT BUTTON *****/
/* Enabled */
.s-btn-text {
  padding: var(--gap);
  background: transparent; }

.s-btn-text > div {
  color: var(--color_headings); }
/* Hover */
.s-btn-text > div {
  color: var(--color_primary-500); }
/****************************
 CARDS
 ****************************/
.card {
  border-radius: var(--border-radius_sm); }
/***** Small *****/
.card-size--sm {
  padding: var(--whitespace_xs-2); }

.card-size--sm h2, .card-size--sm h3 {
  font-family: var(--font-family_body);
  font-size: calc(var(--scale_lg) * 1rem);
  line-height: var(--scale_xl); }
/***** Medium  *****/
.card-size--md {
  padding: var(--whitespace_xs-1); }

@media only screen and (max-width: 480px) {
  .card-size--md {
    padding: var(--whitespace_xs-2); } }
/***** Large  *****/
.card-size--lg {
  padding: var(--whitespace_xs); }

@media only screen and (max-width: 480px) {
  .card-size--lg {
    padding: var(--whitespace_xs-2); } }
/****************************
 CALL-TO-ACTION - TILE
 ****************************/
.cta-tile-comp {
  padding: var(--whitespace_lg) 0; }

.cta-tile-comp .cta-tile {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow_xl);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

@media only screen and (min-width: 992px) {
  .cta-tile-comp .cta-tile {
    min-height: 450px; } }

@media only screen and (max-width: 991px) {
  .cta-tile-comp {
    padding: var(--whitespace_md) 0; }

  .cta-tile-comp .container {
    max-width: 100%;
    padding: 0 var(--whitespace_xs); }

  .cta-tile-comp .cta-tile {
    justify-content: center; } }

@media only screen and (max-width: 480px) {
  .cta-tile-comp {
    padding: var(--whitespace_sm) 0; }

  .cta-tile-comp .container {
    padding: 0 var(--whitespace_xs-3); } }
/***** Background *****/
.cta-tile-comp .cta-tile .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%; }

.cta-tile-comp .cta-tile .background .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%; }

.cta-tile-comp .cta-tile .background .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover; }

.cta-tile-comp .cta-tile .background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--color_secondary-blue) 100%);
  opacity: 0.7; }

.cta-tile-comp .cta-tile .background .copyright {
  bottom: 0;
  left: 0; }

@media only screen and (max-width: 991px) {
  .cta-tile-comp .cta-tile .background .overlay {
    background: var(--color_secondary-blue); } }
/***** Content *****/
.cta-tile-comp .cta-tile .content {
  position: relative;
  z-index: 10;
  width: 41.666%;
  max-width: 500px;
  padding: var(--whitespace_md) var(--whitespace_xs) var(--whitespace_md) 0; }

.cta-tile-comp .cta-tile .content h2 {
  color: #fff; }

.cta-tile-comp .cta-tile .content .s-text {
  color: #fff; }

@media only screen and (max-width: 991px) {
  .cta-tile-comp .cta-tile .content {
    width: 100%;
    padding: var(--whitespace_sm) var(--whitespace_xs); }

  .cta-tile-comp .cta-tile .content h2, .cta-tile-comp .cta-tile .content .s-text {
    text-align: center; } }

@media only screen and (max-width: 480px) {
  .cta-tile-comp .cta-tile .content {
    padding: var(--whitespace_xs) var(--whitespace_xs-2); } }
/****************************
 DATABASE - GENERAL SETTINGS
 ****************************/
/***** Intro *****/
.db-intro {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--whitespace_xs); }

.db-intro h2 {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; }

.db-intro .s-text {
  text-align: center;
  max-width: 500px;
  margin: 0 auto; }
/***** Overview *****/
.db-overview > .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
/***** Items *****/
.db-item {
  padding: 0 calc(var(--whitespace_xs-2) / 2); }

.db-item a.db-card {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  box-shadow: var(--shadow_xl);
  border-radius: var(--border-radius_sm); }
/***** Image *****/
.db-item--image {
  position: relative;
  overflow: hidden; }

.db-item--image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover; }
/***** Title *****/
.card-size--md h2, .card-size--md h3 {
  font-size: calc(var(--scale_xl-1) * 1rem);
  line-height: var(--scale_lg);
  margin-bottom: calc(var(--scale_xs-2) * 1em);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }
/***** Text *****/
.card-size--md .s-text {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 !important;
  line-height: var(--scale_xl-1);
  -webkit-line-clamp: 4;
  height: calc(1em * var(--scale_xl-1) * 4); }

.card-size--md .s-text p {
  display: inline; }
/***** Read More *****/
.db-item--readmore {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -4px; }

.db-item--readmore > * {
  margin: 0 4px; }

.card-size--md .db-item--readmore {
  margin-top: var(--whitespace_xs-3); }

.db-item--readmore span {
  font-family: var(--font-family_alt);
  font-size: calc(var(--scale_xs) * 1rem);
  font-weight: var(--font-weight_regular);
  letter-spacing: 0.06em;
  text-transform: uppercase; }

.db-item--readmore i {
  font-size: calc(var(--scale_xs) * 1rem); }
/***** Back Button *****/
.db-item--back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start; }

.db-item--back a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -4px;
  text-decoration: none;
  color: var(--color_primary-500);
  font-size: calc(var(--scale_xs) * 1rem);
  line-height: var(--scale_md);
  opacity: 0.6; }

.db-item--back a:hover {
  opacity: 1; }

.db-item--back a > * {
  margin: 0 4px; }

.db-item--back a i {
  font-size: calc(var(--scale_md) * 1em);
  color: var(--color_secondary-blue); }

.db-item--back a span {
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  letter-spacing: 0.06em;
  text-transform: uppercase; }
/***** Date, Time & Location *****/
.db-item--date, .db-item--time, .db-item--location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -4px; }

.db-item--date > *, .db-item--time > *, .db-item--location > * {
  margin: 0 4px; }

.db-item--date i, .db-item--time i, .db-item--location i {
  font-size: calc(var(--scale_xs) * 1rem);
  margin-top: 0.65em; }

.db-item--date span, .db-item--time span, .db-item--location span {
  font-family: var(--font-family_body);
  font-size: calc(var(--scale_md) * 1rem);
  font-weight: var(--font-weight_regular); }

.db-item--date span {
  font-weight: var(--font-weight_bold); }
/***** Time Slot *****/
.compact .db--timeslot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column; }

.compact .db--timeslot .db-item--when {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0 calc(var(--whitespace_xs-1) / -2); }

.compact .db--timeslot .db-item--when > * {
  margin: 0 calc(var(--whitespace_xs-1) / 2); }

.compact .db--timeslot .db-item--location {
  margin: 0; }

.compact .db--timeslot .location--city:not(:empty):before {
  content: ", ";
  margin-left: -0.2em; }

@media only screen and (max-width: 991px) {
  .card-size--md h2, .card-size--md h3 {
    font-size: calc(var(--scale_xl) * 1rem);
    line-height: var(--scale_lg);
    margin-bottom: calc(var(--scale_xs-2) * 1em); } }
/***** Button List *****/
.db-buttons {
  margin-top: var(--whitespace_xs); }
/****************************
 TYPOGRAPHY
 ****************************/
html, body {
  font-size: 16px;
  font-family: var(--font-family_body) !important;
  color: var(--color_body); }
/* HEADINGS - GLOBAL */
h1, h2, h3, h4, h5, h6 {
  /* Font Settings */
  font-family: var(--font-family_headings);
  font-weight: var(--font-weight_regular);
  line-height: var(--scale_lg);
  font-style: normal;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  /* Style Settings */
  color: var(--color_headings);
  /* Box Settings */
  margin-bottom: calc(var(--scale_xs) * 1em);
  text-align: left; }

h1 {
  font-size: calc(var(--scale_xl-4) * 1rem); }

h2 {
  font-size: calc(var(--scale_xl-3) * 1rem); }

h3 {
  font-size: calc(var(--scale_xl-2) * 1rem); }

h4 {
  font-size: calc(var(--scale_xl-1) * 1rem); }

h5 {
  font-size: calc(var(--scale_xl) * 1rem); }

h6 {
  /* Font Settings */
  font-size: calc(var(--scale_sm) * 1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  /* Style Settings */
  opacity: 0.6; }

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

  h2 {
    font-size: calc(var(--scale_xl-2) * 1rem); }

  h3 {
    font-size: calc(var(--scale_xl-1) * 1rem); }

  h4 {
    font-size: calc(var(--scale_xl) * 1rem); }

  h5 {
    font-size: calc(var(--scale_lg) * 1rem); } }
/* BODY - GLOBAL */
.s-text {
  line-height: var(--scale_xl-1); }

.s-text > h2:not(:first-child), .s-text > div:not(:first-child) > h2, .s-text > h3:not(:first-child), .s-text > div:not(:first-child) > h3, .s-text > h4:not(:first-child), .s-text > div:not(:first-child) > h4, .s-text > h5:not(:first-child), .s-text > div:not(:first-child) > h5 {
  margin-top: calc(var(--scale_md) * 1em); }

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

.s-text b, .s-text strong {
  font-weight: var(--font-weight_bold); }
/*********************
 LINK IN TEXT
 *********************/
.s-text a {
  padding: 0.135em;
  text-decoration: none;
  text-decoration-color: transparent !important;
  background-position-y: 0%;
  background-size: auto 175%;
  font-weight: inherit;
  color: inherit;
  background-image: linear-gradient(180deg, transparent 50%, var(--color_primary-500) 50%); }

.s-text a:hover {
  color: #fff;
  background-position-y: 100%; }
/****************************
 SOCIAL MEDIA LIST
 ****************************/
/* GLOBAL */
.social-media_list {
  --size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center; }

.social-media_list .social-media_item {
  line-height: 0; }

.social-media_list .social-media_item a {
  display: inline-block;
  position: relative;
  width: var(--size);
  height: var(--size);
  text-decoration: none; }

.social-media_list .social-media_item a:hover {
  opacity: 0.7; }

.social-media_list .social-media_item a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: normal; }

@media only screen and (max-width: 991px) {
  .social-media_list {
    justify-content: center; } }
/* FULL */
.social-media_list.full {
  margin: -4px; }

.social-media_list.full .social-media_item {
  margin: 4px; }

.social-media_list.full .social-media_item a {
  border-radius: var(--border-radius_md);
  background: #fff;
  box-shadow: var(--shadow_md); }

.social-media_list.full .social-media_item a i {
  font-size: calc(var(--scale_sm) * 1rem);
  color: var(--color_primary-500); }
/* FLOATING */
.social-media_list.floating {
  margin: calc(var(--whitespace_xs-3) / 2);
  margin-left: calc((var(--size) - (var(--scale_md) * 1rem)) / -2); }

.social-media_list.floating .social-media_item a i {
  font-size: calc(var(--scale_md) * 1rem);
  color: var(--color_primary-500); }

@media only screen and (max-width: 991px) {
  .social-media_list.floating {
    margin-left: 0; } }
/*********************
 COPYRIGHT
 *********************/
.copyright {
  position: absolute;
  z-index: 20;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  text-align: center;
  line-height: 1;
  font-size: calc(var(--scale_sm) * 1rem); }

.copyright:empty {
  display: none; }

.copyright.top {
  top: 0; }

.copyright.right {
  right: 0; }

.copyright.bottom {
  bottom: 0; }

.copyright.left {
  left: 0; }
/*********************
 TRANSITIONS
 *********************/
a, a:before, a:after, a *, i, input, textarea, button, button *, button:before, button:after, .s-btn, .s-btn *, .s-btn-alt, .s-btn-alt *, .s-link *, .sw_alink, .sw_alink > div, .sm-file-control:before, .s-tile *, .tile *, .close-btn, .close-btn i {
  -webkit-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  -moz-transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1) !important; }
/*********************
 LISTS
 *********************/
#sw_content .s-text ul {
  margin-top: 0 !important; }

#sw_content .s-text ul ul {
  margin-top: 8px; }

#sw_content .s-text ul li:last-child, #sw_content .s-text ol li:last-child {
  margin-bottom: 0 !important; }

#sw_content .s-text ul:first-child, #sw_content .s-text ol:first-child {
  margin-top: 0 !important; }

#sw_content .s-text ul:last-child, #sw_content .s-text ol:last-child {
  margin-bottom: 0 !important; }

#sw_content .s-text ol :first-child {
  counter-reset: ol-counter; }

#sw_content .s-text ol li {
  counter-increment: ol-counter; }

#sw_content .s-text ol li:before {
  content: counters(ol-counter, ".") ""; }
/*********************
 BLOCKQUOTE
 *********************/
body blockquote p {
  margin-bottom: 0; }
/*********************
 FORM STYLE
 *********************/
body form label {
  white-space: nowrap; }
/*********************
 RESPONSIVE IMAGES
 *********************/
.s-img__wrapper.responsive {
  --max-width: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: var(--max-width);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius); }

.s-img__wrapper.responsive.contain {
  box-shadow: none !important;
  padding-bottom: 0 !important; }

.s-img__wrapper.responsive.cover.minor-third {
  padding-bottom: clamp(0%, calc(var(--max-width) * 1.2), 90vh) !important;
  /* min = 0%, preference = 120%, max = 60vh */ }

.s-img__wrapper.responsive.cover.perfect-fourth {
  padding-bottom: clamp(0%, calc(var(--max-width) * 1.333), 90vh) !important;
  /* min = 0%, preference = 133.3%, max = 60vh */ }

.s-img__wrapper.responsive.cover.golden-ratio-v {
  padding-bottom: clamp(0%, calc(var(--max-width) * 1.618), 90vh) !important;
  /* min = 0%, preference = 161.8%, max = 60vh */ }

.s-img__wrapper.responsive.cover.square {
  padding-bottom: clamp(0%, var(--max-width), 90vh) !important;
  /* min = 0%, preference = 100%, max = 60vh */ }

.s-img__wrapper.responsive.cover.golden-ratio-h {
  padding-bottom: 61.8% !important; }

.s-img__wrapper.responsive.cover.sdtv {
  padding-bottom: 75% !important; }

.s-img__wrapper.responsive.cover.hdtv {
  padding-bottom: 56.25% !important; }

.s-img__wrapper.responsive.cover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  margin: 0 !important; }

@media only screen and (max-width: 480px) {
  .s-img__wrapper.responsive.cover.minor-third, .s-img__wrapper.responsive.cover.perfect-fourth, .s-img__wrapper.responsive.cover.golden-ratio-v, .s-img__wrapper.responsive.cover.square {
    --max-width: 300px; } }
/****************************
 EMBED/IFRAME
 ****************************/
body embed, body iframe {
  width: 100% !important; }
/*********************
 RESPONSIVE COLUMNS
 *********************/
@media only screen and (min-width: 1200px) {
  body .col-xl-12 {
    width: 100%; } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body .col-xl-12:not(.col-md-12), body .col-lg-12 {
    width: 100%; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body .col-xl-12:not(.col-md-12), body .col-lg-12:not(.col-md-12), body .col-md-12, body div[class*="col-lg"]:not([class*="col-md"]) {
    width: 100%; } }

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body .col-lg-12:not(.col-sm-12), body .col-md-12:not(.col-sm-12), body .col-sm-12, body div[class*="col-md"]:not([class*="col-sm"]) {
    width: 100%; } }

@media only screen and (max-width: 575px) {
  body .col-lg-12:not(.col-xs-12), body .col-md-12:not(.col-xs-12), body .col-sm-12:not(.col-xs-12), body .col-xs-12, body div[class*="col-md"]:not([class*="col-xs"]) {
    width: 100%; } }

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

body h6 {
  font-family: 'Eveleth', sans-serif, sans-serif; }

body h1 {
  font-family: 'DM Serif Display', sans-serif, sans-serif; }

.s-body .s-text ul {
  margin: 30px 0px 30px 0px; }

.s-body .s-text ul {
  padding: 0px 0px 0px 0px; }

.s-body .s-text ul > * {
  margin: 0px 0px 15px 0px; }

.s-body .s-text ul > * {
  padding: 0px 0px 0px 30px; }

.s-body .s-text ul li {
  position: relative; }

.s-body .s-text ul {
  list-style-type: none; }

.s-body .s-text ul li:before {
  content: ''; }

.s-body .s-text ul li:before {
  background-color: #f0d2c6; }

.s-body .s-text ul li:before {
  -webkit-border-radius: 99px 99px 99px 99px;
  border-radius: 99px 99px 99px 99px; }

.s-body .s-text ul li:before {
  width: 5px; }

.s-body .s-text ul li:before {
  height: 5px; }

.s-body .s-text ul li:before {
  margin: 0px 12px 0px 0px; }

.s-body .s-text ul li:before {
  display: block; }

.s-body .s-text ul li:before {
  position: absolute; }

.s-body .s-text ul li:before {
  top: 12px; }

.s-body .s-text ul li:before {
  left: 0px; }

.s-body .s-text ul ul li:before {
  content: ''; }

.s-body .s-text ul ul li:before {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0); }

.s-body .s-text ul ul li:before {
  border: 1px solid #1c3947; }

body hr {
  background-color: #1c3947; }

body hr {
  border: 0px solid #003b39; }

body hr {
  width: 100%; }

body hr {
  height: 1px; }

body hr {
  margin: 96px 0px 96px 0px; }

body hr {
  opacity: 0.1; }

blockquote {
  font-size: 1.2rem; }

blockquote {
  background-color: rgba(255, 163, 142, 0.7); }

blockquote {
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px; }

blockquote {
  border-left: 4px solid #f1dabb; }

blockquote {
  margin: 36px 0px 36px 0px; }

blockquote {
  padding: 1.44em 1.44em 1.44em 1.44em; }

@media (max-width: 480px) {
  body hr {
    margin: 72px 0px 72px 0px; } }

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.loader71 .logo-spinner {
  position: relative;
  width: 50px;
  height: 50px;
  background-image: url('https://cloud.sitemn.gr/users/ThxAgency/swfiles/body/loader.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
  animation: pulsate-fwd 0.5s ease-in-out infinite both; }

.loader71 .ball-clip-rotate > div {
  border-bottom-color: transparent; }

.loader71 .ball-clip-rotate-pulse > div:last-child {
  background: 0 0;
  left: -14px;
  top: 0px; }

.loader71 .ball-scale-ripple > div, .loader71 .ball-scale-ripple-multiple > div {
  background: transparent !important; }

.loader71 .triangle-skew-spin > div {
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  background: transparent !important; }

.loader71 .ball-clip-rotate-multiple > div {
  border-bottom-color: transparent !important;
  border-top-color: transparent !important;
  background-color: transparent !important; }

.loader71 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center; }

.loader71 .loader-inner {
  display: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.loader71 .loader-inner > div, .loader71 .ball-clip-rotate-pulse > div:first-child, .loader71 .ball-rotate > div:after, .loader71 .ball-rotate > div:before {
  background: #f1dabb;
  background-color: #f1dabb;
  border-color: #f1dabb;
  border-color: #f1dabb; }

.loader71 {
  background: #fff;
  background-color: #fff; }

.background-icon {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05; }

.background-icon.left {
  left: 0;
  transform: translate(-50%, 0); }

.background-icon.left.relativeto-bottom {
  bottom: 0;
  transform: translate(-50%, var(--footer_height)); }

.background-icon.right {
  right: 0;
  transform: translate(50%, 0); }

.background-icon.right.relativeto-bottom {
  bottom: 0;
  transform: translate(50%, var(--footer_height)); }

.background-icon img {
  height: clamp(0px, 700px, 77vh); }

@media only screen and (max-width: 991px) {
  .background-icon {
    display: none;
    visibility: hidden;
    opacity: 0; } }

.s-header-1 {
  position: absolute;
  -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-header-1:before {
  content: '';
  width: 100%;
  height: 150%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--color_secondary-blue) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.6; }

.s-header-1 .container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  padding: 0 var(--whitespace_md); }

.s-header-1 .header-row {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between; }

.s-header-1 .logo {
  padding: 0; }

.s-header-1 .header-nav {
  padding: 0 15px;
  display: flex;
  align-items: center;
  align-self: center; }

@media only screen and (max-width: 991px) {
  .s-header-1 .container {
    padding: 0 var(--whitespace_xs); } }

@media only screen and (max-width: 480px) {
  .s-header-1 .container {
    padding: 0 var(--whitespace_xs-3); } }
/********************
 LANG SWITCHER
 ********************/
.s-header-1 .s-language__switcher {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0 -2px; }

.s-header-1 .s-language__switcher > * {
  margin: 0 2px; }

.s-header-1 .s-language__switcher .s-lang {
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: calc(var(--scale_sm) * 0.95rem); }

.s-header-1 .s-language__switcher .s-lang .s-text {
  line-height: 1; }

.s-header-1 .s-language__switcher .s-delimiter {
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  line-height: 1;
  color: #fff;
  font-size: calc(var(--scale_xs) * 1rem); }
/********************
 DESKTOP
 ********************/
.s-header-1 .header-nav#desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: -12px 0;
  line-height: 1; }

.s-header-1 .header-nav#desktop .navigation-container {
  margin: 6px 0; }

.s-header-1 .header-nav#desktop .navigation-container > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 calc(var(--whitespace_xs-2) * -1);
  list-style: none;
  line-height: 1; }

.s-header-1 .header-nav#desktop .navigation-container > ul > li {
  white-space: nowrap;
  line-height: 1;
  margin: 0 calc(var(--whitespace_xs-2) / 2); }

.s-header-1 .header-nav#desktop .navigation-container > ul > li > a {
  position: relative;
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff; }

.s-header-1 .header-nav#desktop .navigation-container.primary-navigation > ul > li > a {
  font-size: calc(var(--scale_sm) * 1rem); }

.s-header-1 .header-nav#desktop .navigation-container.secondary-navigation > ul > li > a {
  font-size: calc(var(--scale_sm) * 0.95rem);
  color: rgba(255, 255, 255, 0.6);
  color: #fff;
  opacity: 0.6; }

.s-header-1 .header-nav#desktop .navigation-container.secondary-navigation > ul > li > a:hover {
  color: #fff;
  opacity: 1; }

.s-header-1 .header-nav#desktop .navigation-container > ul > li > a:before {
  content: '';
  width: 0;
  height: 3px;
  background: var(--color_primary-500);
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 0); }

.s-header-1 .header-nav#desktop .navigation-container > ul > li > a:hover:before {
  width: calc(100% + 8px); }

.s-header-1 .header-nav#desktop ul ul, .s-header-1 .header-nav#desktop ul ul ul {
  display: none !important; }

@media only screen and (min-width: 991px) {
  .s-header-1 .header-nav#mobile {
    display: none; } }
/********************
 ADAPTIVE
 ********************/
.s-header-1.adaptive:before {
  display: none; }

.s-header-1.adaptive.light .header-nav#desktop .navigation-container > ul > li > a, .s-header-1.adaptive.light .s-language__switcher .s-lang, .s-header-1.adaptive.light .s-language__switcher .s-delimiter {
  color: var(--color_secondary-blue); }

.s-header-1.adaptive.light .header-nav:not(.mobile-active) .mobile-nav-btn, .s-header-1.adaptive.light .header-nav:not(.mobile-active) .mobile-nav-btn:after {
  border-color: var(--color_secondary-blue); }

.s-header-1.adaptive.light .header-nav:not(.mobile-active) .mobile-nav-btn:before, .s-header-1.adaptive.light .header-nav:not(.mobile-active) .mobile-nav-btn:after {
  background-color: var(--color_secondary-blue); }
/********************
 MOBILE
 ********************/
@media only screen and (max-width: 991px) {
  .s-header-1 .header-nav#desktop {
    display: none; } }

.s-header-1 #mobile .mobile-overlay {
  -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);
  transform: translate(0, -100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden; }

.s-header-1 #mobile.mobile-active .mobile-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  backdrop-filter: blur(4px); }

.s-header-1 #mobile.mobile-active .mobile-overlay {
  transform: translate(0, 0);
  height: 100vh;
  z-index: 20000;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.s-header-1 #mobile .mobile-overlay > ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  -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-header-1 #mobile .mobile-overlay > ul.has-sub {
  transform: translate(-100%, 0); }

.s-header-1 #mobile .mobile-overlay > ul li {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0; }

.s-header-1 #mobile .mobile-overlay > ul li a {
  display: inline-block;
  font-family: var(--font-family_alt);
  font-weight: var(--font-weight_regular);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff; }

.s-header-1 .header-nav#mobile ul > li > ul {
  display: none;
  margin: 0;
  padding: 0 0 0 1em;
  width: 100%;
  position: absolute;
  right: -100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 320px;
  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); }

.s-header-1 .header-nav#mobile ul > li > ul.sub-visible {
  display: block; }

.s-header-1 .header-nav#mobile ul > li > ul > li {
  padding: 0;
  text-align: right; }

.s-header-1 .header-nav#mobile ul > li > ul > li a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.s-header-1 #mobile .mobile-overlay > ul ul {
  list-style: none;
  padding-left: 1em; }
/********************
 MOBILE MENU BUTTON
 ********************/
.mobile-nav-btn {
  border-top: 2px solid;
  background-color: transparent !important;
  height: 16px;
  width: 29px;
  z-index: 200001;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  -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); }

.mobile-nav-btn:before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  border: 0 !important;
  top: 50%;
  transform: translate(0, calc(-50% - 1px));
  -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); }

.mobile-nav-btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 80%;
  right: 0;
  bottom: 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); }

.mobile-active .mobile-nav-btn {
  border-color: transparent !important;
  height: auto;
  padding-bottom: 100%; }

.mobile-active .mobile-nav-btn:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 100%; }

.mobile-active .mobile-nav-btn:after {
  -webkit-transform: rotate(135deg) translate(0, -50%);
  -moz-transform: rotate(135deg) translate(0, -50%);
  -khtml-transform: rotate(135deg) translate(0, -50%);
  -o-transform: rotate(135deg) translate(0, -50%);
  transform: rotate(135deg) translate(0, -50%);
  bottom: 50%;
  width: 100%; }
/********************
 MOBILE SUBMENU BUTTON
 ********************/
.mobile-subnav-btn {
  z-index: 200001;
  opacity: 0;
  cursor: pointer;
  -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); }

.mobile-subnav-btn.back-visible {
  opacity: 1; }
/****************************
 FIXED
 ****************************/
.s-header-1.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow_lg);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transform: none !important; }

.s-header-1.fixed:before {
  display: none; }

.s-header-1.fixed .logo img {
  height: 48px !important; }

.s-header-1.fixed .header-nav#desktop .navigation-container > ul > li > a, .s-header-1.fixed .s-language__switcher .s-lang, .s-header-1.fixed .s-language__switcher .s-delimiter {
  color: var(--color_secondary-blue) !important; }

.s-header-1.fixed .header-nav:not(.mobile-active) .mobile-nav-btn {
  border-color: var(--color_secondary-blue); }

.s-header-1.fixed .header-nav:not(.mobile-active) .mobile-nav-btn:before, .s-header-1.fixed .header-nav:not(.mobile-active) .mobile-nav-btn:after {
  background-color: var(--color_secondary-blue); }

.s-header-1 {
  width: 100%; }

.s-header-1 {
  padding: 24px 0px 24px 0px; }

.s-header-1 {
  z-index: 20000; }

.s-header-1 {
  top: 0px;
  bottom: auto;
  left: 0px;
  right: auto; }

.s-header-1 .logo img {
  height: 70px; }

.s-header-1 .logo img {
  min-width: 0px;
  max-width: 100%; }

.s-header-1 .header-nav#desktop ul > li > ul {
  background-color: #b1dbd7; }

.s-header-1 .header-nav#desktop ul > li > ul {
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px; }

.s-header-1 .header-nav ul > li > ul > li > a {
  font-size: 13px; }

.s-header-1 .header-nav ul > li > ul > li > a {
  color: #b3bec2; }

.s-header-1 .header-nav ul > li > ul > li > a {
  padding: 8px 15px 8px 15px; }

.mobile-nav-btn, .mobile-nav-btn:before, .mobile-nav-btn:after {
  background-color: #fff;
  border-color: #fff; }

.mobile-active .mobile-nav-btn, .mobile-active .mobile-nav-btn:before, .mobile-active .mobile-nav-btn:after {
  background-color: #fff;
  border-color: #fff; }

.s-header-1 #mobile.mobile-active .mobile-overlay {
  background: linear-gradient(90deg, rgba(255, 111, 97, 0.98) 20%, rgba(255, 111, 97, 0.85) 100%); }

.s-header-1 #mobile.mobile-active .mobile-overlay {
  padding: 30px 30px 30px 30px; }

.s-header-1 #mobile .mobile-overlay > ul li a {
  padding: 12px 0px 12px 0px; }

.mobile-subnav-btn {
  -ms-transform: translate3d(0px, -50%, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  -webkit-transform: translate3d(0px, -50%, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1);
  transform: translate3d(0px, -50%, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale3d(1, 1, 1); }

.mobile-subnav-btn {
  position: absolute; }

.mobile-subnav-btn {
  top: 50%;
  bottom: auto;
  left: 30px;
  right: auto; }

.mobile-subnav-btn i {
  font-size: 14px; }

.mobile-subnav-btn i {
  font-weight: normal; }

.mobile-subnav-btn i {
  color: #b3bec2; }

@media (max-width: 768px) {
  .s-header-1 .logo img {
    height: 54px; }

  .s-header-1 #mobile.mobile-active .mobile-overlay {
    padding: 30px 15% 30px 15%; } }

@media (max-width: 480px) {
  .s-header-1 .logo img {
    height: 48px; }

  .s-header-1 .logo img {
    min-width: 0px;
    max-width: 50vw; }

  .s-header-1 .header-nav ul > li > ul > li > a {
    font-size: 15px; }

  .s-header-1 #mobile.mobile-active .mobile-overlay {
    padding: 30px 15% 30px 15%; } }

#go-top81 {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 999;
  width: var(--whitespace_xs);
  height: var(--whitespace_xs);
  margin: 0 var(--whitespace_xs-2) var(--whitespace_xs-2) 0;
  background: var(--color_secondary-blue);
  border: 0;
  border-radius: var(--border-radius_md);
  box-shadow: var(--shadow_lg);
  -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); }

#go-top81.cd-is-visible {
  opacity: 1;
  visibility: visible; }

#go-top81:hover {
  background: var(--color_secondary-gray);
  transform: translate(0, -6px); }

#go-top81 i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--scale_md) * 1rem);
  color: #fff;
  line-height: 1;
  -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); }

#go-top81:hover i {
  color: var(--color_secondary-blue); }

@media only screen and (max-width: 480px) {
  #go-top81 {
    bottom: var(--whitespace_xs-3); } }

.footer--main {
  --text-color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--color_secondary-blue);
  padding: var(--whitespace_sm) 0; }

.footer--main .flex--column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin: calc(var(--whitespace_xs-2) / -2) -15px; }

.footer--main .flex--column > * {
  margin: calc(var(--whitespace_xs-2) / 2) 0; }

@media only screen and (max-width: 991px) {
  .footer--main > .container > .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: calc(var(--whitespace_xs-2) / -2) 0; }

  .footer--main > .container > .row > * {
    margin: calc(var(--whitespace_xs-2) / 2) 0; } }
/****************************
 SITEMAP
 ****************************/
@media only screen and (min-width: 992px) {
  .footer--main .sitemap-overview {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
    column-gap: 30px; }

  .footer--main .sitemap-overview.columns-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2; }

  .footer--main .sitemap-overview.columns-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; }

  .footer--main .sitemap-overview.columns-4 {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4; } }

.footer--main .sitemap-overview .sitemap-category, .footer--main .sitemap-overview .sitemap-item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid; }

.footer--main .sitemap-overview .sitemap-item {
  padding: 5px 0; }

.footer--main .sitemap-overview .sitemap-item a {
  color: var(--text-color);
  line-height: var(--scale_md);
  /*white-space: nowrap;*/
  text-decoration: none; }

.footer--main .sitemap-overview .sitemap-item a:hover {
  color: var(--color_primary-500); }

@media only screen and (max-width: 991px) {
  .footer--main .sitemap-overview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap; }

  .footer--main .sitemap-overview .sitemap-category, .footer--main .sitemap-overview .sitemap-item {
    width: 100%; }

  .footer--main .sitemap-overview .sitemap-category:not(:first-child) {
    margin-top: var(--whitespace_xs-2); }

  .footer--main .sitemap-overview .sitemap-category h3 {
    text-align: center;
    margin-bottom: calc(var(--scale_xs-3) * 1em); }

  .footer--main .sitemap-overview .sitemap-item {
    text-align: center; } }
/****************************
 SOCIAL MEDIA
 ****************************/
.footer--main .social-media_list {
  margin-top: 0;
  margin-bottom: 0; }

.footer--main .social-media_list .social-media_item a i {
  color: var(--color_secondary-powder-blue); }
/****************************
 TEXT
 ****************************/
.footer--main .s-text {
  font-size: calc(var(--scale_md) * 1rem);
  line-height: var(--scale_xl);
  color: var(--text-color); }

.footer--main .s-text a {
  line-height: var(--scale_xl-1);
  color: inherit;
  padding: 0;
  background: transparent; }

.footer--main .s-text a:hover {
  color: var(--color_primary-500); }

@media only screen and (max-width: 991px) {
  .footer--main .s-text {
    text-align: center;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto; } }
/****************************
 TITLES
 ****************************/
.footer--main h2, .footer--main h3 {
  color: var(--text-color); }

.footer--main h2 {
  font-size: calc(var(--scale_xl) * 1rem); }

.footer--main h3 {
  font-size: calc(var(--scale_lg) * 1rem); }
/****************************
 WEBSITE LOGO
 ****************************/
.footer--main .website-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start; }

.footer--main .website-logo img {
  width: auto;
  height: 40px; }

@media only screen and (max-width: 991px) {
  .footer--main .website-logo {
    justify-content: center; } }
/****************************
 FIT LOGO
 ****************************/
.footer--main .fit-logo .s-text {
  font-size: calc(var(--scale_sm) * 1rem);
  margin-bottom: 4px;
  opacity: 0.6;
  max-width: 20ch; }

.footer--main .fit-logo img {
  mix-blend-mode: screen;
  opacity: 0.6;
  height: 40px; }
/****************************
 YOOLS CREDITS
 ****************************/
.footer--main .yools-credits {
  position: absolute;
  top: 50%;
  right: var(--whitespace_xs-3);
  transform: translate(0, -50%) scale(-1);
  writing-mode: vertical-lr;
  line-height: var(--scale_md); }

.footer--main .yools-credits a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-color);
  font-size: calc(var(--scale_xs) * 1rem);
  font-weight: var(--font-weight_bold);
  text-transform: uppercase;
  letter-spacing: 0.06em; }

.footer--main .yools-credits a span.label {
  color: inherit;
  white-space: nowrap;
  opacity: 0.4; }

.footer--main .yools-credits a span.ref {
  color: var(--color_secondary-powder-blue); }

.small-hero {
  width: 100%;
  height: var(--header_height); }

/*********************
 POSITION
 *********************/
.sticky-social {
  position: fixed;
  z-index: 1000; }

.sticky-social.sticky-left {
  top: 50%;
  left: 0;
  transform: translate(0, -50%); }

.sticky-social.sticky-right {
  top: 50%;
  right: 0;
  transform: translate(0, -50%); }

@media only screen and (max-width: 480px) {
  .sticky-social {
    top: auto !important;
    right: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    transform: none !important; } }
/*********************
 TILE
 *********************/
.sticky-social .s-tile {
  overflow: hidden;
  width: var(--whitespace_xs);
  line-height: 0;
  box-shadow: var(--shadow_md); }
/*********************
 SOCIAL MEDIA
 *********************/
.sticky-social .social-media {
  display: inline-block;
  width: 100%;
  line-height: 0%; }

.sticky-social .social-item {
  width: 100%;
  padding-bottom: 100% !important;
  position: relative;
  display: inline-block;
  background: #fff; }

.sticky-social .social-item:last-child {
  margin-bottom: 0 !important; }

.sticky-social .social-item:hover {
  background: var(--color_primary-400); }

.sticky-social .social-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--scale_md) * 1rem);
  color: var(--color_primary-500); }

.sticky-social .social-item:hover i {
  color: #fff; }

@media only screen and (max-width: 480px) {
  .sticky-social {
    width: 100%; }

  .sticky-social .social-media {
    display: flex;
    justify-content: flex-start; }

  .sticky-social .s-tile {
    width: 100%; }

  .sticky-social .social-item {
    height: var(--whitespace_xs-2);
    padding-bottom: 0 !important; }

  .sticky-social .social-item:last-child {
    margin-right: 0 !important; }

  .sticky-social .social-item i {
    font-size: calc(var(--scale_sm) * 1rem); } }

/****************/
/* Cookie Modal */
/****************/
/* Add custom CSS here */
/*******************/
/* SiteManager CSS */
/*******************/
/* General */
.s-cookie__modal93 {
  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__modal93 .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; }

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

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

.s-cookie__modal93 .s-banner .s-btn:before {
  -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 (max-width: 576px) {
  .s-cookie__modal93 .s-banner .s-action__list {
    flex-direction: column; } }
/* Modal Main */
.s-cookie__modal93 .s-modal {
  position: relative;
  z-index: 100001;
  overflow: auto !important;
  max-height: 100%; }

.s-cookie__modal93 .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__modal93 .s-modal__header {
  display: flex;
  align-items: center; }

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

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

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

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

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

.s-cookie__modal93 .s-modal__content .s-group__actions .s-group__title svg {
  flex-shrink: 0;
  vertical-align: middle;
  margin-top: 0.12em !important;
  margin-left: 0.694em !important;
  height: 0.482em !important;
  width: calc(0.482em * 1.52) !important; }

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

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

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

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

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

.s-cookie__modal93 .s-modal__content .s-action__list .s-save__btn:before, .s-cookie__modal93 .s-modal__content .s-action__list .s-decline__btn:before {
  -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__modal93 {
  background-color: rgba(19, 22, 27, 0.6); }

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

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

.s-cookie__modal93 .s-modal {
  box-shadow: 0px 0px 15px 0px rgba(19, 22, 27, 0.1);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(19, 22, 27, 0.1); }

.s-cookie__modal93 .s-modal {
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px; }

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

.s-cookie__modal93 .s-modal {
  min-width: auto;
  max-width: 750px; }

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

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

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

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

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

.s-cookie__modal93 .s-modal .s-modal__header .s-title {
  line-height: 1; }

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

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

.s-cookie__modal93 .s-modal .s-modal__header .s-close__btn {
  fill: #f1dabb; }

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

.s-cookie__modal93 .s-modal .s-modal__content .s-text {
  font-size: 14px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-text {
  line-height: 1.44; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list {
  margin: 0px 0px -0.833em 0px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list {
  padding: 24px 0px 0px 0px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group {
  padding: 0px 0px 0.833em 0px; }

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

.s-cookie__modal93 .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__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  border: 2px solid rgba(19, 22, 27, 0.2); }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  width: 40px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  height: 20px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch {
  padding: 2px 2px 2px 2px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  background-color: rgba(19, 22, 27, 0.2); }

.s-cookie__modal93 .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__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch .s-switch__indicator {
  border: 0px solid rgba(240, 210, 198, 0.1); }

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

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

.s-cookie__modal93 .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__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch.s-active .s-switch__indicator {
  background-color: #fff; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-switch.s-active .s-switch__indicator {
  border: 0px solid #b3bec2; }

.s-cookie__modal93 .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__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title {
  font-size: 14px; }

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

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title svg {
  margin: 0px 0px 0px 0.694em; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__title svg {
  fill: rgba(19, 22, 27, 0.2); }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  font-size: 14px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  line-height: 1.44; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  margin: 0.279em 0px 0px 0px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  min-width: 0px;
  max-width: 600px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-group__list .s-cookie__group .s-group__info {
  -webkit-transition: all 0.38s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s;
  transition: all 0.38s 0.895, 0.03, 0.685, 0.22 0s; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-btn {
  font-size: 14px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-btn {
  line-height: 1; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-btn:hover {
  -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); }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link {
  font-size: 14px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link {
  color: rgba(19, 22, 27, 0.4); }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link {
  text-decoration: none; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link {
  margin: 0px 15px 0px 0px; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link:hover {
  color: #cf5a4f; }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list .s-link:hover {
  -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); }

.s-cookie__modal93 .s-modal .s-modal__content .s-action__list {
  padding: 24px 0px 0px 0px; }

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

.s-cookie__modal93 .s-banner {
  padding: 20px 30px 20px 30px; }

.s-cookie__modal93 .s-banner .s-text {
  font-size: 14px; }

.s-cookie__modal93 .s-banner .s-text {
  color: rgba(28, 57, 71, 0.8); }

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

.s-cookie__modal93 .s-banner .s-text {
  line-height: 1.44; }

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

.s-cookie__modal93 .s-banner .s-text {
  min-width: 0px;
  max-width: 600px; }

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

.s-cookie__modal93 .s-banner .s-action__list .s-btn {
  font-size: 14px; }

.s-cookie__modal93 .s-banner .s-action__list .s-btn {
  line-height: 1; }

.s-cookie__modal93 .s-banner .s-action__list .s-btn:hover {
  -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); }

.s-cookie__modal93 .s-banner .s-action__list .s-btn {
  -webkit-transition: all 0.38s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s;
  transition: all 0.38s 0.895, 0.03, 0.685, 0.22 0s; }

.s-cookie__modal93 .s-banner .s-action__list .s-btn-alt:hover {
  -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); }

.s-cookie__modal93 .s-banner .s-action__list .s-btn-alt {
  -webkit-transition: all 0.38s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s;
  transition: all 0.38s 0.895, 0.03, 0.685, 0.22 0s; }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  font-size: 14px; }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  font-weight: bold; }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  color: rgba(19, 22, 27, 0.4); }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  line-height: 1; }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  text-decoration: none; }

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

.s-cookie__modal93 .s-banner .s-action__list .s-link:hover {
  color: #cf5a4f; }

.s-cookie__modal93 .s-banner .s-action__list .s-link:hover {
  -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); }

.s-cookie__modal93 .s-banner .s-action__list .s-link {
  -webkit-transition: all 0.38s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s;
  transition: all 0.38s 0.895, 0.03, 0.685, 0.22 0s; }

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

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

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

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

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

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

  .s-cookie__modal93 .s-modal .s-modal__header .s-title {
    font-size: 22px; }

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

  .s-cookie__modal93 .s-banner {
    padding: 20px 15px 20px 15px; }

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

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

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

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

