@charset "UTF-8";

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --font-sans: "ff-scala-sans-pro", var(--default-font-family);
  --font-sans-cond: "ff-scala-sans-pro-condensed", var(--default-font-family);
  --font-display: "kudryashev-d-contrast", var(--default-font-family);
  --font-proxima: "proxima-nova", var(--default-font-family);
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-weight-light: 300;
  --size: 15px;
  --white: #fff;
  --black: #000;
  --main-color: #272c25; /* text */
  --main-color-hover: #0021c1; /* text hover */
  --main-bg-color: #efeae6; /* bg */
  --main-bg-color-grey: #080872; /* tmavo modra */
  --main-bg-color-grey-light: #ccd3c9; /* svetla zelena */
  --main-bg-color-custom: #0021c1; /* modra */
  --section-overlay-color: color-mix(in srgb, #06064f 60%, transparent);
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
  --z-index-negative: -10;
  --z-index-behind: -2;
  --z-index-default: 0;
  --z-index-above: 2;
  --z-index-dropdown: 100;
  --z-index-modal: 1000;
}

html {
  font-size: 18px;
}
body {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_link {
  position: relative;
  font-family: var(--font-proxima);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  text-transform: uppercase;
  padding-block: clamp(0.55rem, 0.7vw, 0.8rem);
  padding-inline: clamp(1rem, 1.5vw, 2rem);
  border-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
a.cta_link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: transparent;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: width 0.7s cubic-bezier(0.9, 0, 0.3, 1), opacity 0.4s ease-in;
}
a.cta_link__dark {
  color: var(--white);
  background-color: var(--main-bg-color-custom);
}
a.cta_link__dark:before {
  background-color: var(--main-bg-color-grey);
}
a.cta_link__light {
  color: var(--white);
  background-color: var(--main-bg-color-custom);
}
a.cta_link__light:hover {
  color: var(--main-color-hover);
}
a.cta_link__light:before {
  background-color: var(--white);
}
a.cta_link__white {
  color: var(--main-color-hover);
  background-color: var(--white);
}
a.cta_link__white:hover {
  color: var(--white);
}
a.cta_link__white:before {
  background-color: var(--main-bg-color-custom);
}
a.cta_link:hover:before {
  width: 100%;
  opacity: 1;
}
a.cta_link:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  .container-fluid-custom {
    max-width: 1680px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
  .container-fluid-custom {
    padding-left: max(1rem, 8%);
    padding-right: max(1rem, 8%);
    max-width: none;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid-custom {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: none;
  }
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 7.33);
  padding-bottom: calc(var(--size) * 7.33);
}
.img-object-fit {
  object-fit: cover;
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.row-smaller-gutters {
  margin-inline: clamp(-12px, -0.65vw, -8px);
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-inline: clamp(8px, 0.65vw, 12px);
}
.no-gutters-custom {
  margin-inline: -2px;
}
.no-gutters-custom > [class^="col-"],
.no-gutters-custom > [class*=" col-"] {
  padding-inline: 2px;
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-bg-color-custom);
}
.container_bg_img {
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
}
.bg-image {
  top: 0;
  width: 50%;
  height: 100%;
}
.bg-image__left {
  left: 0;
}
.bg-image__right {
  right: 0;
}
.section-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
  overflow: hidden;
}
.section-bg picture,
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg__filter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--section-overlay-color);
  z-index: var(--z-index-above);
}

.title_box {
  position: relative;
  color: var(--main-bg-color-custom);
}
.title_box.color-base {
  color: var(--main-color);
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  text-wrap: balance;
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(34px + (68 - 34) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: 100%;
  color: inherit;
}

/* GSAP */

.gsap-fade-bg {
  will-change: opacity, transform;
}

/* Header ............................................................... */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: clamp(1rem, 1.5vw, 2.2rem);
  z-index: var(--z-index-modal);
}
.header.scroll {
  position: fixed;
  background-color: var(--main-bg-color-grey);
  padding-block: 1rem;
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header a {
  text-transform: uppercase;
  border-bottom: 0;
}
.main_logo {
  z-index: var(--z-index-dropdown);
}
.main_logo img {
  width: clamp(60px, 5.5vw, 100px);
}
.main_logo.scroll img {
  width: clamp(30px, 2.7vw, 50px);
}
.mainNavigation {
  padding: 0;
  padding-inline-start: clamp(1rem, 4vw, 6.5rem);
  padding-left: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
  gap: clamp(0.7rem, 1.15vw, 1.5rem);
}
.mainNavigation a.nav-link {
  position: relative;
  font-family: var(--font-proxima);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: var(--font-weight-bold);
  color: var(--white) !important;
  line-height: clamp(30px, 2vw, 40px);
  padding: 0 !important;
  border-bottom: 0;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 0;
  height: 1.5px;
  background-color: var(--white);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after, .mainNavigation a.hi span:after {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
.mainNavigation a.nav-link:focus-visible {
  outline: 2px solid var(--main-color-hover);
  outline-offset: 4px;
}
.mainNavigation .dropdown-menu {
  background-color: transparent;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease all;
}
.mainNavigation .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.mainNavigation .dropdown-menu a.dropdown-item {
  font-family: var(--font-proxima);
  font-size: clamp(0.8rem, 0.95vw, 1rem) !important;
  color: var(--white);
  line-height: 30px !important;
  background-color: var(--main-bg-color-custom);
  margin-left: 0 !important;
  border-bottom: 1px solid
    color-mix(in srgb, var(--main-bg-color-custom) 50%, white 50%);
  z-index: 1100;
  text-align: center;
}
.mainNavigation .dropdown-menu a.dropdown-item:last-child {
  border-bottom: 0;
}
.mainNavigation .dropdown-menu a.dropdown-item:hover, .mainNavigation .dropdown-menu a.hi {
  color: var(--white);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-custom) 75%,
    black 25%
  );
}
.dropdown-menu a.dropdown-item:focus-visible {
  outline: 2px solid var(--white);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-custom) 75%,
    black 25%
  );
}

.header-social {
  gap: 0.5rem;
}
.header-social a {
  color: var(--white);
  font-size: clamp(1.11rem, 1.25vw, 1.33rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 3.05vw, 55px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--white) 45%, transparent);
}
.header-social a:hover {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}

/* Header-Search */

.search-btn-wrapper {
  position: static;
}
a.search-btn {
  position: relative;
  font-size: 1.11rem;
  color: var(--white);
  border-bottom: 0;
  margin-inline: clamp(1.5rem, 2vw, 2.5rem);
}
.search-input-wrapper {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--main-bg-color-custom);
  padding: 0;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.search-input {
  background-color: var(--white);
  border-radius: 30px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 15px 20px;
}
.search-input-wrapper.open {
  max-height: 100px;
  opacity: 1;
  padding: 15px 0;
}

/* Rslider ............................................................... */

.slider-wrapper {
  width: 100%;
  height: 100dvh;
}
.slider-wrapper .owl-carousel,
.slider-wrapper .item {
  height: 100dvh;
}
.slider-wrapper-in {
  height: 50dvh !important;
}
.slider-wrapper-in .owl-carousel,
.slider-wrapper-in .item {
  height: 50dvh !important;
}
.carousel-content-wrapper {
  width: 100%;
  height: 100%;
  color: var(--white);
  background-color: color-mix(in srgb, var(--black) 15%, transparent);
}
.slider-image {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-behind);
  mix-blend-mode: screen;
}
.slider-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--section-overlay-color);
  z-index: var(--z-index-above);
}
.carousel-content-wrapper {
  inset: 0;
  padding-block-end: clamp(2rem, 3vw, 4rem);
  z-index: var(--z-index-above);
}
h1.slider-title {
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  font-size: clamp(3rem, 4vw, 5.5rem);
  line-height: 1.1;
}
.slider-wrapper-in h1.slider-title {
  font-size: clamp(2rem, 2.5vw, 3.5rem);
}
h1.slider-title small {
  display: block;
  font-size: clamp(1.5rem, 3vw, 4rem);
  line-height: 1.1;
}
.slider-wrapper-in h1.slider-title small {
  font-size: clamp(1.5rem, 2vw, 2.7rem);
}
.slider-logo {
  width: clamp(150px, 20vw, 300px);
  opacity: 0.65;
  filter: invert(9%) sepia(84%) saturate(7329%) hue-rotate(236deg)
    brightness(88%) contrast(110%);
}
.slider-wrapper-in .slider-logo {
  width: clamp(100px, 12vw, 220px);
}
.slider-description {
  margin-block-start: clamp(-16rem, -14vw, -10rem);
}
.slider-description p {
  font-size: clamp(1.11rem, 1.25vw, 1.33rem);
  margin-bottom: 0;
}

/* Main-Content ............................................................... */

.owl-navigation {
  display: flex;
  gap: 0.5rem;
}
.owl-navigation .btn {
  font-size: 1.66rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  width: clamp(50px, 3.5vw, 70px);
  aspect-ratio: 1 / 1;
  border: 1.5px solid color-mix(in srgb, var(--white) 45%, transparent);
}
.owl-navigation .btn:hover {
  border-color: var(--white);
}
.owl-navigation .btn:focus,
.owl-navigation .btn.focus {
  box-shadow: none;
}
.owl-navigation .btn:focus-visible {
  outline: 2px dashed var(--main-color-hover);
  outline-offset: 4px;
}

/* About-Us */

.about-us-content {
  padding-block: clamp(0rem, 3vw, 4rem);
  padding-inline-start: clamp(1rem, 4vw, 6rem);
}
.about-us-intro {
  max-width: 48ch;
  margin-inline: auto;
  margin-block-end: clamp(2rem, 5vw, 4rem);
}
.about-us-info {
  margin-block-end: clamp(2rem, 5vw, 4rem);
}
.about-us-info .info-item h3 {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-bold);
  color: var(--main-bg-color-custom);
}
.about-us-info .info-item p {
  margin: 0;
}

/* Treatment */

.subtitle-wrapper {
  font-size: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
  margin-block-end: clamp(2rem, 3.5vw, 4.5rem);
}
.subtitle-logo {
  width: clamp(50px, 3.5vw, 70px);
  height: auto;
  filter: invert(1);
}
.treatment-title h2 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  font-size: clamp(3rem, 4vw, 5.5rem);
  line-height: 1.1;
}
.treatment-title small {
  display: block;
  font-size: clamp(1.5rem, 3vw, 4rem);
  line-height: 1.1;
}
.treatment-box h3 {
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.37vw, 1.5rem);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.treatment-box h4 {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.treatment-box p {
  font-family: var(--font-proxima);
  font-size: 1rem;
  max-width: 42ch;
}

/* Therapy */

.therapy-heading {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 14rem);
  color: var(--main-bg-color-custom);
  line-height: 1;
  z-index: var(--z-index-above);
  margin-block-end: clamp(-3rem, -2.7vw, -2rem);
  z-index: var(--z-index-above);
}
.therapy-cards .nav-box {
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: var(--white);
  border-bottom: 0;
}
.therapy-cards .nav-image-wrapper {
  height: clamp(300px, 35vw, 700px);
  overflow: hidden;
  position: relative;
}
.therapy-cards .nav-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: color-mix(
    in srgb,
    var(--main-bg-color-grey) 45%,
    transparent
  );
  opacity: 0;
  z-index: var(--z-index-default);
  transition: opacity 0.4s ease-in-out;
}
.therapy-cards .nav-box:hover .nav-image-wrapper::before {
  opacity: 1;
}
.therapy-cards .nav-content {
  z-index: var(--z-index-above);
  top: 0;
  left: 0;
  padding: clamp(1rem, 5vw, 3rem);
  padding-block-start: clamp(5rem, 8vw, 11rem);
}
.therapy-cards .nav-content::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}
.therapy-cards .nav-box .nav-description {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.therapy-cards .nav-box:hover .nav-description {
  opacity: 1;
}
.nav-title-wrapper h3.nav-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.4vw, 2.75rem);
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  color: var(--white);
}
.nav-arrow {
  width: clamp(2.5rem, 4vw, 5.5rem);
  aspect-ratio: 1 / 1;
  background-color: var(--main-bg-color-custom);
}
.nav-arrow img {
  width: 30%;
}
.therapy-text {
  margin-block-start: clamp(2rem, 3.5vw, 4.5rem);
}
.therapy-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3.33rem);
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  text-transform: uppercase;
}
.therapy-text p {
  font-size: clamp(1.21rem, 2vw, 2.22rem);
  line-height: 1.2;
}

/* Gallery */

.gallery_tabs .nav-pills .nav-link {
  font-family: var(--font-proxima);
  font-size: clamp(1.25, 1.3vw, 1.44rem);
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: .25rem;
  padding: 0 0.25rem;
  border: 0;
  border-radius: 0;
}
.gallery_tabs .nav-pills .nav-link.active {
  color: var(--main-color);
  text-decoration: underline;
  background-color: transparent;
}
.gallery_container {
  margin-bottom: clamp(16px, 1.3vw, 24px);
}
a.gallery_nav:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  filter: brightness(0.85);
}

/* Surroundings */

.surroundings-section {
  padding-block: clamp(120px, 11vw, 200px);
}
.surroundings-title {
  text-shadow: 0 0 40px color-mix(in srgb, var(--black) 60%, transparent);
}
.glass-box {
  background-color: color-mix(in srgb, var(--white) 40%, transparent);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: clamp(1.5rem, 2.5vw, 3rem);
  padding-block-start: 0;
  border: 1px solid color-mix(in srgb, var(--white) 55%, transparent);
}
.cta-section .glass-box {
  background-color: color-mix(in srgb, var(--white) 15%, transparent);
}
.glass-box a {
  font-weight: var(--font-weight-bold);
  color: var(--white);
}
.glass-box .title_box :is(h1, h2) {
  font-size: calc(26px + (52 - 26) * ((100vw - 320px) / (1920 - 320)));
  padding-block-start: clamp(1.5rem, 2.5vw, 3rem);
}
.surroundings-image {
  max-width: clamp(120px, 12vw, 240px);
  margin-block-start: clamp(-3rem, -2.7vw, -2rem);
}
a.map-link {
  width: clamp(4rem, 6vw, 8rem);
  aspect-ratio: 1 / 1;
  background-color: var(--main-bg-color-custom);
  bottom: 0;
  left: 0;
  z-index: var(--z-index-default);
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
a.map-link img {
  width: 30%;
  height: auto;
}
a.map-link:hover {
  background-color: var(--main-bg-color-grey);
}
.map-link:focus-visible {
  outline: 2px dashed var(--white);
  outline-offset: 4px;
}

/* Accommodation */

.accommodation-section__image {
  position: relative;
  z-index: var(--z-index-default);
}
.accommodation-section__content {
  position: relative;
  z-index: var(--z-index-above);
}
.accommodation-section__left {
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 6vw, 8rem);
  padding-inline: clamp(1rem, 3vw, 4rem);
  margin-top: clamp(-11rem, -8vw, -6rem);
}
.accommodation-section__right {
  padding-block: clamp(2rem, 6vw, 4rem);
}
.accommodation-section__right p {
  max-width: 42ch;
  margin-inline: auto;
}

/* Procedure */

.procedures-intro {
  max-width: 60ch;
}
.procedures-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.5vw, 10rem);
  font-weight: var(--font-weight-light);
  color: var(--main-bg-color-custom);
  line-height: 1.2em;
}
.procedures-box .col-md-8 {
  padding-block: clamp(0rem, 4.5vw, 6rem);
}
.procedures-box__left .procedures-text {
  padding-inline-end: clamp(0rem, 15vw, 20rem);
}
.procedures-box__right .procedures-text {
  padding-inline-start: clamp(0rem, 15vw, 20rem);
}
.procedures-text p {
  max-width: 40ch;
  margin-block: clamp(1.5rem, 2.5vw, 3rem);
}
.procedures-image {
  position: absolute;
  top: 0;
  width: 45%;
  height: 100%;
  z-index: var(--z-index-behind);
}
.procedures-image__right {
  right: 0;
}
.procedures-image__left {
  left: 0;
}

/* Indications */

.indications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.indications-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--white);
  transform: translateX(-50%);
}
.indications-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
}
.indications-group-title {
  display: inline-flex;
  font-size: 1rem;
  color: var(--main-bg-color-grey);
  text-transform: uppercase;
  background-color: var(--white);
  margin-bottom: 1rem;
  padding-block: clamp(0.5rem, 0.7vw, 1rem);
  padding-inline: clamp(1.5rem, 1.7vw, 2rem);
}
.indications-left div:has(.indications-group-title) {
  padding-inline-end: clamp(0rem, 3vw, 2rem);
}
.indications-right div:has(.indications-group-title) {
  padding-inline-start: clamp(0rem, 3vw, 2rem);
}
.indications-item {
  position: relative;
  padding-inline: clamp(0rem, 3vw, 2rem);
}
.indications-left .indications-item {
  text-align: right;
  padding-inline-end: clamp(0rem, 3vw, 2rem);
}
.indications-right .indications-item {
  text-align: left;
  padding-inline-start: clamp(0rem, 3vw, 2rem);
}
.indications-item h4 {
  font-size: clamp(1.25rem, 1.33vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}
.indications-left .indications-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: clamp(10px, 1vw, 14px);
  aspect-ratio: 1 / 1;
  background-color: var(--white);
  border-radius: 50%;
  transform: translate(50%, 0);
}

/* Benefits */

.benefits-carousel-wrapper::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(150px, 25vw, 500px);
  aspect-ratio: 1 / 1;
  content: "";
  background: url("../images/logo-icon.svg") center 50% no-repeat;
  background-size: contain;
  opacity: 0.25;
  filter: invert(9%) sepia(84%) saturate(7329%) hue-rotate(236deg)
    brightness(88%) contrast(110%);
  -webkit-transform: translate(70%, -50%);
  transform: translate(70%, -50%);
}
.benefits-carousel-wrapper .owl-stage {
  display: flex;
}
.benefits-carousel-wrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.benefits-carousel-wrapper .owl-carousel .item {
  max-width: 99%;
  margin-inline: auto;
}
.benefit-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--main-bg-color-custom);
  background-color: transparent;
  padding-block: clamp(2rem, 3vw, 4rem);
  padding-inline: clamp(1rem, 1.5vw, 2rem);
}
.benefit-box h2 {
  font-size: clamp(1.25rem, 1.33vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Region-Attractions */

.region-attractions__cards .card-image-wrapper {
  height: 100%;
  display: block;
  position: relative;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.region-attractions__cards .card-image-wrapper:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  filter: brightness(0.85);
}
.region-attractions__cards .card-overlay {
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.region-attractions__cards .card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 1.5vw, 2rem);
}
.region-attractions__cards .card-text h3 {
  font-size: clamp(1.25rem, 1.33vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Footer ............................................................... */

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: clamp(2rem, 10vw, 8rem);
  height: 90%;
  aspect-ratio: 1 / 1.5;
  background: url("../images/logo-icon-footer.svg") no-repeat center bottom;
  background-size: contain;
  pointer-events: none;
  z-index: var(--z-index-behind);
}
.footer a {
  color: var(--white);
  border-bottom-color: transparent;
}
.footer a:hover, .footer a.hi {
  border-bottom-color: var(--white);
}
.footer h3 {
  font-size: 1.16rem;
  line-height: inherit;
}
.footer .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  color: var(--white);
}
.footer_top p,
.footer_top ul {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-regular);
  font-size: clamp(1.5em, 1.5vw, 2rem);
  line-height: 1.2;
}
.footer_bottom {
  font-family: var(--font-proxima);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Button-Custom */

.button-custom {
  position: fixed;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1500;
}
.button-custom a {
  -webkit-transform: rotate(-90deg) translate(50%, 0);
  transform: rotate(-90deg) translate(50%, 0);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  white-space: nowrap;
  font-family: var(--font-proxima);
  font-size: clamp(1rem, 1.2vw, 1.33rem);
  /*font-weight: var(--font-sans-cond);*/
  color: var(--black);
  line-height: 1.2;
  text-align: center;
  background-color: var(--main-bg-color);
  padding-block: clamp(0.55rem, 0.7vw, 1rem);
  padding-inline: clamp(1rem, 1.5vw, 2rem);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.button-custom a:hover {
  color: var(--white);
  background-color: var(--main-color-hover);
}

/* Effects ............................. */

a,
a.cta_link,
.button-custom a,
.mainNavigation a.nav-link span:after,
.mainNavigation .dropdown-menu a.dropdown-item,
.header-social a,
.owl-navigation .btn,
a.gallery_nav img,
a.map-link,
.region-attractions__cards .card-image-wrapper img {
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
  .benefits-carousel-wrapper::before {
    -webkit-transform: translate(40%, -50%);
    transform: translate(40%, -50%);
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 5.66);
    padding-bottom: calc(var(--size) * 5.66);
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 4);
    padding-bottom: calc(var(--size) * 4);
  }
}

@media screen and (max-width: 991px) {
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    position: fixed !important;
    background-color: var(--main-bg-color-grey);
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
    animation: none !important;
  }
  .header + div,
  .header + section {
    margin-top: 75px !important;
  }
  .main_logo {
    position: absolute !important;
    top: 8px !important;
    left: 15px;
    margin-right: 0;
  }
  .main_logo img {
    width: 55px !important;
  }
  .header-tools {
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    justify-content: end;
    padding-inline-end: 80px;
  }
  .search-input-wrapper {
    top: calc(100% + 1.5rem);
  }
  .mainNavigation {
    padding-inline-start: 0;
  }
  .mainNavigation .navbar-nav {
    margin: 0;
    gap: 0.3rem;
  }
  .mainNavigation .nav-item {
    text-align: center;
  }
  .mainNavigation a.nav-link {
    font-size: 1.25rem;
    margin-right: 0;
  }
  .mainNavigation .dropdown-menu {
    height: 0;
    visibility: visible;
    opacity: 0;
    transform: translateY(0);
    transition: 0.5s ease all;
  }
  .mainNavigation .dropdown-menu.show {
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
  .mainNavigation .navbar-toggler {
    z-index: var(--z-index-modal);
  }
  .mainNavigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .slider-wrapper {
    height: calc(100dvh - 75px);
  }
  .slider-wrapper .owl-carousel,
  .slider-wrapper .item {
    height: calc(100dvh - 75px);
  }
  .slider-image__hidden_overlay::after {
    display: none;
  }
  a.map-link {
    left: 50%;
    right: initial;
    -webkit-transform: translate(-50%, 85%);
    transform: translate(-50%, 85%);
  }
}

@media screen and (max-width: 767px) {
  .custom-relative {
    position: relative;
  }
  .container_bg_img {
    left: 0;
    width: 100%;
    height: auto;
  }
  .bg-image {
    top: 0;
    left: var(--size) !important;
    right: initial !important;
    width: calc(100% - var(--size) * 2);
    height: auto;
    aspect-ratio: 16/9;
  }
  .carousel-content-wrapper {
    padding-block-end: 0;
  }
  .slider-description {
    margin-block-start: 0;
  }
  .about-us-content {
    padding-inline-start: 1rem;
  }
  .treatment-box p {
    max-width: 100%;
  }
  .therapy-heading {
    margin-block-end: 1rem;
  }
  .therapy-cards .nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .therapy-cards .nav-content::before {
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
  }
  .therapy-cards .nav-box .nav-description {
    opacity: 1;
  }
  .accommodation-section__left {
    margin-top: 0;
  }
  .accommodation-section__right p {
    max-width: 100%;
    margin-inline: auto;
  }
  .procedures-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    left: 0 !important;
    right: initial !important;
    top: 0;
  }
  .procedures-text {
    padding-inline: 0 !important;
  }
  .procedures-text p {
    max-width: 100%;
  }
  .indications-grid {
    grid-template-columns: 1fr;
  }
  .indications-grid::before,
  .indications-left .indications-item::before {
    display: none;
  }
  .indications-left div:has(.indications-group-title),
  .indications-right div:has(.indications-group-title) {
    padding-inline: 0;
  }
  .indications-left .indications-item,
  .indications-right .indications-item {
    text-align: center;
    padding-inline: 0;
  }
  .benefits-carousel-wrapper::before {
    display: none;
  }
  .footer > div {
    padding-bottom: 2rem;
  }
  .footer::before {
    display: none;
  }
  .button-custom {
    position: fixed;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .button-custom a {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: initial;
    transform-origin: initial;
    font-size: 1.12rem;
    color: var(--white);
    background-color: var(--main-color-hover);
    padding: 5px 15px;
    border-radius: 0;
  }
  .button-custom a:hover {
    color: var(--black);
    background-color: var(--white);
  }
}

.about-us-intro p:last-child, .subtitle-text p:last-child, .benefit-box p:last-child {
  margin: 0;
}

.bg-image .we_button {
  position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
}

.therapy-heading .we_button {
  font-size: 1rem;
}

.slider-logo {
  visibility: hidden !important;
}

.kontakt-segment {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(8, 8, 114, 0.3);
}

.kontakt-segment:last-child {
  border-bottom: none;
}

.vnutro-proxima :is(h1, h2, h3, h4, h5) {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-regular);
}

.proxima {
  font-family: var(--font-proxima);
  font-weight: var(--font-weight-regular);
}

.table tr {
  border-color: #dee2e6;
}

.table-bordered th, .table-bordered td {
  border: 1px solid #000;
}

.table-bordered thead th, .table-bordered th, .table-bordered td {
  border-bottom: 1px solid #000;
}

.table-bordered thead th, .table-bordered thead td {
    border-bottom-width: 1px;
}

.table-bordered th, .table-bordered td {
  border-top: 1px solid #000;
}

.table-bordered thead {
  border-color: #000;
}

.indications-item ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 15px;
}

.indications-item a {
  color: #fff;
  border-bottom: 0;
}

.indications-item a:hover {
  color: var(--main-color-hover);
}

.gcsc-more-maybe-branding-root {
  display: none !important;
}

.gsc-control-cse {
  font-family: var(--font-proxima) !important;
  font-size: 1rem !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.gsc-webResult.gsc-result {
  border: 0 !important;
}

.table-striped thead tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

table:not(.table-bordered) {
  border-collapse: collapse;
  border: 1px solid #dee2e6;
}

table:not(.table-bordered) th,
table:not(.table-bordered) td {
  border: 1px solid #dee2e6;
}

table[border]:not(.table-bordered),
table[border]:not(.table-bordered) th,
table[border]:not(.table-bordered) td {
  border: 1px solid #dee2e6 !important;
}