@charset "utf-8";
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(3px);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -468px 0
  }
  100% {
    background-position: 468px 0
  }
}
@keyframes placeholderShimmer {
  0% {
    background-position: -468px 0
  }
  100% {
    background-position: 468px 0
  }
}
@keyframes footer-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1em);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes opacityChange {
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.lozad-placeholder {
  background: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #c0c0c0 20%, #e0e0e0 40%, #e0e0e0 100%);
  background-repeat: repeat-y;
  background-size: 800px 104px;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/* colors */ :root {
  --fx-purple: rgba(155, 31, 233, 1.00);
  --fx-light-sky-blue: rgba(216, 235, 255, 1.00);
  --fx-sky-blue: rgba(154, 208, 236, 1.00);
  --fx-light-blue: rgba(100, 185, 226, 1.00);
  --fx-blue: rgba(43, 160, 215, 1.00);
  --fx-dark-blue: rgba(33, 137, 202, 1.00);
  /*
   * Jednotné zvislé odsadenie obsahu sekcií.
   */
  --section-space-y: clamp(4rem, 6vw, 5rem);
  --section-wave-height: clamp(48px, 6vw, 80px);
  
  --fixed-nav-height: 56px;
  --fixed-nav-wave-height: clamp(40px, 2vw, 80px);

  --fixed-nav-total-height:
    calc(
      var(--fixed-nav-height)
      + var(--fixed-nav-wave-height)
    );

  --fixed-nav-gradient:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 255, 255, 0.26),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(33, 137, 202, 0.96) 0%,
      rgba(43, 160, 215, 0.92) 48%,
      rgba(100, 185, 226, 0.90) 100%
    );
}
body {
  box-sizing: border-box;
  /*position: relative;*/
  overflow-x: hidden;
  width: 100%;
  height: auto;
  scroll-behavior: smooth;
  background: #FFF;
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  /* FOR TESTING PURPOSES */
  /*min-height: 10000px !important;*/
  min-height: 100vh;
}
.js-alert-message {
  display: block;
  position: fixed;
  top: 5px;
  left: 0;
  z-index: 999999;
  width: 99%;
  margin: 0 auto;
}
p {
  /*font-size: 1.1em; */
}
p a {
  position: relative;
  display: inline-block;
}
p a, p a:visited {
  color: var(--fx-blue);
}
p a:hover, p a:focus, p a:active {
  color: var(--fx-light-blue);
}
p a::after {
  content: "";
  position: absolute;
  top: 100%; /* Positioned right below the link */
  left: 0;
  width: 0; /* Start with no width */
  height: 2px; /* Height of the underline */
  background: currentColor; /* Uses the text color of the link */
  transition: width 0.25s ease; /* Animate width only */
}
p a:hover::after, p a:focus::after, p a:active::after {
  width: 100%; /* Full width on hover, focus, or active */
}
/*
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  /*color: var(--fx-purple) !important;
    font-weight: 600 !important;*/
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  word-wrap: break-word;
}
h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  font-size: clamp(1.325rem, 1.8vw, 2rem) !important;
}
/* === Title separator lines (animated from center outwards) === */
/* Pseudo-elementy sa budú pozicionovať voči nadpisu */
h1.site-title, h2.site-title, .site-subtitle {
  position: relative;
}
/* Základ pre všetky pseudo-elementy */
h1.site-title::before, h1.site-title::after, h2.site-title::before, h2.site-title::after, .site-subtitle::before, .site-subtitle::after {
  content: "";
  display: none;
  position: absolute;
  top: calc(50% + 3px);
  height: 5px;
  width: 4vh; /* cieľová šírka pruhu */
  /* východzí stav: „schované” pri nadpise */
  transform: translateY(-50%) scaleX(0);
  transition: transform 1.5s cubic-bezier(.2, .8, .2, 1);
}
/* Umiestnenie a smer animácie (origin) */
h1.site-title::before, h2.site-title::before, .site-subtitle::before {
  left: -6vh;
  transform-origin: right center; /* rastie doľava – od nadpisu von */
}
h1.site-title::after, h2.site-title::after, .site-subtitle::after {
  right: -6vh;
  transform-origin: left center; /* rastie doprava – od nadpisu von */
}
/* Farby – podľa tvojho pôvodného štýlu */
h1.site-title::before, h1.site-title::after, .site-subtitle::before, .site-subtitle::after {
  background-color: var(--fx-light-blue);
}
h2.site-title::before, h2.site-title::after {
  background-color: var(--fx-blue);
}
/* Odhalenie (JS pridá .is-revealed) → roztiahni na plnú šírku */
h1.site-title.is-revealed::before, h1.site-title.is-revealed::after, h2.site-title.is-revealed::before, h2.site-title.is-revealed::after, .site-subtitle.is-revealed::before, .site-subtitle.is-revealed::after {
  transform: translateY(-50%) scaleX(1);
}
.site-title {
  color: var(--fx-dark-blue);
}
h1.site-title, h2.site-title {
  background: linear-gradient(135deg, var(--fx-dark-blue), var(--fx-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.short-desc {
  font-size: 1em;
}
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  /*background-color: rgba(0,0,0,0.5);*/
}
a {
  text-decoration: none;
}
a, a:hover, a:active, a:focus, a:visited {
  border: none;
  outline: none;
}
p a {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  text-decoration: none;
}
img, object, embed, video {
  max-width: 100%;
  height: auto;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}
a[x-apple-data-detectors] {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
img {
  width: 100%;
  height: auto;
}
.logo img {
  width: auto;
  max-height: 80px;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.logo img:hover {
  transform: scale(1);
  transition: all 0.3s ease;
}
.logo .web-title {
  color: white;
  font-weight: bold;
  font-size: clamp(1em, 2.5vw, 1.2em);
}
header {
  position: absolute;
  width: 100%;
  z-index: 1000;
}
header.no-vegas {
  position: absolute;
  background-color: transparent;
}
/*
header.dark-bg {
  background-color: var(--fx-blue);
}
*/
header.dark-bg {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 255, 255, 0.26),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(33, 137, 202, 0.96) 0%,
      rgba(43, 160, 215, 0.92) 48%,
      rgba(100, 185, 226, 0.90) 100%
    );

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header .socials a i {
  font-size: 1.4em;
}
header .socials a svg, header .socials a img {
  width: 30px;
  height: auto;
  padding-right: .25rem !important;
  padding-left: .25rem !important;
  margin-right: .25rem !important;
  margin-left: .25rem !important;
}
header .socials a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
header .socials a:hover i, header .socials a:hover svg path, header .socials svg:hover path {
  fill: var(--fx-sky-blue) !important;
  color: var(--fx-sky-blue);
}
header .language-switcher {
  display: none;
}
header .language-switcher a, header .language-switcher a:visited {
  color: white;
  text-decoration: none;
  opacity: 0.80;
  transition: all 0.2s linear;
}
header .language-switcher a:hover, header .language-switcher a:active, header .language-switcher a:focus {
  opacity: 1;
  transition: all 0.2s linear;
}
header .language-switcher a.active {
  color: var(--fx-sky-blue) !important;
  opacity: 1;
}
.mobile-language-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.slicknav_menu {
  display: block;
}
header .socials {
  /*padding: 5rem 1.5rem 1.5rem 1.5rem !important;*/
}
.nav-bar {
  display: none;
}
.slicknav_menu .dropdown-indicator {
  visibility: hidden;
}
header .nav-bar ul, header .nav-bar ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}
header .nav-bar ul {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
}
header .nav-bar ul li a {
  text-decoration: none;
  padding: 0rem;
  margin: 1rem;
  /*font-size: 1.2em;*/
  font-weight: 600;
  text-transform: uppercase;
  /*font-size: clamp(0.8em, 2.5vw, 1em);*/
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-bar ul li a:hover {
  color: white;
}
header .nav-bar a {
  position: relative;
  transition: all 0.25s ease;
}
header .nav-bar a, header .nav-bar a:visited, header .nav-bar a:active, header .socials a, header .socials a:visited, header .socials a:active {
  color: white;
}
header .nav-bar a:hover, header .nav-bar a:focus /*
header .socials a:hover,
header .socials a:focus
*/ {
  color: white;
}
header .nav-bar a.active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: var(--fx-sky-blue);
}
header .nav-bar a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--fx-sky-blue);
  transition: all 0.15s linear;
  transform-origin: center;
}
header .nav-bar ul ul li a {
  /*margin: 0.5rem 1rem;*/
  padding: 0;
  margin: 0;
}
header .nav-bar ul ul {
  padding: 0 1rem;
}
header .nav-bar ul ul a, header .nav-bar ul ul a:active, header .nav-bar ul ul a:visited {
  color: black;
}
header .nav-bar ul ul a:hover, header .nav-bar ul ul a:focus {
  color: var(--fx-blue);
}
header .nav-bar ul ul li a:after {
  background-color: var(--fx-light-blue);
}
header .nav-bar ul ul li {
  display: table;
  text-align: center;
  margin: 1rem auto;
}
header .nav-bar a:hover::after {
  width: 100%;
}
header .nav-bar ul ul a.active::after {
  background-color: var(--fx-light-blue);
}
.banner, .banner picture {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*
 * Samotná .banner nesmie vytvoriť stacking context,
 * inak by text zostal pod overlayom rodiča .big-banner.
 */
.banner {
  z-index: auto;
}
/*
 * Obrázok zostane v najnižšej vrstve.
 */
.banner picture {
  z-index: 0;
}
.banner picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.big-banner .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.big-banner .banner-text {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: clamp(2em, 4vw, 5em);
  font-weight: 600;
  width: 100%;
  padding: 0 1.5rem !important;
}
.banner-text .banner-subtitle {
  max-width: 900px;
  margin: 1rem auto 0 auto;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.banner-text .banner-subtitle p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 3rem);
}
.big-banner .text-over-vegas {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.35);
}
.big-banner .text-over-vegas .title-over-vegas {
  z-index: 2;
  color: white;
  font-size: clamp(2em, 4vw, 5em);
  font-weight: 600;
  padding: 1rem;
}
.scroll-downs {
  position: absolute;
  bottom: 10em;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 55px;
  z-index: 1;
}
.scroll-downs:hover {
  cursor: pointer;
}
.scroll-downs:hover .mousey {
  border: 3px solid var(--fx-light-sky-blue);
  transition: all 0.25s linear;
}
.scroll-downs:hover .scroller {
  background-color: var(--fx-light-sky-blue);
  transition: all 0.25s linear;
}
.mousey {
  width: 3px;
  padding: 5px 10px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 13px;
  opacity: 0.75;
  box-sizing: content-box;
  transition: all 0.25s linear;
}
.scroller {
  width: 3px;
  height: 7px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
  transition: all 0.25s linear;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-item {
  height: 100vh;
}
.owl-carousel .bg-slide {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  justify-content: center;
  align-items: center;
}
.owl-carousel .bg-slide .slide-caption {
  position: relative;
  max-width: calc(100% - 140px);
  width: auto;
  text-align: center;
  /*font-weight: bold;*/
  font-size: clamp(2em, 4vw, 5em);
  color: white;
  font-weight: bold;
  line-height: initial;
  padding: 1em 1em 0 1em;
}
/*
.owl-carousel .bg-slide .slide-caption::after {
    content: '';
    position: absolute;
    display: inline-block;
    top: 102%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 75%;
    height: 2px;
    background: rgb(0, 0, 0);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 113, 187, 1) 25%, rgba(0, 113, 187, 1) 75%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 113, 187, 1) 25%, rgba(0, 113, 187, 1) 75%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 113, 187, 1) 25%, rgba(0, 113, 187, 1) 75%, rgba(0, 0, 0, 0) 100%);
}
*/
.owl-carousel .bg-slide .caption-description {
  max-width: calc(100% - 140px);
  width: auto;
  text-align: center;
  font-weight: normal;
  font-size: 1em;
  color: white;
  padding: 1em;
}
.owl-carousel .owl-item.active .bg-slide .slide-caption {
  animation: fadeIn ease 1s 0.3s both;
}
.owl-carousel .owl-item.active .bg-slide .caption-description {
  animation: fadeIn ease 1s 0.6s both;
}
.owl-carousel .bg-slide .owl-carousel-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
}
.owl-carousel .owl-nav {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-prev {
  float: left;
  margin-left: 1em;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  width: 40px;
  border-radius: 20px;
  border: none;
}
.owl-carousel .owl-nav .owl-next {
  float: right;
  margin-right: 1em;
  padding: 0.5em;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  width: 40px;
  border-radius: 20px;
  border: none;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  opacity: 0.6;
  transition: opacity 0.2s linear;
}
.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover {
  opacity: 1;
  transition: opacity 0.2s linear;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0.5em;
}
.owl-carousel .owl-dots .owl-dot {
  width: 1em;
  height: 1em;
  margin: 0 0.25em;
  border-radius: 0.5em;
  background: rgba(255, 255, 255, 0.5);
  border: medium solid white;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--fx-sky-blue);
}
.big-banner.vegas-container {
  width: 100%;
  height: 100vh;
}
/* Make the container robust on mobile */
.video-container {
  position: relative;
  height: 100svh; /* lepšie na mobile ako 100vh */
  min-height: 420px;
  margin: -2.8rem auto 1rem auto;
  overflow: hidden;
}
/* YouTube background + vlastné video */
.video-container [data-vbg], .video-container .vbg-background, .video-container iframe, .video-container .custom-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Vlastné nahraté video sa musí správať ako background */
.video-container .custom-bg-video {
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
/* YouTube iframe ako background bez klikov */
.video-container iframe {
  pointer-events: none;
}
/* Poster pre YouTube fallback */
[data-vbg-poster] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100%;
}
/* Overlay maska + text cez video */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding-bottom: 10vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Voliteľná vrstva, ak ju používaš na ďalšie efekty */
.video-text-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Nadpis cez video */
.video-overlay .video-title {
  font-size: clamp(2em, 4vw, 5em);
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: initial;
  white-space: normal;
  z-index: 3;
}
/* Text pod nadpisom */
.video-overlay .text-over {
  color: #fff;
  text-align: center;
  z-index: 3;
}
.wrapper {
  overflow-x: hidden;
}
#reviews-container.owl-carousel .owl-item {
  height: auto;
  padding: 1rem;
}
#reviews-container.owl-carousel .owl-item .item {
  padding: 1rem;
}
#reviews-container.owl-carousel .owl-stage-outer {}
#reviews-container .review-author-photo {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin: 0 auto;
}
#reviews-container.owl-carousel .owl-nav button.owl-next {
  margin-right: -0.25rem;
}
#reviews-container.owl-carousel .owl-nav button.owl-prev {
  margin-left: -0.25rem;
}
/* Base star styling */
#reviews-container .star {
  font-size: 16px; /* default size for stars */
  color: gold; /* color of the stars */
}
/* Middle star - largest */
#reviews-container .star-middle {
  font-size: 24px; /* larger size for the middle star */
}
/* Side stars - slightly smaller */
#reviews-container .star-side {
  font-size: 20px; /* slightly smaller size for the side stars */
}
/* Outermost stars - smallest */
#reviews-container .star-outer {
  font-size: 18px; /* even smaller size for the outermost stars */
}
#progressBar {
  position: absolute;
  bottom: 0; /* Adjust this as needed */
  left: 0;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.60);
  width: 0;
  max-width: 100%;
  z-index: 10;
}
.special-container {
  /*margin-top: -10vh;*/
  margin-top: -90px;
  overflow: hidden;
}
.page-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: block;
  z-index: 50;
}
/************************************************/
/************** PAGE SECTION WAVES **************/
/************************************************/
.page-content section {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

/*
 * Obsah sekcie musí byť nad dekoratívnym pozadím.
 */
.page-content section > .container {
  position: relative;
  z-index: 2;
}

/*
 * Jednotné horné a spodné odsadenie všetkých
 * bežných obsahových sekcií.
 */
.page-content section:not(.parallax-banner) {
  padding-top: var(--section-space-y) !important;
  padding-bottom: var(--section-space-y) !important;
}

/*
 * Nasledujúca sekcia vysúva svoju vlnu smerom nahor.
 * Preto do spodného paddingu započítame aj jej výšku.
 */
.page-content
section:not(.parallax-banner):has(+ section:not(.parallax-banner)) {
  padding-bottom:
    calc(
      var(--section-space-y)
      + var(--section-wave-height)
    ) !important;
}

/*
 * Sekcia s textom pod hlavným elementom potrebuje
 * väčšie spodné odsadenie.
 *
 * Musí byť až za všeobecným pravidlom.
 */
.page-content section.has-section-after-text:not(.parallax-banner) {
  padding-bottom: 100px !important;
}

.page-content
section.has-section-after-text:not(.parallax-banner):has(
  + section:not(.parallax-banner)
) {
  padding-bottom:
    calc(
      100px
      + var(--section-wave-height)
    ) !important;
}

/*
 * Posledný priamy element kontajnera nesmie pridávať
 * ďalšie nepredvídateľné spodné odsadenie.
 */
.page-content
section:not(.parallax-banner)
> .container
> :last-child {
  margin-bottom: 0 !important;
}

.page-content section:not(.parallax-banner) > .container > :last-child {
  margin-bottom: 0 !important;
}

/* Spoločné nastavenie vlnky */
.page-content section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* spodok vlnky jemne zasunieme do sekcie, aby nevznikla vlasová čiara */
  top: 1px;
  pointer-events: none;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  transform: translateY(-100%);
}
/* Vlna nad bielou sekciou */
.page-content section:nth-of-type(even)::before {
  height: var(--section-wave-height);
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'>\
  <path fill='%23FFFFFF' d='M0,70 C170,30 310,25 480,58 C650,92 780,105 960,58 C1120,18 1280,38 1440,76 L1440,160 L0,160 Z'/>\
</svg>");
}
/* Vlna nad modrou sekciou */
.page-content section:nth-of-type(odd)::before {
  height: var(--section-wave-height);
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'>\
  <path fill='%23d8ebff' d='M0,70 C170,30 310,25 480,58 C650,92 780,105 960,58 C1120,18 1280,38 1440,76 L1440,160 L0,160 Z'/>\
</svg>");
}
/* Jemná technická textúra nad pozadím, ale pod obsahom a pod vlnkami */
.page-content section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(43, 160, 215, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(43, 160, 215, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
/* Biele sekcie */
.page-content section:nth-of-type(even) {
  background:
    linear-gradient(180deg, #ffffff 0, rgba(255, 255, 255, 0) 120px), radial-gradient(circle at 8% 20%, rgba(154, 208, 236, 0.18) 0, rgba(154, 208, 236, 0.18) 120px, transparent 121px), radial-gradient(circle at 92% 75%, rgba(43, 160, 215, 0.10) 0, rgba(43, 160, 215, 0.10) 170px, transparent 171px), linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}
/* Modré sekcie */
.page-content section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, #d8ebff 0, rgba(216, 235, 255, 0) 150px), radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 150px, transparent 151px), radial-gradient(circle at 88% 80%, rgba(43, 160, 215, 0.16) 0, rgba(43, 160, 215, 0.16) 190px, transparent 191px), linear-gradient(135deg, #d8ebff 0%, #edf7ff 48%, #d8ebff 100%);
}
/* Prvá sekcia bez vlnky hore */
.page-content section:first-of-type:not(.parallax-banner) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.page-content section:first-of-type:not(.parallax-banner)::before {
  content: "";
  display: none;
}

.page-content
section:first-of-type:not(.parallax-banner)
> .container {
  padding-top: 0 !important;
}
.text-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.text-wrapp h2 {
  margin: 0 auto 0.5rem auto;
  font-size: clamp(1.325rem, 3vw, 2rem) !important;
}
.shadow-border {
  border: thin solid rgba(0, 0, 0, 0.05);
  height: 100%;
  border-radius: 0.375rem;
  box-shadow: 0px 8px 5px -4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.white-bg {
  background-color: white;
}
.rounded-corners {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
footer {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at 20% 0%, rgba(154, 208, 236, 0.35), transparent 35%), linear-gradient(135deg, var(--fx-dark-blue), var(--fx-blue));
  color: white;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.25;
}
footer > * {
  position: relative;
  z-index: 1;
}
footer a, footer a:hover, footer a:active, footer a:visited, footer a:focus {
  color: white;
  text-decoration: none;
}
footer .lead {
  text-decoration: underline;
}
.p-relative {
  position: relative;
}
footer .to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: footer-bounce 3s ease-in-out infinite;
  cursor: pointer;
}
footer .to-top i {
  color: white;
  transition: all 0.25s linear;
}
footer .to-top i:hover {
  cursor: pointer;
  color: var(--fx-sky-blue);
  transition: all 0.25s linear;
}
footer ul, footer ul li {
  list-style-type: none;
}
/* Footer links: nechaj pôvodné farby, underline animujeme len na .link-label */
footer .footer-links a {
  display: inline-flex; /* ikonka + text na jednej línii */
  align-items: center;
  gap: .5rem;
  text-decoration: none; /* vypneme klasické podčiarknutie */
}
/* samotný text linku */
footer .footer-links a .link-label {
  position: relative;
  display: inline-block;
}
/* animovaná „čiarka“ pod textom (šírka rastie) */
footer .footer-links a .link-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 2px;
  background: currentColor; /* berie farbu textu */
  transition: width .25s ease;
}
/* farby a animácia na hover/focus/active */
footer .footer-links a:hover, footer .footer-links a:focus, footer .footer-links a:active {
  /* ak používaš CSS premenné témy, ponechaj; inak tu môže byť tvoja hex */
  color: #fff;
}
footer .footer-links a:hover .link-label::after, footer .footer-links a:focus .link-label::after, footer .footer-links a:active .link-label::after {
  width: 100%;
}
/* a11y: zviditeľni focus klávesnicou */
footer .footer-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .3);
  outline-offset: 2px;
}
footer .footer-links a {
  opacity: .95;
  transition: opacity .2s ease; /* môžeš pridať aj color, ak chceš: , color .2s ease */
}
footer .footer-links a:hover, footer .footer-links a:focus {
  opacity: 1;
}
/*****************************************/
/************* PHOTO GALLERY *************/
/*****************************************/
.hidden-gallery-item {
  display: none;
}
.btn-load-more, .btn-show-less {
  display: inline-flex;
  margin: 2.5rem auto 1rem auto !important;
  padding: 1rem;
  text-align: center;
  width: auto !important;
  color: var(--fx-blue);
  /*border-radius: 0.375rem;*/
  background-color: transparent;
  transition: all 0.2s linear;
  border: medium solid var(--fx-blue);
  font-size: 1.2em;
}
.btn-load-more:hover, .btn-show-less:hover {
  cursor: pointer;
  background-color: var(--fx-blue);
  transition: all 0.2s linear;
  color: white;
}
.gallery-item, .article-gallery-item {
  position: relative;
  /*border-radius: 0.375rem;*/
  overflow: hidden;
}
.gallery-item a, .article-gallery-item a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
.gallery-item a img, .article-gallery-item a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: all 0.3s ease;
}
.gallery-item a:hover img, .article-gallery-item a:hover img {
  transform: scale(1.2);
  transition: all 0.3s ease;
}
.gallery-item::after, .article-gallery-item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
  overflow: hidden;
}
.gallery-item .image-link, .article-gallery-item .image-link {
  overflow: hidden;
  /*border-radius: 0.375rem;*/
}
.gallery-item .image-link::after, .article-gallery-item .image-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.5);
  transition: all 0.25s linear;
}
.gallery-item:hover .image-link::after, .article-gallery-item:hover .image-link::after {
  width: 100%;
  transition: all 0.25s linear;
}
.gallery-item .image-link .gallery-icon, .article-gallery-item .image-link .gallery-icon {
  color: white;
  text-decoration: none;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.25s linear;
}
.gallery-item .image-link:hover .gallery-icon, .article-gallery-item .image-link:hover .gallery-icon {
  opacity: 1;
  transition: all 0.25s linear 0.25s;
}
.gallery-item-link {
  position: relative;
  /*border-radius: 0.375rem;*/
  overflow: hidden;
}
.gallery-item-link::after {
  content: "";
  display: block;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}
.gallery-item-link .image-link {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  /*border-radius: 0.375rem;*/
  position: absolute;
}
.gallery-item-link .image-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: all 0.25s ease;
}
.gallery-item-link .image-link:hover img {
  transform: scale(1.2);
}
.gallery-item-link .image-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--fx-light-blue);
  opacity: 0.4;
  transition: all 0.25s ease;
}
.gallery-item-link .image-link:hover::after {
  width: 100%;
  transition: all 0.25s ease;
}
.text-over-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white !important;
  font-weight: 600 !important;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 1em;
  /*border-radius: 0.375rem;*/
  transition: all 0.25s ease 0.25s;
}
.gallery-item-link .image-link:hover .text-over-image {
  background-color: transparent;
  transition: all 0.25s ease 0.25s;
}
.read-more {
  text-decoration: none;
  font-size: 1.2em;
  display: inline-flex;
  margin: 1rem auto 0 auto;
  /*margin: 1rem 0 0 auto;*/
  padding: 1rem 1.5rem;
  text-align: center;
  width: auto;
}
.read-more, .read-more:visited, .read-more:active {
  color: var(--fx-blue);
  /*border-radius: 0.375rem;*/
  background-color: transparent;
  transition: all 0.2s linear;
  border: medium solid var(--fx-blue);
}
.read-more:hover, .read-more:focus {
  cursor: pointer;
  background-color: var(--fx-blue);
  transition: all 0.2s linear;
  color: white;
  border: medium solid var(--fx-blue);
}
.custom-card {
  position: relative;
  height: 100%;
  /* väčší odstup obsahu od ikonky */
  padding-top: 5.5rem;
  background: #ffffff;
  border: 2px solid rgba(43, 160, 215, 0.75);
  border-radius: 1rem;
  box-shadow:
    0 16px 38px rgba(43, 160, 215, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  overflow: visible;
  transition:
    transform 0.18s ease, box-shadow 0.18s ease;
}
.custom-card:hover {
  transform: translateY(-3px);
  border-color: var(--fx-blue);
  box-shadow:
    0 22px 52px rgba(43, 160, 215, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}
/* výrez v hornej čiare pod ikonou */
.custom-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 170px;
  height: 8px;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 2;
}
/* ikonka v kruhu */
.custom-card > .card-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-blue);
  background: #ffffff;
  border: 5px solid var(--fx-blue);
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(43, 160, 215, 0.28);
  transform: translate(-50%, -50%);
  z-index: 10;
  transition:
    background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.custom-card:hover > .card-icon {
  color: #ffffff;
  background: var(--fx-blue);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 14px 38px rgba(43, 160, 215, 0.38);
}
/* obrázok namiesto ikonky */
.custom-card .card-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  outline: 5px solid var(--fx-blue);
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(43, 160, 215, 0.32);
  transition:
    transform 0.18s ease, box-shadow 0.18s ease, outline-color 0.18s ease;
}
.custom-card:hover .card-image {
  transform: translate(-50%, -50%) scale(1.04);
  outline-color: var(--fx-dark-blue);
  box-shadow: 0 16px 42px rgba(43, 160, 215, 0.42);
}
/*****************************************/
/********** LINKS FOR SUBPAGES ***********/
/*****************************************/
/*
.img-subpage-link, .subpage-link-button {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all 0.25s linear;
}
.img-subpage-link img, .subpage-link-button img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s linear;
    transform: scale(1);
}
.img-subpage-link:hover img, .subpage-link-button:hover img {
    transition: all 0.25s linear;
    transform: scale(1.1);
}
.img-subpage-link::after, .subpage-link-button::after {
    content: "";
    display: block;
    padding-bottom: 100%;
    overflow: hidden;
}
.img-subpage-link-overlay {
    background-color: rgba(0, 113, 187, 0.80);
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    color: white;
    text-decoration: none !important;
    font-size: clamp(1.325rem, 1.8vw, 2rem) !important;
    z-index: 1;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.25s linear;
}
.img-subpage-link-overlay span {
    text-decoration: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    text-align: center;
    line-height: 1.15em;
}
.img-subpage-link span.link-text {
    text-decoration: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: white;
    font-size: clamp(1.325rem, 1.8vw, 2rem) !important;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px black, -1px -1px 2px black;
    opacity: 1;
    visibility: visible;
    transition: all 0.25s linear;
    text-align: center;
    line-height: 1.15em;
}
.img-subpage-link:hover span.link-text {
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s linear;
}
.img-subpage-link:hover .img-subpage-link-overlay {
    width: 100%;
    transition: all 0.25s linear;
    opacity: 1;
}
.link-icon {
    color: white;
    text-decoration: none;
    z-index: 1;
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: all 0.25s linear;
    opacity: 1;
}
.img-subpage-link:hover .link-icon, .subpage-link-button:hover .link-icon {
    left: 40px;
    transition: all 0.25s linear;
}
*/
/*****************************************/
/********** LINKS FOR SUBPAGES ***********/
/*****************************************/
.col-counter .counter-container {
  position: relative;
  height: 100%;
  /*border-radius: 0.375rem;*/
  padding: 1rem;
}
.col-counter .counter-container::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background-color: var(--fx-blue);
  transition: width 2s ease;
  /*border-radius: 0.5rem;*/
}
.counter-container.animate::after {
  width: 60%;
  transition: width 2s ease;
}
.col-counter .counter-container .counter {
  display: block;
  font-size: 4em;
  font-weight: 600;
  color: var(--fx-light-blue);
  text-align: center;
  margin: 0 auto;
}
.col-counter .counter-container p {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.file-col {
  overflow: hidden;
}
/* MOBILE / základný stav */
.shadow-border > .row.not-reversed, .shadow-border > .row.flex-row-reverse {
  margin-left: -1rem;
  margin-right: -1rem;
}
.not-reversed > .col-lg-5, .flex-row-reverse > .col-lg-5 {
  align-items: stretch !important;
  padding-left: 0;
  padding-right: 0;
}
.not-reversed .square-image-container, .flex-row-reverse .square-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 0;
  top: -1rem;
  left: 0;
  margin-bottom: -1rem;
}
.square-image-container .square-image {
  position: relative;
  width: 100%;
}
.square-image-container .square-image::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.square-image-container .square-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wide-image-container {
  position: relative;
  top: -2rem;
  left: -2rem;
  width: calc(100% + 3rem);
}
.wide-image-container .square-image::after {
  content: '';
  display: block;
  padding-bottom: 60%;
}
.gallery-link-thumbnail-container::after, .file-link-container::after, .file-image-link-container::after {
  content: '';
  display: block;
  padding-bottom: 100%;
  overflow: hidden;
}
.file-link-container, .file-image-link-container, .gallery-link-thumbnail-container {
  position: relative;
  /*border-radius: 0.375rem;*/
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.50);
}
.file-link, .gallery-link-thumbnail {
  position: relative;
  /*border-radius: 0.375rem;*/
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.50);
}
.file-link img, .gallery-link-thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s linear;
  transform: scale(1);
}
.file-link i.image-link-icon, .gallery-link-thumbnail i.thumb-link-icon {
  position: absolute;
  z-index: 2;
  bottom: 0.5rem;
  left: -0.5rem;
  color: white !important;
  opacity: 0;
  transition: all 0.25s linear 0.25s;
}
.file-link:hover img, .gallery-link-thumbnail:hover img {
  transition: all 0.25s linear;
  transform: scale(1.2);
}
.file-link:hover i.image-link-icon, .gallery-link-thumbnail:hover i.thumb-link-icon {
  left: 0.5rem;
  opacity: 1;
  transition: all 0.25s linear;
}
.file-link:hover .file-link-container {
  transition: all 0.25s linear;
  background-color: var(--fx-light-blue);
}
.file-link-container {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  transition: all 0.25s linear;
}
i.file-icon {
  color: white !important;
  font-size: 2em;
  transition: all 0.25s linear 0.25s;
}
.file-link:hover i.file-icon {
  transition: all 0.25s linear;
  font-size: 3em;
}
/*****************************************/
/********** PHOTO GALLERY LINKS **********/
/*****************************************/
.gallery-thumbnail-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 1px 1px 2px black, -1px -1px 2px black;
  visibility: visible;
  opacity: 1;
  margin: 0;
  padding: 0;
  color: white !important;
  display: flex;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: all 0.25s linear;
}
.gallery-thumbnail-title:hover {
  text-shadow: 0 0 0 transparent;
  transition: all 0.25s linear;
}
.gallery-link-thumbnail:hover .img-subpage-link-overlay {
  opacity: 1;
  visibility: visible;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.325rem, 1.8vw, 2rem) !important;
}
/*****************************************/
/*********** TEXT COLOR CLASSES **********/
/*****************************************/
.white-text {
  color: white;
}
.fx-purple-text {
  color: var(--fx-purple);
}
.fx-light-sky-blue-text {
  color: var(--fx-light-sky-blue);
}
.fx-sky-blue-text {
  color: var(--fx-sky-blue);
}
.fx-light-blue-text {
  color: var(--fx-light-blue);
}
.fx-blue-text {
  color: var(--fx-blue);
}
.fx-dark-blue-text {
  color: var(--fx-dark-blue);
}
.semi-bg {
  background-color: rgba(0, 0, 0, 0.75);
}
/*****************************************/
/********* ARTICLE DETAIL PAGE ***********/
/*****************************************/
.article-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.article-banner::after {
  content: "";
  position: absolute;
  display: block;
  padding-bottom: 70%;
}
.article-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-banner h2 {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  color: white;
  z-index: 2;
  text-align: center;
  font-size: clamp(2em, 4vw, 5em) !important;
  font-weight: 600;
}
.article-banner .article-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
/**************************************************************/
/********************** COMMON CLASSES ************************/
/**************************************************************/
.page-content .container ul li a {
  position: relative;
  text-decoration: none;
  outline: none;
  border: none;
}
.page-content .container ul li a, .page-content .container ul li a:visited, .page-content .container ul li a:active {
  color: var(--fx-blue);
}
.page-content .container ul li a:hover, .page-content .container ul li a:focus {
  color: var(--fx-light-blue);
}
.page-content .container ul li a::after {
  content: "";
  position: absolute;
  top: 100%; /* Positioned right below the link */
  left: 0;
  width: 0; /* Start with no width */
  height: 2px; /* Height of the underline */
  background: currentColor; /* Uses the text color of the link */
  transition: width 0.25s ease; /* Animate width only */
}
.page-content .container ul li a:hover::after, .page-content .container ul li a:focus::after, .page-content .container ul li a:active::after {
  width: 100%; /* Full width on hover, focus, or active */
}
.google-maps {
  position: relative;
  padding-bottom: 75%; /* This is the aspect ratio */
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.wide-google-map {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.wide-google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.responsive-frame {
  position: relative;
  overflow: hidden;
  padding-top: 90%;
  display: block;
  width: 100%;
  height: auto;
}
.responsive-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.responsive-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 90%;
  display: block;
  width: 100%;
  height: auto;
}
.responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.embedded-video {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  display: block;
  width: 100%;
  height: auto;
}
.embedded-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.fancy-link {
  display: inline-block;
  position: relative;
  color: white;
  border: none;
  outline: none;
  text-decoration: none;
}
.fancy-link::after {
  content: '';
  width: 0px;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  transition: 300ms;
}
.fancy-link:hover::after {
  width: 100%;
}
.fancy-link:not(:hover)::after {
  right: 0;
  left: auto;
}
/* Fancy Bullet Points */
ul:not(.fancy-bullets, .gradient-list, .iti__country-list, #fileListStatic, #fileListModal, .custom-tabs, .dotnav-list) {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.fancy-bullets {
  padding: 0 0 0 0.5rem;
}
.fancy-bullets li {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.fancy-bullets li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--fx-blue);
}
.gradient-list li {
  list-style: none;
  background: rgba(0, 147, 255, 1.00);
  color: white;
  padding: 12px;
  margin: 5px 0;
  border-radius: 8px;
  text-align: left;
  padding-left: 15px;
  border-left: 5px solid rgba(0, 113, 187, 1.00);
}
/*********************************************************/
/******************** CONTACT FORM ***********************/
/*********************************************************/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.drag-drop-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: thin solid #dee2e6;
  border-radius: 0.375rem;
  padding: .375rem .75rem;
  background-color: white;
  min-height: 100px;
  height: auto;
  overflow: hidden;
}
.drag-drop-zone.dragover {
  border: thin solid #0d6efd;
  background-color: rgba(21, 108, 189, 0.50);
}
.drag-drop-zone.dragover::before {
  content: '\f574';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3em;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 113, 187, 0.80);
  z-index: 10;
}
.drag-drop-zone.dragover p {
  color: white !important;
}
.file-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.file-list li {
  margin: 4px 0;
}
.file-block {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0.25rem 0.25rem 0 0; /* some spacing between blocks */
  padding: 0.25rem 0.5rem;
  background-color: #e7f1ff; /* light highlight or your theme color */
  border-radius: 0.4rem;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  overflow: hidden;
  width: 100%;
  justify-content: space-between;
}
.file-block .remove-file-btn {
  background-color: #dc3545;
  margin-left: 8px !important;
  cursor: pointer !important;
  opacity: 1;
  color: white !important;
  fill: white !important;
  padding: 0.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}
.file-block .remove-file-btn:hover {
  background-color: #b02a37;
}
.file-list {
  margin-top: 0.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* so they wrap as needed */
  gap: 0.5rem;
  list-style: none;
}
/* Force the invalid-feedback to display if the .iti container is marked invalid. */
.iti.iti--allow-dropdown.is-invalid ~ .invalid-feedback {
  display: block !important;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: #fff !important;
  color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}
#contact-form .form-label, #modal-contact-form .form-label, #orderVoucherForm .form-label {
  color: black !important;
}
#contact-form .input-container, #modal-contact-form .input-container, #orderVoucherForm .input-container {
  position: relative;
}
#contact-form .check-icon, #modal-contact-form .check-icon, #orderVoucherForm .check-icon {
  position: absolute;
  top: calc(50% + 15px);
  right: 10px;
  transform: translateY(-50%);
  display: none;
  color: green;
}
#contact-form .input-icon, #modal-contact-form .input-icon, #orderVoucherForm .input-icon {
  position: relative;
  display: inline-block;
  width: 100%;
}
#contact-form input, #modal-contact-form input, #orderVoucherForm input {
  position: relative;
}
#contact-form .icon-before, #modal-contact-form .icon-before, #orderVoucherForm .icon-before {
  position: absolute;
  display: flex;
  width: 35px;
  height: 38px;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 3;
}
#contact-form .input-icon input, #contact-form .input-icon textarea, #contact-form .input-icon select, #modal-contact-form .input-icon input, #modal-contact-form .input-icon textarea, #modal-contact-form .input-icon select, #orderVoucherForm .input-icon input, #orderVoucherForm .input-icon textarea, #orderVoucherForm .input-icon select {
  padding-left: 30px; /* or adjust as per the size of your icon */
}
#contact-form .input-icon #staticPhone, #modal-contact-form .input-icon #modalPhone, #orderVoucherForm .input-icon #orderPhone {
  padding-left: 80px;
}
#contact-form i.valid-icon, #modal-contact-form i.valid-icon, #orderVoucherForm i.valid-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none; /* so the icon doesn't interfere with the input */
  display: none;
}
#contact-form .icon-before i, #modal-contact-form .icon-before i, #orderVoucherForm .icon-before i {
  color: black;
}
#contact-form #staticMessageSubject, #modal-contact-form #modalMessageSubject {
  padding: .375rem .75rem .375rem 2.5rem;
}
#contact-form .iti, #modal-contact-form .iti, #orderVoucherForm .iti {
  width: 100%;
}
#contact-form .iti__flag-container, #modal-contact-form .iti__flag-container, #orderVoucherForm .iti__flag-container {
  left: 30px;
}
.modal {
  z-index: 10001 !important;
}
/* Animated border effect for success message */
.conic {
  position: relative;
  z-index: 0;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
  border: thin solid rgb(168, 239, 255);
}
.conic::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(transparent, rgba(168, 239, 255, 1), transparent 30%);
  animation: rotate 4s linear infinite;
}
.conic::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 1rem;
  top: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: #000;
  border-radius: 10px;
}
.conic-demo::after {
  animation: opacityChange 5s infinite linear;
}
/* Optional: Style for the dark overlay */
#globalAlertOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1040;
}
/********************************/
/****** MODAL FORM BUTTON *******/
/********************************/
.sideModalFromBtn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  transition: all 0.3s ease-in-out !important;
  background-color: var(--fx-light-blue) !important;
  color: white !important;
  font-size: 1.5rem !important;
  border: none !important;
  cursor: pointer !important;
  position: fixed;
  bottom: 75px;
  right: 33px; /* Move to the right side */
  z-index: 99;
}
/* Icon Styling */
.sideModalFromBtn .btnIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Fixed size for the icon */
  height: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
/* Text Styling (Initially Hidden) */
.sideModalFromBtn .btnText {
  position: absolute;
  right: 100%; /* Push the text off-screen to the left */
  white-space: nowrap;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0; /* Hidden initially */
  transform: translateX(10px); /* Slight offset for smooth animation */
  transition: all 0.3s ease-in-out;
  z-index: 1;
  display: none;
}
/* Hover Effect */
.sideModalFromBtn:hover {
  width: 300px; /* Expand to fit the text */
  border-radius: 25px !important; /* Rounded corners for the expanded state */
  padding-left: 15px; /* Add space for the text */
  display: inline-flex;
  justify-content: end; /* Keep the content aligned to the end */
  align-items: center;
  height: 50px;
  background-color: var(--fx-sky-blue) !important;
  transition: all 0.3s ease-in-out;
}
.sideModalFromBtn:hover .btnIcon {
  width: 50px; /* Keep the icon size fixed */
  color: var(--fx-blue);
  transition: all 0.3s ease-in-out;
}
.sideModalFromBtn:hover .btnText {
  right: 65px; /* Position the text next to the icon */
  opacity: 1; /* Show the text */
  transform: translateX(0); /* Remove the offset */
  display: inline-flex;
  color: white;
  transition: all 0.3s ease-in-out;
}
.daily-wrapper {
  position: relative;
}
.daily-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0.75rem;
  width: 100px;
  height: 3px;
  background-color: var(--fx-light-blue);
}
/*************************************************/
/*************** COOKIES BANNER ******************/
/*************************************************/
.termsfeed-com---palette-dark .cc-nb-okagree, .termsfeed-com---palette-dark .cc-cp-foot-save {
  color: white !important;
  background-color: green !important;
}
.termsfeed-com---palette-dark .cc-nb-reject {
  color: white !important;
  background-color: firebrick !important;
}
.cc-cp-body-content-entry-text a, .cc-cp-body-content-entry-text a:hover, .cc-cp-body-content-entry-text a:active, .cc-cp-body-content-entry-text a:focus, .cc-cp-body-content-entry-text a:visited {
  color: firebrick !important;
}
#open_preferences_center:hover, #complaintPolicy:hover {
  color: var(--fx-light-blue);
}
.read-gdpr {
  color: var(--fx-blue);
}
.read-gdpr:hover {
  color: var(--fx-light-blue);
}
.fx-light-blue a {
  color: var(--fx-light-blue);
}
.fx-purplet a {
  color: var(--fx-purple);
}
a.custom-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none !important;
  text-transform: uppercase;
  padding: 0.95rem 1.65rem;
  margin: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  transition:
    transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
a.custom-button:hover, a.custom-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
  text-decoration: none !important;
}
a.custom-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
a.custom-button::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.18s ease;
}
a.custom-button:hover::after, a.custom-button:focus::after {
  transform: translateX(4px);
}
a.fx-purple-button {
  background-color: var(--fx-purple);
  color: white !important;
  border-color: var(--fx-purple);
}
a.fx-light-sky-blue-button, a.fx-light-sky-bluey-button {
  background-color: var(--fx-light-sky-blue);
  color: var(--fx-dark-blue) !important;
  border-color: var(--fx-light-sky-blue);
}
a.fx-sky-blue-button {
  background-color: var(--fx-sky-blue);
  color: white !important;
  border-color: var(--fx-sky-blue);
}
a.fx-light-blue-button {
  background: linear-gradient(135deg, var(--fx-light-blue), var(--fx-blue));
  color: white !important;
  border-color: var(--fx-light-blue);
}
a.fx-blue-button {
  background: linear-gradient(135deg, var(--fx-blue), var(--fx-dark-blue));
  color: white !important;
  border-color: var(--fx-blue);
}
a.fx-dark-blue-button {
  background-color: var(--fx-dark-blue);
  color: white !important;
  border-color: var(--fx-dark-blue);
}
a.white-button {
  background-color: white;
  color: var(--fx-blue) !important;
  border-color: white;
}
a.black-button {
  background-color: black;
  color: white !important;
  border-color: black;
}
a.fx-purple-button:hover, a.fx-purple-button:focus {
  background-color: white;
  color: var(--fx-purple) !important;
  border-color: var(--fx-purple);
}
a.fx-light-sky-blue-button:hover, a.fx-light-sky-blue-button:focus, a.fx-light-sky-bluey-button:hover, a.fx-light-sky-bluey-button:focus {
  background-color: var(--fx-blue);
  color: white !important;
  border-color: var(--fx-blue);
}
a.fx-sky-blue-button:hover, a.fx-sky-blue-button:focus {
  background-color: var(--fx-blue);
  color: white !important;
  border-color: var(--fx-blue);
}
a.fx-light-blue-button:hover, a.fx-light-blue-button:focus {
  background: linear-gradient(135deg, var(--fx-blue), var(--fx-dark-blue));
  color: white !important;
  border-color: var(--fx-blue);
}
a.fx-blue-button:hover, a.fx-blue-button:focus {
  background: linear-gradient(135deg, var(--fx-dark-blue), var(--fx-blue));
  color: white !important;
  border-color: var(--fx-dark-blue);
}
a.fx-dark-blue-button:hover, a.fx-dark-blue-button:focus {
  background-color: var(--fx-blue);
  color: white !important;
  border-color: var(--fx-blue);
}
a.white-button:hover, a.white-button:focus {
  background-color: var(--fx-blue);
  color: white !important;
  border-color: var(--fx-blue);
}
a.black-button:hover, a.black-button:focus {
  background-color: white;
  color: black !important;
  border-color: black;
}
/***********************************************************/
/* AUTOMATICALY FORMATED TABLE if has class = styled-table */
/***********************************************************/
table.styled-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
table.styled-table caption {
  display: table-header-group;
  text-align: center;
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .625em;
  margin-bottom: .35em;
}
/* —————————————— SHOW THEAD ON MOBILE —————————————— */
table.styled-table thead {
  display: table-header-group;
}
/* keep your original header-row look */
table.styled-table thead tr {
  color: white;
  background-color: var(--fx-blue);
  border: 1px solid #ddd;
  padding: .35em;
  display: table-row;
}
table.styled-table thead th, table.styled-table thead td {
  padding: .625em;
  text-align: center;
  vertical-align: center;
  font-size: 1em;
  text-transform: uppercase;
  display: table-cell;
}
table.styled-table tbody th p, table.styled-table tbody td p {
  margin: 0;
  padding: 0.5em;
  font-weight: normal;
}
table.styled-table tbody th {
  border: 1px solid #ddd;
}
/* —————————————— STACK ONLY TBODY ROWS —————————————— */
/* body rows become “cards” */
table.styled-table tbody tr {
  display: table-row;
  margin-bottom: .625em;
  border-bottom: medium solid var(--fx-blue);
  padding: .35em;
}
table.styled-table tbody tr:nth-child(odd) {
  background-color: white;
}
table.styled-table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
/* body cells stack and show labels */
table.styled-table tbody td {
  display: table-cell;
  font-size: 1em;
  text-align: left;
  padding: .625em;
  border-bottom: 1px solid #ddd !important;
  position: relative;
}
table.styled-table tbody td::before {
  content: attr(data-label);
  display: none;
}
table.styled-table tbody td:last-child {
  border-bottom: 0;
}
/* keep your “section” rows (colspan) centered and styled */
table.styled-table tbody tr > td[colspan] {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  text-align: center;
  display: block;
}
.slick-carousel img {
  margin: 0 auto;
  padding: 10px;
}
.image-card-holder {
  position: relative;
}
.image-card-inner-holder {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-card-holder img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: all 0.25s linear;
}
.image-card-holder .image-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  transition: all 0.25s linear;
}
.image-card-holder .image-card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  color: white;
  font-size: clamp(1em, 4vw, 1.75em);
  font-weight: 600;
  padding: 1rem;
  transition: all 0.25s linear;
}
.image-card-holder:hover img {
  transform: scale(1.3);
  transition: all 0.25s linear;
}
.image-card-holder:hover .image-card-overlay {
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.25s linear;
}
.image-card-holder:hover .image-card-title {
  transform: translate(-50%, -50%) scale(1.2);
  transition: all 0.25s linear;
}
/*
.waves-container {
  position: relative;
  background-color: white;
  padding-top: 2rem;
  z-index: 2;
}
.waves {
  position: relative;
  width: 100%;
  max-height: 150px;
  height: 40px;
  min-height: 40px;
}
*/
/*
 * Výška prechodových vĺn medzi obsahom a footerom.
 */ :root {
  --footer-wave-height: clamp(60px, 10vw, 150px);
}
/*
 * Posledná sekcia potrebuje dole miesto,
 * aby vlny neprekryli jej obsah.
 */
.page-content > section:last-of-type:not(.parallax-banner) {
  padding-bottom:
    calc(
      var(--footer-wave-height)
      + var(--section-space-y)
    ) !important;
}

.page-content
> section.has-section-after-text:last-of-type:not(.parallax-banner) {
  padding-bottom:
    calc(
      var(--footer-wave-height)
      + 100px
    ) !important;
}

/*
 * Kontajner vĺn zasunieme do poslednej sekcie.
 *
 * Nemá vlastné pozadie – priehľadné časti SVG
 * ukážu skutočné pozadie poslednej sekcie.
 */
.waves-container {
  position: relative;
  z-index: 50;
  width: 100%;
  height: var(--footer-wave-height);
  margin-top: calc(var(--footer-wave-height) * -1);
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  line-height: 0;
  pointer-events: none;
}
/*
 * SVG vyplní celý kontajner.
 */
.waves {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  margin: 0 0 -2px;
}
/* Animation */
.waves-parallax > use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.waves-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.waves-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.waves-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.waves-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
/******************************************************/
/******************** PRODUCTS GRID *******************/
/******************************************************/
/* === UNIFIKÁCIA STYLOV: product-link == img-subpage-link === */
/* Base tile */
.product-link, .img-subpage-link {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 1rem;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
  box-shadow: 0 14px 34px rgba(43, 160, 215, 0.10);
}
/* Image */
.product-link img, .img-subpage-link img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.0);
  filter: saturate(98%);
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
  display: block;
}
/* Overlay (soft gradient) */
.product-link .product-link-overlay, .img-subpage-link .img-subpage-link-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0) 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
/* Title bar */
.product-link .product-link-text, .img-subpage-link .link-text {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  padding: .5rem .75rem;
  color: var(--fx-blue);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  transition: background-color .18s ease, color .18s ease;
  z-index: 1; /* nad overlayom */
}
/* Wave before the title */
.product-link .product-link-text::before, .img-subpage-link .link-text::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: clamp(10px, 2.5vw, 18px);
  pointer-events: none;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.02);
  transition: background-color .18s ease;
  -webkit-mask: no-repeat 0 0 / 100% 100% url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 595.28 77.74' preserveAspectRatio='none'>\
  <g transform='scale(1,-1) translate(0,-77.74)'>\
    <path fill='white' d='M0 0h595.28v45s-157-62.28-295 0C137 118.67 0 45 0 45Z'/>\
  </g>\
</svg>");
  mask: no-repeat 0 0 / 100% 100% url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 595.28 77.74' preserveAspectRatio='none'>\
  <g transform='scale(1,-1) translate(0,-77.74)'>\
    <path fill='white' d='M0 0h595.28v45s-157-62.28-295 0C137 118.67 0 45 0 45Z'/>\
  </g>\
</svg>");
}
.product-link .product-link-text:hover::before, .product-link:hover .product-link-text::before, .img-subpage-link .link-text:hover::before, .img-subpage-link:hover .link-text::before {
  background-color: rgba(0, 113, 187, 1);
  bottom: calc(100% - 2px);
}
/* Arrow icon */
.product-link .product-link-icon, .img-subpage-link .link-icon {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(.5rem);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  z-index: 2; /* nad overlayom */
}
/* Hover / focus */
.product-link:hover, .product-link:focus-visible, .img-subpage-link:hover, .img-subpage-link:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 20px 46px rgba(43, 160, 215, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, .08);
}
.product-link:hover img, .product-link:focus-visible img, .img-subpage-link:hover img, .img-subpage-link:focus-visible img {
  transform: scale(1.05);
  filter: saturate(105%);
}
.product-link:hover .product-link-overlay, .product-link:focus-visible .product-link-overlay, .img-subpage-link:hover .img-subpage-link-overlay, .img-subpage-link:focus-visible .img-subpage-link-overlay {
  opacity: 1;
}
.product-link:hover .product-link-text, .product-link:focus-visible .product-link-text, .img-subpage-link:hover .link-text, .img-subpage-link:focus-visible .link-text {
  background-color: var(--fx-blue);
  color: #fff;
}
.product-link:hover .product-link-icon, .product-link:focus-visible .product-link-icon, .img-subpage-link:hover .link-icon, .img-subpage-link:focus-visible .link-icon {
  transform: translateX(0);
  opacity: 1;
}
/* Active click feedback */
.product-link:active, .img-subpage-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
/* Focus ring */
.product-link:focus-visible, .img-subpage-link:focus-visible {
  outline: 3px solid rgba(0, 123, 255, .35);
  outline-offset: 2px;
}
/* Blur-up reveal */
.product-link img[data-blur="1"], .img-subpage-link img[data-blur="1"] {
  filter: blur(8px);
  opacity: .7;
}
.product-link img[data-loaded="true"], .img-subpage-link img[data-loaded="true"] {
  filter: none !important;
  opacity: 1 !important;
}
/* Voliteľné: skryť duplicitný text v overlayi druhej karty, ak ho nechceš dvakrát */
.img-subpage-link .img-subpage-link-overlay > span {
  position: absolute;
  left: -9999px; /* nechaj pre a11y, ale vizuálne mimo */
}
/****************************************************/
/********* BOOTSTRAP PRODUCTS PAGE AND TABS *********/
/****************************************************/
.product-image a {
  position: relative;
  display: block;
  background-color: var(--light-grey);
  border: 1px solid #dee2e6 !important;
  overflow: hidden;
}
.product-image a .product-image-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0, 50% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s linear;
}
.product-image a .zoom-icon {
  position: absolute;
  bottom: 2em;
  right: 2em;
  color: var(--dark-grey);
  opacity: 1;
  transition: all 0.25s linear;
}
.product-image a:hover .product-image-overlay {
  left: 100%;
  transition: all 0.5s linear;
}
.product-image a .product-image-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0, 50% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s linear;
}
.product-image a .zoom-icon {
  color: dimgrey;
}
ul.nav.nav-tabs.custom-tabs .nav-item .nav-link.active {
  color: var(--fx-blue);
}
ul.nav.nav-tabs.custom-tabs .nav-item .nav-link:not(.active) {
  color: dimgrey;
}
/*** FAQ STYLING ***/
/* FAQ – Bootstrap + Font Awesome look */
.faq-accordion details {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: .75rem;
  background: #fff;
  margin: .5rem 0 1rem;
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .04);
  overflow: hidden;
}
.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.25rem; /* miesto na ikonku vpravo */
  font-weight: 600;
  position: relative;
  line-height: 1.35;
  user-select: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion summary:hover {
  background: rgba(0, 0, 0, .03);
}
.faq-accordion summary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(32, 152, 209, .35); /* fx-blue */
}
/* ľavá ikonka otázky (FA circle-question) */
.faq-accordion summary .q-ico {
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  font-style: normal;
  speak: never;
}
.faq-accordion summary .q-ico::before {
  content: "\f059"; /* fa-circle-question */
  opacity: .9;
  margin-right: .25rem;
  color: #2098d1;
}
/* pravá ikonka chevron (zatvorené/otvorené) */
.faq-accordion summary::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078"; /* fa-chevron-down */
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: .9;
  color: #2098d1;
}
.faq-accordion details[open] summary::after {
  content: "\f077"; /* fa-chevron-up */
}
/* plynulý otvor/zavretie */
.faq-accordion details > .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-accordion details[open] > .faq-content {
  grid-template-rows: 1fr;
}
.faq-accordion details > .faq-content > * {
  overflow: hidden;
}
/* telo odpovede */
.faq-accordion .faq-body {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  color: #333;
}
.faq-accordion details[open] p {
  padding: 0.25rem 1.25rem;
}
/****** SHARE ICONS ********/
/* Pás s akciami pri produktoch */
.product-actions .btn {
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  border-width: 1px; /* nech je bordera vždy 1px */
  border-style: solid;
}
/* Ikonové tlačidlá: fixná veľkosť → žiadny "skáčuci" layout */
.product-actions .btn-icon {
  --btn-size: 2.25rem; /* podľa vkusu */
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1; /* stabilné zarovnanie ikony */
}
/* Východzí border transparentný → na hover meníš iba farbu, nie hrúbku */
.product-actions .btn-outline-primary, .product-actions .btn-outline-secondary, .product-actions .btn-outline-success, .product-actions .btn-outline-dark {
  border-color: transparent; /* baseline */
}
.product-actions .btn-outline-primary:hover {
  border-color: var(--bs-primary);
}
.product-actions .btn-outline-secondary:hover {
  border-color: var(--bs-secondary);
}
.product-actions .btn-outline-success:hover {
  border-color: var(--bs-success);
}
.product-actions .btn-outline-dark:hover {
  border-color: var(--bs-dark);
}
/* voliteľne: jemné "nechvenie" pri subpixeloch ikon */
.product-actions .btn i {
  transform: translateZ(0);
}
.product-actions .actions-title {
  letter-spacing: .06em;
}
/***************************/
/*** BREADCRUMBS STYLING ***/
/***************************/
.breadcrumbs {
  border: 1px solid #cbd2d9;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
}
.breadcrumbs__item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #333;
  outline: none;
  padding: 0.75em 0.75em 0.75em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;
}
.breadcrumbs__item:hover:after, .breadcrumbs__item:hover {
  background: #edf1f5;
}
.breadcrumbs__item:focus:after, .breadcrumbs__item:focus, .breadcrumbs__item.is-active:focus {
  background: #323f4a;
  color: #fff;
}
.breadcrumbs__item:after, .breadcrumbs__item:before {
  background: white;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}
.breadcrumbs__item:before {
  background: #cbd2d9;
  margin-left: 1px;
}
.breadcrumbs__item:last-child {
  border-right: none;
}
.breadcrumbs__item.is-active {
  background: #edf1f5;
}
.breadcrumbs__item a, .breadcrumbs__item a:hover, .breadcrumbs__item a:active, .breadcrumbs__item a:visited, .breadcrumbs__item a:focus {
  text-decoration: none;
  color: black;
}
#copyStatus {
  display: inline-block;
  margin-left: .5rem;
  font-weight: 600;
}
.cc-embed-wrap {
  position: relative;
}
.cc-video-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: rgba(150, 150, 150, 0.8);
  border: 1px dashed #c7d2e5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cc-video-ph--bg {
  background: rgba(50, 50, 50, 0.90);
  backdrop-filter: saturate(120%) blur(2px);
}
.cc-video-ph__inner {
  max-width: 720px;
}
.cc-video-ph__title {
  font-weight: 700;
  margin-bottom: .35rem;
  color: white;
}
.cc-video-ph__text {
  margin: 0 0 1rem;
  color: white;
}
.cc-video-ph__actions .cc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid #0a58ca;
  padding: .5rem .75rem;
  border-radius: 8px;
  text-decoration: none;
  margin: .25rem;
}
.cc-video-ph__actions .cc-btn:hover {
  background: #0a58ca;
  color: #fff;
}
/* istota: kontajnery pre video majú vlastný stacking context */
.embedded-video, .cc-embed-wrap {
  position: relative;
}
/* overlay nech vyplní kontajner a je nad všetkým */
.embedded-video .cc-video-ph, .cc-embed-wrap .cc-video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3; /* vyššie než iframe */
  pointer-events: auto; /* aby sa dalo klikať */
}
/* kým je blokované, samotný iframe skryjeme */
.embedded-video iframe[data-yt-consent="blocked"], .cc-embed-wrap iframe[data-yt-consent="blocked"] {
  display: none !important;
}
.cc-video-ph .cc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .92);
  color: #13324a; /* tmavý text kvôli kontrastu */
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: .5rem;
  padding: .6rem .9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
  transition: transform .06s ease, box-shadow .15s ease, background .15s;
}
.cc-video-ph .cc-btn:hover, .cc-video-ph .cc-btn:focus {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  transform: translateY(-1px);
  outline: none;
  color: dimgrey;
}
.cc-video-ph .cc-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
/* keď je povolené, iframe určite zobraz */
.embedded-video iframe[data-yt-consent="ready"], .cc-embed-wrap iframe[data-yt-consent="ready"] {
  display: block !important; /* iframe default je inline, ale block je OK pri absolutnom pozicionovaní */
}
/* rodič pre BG video má mať stabilný stacking context */
.big-banner, .big-banner .video-container {
  position: relative;
}
.big-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.big-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 42%, rgba(0, 0, 0, 0.65) 100%), radial-gradient(circle at 25% 20%, rgba(43, 160, 215, 0.28) 0, transparent 38%);
}
.big-banner .banner-text, .big-banner .text-over-vegas, .video-overlay {
  z-index: 2;
}
/* overlay pre BG video – veľmi vysoký z-index, aby sedel nad všetkým */
.cc-ytbg-overlay {
  position: absolute;
  inset: 0;
  z-index: 50; /* vyššie než čokoľvek z pluginu */
  pointer-events: auto;
}
/* keď blokujeme BG video, vypneme mu klikanie */
.big-banner .video-container.cc-ytbg-blocking iframe {
  pointer-events: none !important;
}
/* Consent modal */
.cm__btn.cc-cm-accept-all {
  background: #0071c2 !important;
  color: #fff !important;
  border-color: #0071c2 !important;
}
.cm__btn.cc-cm-accept-necessary {
  background: #2f4963 !important;
  color: #fff !important;
  border-color: #2f4963 !important;
}
/* Preferences modal */
.pm__btn.cc-pm-accept-all {
  background: #0071c2 !important;
  color: #fff !important;
  border-color: #0071c2 !important;
}
.pm__btn.cc-pm-accept-necessary {
  background: #2f4963 !important;
  color: #fff !important;
  border-color: #2f4963 !important;
}
/* Voliteľne :hover/:focus (príklady) */
.cm__btn.cc-cm-accept-all:hover, .pm__btn.cc-pm-accept-all:hover, .cm__btn.cc-cm-accept-necessary:hover {
  filter: brightness(0.95) !important;
}
.pm__btn.cc-pm-save-preferences:hover {
  filter: brightness(0.95) !important;
}
/* Snehovo biely outline, vyplní sa na hover, bez zmeny veľkosti */
a.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
/* reset globálneho p a::after pravidla */
a.hero-cta::after, p a.hero-cta::after {
  content: "\f061";
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
  background: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
/* reset hover podčiarknutia z p a:hover::after */
a.hero-cta:hover::after, a.hero-cta:focus::after, p a.hero-cta:hover::after, p a.hero-cta:focus::after {
  width: auto;
  background: none;
  transform: translateX(4px);
}
.btn-white-outline {
  color: #ffffff !important;
  background: transparent;
  border: 2px solid #ffffff !important;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-white-outline:hover, .btn-white-outline:focus {
  color: var(--fx-blue) !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  text-decoration: none;
}
.btn-white-outline:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 2px;
}
/* Jemný tieň na hoveri (voliteľné) */
.btn-white-outline:hover {
  box-shadow: 0 4px 14px rgba(255, 255, 255, .15);
}
.fx-dotnav {
  display: none;
}
/* jemné prechody */
.shadow-border {
  border: 1px solid rgba(43, 160, 215, 0.12);
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(43, 160, 215, 0.10);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  transition:
    transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  will-change: transform, box-shadow;
}
/* kurzor iba na klikateľných kartách */
.shadow-border:has(.stretched-link) {
  cursor: pointer;
}
/* zvýraznenie IBA ak vnútri je stretched-link (teda karta je link) */
.shadow-border:has(.stretched-link):hover, .shadow-border:has(.stretched-link):focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .08);
  border-color: var(--fx-blue, #0d6efd);
}
/* jemný zoom obrázka iba na klikateľných kartách */
.shadow-border:has(.stretched-link):hover .square-image img, .shadow-border:has(.stretched-link):focus-within .square-image img, .shadow-border:has(.stretched-link):hover .wide-image-container .square-image img, .shadow-border:has(.stretched-link):focus-within .wide-image-container .square-image img {
  transform: scale(1.03);
  transition: transform 300ms ease;
  will-change: transform;
}
/* "Viac" bez podčiarknutia; iba trochu zvýrazniť farbou (voliteľné) */
.read-more {
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}
.shadow-border:has(.stretched-link):hover .read-more, .shadow-border:has(.stretched-link):focus-within .read-more {
  opacity: .95;
  border-radius: 0.5rem;
}
/* dostupnosť: silnejší focus prstenec na klikateľných kartách */
.shadow-border:has(.stretched-link):focus-within {
  box-shadow:
    0 0 0 3px rgba(13, 110, 253, .15), 0 10px 24px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .08);
}
/* FULL ARTICLES STYLING */
.full-article blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--fx-blue);
  background: #f8fafc;
  font-style: italic;
  position: relative;
  color: #1f2933;
}
.full-article blockquote::before {
  content: "“";
  position: absolute;
  left: 12px;
  top: -10px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(15, 23, 42, 0.15); /* veľmi svetlé */
  pointer-events: none;
}
.full-article blockquote p {
  margin: 0; /* CKEditor rád pridáva <p>, nech to neodskočí */
}
/* Ak používaš v blockquote aj <cite> pre autora */
.full-article blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.full-article figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  text-align: center;
}
body.modal-custom-cursor-active {
  cursor: none;
}
#modal-custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #ffffff;
}
#modal-custom-cursor i {
  background: transparent;
  border-radius: 50%;
  border: 2px solid #ffffff;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .35);
}
/* ===== Christmas effect ===== */
.xmas-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* fade základ */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
/* otvorené */
.xmas-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility 0s;
}
/* zatvárame (fade-out) */
.xmas-modal.is-closing {
  opacity: 0;
  visibility: visible; /* nech stále existuje počas fade-out */
  pointer-events: none;
  transition: opacity .25s ease;
}
.xmas-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .25s ease;
}
.xmas-modal.is-open .xmas-backdrop {
  opacity: 1;
}
.xmas-modal.is-closing .xmas-backdrop {
  opacity: 0;
}
#christmas-banner #snow-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.xmas-modal.is-open #snow-canvas {
  opacity: 1;
}
.xmas-modal.is-closing #snow-canvas {
  opacity: 0;
}
.xmas-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px) scale(.985);
  z-index: 2;
  max-width: 920px;
  width: calc(100% - 24px);
  margin: 18px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.xmas-modal.is-open .xmas-card {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
}
.xmas-modal.is-closing .xmas-card {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(10px) scale(.985);
}
.xmas-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 26px;
  line-height: 1;
  z-index: 3;
  cursor: pointer;
}
.xmas-image img {
  width: 100%;
  height: auto;
  display: block;
}
.xmas-text {
  padding: 18px 18px 10px 18px;
  font-size: 1.05rem;
}
.xmas-actions {
  padding: 0 18px 18px 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#christmas-banner.xmas-modal.is-open #snow-canvas {
  opacity: 1;
}
#christmas-banner.xmas-modal.is-closing #snow-canvas {
  opacity: 0;
}
/*****************************************************************************/
/*************************** PARALLAX BANNER *********************************/
/*****************************************************************************/
/*
 * Základný stav je určený pre mobil.
 * Na mobile sa používa mobilný obrázok a bez fixed efektu.
 */
.page-content section.parallax-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: var(--parallax-min-height, 520px);
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  background-color: #111111;
  background-image: var(--parallax-mobile-image);
  background-repeat: no-repeat;
  background-position: var(--parallax-position, center center);
  background-size: cover;
  background-attachment: scroll;
  animation: none !important;
}
/*
 * Parallax banner nesmie dostať vlnku,
 * mriežku ani striedavé pozadie bežných sekcií.
 */
.page-content section.parallax-banner::before, .page-content section.parallax-banner::after {
  content: none !important;
  display: none !important;
}
/*
 * Zrušenie odsadenia, ktoré dostávajú bežné sekcie.
 */
.page-content section.parallax-banner > .container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: var(--parallax-min-height, 520px);
  padding-top: 0 !important;
}
/*
 * Bootstrap row musí vyplniť celú výšku banneru.
 */
.parallax-banner__container > .row {
  width: 100%;
  min-height: var(--parallax-min-height, 520px);
  margin-right: 0;
  margin-left: 0;
}
/*
 * Tmavé prekrytie obrázka.
 */
.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background-color: var(--parallax-overlay-color, transparent);
  pointer-events: none;
}
/*
 * Textový obsah.
 */
.parallax-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #ffffff;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45);
}
.page-content .parallax-banner .parallax-banner__title {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.12;
}
.parallax-banner__text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}
.parallax-banner__text p, .parallax-banner__text li, .parallax-banner__text span, .parallax-banner__text strong, .parallax-banner__text em {
  color: inherit;
}
.parallax-banner__text p:last-child {
  margin-bottom: 0;
}
/*
 * CTA tlačidlo.
 */
a.parallax-banner__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: auto;
  margin-top: 2rem;
  padding: 1rem 1.75rem;
  border: 2px solid #ffffff !important;
  border-radius: 999px;
  background-color: transparent;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28);
  transition:
    background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
/*
 * Font Awesome šípka.
 */
a.parallax-banner__button::after {
  content: "\f061";
  position: static;
  display: inline-flex;
  width: auto;
  height: auto;
  background: none;
  font-family: "Font Awesome 6 Free";
  font-size: 0.95em;
  font-weight: 900;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
a.parallax-banner__button:hover, a.parallax-banner__button:focus {
  background-color: #ffffff;
  color: var(--fx-blue) !important;
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34);
}
a.parallax-banner__button:hover::after, a.parallax-banner__button:focus::after {
  width: auto;
  background: none;
  transform: translateX(4px);
}
a.parallax-banner__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}
/*****************************************************************************/
/*************************** SUBTLE PAGE MOTION ******************************/
/*****************************************************************************/
/* Jemný nástup prvkov pri scrollovaní */
.fx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}
.fx-reveal.fx-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Jemne oneskorené nástupy v rámci sekcie */
.fx-reveal-delay-1 {
  transition-delay: 90ms;
}
.fx-reveal-delay-2 {
  transition-delay: 180ms;
}
.fx-reveal-delay-3 {
  transition-delay: 270ms;
}
/* Karty nech pri zobrazení pôsobia ako ľahké zdvihnutie */
.shadow-border.fx-reveal, .custom-card.fx-reveal, .product-link.fx-reveal, .img-subpage-link.fx-reveal {
  transform: translateY(32px) scale(0.985);
}
.shadow-border.fx-reveal.fx-visible, .custom-card.fx-reveal.fx-visible, .product-link.fx-reveal.fx-visible, .img-subpage-link.fx-reveal.fx-visible {
  transform: translateY(0) scale(1);
}
/* Jemné "dýchanie" ikoniek v custom kartách */
@keyframes fx-icon-breathe {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(43, 160, 215, 0.24);
  }
  50% {
    box-shadow: 0 14px 42px rgba(43, 160, 215, 0.42);
  }
}
.custom-card.fx-visible > .card-icon {
  animation: fx-icon-breathe 4.5s ease-in-out infinite;
}
/* Tlačidlá – veľmi jemný svetelný prechod */
a.custom-button::before, a.hero-cta::before, a.parallax-banner__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.00) 35%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.00) 65%, transparent 100%);
  transform: translateX(-130%);
  opacity: 0;
}
a.custom-button:hover::before, a.hero-cta:hover::before, a.parallax-banner__button:hover::before {
  opacity: 1;
  transform: translateX(130%);
  transition:
    transform 750ms ease, opacity 250ms ease;
}
/* Pomalý ambientný pohyb technickej mriežky v sekciách */
@keyframes fx-grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 42px 42px, 42px 42px;
  }
}
.page-content section::after {
  animation: fx-grid-drift 28s linear infinite;
}
/* Jemný pohyb veľkých kruhov v pozadí cez background-position */
@keyframes fx-section-glow {
  0%, 100% {
    background-position:
      0 0, 0 0, 0 0, 0 0;
  }
  50% {
    background-position:
      0 0, 18px 22px, -24px 16px, 0 0;
  }
}
.page-content section:nth-of-type(odd), .page-content section:nth-of-type(even) {
  animation: fx-section-glow 24s ease-in-out infinite;
}
/* Hero text nech po načítaní príde trochu mäkšie */
@keyframes fx-hero-in {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.big-banner .banner-text {
  animation: fx-hero-in 900ms ease both;
}
/*****************************************************************************/
/**************************** MOBILE LAYOUT **********************************/
/*****************************************************************************/
@media only screen and (min-width: 576px) {
  header .nav-bar a {
    font-size: clamp(0.8em, 2.5vw, 1em);
  }
  .parallax-banner__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .page-content .parallax-banner .parallax-banner__title {
    font-size: 2.5rem !important;
  }
  a.parallax-banner__button {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
/*****************************************************************************/
/**************************** TABLET LAYOUT **********************************/
/*****************************************************************************/
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .big-banner .banner-text {
    display: none;
  }
  .video-overlay {
    display: none !important;
  }
  .article-banner-overlay h2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  header .language-switcher {
    display: inherit;
    color: white;
  }
  header .language-switcher a {
    padding: 0 0.25rem;
  }
  .mobile-language-switcher {
    display: none;
  }
  header .socials a i {
    font-size: 2em;
  }
  header .nav-bar {
    transition: all 0.3s ease;
  }
  header .nav-bar a {
    font-size: clamp(0.7em, 1.5vw, 1em);
  }
  header .socials a svg, header .socials a img {
    width: 40px;
    height: auto;
    padding-right: .25rem !important;
    padding-left: .25rem !important;
    margin-right: .25rem !important;
    margin-left: .25rem !important;
  }
  header .nav-bar li {
    position: relative;
  }
  header .nav-bar ul li ul li a {}
  header .nav-bar ul li a:hover {
    /*background-color: rgba(0,0,0,0.75);
        color: var(--fx-purple);*/
    outline: none;
  }
  header .nav-bar ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    overflow: hidden;
    width: max-content;
    border-radius: 0.375rem;
  }
  header .nav-bar li:hover > ul {
    display: block;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.75);
  }
  /*
    header .nav-bar .activeHover {
        background-color: white;
    }
    */
  header .nav-bar .activeHover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: var(--fx-purple);
  }
  header .nav-bar ul {
    justify-content: center;
  }
  
  .fixed-nav {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    color: white;

    /*
     * Gradient je rozmerovo pripravený pre navigáciu
     * aj vlnu pod ňou.
     */
    background-image: var(--fixed-nav-gradient);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size:
      100%
      var(--fixed-nav-total-height);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
      background 0.25s ease,
      box-shadow 0.25s ease,
      backdrop-filter 0.25s ease;
  }

  .fixed-nav::after {
    content: "";

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    height: var(--fixed-nav-wave-height);

    z-index: 0;
    pointer-events: none;

    /*
     * Rovnaký gradient a rovnaká celková výška
     * ako na navigácii.
     *
     * Posunutím o výšku navigácie zobrazíme
     * pokračovanie gradientu, nie jeho nový začiatok.
     */
    background-image: var(--fixed-nav-gradient);
    background-repeat: no-repeat;
    background-size:
      100%
      var(--fixed-nav-total-height);
    background-position:
      0
      calc(0px - var(--fixed-nav-height));

    /*
     * SVG už neurčuje farbu.
     * Určuje iba tvar vlny.
     */
    -webkit-mask:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 595.28 77.74' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 0h595.28v45s-157-62.28-295 0C137 118.67 0 45 0 45Z'/%3E%3C/svg%3E")
      center / 100% 100%
      no-repeat;

    mask:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 595.28 77.74' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 0h595.28v45s-157-62.28-295 0C137 118.67 0 45 0 45Z'/%3E%3C/svg%3E")
      center / 100% 100%
      no-repeat;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .fixed-nav a {
    color: white !important;
  }
  .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }
  .big-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: clamp(2em, 4vw, 5em);
    font-weight: 600;
    padding: 1rem;
    width: 85%;
    height: auto;
  }
  .video-overlay .video-title {
    white-space: normal;
  }
  .page-content section.parallax-banner {
    background-image: var(--parallax-desktop-image);
  }
  .parallax-banner__content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .page-content .parallax-banner .parallax-banner__title {
    font-size: 3rem !important;
  }
  .parallax-banner__text {
    font-size: 1.1rem;
  }
  #reviews-container.owl-carousel .owl-nav button.owl-next {
    margin-right: -0.5rem;
  }
  #reviews-container.owl-carousel .owl-nav button.owl-prev {
    margin-left: -0.5rem;
  }
  .read-more {
    margin: 1rem 0 0 auto;
  }
  .shadow-border > .row.not-reversed, .shadow-border > .row.flex-row-reverse {
    margin-left: calc(var(--bs-gutter-x, 30px) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 30px) * -0.5);
  }
  .not-reversed > .col-lg-5, .flex-row-reverse > .col-lg-5 {
    padding-left: calc(var(--bs-gutter-x, 30px) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 30px) * 0.5);
  }
  .square-image-container .square-image {
    position: absolute;
    inset: 0;
  }
  .square-image-container .square-image::after {
    display: none;
  }
  .not-reversed .square-image-container {
    position: relative;
    overflow: hidden;
    height: calc(100% + 2rem);
    min-height: 100%;
    top: -1rem;
    left: -1rem;
    right: auto;
    width: calc(100% + 1rem);
  }
  .flex-row-reverse .square-image-container {
    position: relative;
    overflow: hidden;
    height: calc(100% + 2rem);
    min-height: 100%;
    top: -1rem;
    left: auto;
    right: -1rem;
    width: calc(100% + 1rem);
  }
  /***********************************************************/
  /* AUTOMATICALY FORMATED TABLE if has class = styled-table */
  /***********************************************************/
  table.styled-table {
    display: table;
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }
  table.styled-table caption {
    display: none !important;
  }
  /* thead restores to “real” header */
  table.styled-table thead {
    display: table-header-group;
    ;
  }
  table.styled-table thead tr {
    display: table-row;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }
  table.styled-table thead th, table.styled-table thead td {
    display: table-cell;
    padding: .625em;
    text-align: center;
    font-size: 1em;
    text-transform: uppercase;
    background-color: var(--fx-blue);
  }
  /* body back to table rows/cells */
  table.styled-table tbody tr {
    display: table-row;
    margin: 0;
    border-bottom: none;
    background-color: #f8f8f8;
    padding: .35em;
  }
  table.styled-table tbody td {
    display: table-cell;
    padding: .625em;
    text-align: center;
    font-size: 1em;
    border: 1px solid #ddd;
    position: static;
  }
  /* remove the mobile labels */
  table.styled-table tbody td::before {
    display: none;
  }
}
/*****************************************************************************/
/**************************** SMALL DESKTOP **********************************/
/*****************************************************************************/
@media only screen and (min-width: 992px) {
  header {
    top: 0;
  }
  .slicknav_menu {
    display: none;
  }
  header .socials {
    /*padding: 1.5rem !important;*/
  }
  .nav-bar {
    display: block;
  }
  header .nav-bar a {
    font-size: clamp(0.9em, 2.5vw, 1em);
  }
  .page-content section.parallax-banner {
    background-attachment: fixed;
  }
  .parallax-banner__content {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .page-content .parallax-banner .parallax-banner__title {
    font-size: 4rem !important;
  }
  .parallax-banner__text {
    font-size: 1.15rem;
  }
  a.parallax-banner__button {
    font-size: 1rem;
  }
  #reviews-container.owl-carousel .owl-nav button.owl-next {
    margin-right: -1rem;
  }
  #reviews-container.owl-carousel .owl-nav button.owl-prev {
    margin-left: -1rem;
  }
  .wide-google-map {
    position: relative;
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
  }
  .wide-google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  h1.site-title::before, h1.site-title::after, h2.site-title::before, h2.site-title::after, .site-subtitle::before, .site-subtitle::after {
    display: inline-block;
  }
  .xmas-image {
    height: 100%;
  }
  .xmas-image img {
    height: 100%;
    object-fit: cover;
  }
  .xmas-text {
    padding: 26px 26px 12px 26px;
    font-size: 1.15rem;
  }
  .xmas-actions {
    padding: 0 26px 26px 26px;
  }
  
  /*
   * Navigácia zostáva nad bannerom a jej rozbaľovacie
   * ponuky sa nesmú orezať Bootstrap kontajnerom.
   */
  header .sub-header,
  header .sub-header .container,
  header .sub-header .row,
  header .sub-header [class*="col-"] {
    overflow: visible;
  }

  header .sub-header {
    position: relative;
    z-index: 1001;
  }

  /*
   * Základná navigácia nad hlavným bannerom.
   * Vytvorí jemnú sklenenú kapsulu.
   */
  header .nav-bar:not(.fixed-nav) {
    width: max-content;
    max-width: calc(100vw - 3rem);

    margin-right: auto;
    margin-left: auto;
    padding: 0.35rem;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    background: rgba(10, 24, 34, 0.28);

    backdrop-filter:
      blur(12px)
      saturate(135%);

    -webkit-backdrop-filter:
      blur(12px)
      saturate(135%);

    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  /*
   * Namiesto marginov na jednotlivých odkazoch použijeme
   * jednotný gap medzi položkami.
   */
  header .nav-bar > ul {
    width: auto;
    gap: 0.2rem;
  }

  header .nav-bar > ul > li {
    display: flex;
    align-items: center;
  }

  /*
   * Väčšia klikateľná plocha, čistejšia typografia
   * a stabilné rozmery bez poskakovania.
   */
  header .nav-bar > ul > li > a {
    width: auto;
    min-height: 44px;

    margin: 0;
    padding: 0.75rem 1rem;

    border-radius: 999px;

    color: rgba(255, 255, 255, 0.90) !important;

    font-size: clamp(0.72rem, 1.2vw, 1rem);
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.035em;
    white-space: nowrap;

    opacity: 0.92;

    transition:
      color 0.2s ease,
      opacity 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  /*
   * Jemné zvýraznenie pri prejdení myšou.
   */
  header .nav-bar > ul > li > a:hover,
  header .nav-bar > ul > li > a:focus {
    color: #ffffff !important;
    opacity: 1;

    background-color: rgba(255, 255, 255, 0.12);

    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);

    transform: translateY(-1px);
  }

  /*
   * Aktívna položka ako jemná sklenená kapsula.
   */
  header .nav-bar > ul > li > a.active {
    color: #ffffff !important;
    opacity: 1;

    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.10)
      );

    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.14),
      inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  /*
   * Krátka modrá čiarka pod aktívnou položkou.
   */
  header .nav-bar > ul > li > a::after {
    top: auto;
    bottom: 5px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background-color: var(--fx-sky-blue);

    transition:
      width 0.2s ease,
      background-color 0.2s ease;
  }

  header .nav-bar > ul > li > a:hover::after,
  header .nav-bar > ul > li > a:focus::after {
    width: 22px;
  }

  header .nav-bar > ul > li > a.active::after {
    width: 28px;
  }

  /*
   * Viditeľný focus pri ovládaní klávesnicou.
   */
  header .nav-bar > ul > li > a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
  }

  /*
   * Fixed navigácia má presnú výšku, aby gradient
   * plynulo pokračoval do spodnej vlny.
   */
  header .nav-bar.fixed-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: none;
    height: var(--fixed-nav-height);

    margin: 0;
    padding: 0 1rem;

    border: 0;
    border-radius: 0;

    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.16),
      inset 0 -1px 0 rgba(255, 255, 255, 0.14);
  }

  header .nav-bar.fixed-nav > ul {
    width: auto;
    height: 100%;
    gap: 0.2rem;
  }

  header .nav-bar.fixed-nav > ul > li {
    height: 100%;
  }

  header .nav-bar.fixed-nav > ul > li > a {
    min-height: 0;
    height: 100%;

    padding: 0 1rem;

    border-radius: 0.75rem;
  }

  /*****************************************************************************/
  /**************************** DESKTOP SUBMENU *********************************/
  /*****************************************************************************/

  header .nav-bar > ul > li {
    position: relative;
  }

  /*
   * Submenu sa mierne prekrýva s hlavnou položkou,
   * takže medzi nimi nevznikne medzera.
   */
  header .nav-bar > ul > li > ul {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;

    display: block;

    width: max-content;
    min-width: 240px;

    margin: 0;
    padding: 0.55rem;

    z-index: 1100;

    border:
      1px solid
      rgba(255, 255, 255, 0.18);

    border-radius: 1rem;

    background-color:
      rgba(33, 137, 202, 0.96);

    background-image:
      var(--fixed-nav-gradient);

    background-repeat: no-repeat;
    background-size: cover;

    backdrop-filter:
      blur(14px)
      saturate(135%);

    -webkit-backdrop-filter:
      blur(14px)
      saturate(135%);

    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
      translateX(-50%)
      translateY(8px)
      scale(0.98);

    transform-origin: top center;

    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
  }

  /*
   * Neviditeľný mostík ako poistka.
   * Kurzoru dovolí bezpečne prejsť z hlavnej položky
   * do submenu bez jeho zatvorenia.
   */
  header .nav-bar > ul > li > ul::before {
    content: "";

    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;

    height: 12px;

    background: transparent;
  }

  /*
   * Zobrazenie myšou aj klávesnicou.
   */
  header .nav-bar > ul > li:hover > ul,
  header .nav-bar > ul > li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
      translateX(-50%)
      translateY(0)
      scale(1);
  }

  header .nav-bar > ul > li > ul > li {
    display: block;

    width: 100%;

    margin: 0.15rem 0;
    padding: 0;
  }

  /*
   * Odkazy submenu.
   */
  header .nav-bar > ul > li > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-height: 42px;

    margin: 0;
    padding: 0.7rem 0.9rem;

    border-radius: 0.7rem;

    color:
      rgba(255, 255, 255, 0.92) !important;

    background-color: transparent;

    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.025em;

    text-align: left;
    white-space: nowrap;

    opacity: 0.92;

    transform: translateX(0);

    transition:
      color 0.18s ease,
      opacity 0.18s ease,
      background-color 0.18s ease,
      transform 0.18s ease,
      box-shadow 0.18s ease;
  }

  /*
   * Submenu nebude používať čiaru z hlavnej navigácie.
   */
  header .nav-bar > ul > li > ul > li > a::after {
    content: none !important;
    display: none !important;
  }

  /*
   * Hover a ovládanie klávesnicou.
   */
  header .nav-bar > ul > li > ul > li > a:hover,
  header .nav-bar > ul > li > ul > li > a:focus {
    color: #ffffff !important;

    background-color:
      rgba(255, 255, 255, 0.14);

    opacity: 1;

    transform: translateX(3px);

    box-shadow:
      inset 0 0 0 1px
      rgba(255, 255, 255, 0.08);
  }

  /*
   * Aktívna stránka v submenu.
   */
  header .nav-bar > ul > li > ul > li > a.active {
    color: #ffffff !important;

    background-color:
      rgba(255, 255, 255, 0.20);

    opacity: 1;

    box-shadow:
      inset 0 0 0 1px
      rgba(255, 255, 255, 0.14);
  }

  header .nav-bar > ul > li > ul > li > a:focus-visible {
    outline:
      2px solid
      rgba(255, 255, 255, 0.75);

    outline-offset: 2px;
  }
  
  
}
/*****************************************************************************/
/****************************** DESKTOP **************************************/
/*****************************************************************************/
@media only screen and (min-width: 1200px) {
  :root {
    /* zadaj výšku sticky headera, ak máš – ovplyvní skrolovanie a active detekciu */
    --fx-scroll-offset: 90px;
    --fx-dot-size: 15px;
    --fx-dot-gap: 12px;
    --fx-dot-color: #b6c2d1;
  }
  .site-title {
    scroll-margin-top: var(--fx-scroll-offset);
  }
  .parallax-banner__content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .page-content .parallax-banner .parallax-banner__title {
    font-size: 4.5rem !important;
  }
  .parallax-banner__text {
    font-size: 1.25rem;
  }
  .fx-dotnav {
    display: block;
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1030;
    user-select: none;
    pointer-events: auto;
  }
  .fx-dotnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .fx-dotnav li {
    margin: var(--fx-dot-gap) 0;
    position: relative;
    list-style: none;
  }
  .fx-dotnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    outline: none;
  }
  .fx-dotnav .fx-dot {
    width: var(--fx-dot-size);
    height: var(--fx-dot-size);
    border-radius: 50%;
    background: var(--fx-dot-color);
    transition: transform .15s ease, background-color .15s ease;
  }
  .fx-dotnav li.active .fx-dot, .fx-dotnav a:hover .fx-dot, .fx-dotnav a:focus .fx-dot {
    background: var(--fx-light-blue);
    transform: scale(1.2);
  }
  /* Popiska pri hoveri */
  .fx-dotnav .fx-label {
    position: absolute;
    left: 20px;
    padding: 1rem;
    border-radius: 25px;
    background: var(--fx-light-blue);
    color: #fff;
    font-size: 1em;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(0);
    pointer-events: none;
    transition: opacity .12s ease, transform .12s ease;
  }
  .fx-dotnav a:hover .fx-label, .fx-dotnav a:focus-visible .fx-label {
    opacity: 1;
    transform: translateX(6px);
  }
  
  header .nav-bar > ul {
    gap: 0.35rem;
  }

  header .nav-bar > ul > li > a {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }
  
}
/*****************************************************************************/
/*********************** REDUCED MOTION **************************************/
/*****************************************************************************/
@media (prefers-reduced-motion: reduce) {
  html, body {
    scroll-behavior: auto !important;
  }
  /*
   * Parallax bez fixed efektu.
   */
  .page-content section.parallax-banner {
    background-attachment: scroll !important;
  }
  /*
   * Animované prvky.
   */
  .scroller, .lozad-placeholder, footer .to-top, .waves-parallax > use, .conic::before, .conic-demo::after, .owl-carousel .owl-item.active .bg-slide .slide-caption, .owl-carousel .owl-item.active .bg-slide .caption-description, .custom-card.fx-visible > .card-icon, .page-content section::after, .page-content section:nth-of-type(odd), .page-content section:nth-of-type(even), .big-banner .banner-text {
    animation: none !important;
  }
  /*
   * Prvky odhaľované pri rolovaní musia byť ihneď viditeľné.
   */
  .fx-reveal, .fx-reveal.fx-visible, .shadow-border.fx-reveal, .custom-card.fx-reveal, .product-link.fx-reveal, .img-subpage-link.fx-reveal, .shadow-border.fx-reveal.fx-visible, .custom-card.fx-reveal.fx-visible, .product-link.fx-reveal.fx-visible, .img-subpage-link.fx-reveal.fx-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /*
   * Prechody kariet a obrázkov.
   */
  .shadow-border, .square-image img, .product-link, .product-link *, .img-subpage-link, .img-subpage-link * {
    transition: none !important;
  }
  .shadow-border, .square-image img {
    transform: none !important;
  }
  /*
   * Tlačidlá a odkazy.
   */
  a.parallax-banner__button, a.parallax-banner__button::before, a.parallax-banner__button::after, a.custom-button, a.custom-button::before, a.custom-button::after, a.hero-cta, a.hero-cta::before, a.hero-cta::after, .btn-white-outline, footer .footer-links a, footer .footer-links a .link-label::after {
    transition: none !important;
  }
  /*
   * Čiary pri nadpisoch zostanú zobrazené,
   * ale bez animovaného roztiahnutia.
   */
  h1.site-title::before, h1.site-title::after, h2.site-title::before, h2.site-title::after, .site-subtitle::before, .site-subtitle::after {
    transition: none !important;
    transform: translateY(-50%) scaleX(1);
  }
  /*
   * Vianočné modálne okno.
   */
  .xmas-modal, .xmas-backdrop, .xmas-card, #christmas-banner #snow-canvas {
    transition: none !important;
  }
}