/*
Theme Name: DUA theme
Author: flowstate s.r.o.
Version: 1.5.0
*/

@import url("css/forms.css");

:root {
  --primary-color: #8c1429;
  --heading-color: #121928;
  --main-text-color: #262d37;
  --secondary-text-color: #535b66;
  --main-bg-color: #fffcfb;
  --secondary-bg-color: #feefda;
  --submenu-bg-color: #f6f6f6;
  --white-color: #ffffff;
  --montserrat-font: "montserrat", sans-serif;
  --radley-font: "Radley", serif;
  --yrsa-font: "Yrsa", serif;
  --stars-pattern: url("img/stars-pattern-yellow.svg");
  --cubes-pattern: url("img/cubes-pattern.svg");
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/************************
---------Header----------
************************/
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--main-bg-color);
  box-shadow: 0 4px 20px 0 rgba(217, 217, 217, 0.5);
}

.container {
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  margin: 0 auto;
}

.header-logo {
  height: auto;
  width: 177px;
}

.main-menu {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.main-link {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--montserrat-font);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 2px;
  padding: 11px 15px;
}

.main-link-active {
  font-weight: 700;
}

/************************
----Header--Dropdown-----
************************/

.has-children {
  min-width: 9rem;
  text-align: center;
}

.sub-menu-toggle i {
  color: var(--primary-color);
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.main-menu li {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 100%;
  background-color: var(--white-color);
  width: max-content;
  min-width: 100%;
}

.sub-link {
  padding: 12px 15px;
  display: block;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--montserrat-font);
  font-size: 1rem;
}

.sub-link-active {
  font-weight: 700;
}

.burger,
.mobile-cta,
.mobile-close {
  display: none !important;
}

.sub-menu-toggle {
  border: none;
  background-color: transparent;
}

/************************
---------Headings--------
************************/

.h1 {
  font-size: 68px;
  font-family: var(--radley-font);
  color: var(--heading-color);
  text-align: center;
}

.h2 {
  font-family: var(--radley-font);
  color: var(--heading-color);
  font-size: 40px;
  margin-bottom: 1rem;
}

.h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 26px;
  font-family: var(--montserrat-font);
  color: var(--heading-color);
}

.h4 {
  font-size: 18px;
  font-family: var(--montserrat-font);
  font-weight: 500;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-heading {
  color: var(--heading-color);
}

.hero-heading {
  color: var(--primary-color);
  text-align: center;
}

/*************************
---------Text----------
*************************/

.body-text {
  font-family: var(--montserrat-font);
  color: var(--main-text-color);
  line-height: 1.6;
  margin: 0;
}

.highlight {
  color: var(--primary-color);
}

strong {
  font-weight: 600;
}

/************************
----Background colors----
************************/

.bg-beige {
  background-color: var(--secondary-bg-color);
}

.bg-white {
  background-color: var(--main-bg-color);
}

.bg-stars {
  background-image:
    linear-gradient(180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.5) 20%,
      rgba(255, 255, 255, 0.5) 80%,
      #fff 100%),
    var(--stars-pattern);
  background-repeat: repeat;
  background-position: center top;
  background-size: 1780px auto;
}

.bg-cubes {
  background-image:
    linear-gradient(180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.2) 80%,
      #fff 100%),
    var(--cubes-pattern);
  background-repeat: repeat;
  background-position: center top;
  background-size: 1400px auto;
}

/************************
---------Buttons---------
************************/

.primary-btn {
  color: var(--primary-color);
  text-decoration: none;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  font-family: var(--montserrat-font);
  font-weight: 500;
  padding: 9px 0;
  width: 202px;
  text-align: center;
  font-size: 1.3rem;
  cursor: pointer;
  min-height: 50px;
  display: inline-block;
}

.primary-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-bg-color);
  transition: 0.3s ease-in-out;
}

.secondary-btn {
  color: var(--secondary-bg-color);
  text-decoration: none;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-family: var(--montserrat-font);
  font-weight: 500;
  padding: 9px 30px;
  font-size: 1.3rem;
  cursor: pointer;
  min-height: 50px;
  display: inline-block;
}

.secondary-btn:hover {
  background-color: var(--secondary-bg-color);
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.hero-btn {
  margin: 2rem 0 1rem;
}

[id] {
  scroll-margin-top: 120px;
}

/************************
---------Footer----------
************************/

.footer {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-text-color);
  font-family: var(--montserrat-font);
}

.main-container-footer {
  margin: 0 auto;
  max-width: 1440px;
  padding: 90px 100px 30px;
}

.footer-top {
  display: flex;
  align-items: top;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
}

.nav-link-footer {
  color: inherit;
  text-decoration: none;
}

.nav-link-footer:hover:not(.footer-menu-active) {
  text-decoration: underline;
}

.footer-menu-active {
  color: var(--primary-color);
  font-weight: 600;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 0.7rem;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  column-gap: 0.7rem;
  align-items: center;
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-text {
  margin-bottom: 0.7rem;
  color: var(--secondary-text-color);
  text-decoration: none;
}

.footer-social-list {
  font-size: 1.3rem;
  display: flex;
  gap: 1rem;
}

.footer-social-list a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.footer-menu {
  grid-template-columns: auto 1fr;
  column-gap: 4rem;
}

/************************
-----------Hero----------
************************/

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 65%,
      var(--white-color) 65%);
  padding-top: 6.5rem;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  background-image: var(--stars-pattern);
  background-repeat: repeat;
  background-position: center top;
  background-size: 1700px auto;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.5;
}

.hero-text {
  font-family: var(--montserrat-font);
  line-height: 24px;
  text-align: center;
  max-width: 450px;
  margin: 0;
}

.hero-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-top: 3.5rem;
  max-width: 1240px;
  overflow: hidden;
  object-position: 0 30%;
  z-index: 1;
}

/************************
-----------Misc----------
************************/

.divider {
  background-color: var(--primary-color);
  height: 1px;
  width: 100px;
  margin-bottom: 1.5rem;
}

.red-text {
  color: var(--primary-color);
}

/************************
----Content section---- 
************************/

.content-image-container {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 3rem 0;
  max-width: 1540px;
  margin: 0 auto;
}

.content-image-section {
  padding: 0;
}

.content-button {
  margin-top: 30px;
}

/* Obrázek vlevo */
.content-image-container.image-left {
  flex-direction: row-reverse;
  padding-right: 8rem;
  padding-left: 0;
}

/* Obrázek vpravo */
.content-image-container.image-right {
  flex-direction: row;
  padding-left: 8rem;
  padding-right: 0;
}

.content-image-text {
  flex: 1;
  color: var(--main-text-color);
  font-family: var(--montserrat-font);
}

.content-image,
.content-video iframe {
  width: 730px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-image-paragraph p {
  margin: 0 0 5em;
  line-height: 1.6;
}

.content-image-paragraph p:last-child {
  margin-bottom: 0;
}

.content-image-paragraph strong {
  color: var(--primary-color);
}

/************************
-----Preface section-----
************************/

.preface-text-section {
  text-align: center;
  margin: 80px auto 40px;
  max-width: 700px;
}

.preface-text-section .divider {
  margin: 1.5rem auto 0;
  width: 280px;
}

/************************
---Two-column-section----
************************/

.two-column-section {
  padding-top: 2rem;
  padding-bottom: 5.4rem;
}

.two-column-section .divider {
  width: 163px;
  margin-bottom: 0;
}

.two-column-container {
  margin: 0 auto;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.two-column-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.two-column-image {
  aspect-ratio: 620 / 327;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.two-column-texts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.two-column-text {
  text-align: left;
}

.two-column-text-1 {
  padding: 0 114px;
}

.two-column-text-2 {
  padding: 0 85px;
}

.column-text {
  padding: 20px 0 40px 0;
}

/************************
------FAQ section-------
************************/

.faq-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.faq-item {
  border-top: 1px solid rgba(75, 85, 99, 0.6);
}

.faq-group .faq-item:last-child {
  border-bottom: 1px solid rgba(75, 85, 99, 0.6);
}

.faq-group-title {
  margin-bottom: 30px;
  margin-top: 40px;
}

.faq-headline {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  padding-top: 80px;
}

.faq-subtitle {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 40px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.faq-question-text {
  margin: 0;
  padding: 0;
  display: inline;
}

.faq-item.active .faq-question-text {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-width: 800px;
}

.faq-answer-content {
  padding-bottom: 10px;
}

.faq-answer-content a {
  color: var(--main-text-color);
  text-decoration: underline;
}

.faq-button {
  margin-top: 35px;
  height: 130px;
}

/************************
------Quote section------
************************/

.quote-section {
  text-align: center;
  padding: 7rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.quote-divider {
  width: 250px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem auto;
}

.quote-text {
  font-family: var(--yrsa-font);
  font-style: italic;
  font-size: 40px;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.4;
  max-width: 1010px;
  margin: 0 auto 2rem auto;
}

.quote-author {
  color: var(--primary-color);
}

.quote-slider {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  visibility: hidden;
  transition: transform 0.8s ease-in-out;
  transform: translateX(100%);
}

.quote-slide.no-transition {
  transition: none !important;
}

.quote-single {
  max-width: 1010px;
  margin: 0 auto;
}

.quote-slide.active {
  visibility: visible;
  transform: translateX(0);
}

/************************
-----Pagination dots-----
************************/

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.pagination-dot {
  width: 18px;
  height: 18px;
  background: var(--submenu-bg-color);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination-dot.active,
.pagination-dot.is-active {
  background: var(--primary-color);
}

/************************
-------Page 404---------
************************/
.page-404-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px 100px;
  text-align: center;
}

.page-404-nav {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 5%;
}

.page-main-grow {
  flex-grow: 1;
}

/************************
-------Thank You Page------
************************/
.thank-you-page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px 100px;
  text-align: center;
}

.thank-you-page-nav {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 5%;
}

.page-main-grow {
  flex-grow: 1;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: var(--secondary-bg-color);
}

/************************
-------Front-page--------
************************/

.features-section {
  padding-bottom: 2rem;
  text-align: center;
}

.features-container {
  margin: 0 auto;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-item {
  margin: 0 auto;
}

.feature-icon {
  height: 72px;
  margin-bottom: 1rem;
}

.feature-title {
  margin-bottom: 0.5rem;
}

.feature-text {
  margin: 0 auto;
  max-width: 220px;
}

.rooms-section {
  position: relative;
  padding: 90px 0 80px 0;
  text-align: center;
}

.rooms-container {
  max-width: 1240px;
  margin: 0 auto;
}

.rooms-icons {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}

.rooms-icon-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.rooms-icon {
  height: 65px;
  width: auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.room {
  padding-bottom: 1.5rem;
}

.room-image {
  width: 100%;
  height: auto;
  display: block;
}

.rooms-divider {
  width: 275px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 2rem auto;
}

.room-divider {
  width: 198px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 2rem auto 1rem auto;
}

.room-prize {
  margin-top: 20px;
  font-size: 36px;
  font-family: var(--montserrat-font);
  color: var(--primary-color);
  font-weight: 500;
}

.rooms-text {
  max-width: 495px;
  margin: 0 auto;
}

.room-prize-text {
  color: var(--secondary-text-color);
}

.how-it-looks-section {
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.image-slider {
  position: relative;
  overflow: visible;
  display: flex;
  min-height: 480px;
  margin: 50px auto;
}

.image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  top: 0;
  left: 50%;
  height: 400px;
  visibility: hidden;
  transform: translate(-50%, 50%) scale(0.8);
  transition: none;
  text-align: center;
  z-index: 1;
}

.image-slide.active,
.image-slide.left,
.image-slide.right {
  transition:
    transform 0.8s ease,
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.image-slide img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.image-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.image-slide.left {
  transform: translate(calc(-50% - 770px), 23%) scale(1.1);
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.image-slide.right {
  transform: translate(calc(-50% + 770px), 23%) scale(1.1);
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.image-caption {
  font-style: italic;
  font-family: var(--yrsa-font);
  font-size: 20px;
  color: var(--main-text-color);
  font-weight: 300;
  line-height: 22px;
  padding-top: 20px;
  visibility: hidden;
  opacity: 0;
}

.image-slide.active .image-caption {
  opacity: 1;
  visibility: visible;
}

.filler {
  height: 80px;
}

/************************
------Kdo jsme page------
************************/

.timeline-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 4rem;
  max-width: 1540px;
  margin: 0 auto;
}

.timeline-images img {
  width: 100%;
  aspect-ratio: 513 / 280;
  height: auto;
  object-fit: cover;
  display: block;
}

.timeline-section {
  position: relative;
  background-image:
    linear-gradient(180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.6) 20%,
      rgba(255, 255, 255, 0.6) 80%,
      #fff 100%),
    var(--stars-pattern);
  background-repeat: repeat;
  background-position: center top;
  background-size: 1780px auto;
  padding: 3.4rem 0 0 0;
  text-align: center;
  overflow: hidden;
}

.timeline-heading {
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.timeline-line {
  position: relative;
  height: 4px;
  background-color: var(--primary-color);
  width: 100%;
  margin: 50px auto 0 auto;
}

.timeline-dots {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  text-align: left;
  padding-left: 8rem;
  gap: 4rem;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-items {
  position: relative;
  max-width: 1540px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem auto 0 auto;
  text-align: left;
  gap: 4rem;
  padding-left: 8rem;
}

.timeline-item3 {
  padding-right: 8rem;
}

.timeline-year {
  font-family: var(--montserrat-font);
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vision-section .divider {
  width: 250px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem auto;
}

.vision-quote {
  font-family: var(--yrsa-font);
  font-style: italic;
  font-size: 40px;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.4;
  max-width: 1010px;
  margin: 0 auto 2rem auto;
}

.quote-author {
  color: var(--primary-color);
}

/************************
--------FAQ page--------
************************/

.faq-photos-section {
  margin: 56px auto 100px auto;
}

.faq-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  max-width: 1540px;
  margin: 0 auto;
}

.faq-photo {
  height: auto;
  width: 100%;
  aspect-ratio: 513 / 254;
  object-fit: cover;
  display: block;
}

/************************
-------Cenik page--------
************************/

.price-includes-section {
  margin: 2rem 0 4rem 0;
}

.price-includes-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  max-width: 1240px;
  margin: 0 auto;
}

.price-includes-headline {
  margin-bottom: 24px;
}

.price-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-includes-list li {
  display: flex;
}

.price-includes-list i {
  position: relative;
  margin-right: 10px;
  top: 5px;
  color: var(--primary-color);
}

.price-includes-list p {
  margin-bottom: 0;
}

.price-item img {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}

.price-includes-icons {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  justify-content: center;
  margin: auto 0;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 35px;
}

.price-item h4 {
  text-wrap: balance;
}

.stay-types-section {
  padding: 30px 0;
}

.stay-types-container {
  max-width: 1240px;
  margin: 0 auto;
}

.stay-types-title {
  text-align: center;
  margin-bottom: 40px;
}

.stay-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.stay-type-image {
  height: 158px;
  overflow: hidden;
  margin-bottom: 30px;
}

.stay-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.stay-type-heading {
  max-width: 281px;
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 30px;
  margin-left: 60px;
}

.stay-type-text {
  max-width: 300px;
  margin: 0 auto;
}

.stay-type-text p {
  margin-bottom: 12px;
}

.stay-type-text p:last-child {
  margin-bottom: 0;
}

.stay-price-section {
  padding: 50px 0;
}

.stay-price-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
}

.stay-price-title {
  margin-bottom: 20px;
  max-width: 240px;
}

.stay-calculator {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  min-width: 510px;
}

.stay-calculator label {
  color: var(--primary-color);
}

.stay-calculator select,
.stay-calculator input {
  border: 1px solid var(--primary-color);
  padding: 10px 12px;
  font-size: 16px;
  margin-bottom: 18px;
}

.stay-calculator input:focus,
.stay-calculator select:focus {
  outline: 1px solid var(--primary-color);
  outline-offset: 0;
}

.stay-calculator .hidden-field {
  display: none;
}

.calculator-btn {
  align-self: start;
  margin-top: 20px;
  width: 200px;
}

.appliance-btn {
  width: 200px;
}

.stay-price-cta {
  margin-top: 40px;
}

.stay-price-cta h3 {
  margin-bottom: 53px;
}

.stay-price-image {
  margin: 20px 0;
  overflow: hidden;
}

.stay-price-image iframe {
  width: 730px;
  height: 371px;
  object-fit: cover;
  display: block;
  aspect-ratio: 730 / 371;
}

.stay-price-text {
  min-height: 240px;
}

.stay-price-text h2 {
  max-width: 300px;
}

.stay-price-left p {
  max-width: 420px;
}

.stay-price-right p {
  max-width: 570px;
}

.stay-price-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stay-price-left {
  margin-left: auto;
  max-width: 513px;
}

.stay-price-p1 {
  margin-bottom: 10px;
}

.care-allowance-section {
  padding: 60px 0;
  text-align: center;
}

.care-allowance-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.care-allowance-container .divider {
  width: 270px;
  margin: 0 auto 40px auto;
}

.care-allowance-headline {
  margin-bottom: 25px;
}

.care-allowance-description {
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 1rem;
}

.care-allowance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

.care-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.care-title {
  margin-bottom: 10px;
}

.care-price {
  font-size: 36px;
  font-family: var(--montserrat-font);
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.care-period {
  color: var(--secondary-text-color);
}

.application-section {
  padding: 40px 0 60px;
  text-align: center;
}

.application-container {
  margin: 0 auto;
  max-width: 1240px;
}

.application-text {
  max-width: 655px;
  margin: 0 auto;
}

.application-container .divider {
  margin: 30px auto 50px auto;
  width: 275px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  text-align: left;
}

.application-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.application-form {
  max-width: 1000px;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 100%;
  min-height: 47.2px;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 20px;
  outline: none;
}

select:invalid {
  color: var(--secondary-text-color) !important;
}

#start-date,
#client-birthdate {
  color: var(--secondary-text-color);
}

#start-date:valid,
#client-birthdate:valid {
  color: var(--main-text-color);
}

textarea {
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  background-color: var(--submenu-bg-color);
  margin-bottom: 0 !important;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}

.radio-group {
  margin-bottom: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  border: 0.5px solid var(--primary-color);
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-group {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  background-color: var(--white-color);
  width: 100%;
}

.select-wrapper {
  position: relative;
}

.form-type-number {
  display: flex;
  flex-direction: column;
}

input[type="number" i] {
  min-height: 47px;
  background-color: var(--white-color);
}

/* Chrome, Edge, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.select-wrapper .select-arrow {
  position: absolute;
  right: 18px;
  top: auto;
  transform: translateY(120%);
  pointer-events: none;
  font-size: 14px;
  color: var(--primary-color);
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--primary-color);
  border-color: var(--primary-color);
}

.form-note a {
  text-decoration: underline;
  color: var(--primary-color);
}

.jotforms-link-container {
  max-width: 1240px;
  padding: 60px 120px;
  margin: 0 auto;
}

.jotforms-link-grid {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  gap: 80px;
}

.jotforms-link-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jotforms-link-container .primary-btn {
  width: unset;
  padding: 9px 14px;
  margin-top: 20px;
}

/************************
- JAK SE U NAS ZIJE PAGE -
************************/
.jak-se-zije-section {
  padding: 60px 0 40px;
  position: relative;
  overflow: visible;
}

.jak-se-zije-container {
  padding: 0 60px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  position: relative;
  overflow: visible;
}

.jak-se-zije-hero .hero-img {
  object-position: center 10%;
}

.jak-se-zije-item {
  margin-bottom: 35px;
}

.jak-se-zije-right {
  position: relative;
  overflow: visible;
}

.jak-se-zije-photo {
  max-width: 659px;
  height: auto;
  aspect-ratio: 659 / 252;
  overflow: hidden;
  position: absolute;
  object-fit: cover;
  right: -150px;
}

.jak-se-zije-item .h3 {
  color: var(--primary-color);
}

.jak-se-zije-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  margin-bottom: 35px;
  margin-right: 1.5rem;
}

.volny-cas-section .preface-text-section {
  margin: 0 auto;
}

.volny-cas-section .two-column-section .h2 {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--montserrat-font);
}

.volny-cas-section .two-column-section .column-text {
  padding-top: 30px;
}

.volny-cas-section .two-column-section {
  padding-bottom: 60px;
}

.two-column-text {
  padding: 0 10px 0 60px;
}

/************************
---- NASE PECE PAGE ----
************************/
.nase-pece-section .preface-text-section {
  margin: 5rem auto 0;
}

.nase-pece-hero .hero-img {
  object-position: center 20%;
}

.nase-pece-section .secondary-btn {
  text-align: center;
  width: 200px;
}

.nase-pece-section .two-column-section {
  padding-bottom: 2rem;
}

.lekarska-pece-section {
  padding: 0;
}

.lekarska-pece-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.lekarska-pece-item {
  position: relative;
  padding: 40px 60px;
}

.lekarska-pece-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
}

.lekarska-pece-item.dostupnost {
  gap: 80px;
}

.lekarska-pece-item.sestricky,
.lekarska-pece-item.pecovatele {
  gap: 30px;
}

.lekarska-pece-section h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.lekarska-pece-section .icon-wrapper {
  align-items: center;
}

.lekarska-pece-section .icon-wrapper img,
.lekarska-pece-section .icon-wrapper svg {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.lekarska-pece-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.lekarska-pece-container .divider {
  width: 275px;
}

.ozdravne-pobyty-section .content-image-paragraph strong {
  color: var(--main-text-color);
}

.ozdravne-pobyty-section {
  padding: 40px 0 100px;
}

/************************
----- KONTAKT PAGE -----
************************/

.kontakt-hero-section .hero-section {
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 100%,
      var(--white-color) 100%);
  padding-bottom: 100px;
}

.kontakt-hero-section .hero-section::before {
  height: 100%;
}

.mapa-section {
  padding: 60px 0;
}

.mapa-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.mapa-section i::before {
  display: block;
  color: var(--primary-color);
  font-size: 30px;
}

.mapa-section li {
  column-gap: 32px;
}

.mapa-section ul {
  row-gap: 25px;
  padding: 24px 0 40px;
}

.left-map-column {
  max-width: 440px;
}

#mapa iframe {
  width: 669px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 669 / 371;
  border: 0;
}

.lide-section {
  padding: 40px 0;
}

.lide-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.lide-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lide-image {
  aspect-ratio: 480 / 254;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.lide-texts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding-top: 15px;
}

.lide-container h2 {
  margin: 0 auto;
}

.lide-container .divider {
  width: 273px;
  margin: 10px auto 45px;
}

.lide-text {
  margin: 0 auto;
  text-align: left;
}

.napiste-nam-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
}

.napiste-nam-right {
  max-width: 510px;
}

.napiste-nam-section {
  padding-bottom: 150px;
}

.napiste-nam-photo {
  object-fit: cover;
  height: auto;
  width: 100%;
}

.napiste-nam-img-wrap {
  aspect-ratio: 530 / 300;
  max-width: 530px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.napiste-nam-section .preface-text-section {
  margin-top: 80px;
}

.napiste-nam-container h4 {
  color: var(--primary-color);
}

.napiste-nam-container .form-submit {
  margin-top: 30px;
}

.nav-link-kontakt {
  text-decoration: none;
  color: var(--primary-color);
}

.napiste-nam-socials {
  padding-top: 40px;
}

.nav-link-kontakt {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}

.nav-link-kontakt i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 30px;
}

.kontaktni-formular textarea {
  min-height: 120px;
}

.kontakt-social-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.napiste-nam-socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/************************
- KDE BUDETE BYDLET PAGE -
************************/
.kde-budete-bydlet .hero-img {
  object-position: 50% 60%;
}

.rooms-include-section {
  padding-bottom: 25px;
}

.rooms-include-container {
  max-width: 1540px;
  padding-left: 100px;
  padding-right: 0;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.rooms-include-right img {
  aspect-ratio: 705 / 366;
  width: 100%;
  max-width: 762px;
  height: auto;
  object-fit: cover;
  display: block;
}

.rooms-include-headline {
  margin-bottom: 15px;
}

.rooms-include-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 430px;
}

.rooms-include-btn {
  margin: 40px 0 0 345px;
}

.rehabilitace-section .content-image-paragraph strong {
  color: var(--main-text-color);
}

/************************
-- OHLASY KLIENTU PAGE --
************************/

.reference-section {
  max-width: 1440px;
  padding: 0 100px;
  margin: 0 auto;
  position: relative;
}

.name {
  color: var(--primary-color);
}

.reference-headline-h2 {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 24px;
}

.static-reference-container,
.all-reference-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.static-reference-container .reference-card:nth-child(3) {
  grid-column: span 2;
}

.reference-card {
  padding: 25px 50px;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
}

.static-reference-container .reference-divider,
.ohlasy-popup-overlay .reference-divider {
  margin-top: 15px;
  margin-bottom: 30px;
}

.reference-divider {
  width: 275px;
  margin: auto 0;
}

.quote-icon {
  position: relative;
  display: flex;
  top: -40px;
  margin-left: auto;
  object-fit: contain;
  margin-bottom: -42px;
}

.read-more-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.read-more:hover {
  color: var(--secondary-bg-color);
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 13px;
  margin-top: 10px;
  text-decoration: none;
  font-size: 20px;
  padding: 7px 13px;
}

.divider-date-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  margin-bottom: 19px;
  margin-top: 4px;
}

.reference-card .h4 {
  margin-bottom: 0;
}

.all-reference-section {
  padding-bottom: 100px;
}

/* --- OVERLAY --- */
.ohlasy-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 9999;
}

.ohlasy-popup-overlay.active {
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
}

.ohlasy-popup {
  background: var(--submenu-bg-color);
  width: min(800px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 45px 60px;
  position: relative;
}

.ohlasy-popup-close {
  position: absolute;
  top: 10px;
  right: 30px;
  background: none;
  border: none;
  font-size: 40px;
  color: var(--primary-color);
  cursor: pointer;
}

.popup-card {
  padding: 0;
}

.reference-tags-filter {
  display: flex;
  flex-wrap: wrap;
  max-width: 1240px;
  padding: 0 50px;
  margin: 0 auto;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin: 40px 0;
}

.reference-tags-filter .h4 {
  margin-bottom: 0;
}

.reference-tag-filter {
  border: none;
  background: none;
  padding: 0 0 11px;
  cursor: pointer;
  position: relative;
}

.reference-tag-filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.2s ease;
}

.reference-tag-filter.active {
  color: var(--primary-color);
}

.reference-tag-filter.active::after {
  width: 100%;
}

.reference-pagination .pagination-dots {
  margin-top: 15px;
}

/************************
-- KALKULAČKA VÝPOČET --
************************/
.calculation-container {
  margin-top: 40px;
  display: grid;
  padding: 40px 0;
}

.stay-result-container {
  padding-top: 40px;
}

.stay-result-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 30px;
}

.stay-result-left {
  margin-top: 62px;
}

.stay-result-right {
  width: 580px;
  margin-top: 160px;
  margin-right: 160px;
}

.calculation-section {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  padding-bottom: 80px;
}

.stay-calculator-result {
  margin-left: auto;
  width: 513px;
}

.stay-result-arrow {
  padding-right: 313px;
  text-align: center;
  margin-left: auto;
  color: var(--primary-color);
  font-size: 48px;
  margin-top: 30px;
}

.stay-result-left .h3,
.stay-result-right .h3 {
  color: var(--primary-color);
}

.stay-result-left .h3 {
  max-width: 382px;
}

.stay-result-right .h3 {
  min-height: 62px;
}

.stay-result-table td,
.stay-result-table th {
  background: var(--secondary-bg-color);
  border: 3px solid var(--main-bg-color);
  padding: 6px;
}

.stay-result-table th {
  width: 136px;
}

.stay-result-table th:first-child {
  width: 168px;
}

.stay-result-table td:first-child {
  text-align: left;
}

.stay-result-total td {
  font-weight: 700;
  color: var(--primary-color);
}

.stay-result-total td:first-child {
  color: var(--main-text-color);
}

.stay-result-per-person td {
  font-weight: 700;
}

.stay-result-subtitle {
  padding-top: 30px;
  padding-bottom: 5px;
}

.stay-result-list {
  padding: 15px 0;
}

.stay-result-text {
  padding-bottom: 10px;
}

/************************
-- PAGE KAMEROVY SYSTEM --
************************/
.camera-system-section .hero-section {
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 100%,
      var(--white-color) 100%);
  padding-bottom: 80px;
}

.camera-system-section .hero-section::before {
  height: 100%;
}

.camera-system-section .contact-email {
  text-decoration: none;
  color: var(--primary-color) !important;
  cursor: pointer;
}

.camera-system-section .contact-email:hover {
  text-decoration: underline;
}

.camera-system-section .content-image-container {
  padding-top: 80px;
  padding-bottom: 100px;
}

/************************
--- ZASADY OCHRANY PAGE ---
************************/
.privacy-policy-section .hero-section {
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 100%,
      var(--white-color) 100%);
  padding-bottom: 80px;
}

.privacy-policy-section .hero-section::before {
  height: 100%;
}

.privacy-policy-section .content-image-text {
  display: flex;
  flex-direction: column;
}

.privacy-policy-section .content-image-text .content-button {
  width: 457px;
}

.privacy-policy-section .content-image-container {
  padding-top: 80px;
  padding-bottom: 100px;
}

/************************
---- MEMORANDUM PAGE ----
************************/
.memorandum-text-container {
  padding: 80px 100px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.memorandum-section {
  padding-bottom: 20px;
}

.memorandum-section ul {
  margin-bottom: 0;
}

.memorandum-list {
  padding-bottom: 5px;
  padding-top: 10px;
}

/****************************
-- ZASADY POSKYTOVANI SLUZEB PAGE --
*****************************/
.principles-in-provision-section .hero-section {
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 100%,
      var(--white-color) 100%);
  padding-bottom: 80px;
}

.principles-in-provision-section .hero-section::before {
  height: 100%;
}

.principles-text-container {
  padding: 80px 100px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.principles-text-part {
  padding: 15px 0;
}

.principles-heading {
  color: var(--primary-color);
  padding-bottom: 7px;
}

.principles-button {
  margin-left: 20px;
  margin-top: 20px;
}

.principles-text-part ul {
  line-height: 30px;
}

/****************************
------- INZERAT PAGE --------
*****************************/

.pracovni-nabidka-section .divider {
  width: 250px;
  margin: 0 auto 40px;
}

.job-detail {
  padding: 36px 0 10px;
  font-family: var(--montserrat-font);
  color: var(--main-text-color);
}

.job-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.job-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.job-text h2 {
  font-family: var(--radley-font);
  color: var(--heading-color);
  font-size: 40px;
  margin-bottom: 1rem;
  max-width: 100%;
}

.job-contact-outside h3 {
  font-weight: 600;
  margin: 70px auto 0.5rem;
  font-size: 26px;
  font-family: var(--montserrat-font);
  color: var(--heading-color);
  text-align: center;
  max-width: max-content;
  max-width: 884px;
}

.job-text {
  max-width: 590px;
}

.job-text p {
  margin-bottom: 0;
}

.job-text ul {
  margin: 0 0 20px 25px;
  padding: 0;
}

.job-text li {
  margin: 6px 0;
}

.job-media-slot {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.job-video {
  display: block;
  max-width: 100%;
  width: 407px;
  height: auto;
  margin-top: 95px;
  margin-left: auto;
  aspect-ratio: 407/723;
}

.job-contact-link {
  color: var(--primary-color);
  text-decoration: none;
}

#formular-nabidky-prace {
  margin: 0 auto;
  max-width: 554px;
}

.nabidka-prace-section {
  padding-bottom: 200px;
}

.form-group {
  padding-bottom: 10px;
}

/************************
--- NABIDKA PRACE PAGE ---
************************/

.single-link-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.job-card {
  padding: 30px 30px 30px 60px;
}

.single-link-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 140px;
  row-gap: 40px;
  padding: 0 100px;
}

.single-link-image {
  padding-top: 20px;
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.internship-container {
  margin: 0 auto;
  max-width: 1240px;
}

.internship-container .divider {
  margin: 30px auto 50px auto;
  width: 275px;
}

.internship-images-container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}

.internship-image {
  aspect-ratio: 504/225;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 504px;
}

.internship-form {
  max-width: 550px;
  padding: 20px 60px 20px 0;
}

.internship-section {
  padding: 40px 0 100px;
  text-align: center;
}

.internship-text {
  margin: 0 auto;
  max-width: 770px;
}

.single-link-image {
  width: 100%;
  height: auto;
  max-width: 500px;
}

#general-job-form {
  padding: 20px;
}

/****************************
-------- GALERIE -----------
*****************************/
.galerie-page .hero-section {
  padding-bottom: 14rem;
  overflow: visible;
  background-image: linear-gradient(180deg,
      var(--secondary-bg-color) 100%,
      var(--white-color) 100%);
}

.galerie-page .hero-section::before {
  height: 100%;
}

.galerie-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  top: -160px;
  position: relative;
  margin-bottom: -160px;
}

.galerie-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  column-gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  justify-content: space-between;
}

.galerie-tabs .h4 {
  letter-spacing: 1.5px;
}

.galerie-tab {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--heading-color);
  cursor: pointer;
  padding: 0 0 5px 0;
  margin: 0;
}

.galerie-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.2s ease;
}

.galerie-tab.active {
  color: var(--primary-color);
}

.galerie-tab.active::after {
  width: 100%;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px;
}

.galerie-item {
  position: relative;
  display: block;
  width: 100%;
  max-height: 400px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in !important;
}

.galerie-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
  object-position: center 40%;
}

.galerie-item[data-gallery-tab="vse"] img {
  object-position: center 55%;
}

.galerie-item[data-gallery-tab="rehabilitace"] img,
.galerie-item[data-gallery-tab="nasi-zamestnanci"] img {
  object-position: center 35%;
}

.galerie-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 1180 / 430;
}

.galerie-item.is-hidden {
  display: none;
}

.galerie-item:hover {
  opacity: 1;
}

.galerie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.galerie-lightbox.active {
  display: block;
}

.galerie-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.galerie-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1200px, calc(100vw - 28px));
  padding: 48px 18px 45px;
  background: var(--main-bg-color);
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.galerie-lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 155px);
  object-fit: contain;
}

.galerie-lightbox-close {
  position: absolute;
  top: 13px;
  right: 18px;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.galerie-lightbox-arrow {
  position: absolute;
  bottom: 10px;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
}

.galerie-lightbox-arrow i {
  font-weight: 400;
}

.galerie-lightbox-arrow.prev {
  left: 27px;
}

.galerie-lightbox-arrow.next {
  right: 27px;
}

.galerie-lightbox-close:hover,
.galerie-lightbox-arrow:hover {
  opacity: 0.75;
}

body.lightbox-open {
  overflow: hidden;
}

.galerie-tabs.two-per-row::after {
  content: "";
  flex: auto;
}

.galerie-videos-section {
  padding: 0 0 100px;
  background: var(--main-bg-color);
}

.galerie-videos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  align-items: stretch;
}

.galerie-main-video {
  position: relative;
  width: auto;
  max-height: 389px;
}

.galerie-video-item.active {
  display: none;
}

.galerie-main-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.galerie-main-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 689/389;
}

.galerie-video-list {
  padding: 0 0 0 50px;
  margin-left: 50px;
  border-left: 2px solid var(--primary-color);
  padding-bottom: 25px;
}

.galerie-video-list-title {
  margin: 0 0 26px;
  color: var(--primary-color);
}

.galerie-video-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.galerie-video-item {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 20px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.galerie-video-thumb {
  position: relative;
  display: block;
  width: 145px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.galerie-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galerie-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 24px;
}

.galerie-video-text {
  display: flex;
  flex-direction: column;
  line-height: 24px;
}

.galerie-video-name {
  font-weight: 600;
  width: 226px;
}

.galerie-video-subtitle {
  font-weight: 600;
}

/************************
------- BLOG PAGE -------
************************/

.blog-container {
  display: flex;
  max-width: 1440px;
  padding: 80px 100px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

.blog-posts-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 40px;
}

.blog-post-card {
  display: flex;
  max-width: 610px;
  max-height: 179px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-post-card-image-wrap {
  width: 100%;
  max-width: 295px;
  aspect-ratio: 295 / 179;
  overflow: hidden;
}

.blog-post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-card-excerpt p {
  margin: 0;
}

.blog-post-card-inner {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.blog-post-card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.blog-post-card-meta {
  color: var(--secondary-text-color);
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 400;
  gap: 10px;
  display: flex;
}

.blog-load-more-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.single-blog-top-section {
  position: relative;
  background: var(--secondary-bg-color);
  overflow: visible;
  z-index: 1;
}

.single-blog-top-bg {
  position: absolute;
  background: var(--secondary-bg-color);
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: -150px;
}

.single-blog-section {
  position: relative;
  z-index: 2;
}

.single-blog-container {
  position: relative;
  display: flex;
  max-width: 1440px;
  padding: 0 100px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  z-index: 2;
}

.top-container {
  padding-top: 20px;
}

.single-blog-sidebar {
  position: sticky;
  top: 150px;
}

.single-blog-sidebar-sticky {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 100px;
  box-sizing: border-box;
}

.single-blog-grid {
  display: grid;
  gap: 90px;
  align-items: start;
}

.single-blog-grid.has-sidebar {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.single-blog-grid.no-sidebar {
  grid-template-columns: 1fr;
}

.single-blog-grid.no-sidebar .single-blog-sidebar {
  display: none;
}

.top-container.no-sidebar .single-blog-perex {
  max-width: unset;
}

.single-blog-related {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.single-blog-main-image {
  max-width: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 700/345;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
  margin-top: 8px;
}

.single-blog-meta {
  margin-bottom: 10px;
}

.single-blog-meta span {
  color: var(--secondary-text-color);
}

.single-blog-related-link {
  display: flex;
  width: 330px;
  gap: 20px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--heading-color);
}

.single-blog-related-image {
  width: 145px;
  height: 97px;
  object-fit: cover;
}

.single-blog-related-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.single-blog-sidebar-title {
  color: var(--primary-color);
}

.single-blog-related {
  border-left: 2px solid var(--primary-color);
  padding-left: 50px;
}

.single-blog-sidebar-button {
  padding: 9px 20px;
  margin-left: 50px;
}

.article-title {
  display: flex;
  text-align: left;
  text-wrap: balance;
}

.single-blog-perex {
  max-width: 710px;
  margin-bottom: 6px;
  margin-top: 22px;
}

.single-blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 46px;
  text-decoration: none;
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 1.2;
}

.single-blog-back-link:hover {
  color: var(--primary-color);
}

.single-blog-text {
  margin-bottom: 100px;
}

.single-blog-text a {
  color: var(--primary-color);
}

.wp-block-heading {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 7px;
  padding-top: 12px;
}

/************************
------ RESPONSIVE -------
************************/

@media (hover: hover) and (pointer: fine) {

  /* MENU */
  .main-menu li:hover>.has-children i {
    transform: rotate(180deg);
    color: var(--white-color);
  }

  .main-menu li:hover>.main-link:not(.main-link-active) {
    color: var(--white-color);
    background-color: var(--primary-color);
  }

  .has-children:hover {
    cursor: pointer;
  }

  .main-menu li:hover>.sub-menu {
    display: grid;
  }

  .sub-link:hover:not(.sub-link-active) {
    color: var(--white-color);
    background: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
  }
}

@media (max-width: 1400px) {

  /* MENU */
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
  }

  .header {
    position: relative;
    z-index: 10;
  }

  .main-menu {
    display: none;
  }

  .main-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--main-bg-color);
    padding: 1.3rem 2rem 2rem;
    flex-direction: column;
    list-style: none;
    height: calc(100vh - var(--header-height, 0px));
    overflow-y: auto;
    justify-content: flex-start;
    transform: translateX(0);
    z-index: 999;
  }

  .burger {
    display: block !important;
    font-size: 40px;
    z-index: 200;
    color: var(--primary-color);
    cursor: pointer;
    justify-self: end;
    order: 3;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
  }

  .main-menu.open~.mobile-menu-overlay {
    display: block;
  }

  .main-link .has-children {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
    width: 100%;
  }

  .has-children {
    text-align: left;
  }

  .sub-menu {
    position: static;
    flex-direction: column;
    margin-top: 0.5rem;
  }

  .sub-menu {
    background: var(--main-bg-color);
  }

  .sub-menu-toggle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .sub-menu-toggle i {
    transition: transform 0.25s;
  }

  .sub-menu-open>.sub-menu {
    display: flex;
  }

  .sub-menu-open>.main-link.has-children .sub-menu-toggle i {
    transform: rotate(180deg);
  }

  .sub-menu-open>.main-link.has-children {
    position: relative;
    padding-bottom: 6px;
  }

  .sub-menu-open>.main-link.has-children::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    height: 2px;
    background-color: var(--primary-color);
    margin-left: 15px;
  }

  .mobile-close {
    display: block !important;
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 900;
  }

  .main-menu.open .mobile-close {
    display: block;
  }

  .header-btn {
    margin-left: auto;
  }

  .mobile-cta {
    display: block !important;
    border: 1px solid var(--primary-color);
    font-size: 20px !important;
    text-align: center;
    margin: 11px 15px;
  }

  /* FOOTER */
  .main-container-footer {
    padding: 90px 80px 30px;
  }

  .footer-menu {
    column-gap: 2rem;
  }

  .footer-section-operator,
  .footer-section-menu {
    max-width: 300px;
  }

  .footer-bottom {
    padding-top: 40px;
  }

  /* HERO */
  .hero-img {
    padding: 0 18px;
    aspect-ratio: 1240 / 420;
    height: auto;
    margin-top: 2rem;
  }

  /* FRONT PAGE */
  .content-image-container {
    gap: 2rem;
    margin: 0 auto;
    max-width: 730px;
    padding-top: 1rem;
  }

  .content-image-text {
    padding: 0 2rem;
  }

  .content-image-container.image-left,
  .content-image-container.image-right {
    flex-direction: column-reverse;
    padding: 2rem 0;
  }

  .preface-text-section {
    margin-top: 4rem;
  }

  .features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
    justify-items: center;
    max-width: 70%;
  }

  .quote-slider {
    touch-action: pan-y;
  }

  .rooms-icons {
    padding: 0 2rem 25px;
    gap: 3.5rem;
  }

  .faq-container {
    padding: 0 3rem;
  }

  .image-slider {
    min-height: 400px;
  }

  .image-slide,
  .image-slide img {
    aspect-ratio: 600 / 400;
    width: auto;
    height: 280px;
  }

  .image-slide.left {
    transform: translate(calc(-50% - 520px), 20%) scale(1);
  }

  .image-slide.right {
    transform: translate(calc(-50% + 520px), 20%) scale(1);
  }

  .image-caption {
    padding: 20px 10px 0;
  }

  /* KDO JSME PAGE */
  .timeline-section {
    padding-top: 2rem;
  }

  .timeline-item3 {
    padding-right: 4rem;
  }

  /* CENIK PAGE */
  .price-includes-container {
    padding: 0 4rem;
  }

  #medical-report {
    margin-bottom: 20px;
  }

  .care-allowance-grid {
    gap: 15px;
  }

  .stay-price-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .stay-price-cta {
    order: 1;
  }

  .stay-price-image {
    order: 2;
    margin-top: 3rem;
  }

  .stay-price-text {
    order: 3;
    min-height: auto;
    text-align: left;
    max-width: 100%;
  }

  .text-calculator {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .stay-price-left {
    order: 2;
  }

  .stay-price-left,
  .stay-price-right {
    max-width: 700px;
    margin: 0 auto;
  }

  .stay-price-left p,
  .stay-price-right p {
    max-width: 100%;
  }

  .stay-price-text h2 {
    max-width: unset;
  }

  .stay-price-title {
    max-width: unset;
  }

  .stay-price-cta h3 {
    margin-bottom: 20px;
  }

  .form-grid {
    gap: 50px;
    margin: 0 2rem;
  }

  /* JAK SE U NAS ZIJE PAGE */
  .jak-se-zije-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    gap: 0;
    padding: 0 22px;
  }

  .jak-se-zije-left {
    display: contents;
  }

  .jak-se-zije-left .jak-se-zije-item:nth-child(1) {
    order: 1;
  }

  .jak-se-zije-right {
    order: 2;
  }

  .jak-se-zije-left .jak-se-zije-item:nth-child(2) {
    order: 3;
  }

  .jak-se-zije-left .jak-se-zije-item:nth-child(3) {
    order: 4;
  }

  .jak-se-zije-photo {
    position: relative;
    left: 0;
  }

  .jak-se-zije-cta {
    position: relative;
    margin-top: 15px;
  }

  /* NASE PECE PAGE */
  .lekarska-pece-grid {
    flex-direction: column;
  }

  .napiste-nam-container {
    gap: 20px;
  }

  .left-map-column {
    padding: 18px;
  }

  /* KDE BUDETE BYDLET PAGE */
  .rooms-include-container {
    gap: unset;
    justify-content: space-between;
    padding-left: 5%;
  }

  .rooms-include-left {
    padding-right: 20px;
  }

  .rooms-include-btn {
    margin-right: 20px;
    margin-left: unset;
  }

  .rooms-include-right {
    text-align: right;
  }

  /*KALKULAČKA VÝPOČET*/
  .calculation-section {
    grid-template-columns: 1fr;
    order: 3;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .stay-calculator-result {
    max-width: 700px;
    margin: 0 auto;
  }

  .stay-calculator-result,
  .stay-result-left {
    display: contents;
  }

  .stay-calculator-result,
  .stay-result-right {
    margin-left: unset;
    width: unset;
    margin: 0 auto;
    max-width: 700px;
  }

  .result-left-first,
  .result-left-second,
  .stay-result-right {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 700px;
  }

  .stay-result-arrow {
    display: flex;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
    padding-right: 500px;
    margin-top: 0;
    order: 0;
    margin-bottom: 30px;
  }

  .result-left-first {
    order: 1;
  }

  .stay-result-right {
    order: 2;
  }

  .result-left-second {
    order: 3;
  }

  .stay-result-right .h3 {
    visibility: hidden;
    position: absolute;
  }

  .stay-result-left .h3 {
    padding-bottom: 15px;
  }

  .stay-result-table {
    margin-top: 15px;
  }

  .stay-price-container {
    gap: 30px;
  }

  .stay-price-text h2 {
    margin-top: 20px;
  }

  .result-left-second .price-includes-list {
    margin: unset;
  }

  /* OHLASY KLIENTU PAGE */
  .static-reference-container,
  .all-reference-container {
    display: block;
  }

  .reference-section {
    padding: 0 50px;
  }

  .reference-tags-filter {
    gap: 20px;
  }

  .reference-tags-filter.two-per-row::after {
    content: "";
    flex: auto;
  }

  .reference-divider {
    width: 60%;
  }

  /************************
  -- PAGE KAMEROVY SYSTEM --
  ************************/
  .camera-system-section .content-image-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  /************************
  -- PAGE ZASADY OCHRANY --
  ************************/
  .privacy-policy-section .content-image-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  /************************
  -- PAGE NABIDKA PRACE --
  ************************/
  .internship-text,
  .internship-form {
    padding: 0 18px;
  }

  .single-link-container {
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  /************************
  ------- PAGE BLOG -------
  ************************/
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-card {
    max-width: unset;
    width: 800px;
    margin: 0 auto;
  }

  .single-blog-sidebar {
    position: relative;
    top: 0;
  }

  .single-blog-related {
    border-left: unset;
    padding-left: 0;
  }

  .single-blog-related-link {
    width: 100%;
    gap: 30px;
  }

  .single-blog-sidebar-button {
    margin-left: 0;
  }

  .single-blog-grid.has-sidebar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .single-blog-perex {
    max-width: unset;
  }

  .single-blog-text {
    margin-bottom: 40px;
  }

  /************************
  ------- PAGE GALERIE -------
  ************************/
  .galerie-videos-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  .galerie-main-video::before {
    padding-top: 0;
  }

  .galerie-main-video-iframe {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: auto;
    max-height: 389px;
    height: 100%;
    aspect-ratio: 689/389;
  }

  .galerie-video-list {
    position: relative;
    width: 689px;
    border-left: none;
    margin: 20px auto 0 auto;
    padding: 20px 0 40px 0;
  }

  .galerie-video-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
  }

  .galerie-videos-section {
    padding-bottom: 40px;
  }

  .galerie-video-name {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 1024px) {

  /* HEADINGS */
  .h1 {
    max-width: 80%;
  }

  /* FOOTER */
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .main-container-footer {
    padding: 70px 60px 30px;
  }

  .footer-menu {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .footer-section-operator,
  .footer-section-menu {
    max-width: unset;
  }

  /* HERO */
  .hero-section {
    background-image: linear-gradient(180deg,
        var(--secondary-bg-color) 75%,
        var(--white-color) 65%);
  }

  .hero-section::before {
    height: 75%;
  }

  /* FRONT PAGE */
  .features-container {
    max-width: 80%;
  }

  .two-column-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .two-column-images {
    display: contents;
  }

  .two-column-texts {
    display: contents;
  }

  .two-column-image:nth-child(1) {
    grid-area: img1;
    padding-left: 20%;
  }

  .two-column-text {
    grid-area: text1;
  }

  .two-column-image:nth-child(2) {
    grid-area: img2;
    padding-left: 20%;
  }

  .two-column-text-2 {
    grid-area: text2;
  }

  .two-column-container {
    grid-template-areas:
      "img1"
      "text1"
      "img2"
      "text2";
    gap: 2rem;
  }

  .two-column-text {
    padding: 1rem 12rem 1rem 6rem;
  }

  .two-column-image {
    width: 100%;
  }

  .column-text {
    padding-bottom: 30px;
  }

  .content-image {
    width: 100%;
    aspect-ratio: 730 / 400;
    height: auto;
  }

  .content-video iframe {
    height: auto;
    aspect-ratio: 730 / 400;
    max-width: 100%;
  }

  .image-slider {
    min-height: 340px;
  }

  .image-slide,
  .image-slide img {
    aspect-ratio: 600 / 400;
    width: auto;
    height: 240px;
  }

  .image-slide.left {
    transform: translate(calc(-50% - 440px), 20%) scale(1);
  }

  .image-slide.right {
    transform: translate(calc(-50% + 440px), 20%) scale(1);
  }

  /* CASTE DOTAZY PAGE */
  .timeline-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
  }

  .timeline-images,
  .timeline-items,
  .timeline-dots {
    display: contents;
  }

  .timeline-images img:nth-child(1) {
    order: 1;
  }

  .timeline-images img:nth-child(2) {
    order: 3;
  }

  .timeline-images img:nth-child(3) {
    order: 5;
  }

  .timeline-dots .timeline-dot:nth-child(1) {
    order: 2;
  }

  .timeline-dots .timeline-dot:nth-child(2) {
    order: 5;
  }

  .timeline-dots .timeline-dot:nth-child(3) {
    order: 8;
  }

  .timeline-item1 {
    order: 2;
  }

  .timeline-item2 {
    order: 4;
  }

  .timeline-item3 {
    order: 6;
  }

  .timeline-images img {
    margin: 0 0 1rem auto;
    gap: 2rem;
    max-width: 80%;
    height: auto;
    aspect-ratio: 300 / 159;
  }

  .timeline-line {
    position: absolute;
    height: 100%;
    width: 2px;
    left: 10%;
    margin: 0;
  }

  .timeline-dot {
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .timeline-items {
    padding-left: 0;
    gap: 2rem;
  }

  .timeline-item1,
  .timeline-item2,
  .timeline-item3 {
    position: relative;
    width: 80%;
    margin-left: auto;
    padding-right: 4rem;
  }

  .timeline-item3 {
    padding-right: 0;
  }

  .timeline-heading {
    margin-bottom: 0;
  }

  .timeline-year {
    font-size: 30px;
  }

  /* CENIK PAGE */
  .price-includes-section {
    margin-bottom: 3rem;
  }

  .price-includes-container {
    flex-direction: column;
    gap: 50px;
  }

  .price-includes-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .price-item {
    display: flex;
    flex-direction: column;
  }

  .care-allowance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .care-allowance-container {
    padding: 0 40px;
  }

  .stay-types-container {
    padding: 0 5rem;
  }

  .stay-types-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stay-type-text {
    text-align: left;
    max-width: unset;
    margin: unset;
    padding-right: 5rem;
  }

  .stay-type-image {
    aspect-ratio: 413 / 158;
    height: auto;
    margin-bottom: 15px;
  }

  .stay-type-heading {
    margin-left: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 700px;
    gap: 0;
  }

  .radio-group {
    margin-bottom: 20px;
  }

  .application-section {
    padding-bottom: 20px;
  }

  .jotforms-link-grid {
    flex-direction: column;
    gap: 40px;
  }

  .jotforms-link-container .primary-btn {
    margin-top: 0;
  }

  .jotforms-link-container {
    padding: 40px 40px 80px;
  }

  /* KONTAKT PAGE */
  .mapa-container {
    flex-direction: column;
  }

  .mapa-container .primary-btn {
    display: block;
    margin: 0 auto;
  }

  .mapa-section ul {
    padding-bottom: 20px;
  }

  .mapa-section .h2 {
    text-align: center;
  }

  .lide-section {
    padding: 40px 18px;
  }

  .lide-images img:nth-child(1),
  .lide-texts .lide-text:nth-child(1) {
    grid-row: 2;
  }

  .lide-images img:nth-child(2),
  .lide-texts .lide-text:nth-child(2) {
    grid-row: 1;
  }

  .lide-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 5%;
  }

  .lide-images,
  .lide-texts {
    gap: 10px;
    grid-template-columns: unset;
  }

  .lide-text {
    margin: unset;
    align-self: center;
  }

  .lide-texts {
    padding-top: 0;
  }

  .lide-texts .body-text {
    margin-bottom: 0;
  }

  .lide-container .h2 {
    text-align: center;
  }

  .napiste-nam-container {
    flex-direction: column;
    margin: 0 auto;
    max-width: 664px;
    gap: 30px;
    padding: unset;
  }

  .napiste-nam-right,
  .napiste-nam-left {
    width: 100%;
    max-width: unset;
  }

  .napiste-nam-left {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
  }

  .napiste-nam-right {
    padding: 0 18px;
  }

  .napiste-nam-socials {
    padding-left: 18px;
    padding-top: 0;
  }

  /* KDE BUDETE BYDLET PAGE */
  .rooms-include-container {
    max-width: 100%;
    padding: 0 18px;
    margin: 0 auto;
    max-width: 730px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "room1"
      "image"
      "room2";
    gap: 30px;
  }

  .rooms-include-left {
    display: contents;
  }

  .rooms-include-1 {
    grid-area: room1;
  }

  .rooms-include-2 {
    grid-area: room2;
  }

  .rooms-include-right {
    text-align: left;
  }

  .price-includes-list {
    margin: 0 auto;
  }

  .rooms-include-btn {
    margin-top: 20px;
  }

  /* MEMORANDUM PAGE */
  .memorandum-text-container {
    padding: 40px 20px;
  }

  .memorandum-text-container .secondary-btn {
    margin-left: 32px;
  }

  /* PAGE 404 */
  .page-404-container .h1 {
    max-width: unset;
  }

  /* THANK YOU PAGE */
  .thank-you-page-container .h1 {
    max-width: unset;
  }

  /* PAGE ZASADY POSKYTOVANI SLUZEB */
  .principles-text-container {
    padding: 40px 20px;
  }

  .principles-text-part {
    padding: 5px 0;
  }

  .principles-text-part ul {
    line-height: 24px;
  }

  .principles-heading {
    padding-bottom: 0;
  }

  .principles-in-provision-section .hero-section {
    padding-bottom: 30px;
  }

  /* INZERAT SINGLE */
  .job-video {
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .nabidka-prace-section {
    padding-bottom: 40px;
  }

  /* PAGE NABIDKA PRACE */
  .internship-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .internship-images-container {
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }

  .internship-section {
    padding-top: 20px;
  }

  .internship-image {
    width: 50%;
    aspect-ratio: 188/108;
  }

  .internship-form {
    padding: 0 100px;
    max-width: 100%;
  }

  /************************
  ------- PAGE BLOG -------
  ************************/
  .blog-post-card {
    max-width: 700px;
  }

  .blog-posts-grid {
    width: unset;
    row-gap: 20px;
  }

  .blog-container {
    padding: 30px 18px;
  }

  .single-blog-container {
    padding: 20px 18px 0;
  }

  .single-blog-sidebar-sticky {
    margin-bottom: 40px;
    gap: 20px;
  }

  .single-blog-container .h1 {
    max-width: unset;
  }

  .single-blog-back-link {
    margin-bottom: 13px;
  }

  .single-blog-section .single-blog-container {
    padding-top: 0;
  }

  /************************
  ------- PAGE GALERIE-------
  ************************/
  .galerie-container,
  .galerie-videos-container {
    padding: 0 40px;
  }

  .galerie-videos-section {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {

  /* HEADINGS */
  .h1 {
    font-size: 48px;
  }

  .h2 {
    font-size: 32px;
  }

  .h3 {
    font-size: 22px;
  }

  .h4 {
    font-size: 14px;
  }

  /* TEXT */
  .body-text {
    font-size: 15px;
  }

  /* BUTTONS */
  .primary-btn,
  .secondary-btn {
    width: unset;
    min-height: unset;
    font-size: 16px;
    padding: 7px 10px;
  }

  /* MENU */
  header .container {
    gap: unset;
  }

  .header-btn {
    margin: auto;
  }

  .header-logo {
    width: 150px;
  }

  .header-btn {
    font-size: 16px;
    padding: 6px 0;
    width: 170px;
    min-height: 30px;
  }

  .container {
    padding: 1rem 1.5rem;
  }

  /* FOOTER */
  .main-container-footer {
    padding: 2rem;
  }

  .main-container-footer .h4 {
    font-size: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-top: 40px;
  }

  footer,
  .footer-heading {
    font-size: 14px;
  }

  .footer-top {
    gap: 1.5rem;
  }

  .fa-brands {
    font-size: 20px;
  }

  .footer-list {
    row-gap: 0.5rem;
  }

  .main-container-footer .divider {
    margin-bottom: 0.5rem;
  }

  .footer-social-list {
    font-size: 20px;
  }

  .footer-social-list {
    order: -1;
  }

  /* HERO */
  .hero-section {
    padding-top: 4rem;
  }

  .hero-text {
    max-width: 70%;
  }

  .hero-heading {
    max-width: 80%;
    text-wrap: balance;
  }

  .hero-section {
    background-image: linear-gradient(180deg,
        var(--secondary-bg-color) 80%,
        var(--white-color) 65%);
  }

  .hero-section::before {
    height: 80%;
  }

  .hero-btn {
    width: unset;
    min-height: unset;
    padding: 5px 10px;
    font-size: 16px;
  }

  /* FRONT PAGE */
  .two-column-container {
    gap: 0 !important;
  }

  .ozdravne-pobyty-section .content-image-container.image-left,
  .ozdravne-pobyty-section .content-image-container.image-right {
    padding: 0;
  }

  .preface-text-section {
    padding: 0 1rem;
    margin-top: 40px;
  }

  .preface-text-section .divider {
    width: 60%;
  }

  .feature-icon {
    height: 50px;
  }

  .features-container {
    gap: 2.5rem 1rem;
  }

  .column-text {
    padding-bottom: 10px;
  }

  .two-column-text {
    padding: 1rem 5rem 2rem 2rem;
  }

  .two-column-section {
    padding-bottom: 2rem;
  }

  .quote-section {
    padding: 3rem 2rem;
  }

  .quote-text {
    font-size: 32px;
  }

  .pagination-dots {
    margin-top: 20px;
  }

  .rooms-section {
    padding: 50px 0;
  }

  .rooms-grid {
    gap: 1rem;
  }

  .room-prize {
    font-size: 24px;
    margin-top: 12px;
  }

  .room {
    padding-bottom: 0.5rem;
  }

  .rooms-icon-item {
    display: grid;
  }

  .rooms-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .faq-headline {
    padding-top: 3rem;
  }

  .faq-button {
    height: 5rem;
  }

  .how-it-looks-section {
    padding: 4rem 0;
  }

  .filler {
    height: 40px;
  }

  .image-slider {
    min-height: 260px;
  }

  .image-slide,
  .image-slide img {
    aspect-ratio: 600 / 400;
    width: auto;
    height: 150px;
  }

  .image-slide.left {
    transform: translate(calc(-50% - 280px), 20%) scale(1);
  }

  .image-slide.right {
    transform: translate(calc(-50% + 280px), 20%) scale(1);
  }

  /* KDO JSME PAGE */
  .timeline-dot {
    width: 30px;
    height: 30px;
  }

  /* CENIK PAGE */
  .price-includes-container {
    padding: 0 1rem;
  }

  .price-includes-icons {
    gap: 10px;
  }

  .price-includes-list i {
    top: 4px;
  }

  .price-item img {
    width: 45px;
    height: 45px;
  }

  .price-item {
    gap: 20px;
  }

  .care-price {
    font-size: 28px;
  }

  .stay-types-container {
    padding: 0 2rem;
  }

  .stay-type-text {
    padding-right: 2rem;
  }

  .stay-price-left {
    margin: 0 2rem;
  }

  .text-exceptions,
  .stay-price-cta {
    margin-right: 2rem;
    padding-left: 2rem;
  }

  .stay-price-image iframe {
    margin-top: 2rem;
    width: 100%;
    height: auto;
  }

  .stay-price-section {
    padding: 40px 0;
  }

  .stay-calculator {
    min-width: unset;
  }

  .stay-calculator .body-text {
    font-size: 13px;
  }

  input,
  select,
  textarea {
    margin-bottom: 20px !important;
    font-size: 13px !important;
  }

  .application-container {
    margin: 0 30px;
  }

  .form-grid {
    padding: 0;
  }

  .application-container .divider {
    margin: 20px auto 30px;
    width: 60%;
  }

  /* JAK SE U NAS ZIJE PAGE */
  .jak-se-zije-photo {
    right: unset;
    width: 100%;
  }

  /* NASE PECE PAGE */
  .lekarska-pece-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: unset;
  }

  .lekarska-pece-item.dostupnost {
    gap: 30px;
  }

  /* KONTAKT PAGE */
  .mapa-container .primary-btn {
    width: 130px;
  }

  .kontakt-hero-section .hero-section {
    padding-bottom: 30px;
  }

  .mapa-section {
    padding: 30px 0;
  }

  .lide-content {
    grid-template-columns: 2fr 4fr;
  }

  .napiste-nam-section {
    padding-bottom: 40px;
  }

  .napiste-nam-section .preface-text-section {
    margin-top: 40px;
  }

  /*KALKULAČKA VÝPOČET*/
  .calculation-section {
    padding-bottom: 0;
  }

  .stay-calculator-result,
  .stay-result-right,
  .result-left-first,
  .result-left-second {
    margin: 0 30px;
  }

  .price-includes-list {
    margin: unset;
  }

  .stay-result-arrow {
    padding-right: 0;
    padding-left: 30px;
    margin-left: unset;
  }

  /* OHLASY KLIENTU PAGE */
  .reference-tags-filter {
    padding: 0 25px;
  }

  .reference-tags-filter::after {
    content: unset;
    flex: unset;
  }

  .reference-section {
    padding: 0;
  }

  .reference-card {
    padding: 25px 25px;
  }

  article.reference-card.popup-card {
    margin-top: 0;
  }

  /* KAMEROVY-SYSTEM PAGE */
  .camera-system-section .hero-section {
    padding-bottom: 30px;
  }

  /* ZASADY OCHRANY PAGE */
  .privacy-policy-section .content-image-text .content-button {
    width: auto;
    margin-top: 10px;
  }

  .privacy-policy-section .hero-section {
    padding-bottom: 30px;
  }

  /* PAGE 404 */
  .page-404-container {
    padding: 50px 40px 60px;
  }

  /* THANK YOU PAGE */
  .thank-you-page-container {
    padding: 50px 40px 60px;
  }

  /* PAGE INZERAT */
  #job-form {
    padding: 0 18px;
  }

  .job-text h2 {
    font-size: 32px;
  }

  .job-contact-outside h3 {
    font-size: 18px;
  }

  /* PAGE NABIDKA PRACE */
  .single-link-container {
    padding: 0 18px;
    row-gap: 30px;
  }

  .single-link-section {
    padding-bottom: 50px;
  }

  .job-card {
    padding: 20px;
  }

  .read-more {
    margin-top: 0;
  }

  .internship-container .divider {
    width: 50%;
  }

  .internship-form {
    padding: 0 18px;
  }

  /************************
  ------- PAGE BLOG -------
  ************************/
  .blog-post-card {
    width: 100%;
    height: 100%;
  }

  .blog-post-card-inner {
    padding-right: 0;
    width: 60%;
  }

  .blog-post-card-meta {
    display: none;
  }

  .blog-posts-grid {
    gap: 20px;
  }

  /************************
  ------ PAGE GALERIE ------
  ************************/
  .galerie-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .galerie-item {
    grid-column: auto;
    aspect-ratio: 339 / 190;
    max-height: 100%;
    width: auto;
  }

  .galerie-item--wide {
    grid-column: auto;
    aspect-ratio: 1180 / 320;
  }

  .galerie-container,
  .galerie-videos-container {
    padding: 0 18px;
  }

  .galerie-tabs.two-per-row {
    justify-content: start;
  }

  .galerie-tabs {
    column-gap: 10px;
    margin-bottom: 30px;
    justify-content: center !important;
  }

  .galerie-container {
    top: -190px;
    margin-bottom: -190px;
  }

  .galerie-video-items {
    gap: 20px;
  }

  .galerie-video-list {
    width: 100%;
  }

  .galerie-item img {
    object-position: center 40%;
  }

  .galerie-tabs.two-per-row::after {
    flex: unset;
  }
}

@media (max-width: 480px) {

  /* HEADINGS */
  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 28px;
  }

  .h3 {
    font-size: 18px;
  }

  .h4 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  /* TEXT */
  .body-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  /* MENU */
  .header-btn {
    visibility: hidden;
  }

  .container {
    padding: 0.8rem 1rem;
  }

  /* FOOTER */
  .main-container-footer {
    padding: 1rem;
  }

  /* HERO */
  .hero-text {
    font-size: 13px;
  }

  .hero-img {
    margin-top: 1rem;
  }

  .hero-section {
    padding-top: 2.5rem;
    background-image: linear-gradient(180deg,
        var(--secondary-bg-color) 85%,
        var(--white-color) 65%);
  }

  .hero-section::before {
    height: 85%;
  }

  .burger {
    font-size: 26px;
  }

  /* FRONT PAGE */
  .preface-text-section {
    margin-top: 2.5rem;
  }

  .features-container {
    max-width: 90%;
  }

  .two-column-text {
    padding-right: 2rem;
  }

  .content-image-text {
    padding: 18px;
  }

  .two-column-text {
    padding: 18px 18px 40px;
  }

  .o-domove-section .content-image-container.image-left,
  .o-domove-section .content-image-container.image-right {
    padding: 0;
  }

  .content-image-container.image-left,
  .content-image-container.image-right {
    padding: 2rem 0 1rem;
  }

  .content-image-container {
    gap: 0;
  }

  .rooms-text {
    margin: 0 18px;
  }

  .quote-text {
    font-size: 24px;
    margin: 0 auto 1rem;
  }

  .quote-slider {
    min-height: 200px;
  }

  .pagination-dot {
    width: 10px;
    height: 10px;
  }

  .quote-divider {
    width: 70%;
    margin-bottom: 1rem;
  }

  .quote-section {
    padding: 2rem 1.5rem;
  }

  .rooms-icon {
    height: 50px;
  }

  .rooms-icons {
    padding: 0 1rem 25px;
  }

  .faq-icon {
    font-size: 14px;
  }

  .faq-subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .image-slider {
    min-height: 180px;
  }

  .image-slide,
  .image-slide img {
    aspect-ratio: 600 / 400;
    width: auto;
    height: 110px;
  }

  .image-slide.left {
    transform: translate(calc(-50% - 205px), 20%) scale(1);
  }

  .image-slide.right {
    transform: translate(calc(-50% + 205px), 20%) scale(1);
  }

  .image-caption {
    font-size: 12px;
  }

  .how-it-looks-section {
    padding: 3rem 0;
  }

  /* KDO JSME PAGE */
  .timeline-dot {
    width: 22px;
    height: 22px;
  }

  .timeline-year {
    font-size: 24px;
  }

  .timeline-section {
    gap: 1rem;
    padding-top: 1rem;
  }

  .preface-text-section {
    margin-bottom: 1.5rem;
  }

  /* CASTE DOTAZY PAGE */
  .faq-photos-section {
    margin: 30px auto 40px;
  }

  /* CENIK PAGE */
  .price-includes-section {
    margin-bottom: 1.5rem;
  }

  .price-includes-container {
    gap: 20px;
  }

  .price-includes-list i {
    top: 2px;
  }

  .care-price {
    font-size: 24px;
  }

  .care-allowance-container .divider {
    width: 60%;
    margin-bottom: 20px;
  }

  .care-allowance-section {
    padding: 30px 0;
  }

  .stay-types-container {
    padding: 0 1rem;
  }

  .stay-type-heading {
    margin-bottom: 15px;
  }

  .stay-types-title {
    margin-bottom: 20px;
  }

  .stay-types-grid {
    gap: 30px;
  }

  .text-exceptions,
  .stay-price-cta {
    margin-right: 1rem;
    padding-left: 1rem;
  }

  .stay-price-left {
    margin: 0 1rem;
  }

  .application-container {
    margin: 0 18px;
  }

  .jotforms-link-container {
    padding: 30px 18px 80px;
  }

  /* JAK SE U NAS ZIJE PAGE */
  .jak-se-zije-item {
    margin-bottom: 15px;
  }

  .jak-se-zije-section {
    padding: 40px 0 15px;
  }

  .jak-se-zije-section .preface-text-section {
    margin-top: 0px;
  }

  .volny-cas-section .two-column-section .column-text {
    padding: 15px 0;
  }

  .volny-cas-section .two-column-text {
    padding: 18px;
  }

  .volny-cas-section .two-column-container {
    gap: 0;
  }

  .volny-cas-section .two-column-section {
    padding-bottom: 10px;
  }

  /* NASE PECE PAGE */
  .nase-pece-section .two-column-text {
    padding-bottom: 25px;
  }

  .nase-pece-section .two-column-section {
    padding-bottom: 1rem;
  }

  .nase-pece-section .column-text {
    margin-bottom: 15px;
  }

  .nase-pece-section .preface-text-section {
    margin: 40px auto 0;
  }

  .nase-pece-section .secondary-btn {
    width: unset;
  }

  .ozdravne-pobyty-section {
    padding-bottom: 30px;
  }

  .ozdravne-pobyty-section .content-image-container {
    gap: 0;
  }

  .lekarska-pece-section .icon-wrapper img,
  .lekarska-pece-section .icon-wrapper svg {
    width: 60px;
    height: 60px;
  }

  .lekarska-pece-item {
    padding: 25px 18px;
  }

  .lekarska-pece-grid {
    gap: 30px;
  }

  .lekarska-pece-container {
    gap: 20px;
  }

  /* KONTAKT PAGE */
  .mapa-section ul {
    row-gap: 10px;
  }

  .mapa-section {
    padding: 20px 0;
  }

  .lide-container .divider {
    margin-bottom: 15px;
  }

  .lide-container .h3 {
    margin-bottom: 0;
  }

  .lide-section {
    padding-bottom: 25px;
  }

  .nav-link-kontakt i {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }

  .napiste-nam-container .body-text {
    line-height: 1;
    margin-bottom: 0;
  }

  .nav-link-kontakt {
    gap: 10px;
  }

  .napiste-nam-container .h3 {
    padding-left: 5px;
  }

  .kontakt-social-list {
    gap: 5px;
  }

  .napiste-nam-socials {
    gap: 10px;
  }

  .napiste-nam-left {
    gap: 15px;
  }

  /* KDE BUDETE BYDLET PAGE */
  .rooms-include-container {
    gap: 15px;
  }

  .rooms-include-btn {
    margin-top: 10px;
  }

  .content-button {
    margin-top: 0;
  }

  .rehabilitace-section .filler {
    height: 13px;
  }

  /* KALKULAČKA VÝPOČET */
  .stay-calculator-result,
  .stay-result-right,
  .result-left-first,
  .result-left-second {
    margin: 0 18px;
  }

  .price-includes-list {
    margin: unset;
  }

  .stay-result-arrow {
    margin: 0 18px 30px;
    padding-left: 18px;
    margin-left: unset;
  }

  .stay-result-list {
    padding-top: 5px;
  }

  .stay-result-subtitle {
    padding-top: 10px;
  }

  .table-description {
    margin-bottom: 0;
  }

  .stay-result-left .h3 {
    max-width: 80%;
  }

  /* OHLASY KLIENTU PAGE */
  .reference-tags-filter .h4 {
    font-size: 10px;
  }

  .reference-divider {
    width: 50%;
  }

  .quote-icon {
    width: 40px;
  }

  .ohlasy-popup {
    padding: 20px 30px;
  }

  .reference-tags-filter,
  .reference-card {
    padding: 25px 18px;
    gap: 10px;
  }

  .reference-tags-filter {
    padding-bottom: 20px;
    margin-top: 20px;
  }

  .reference-headline-h2 {
    padding: 40px 18px 0;
  }

  .excerpt.body-text {
    margin-bottom: 0;
  }

  .all-reference-section {
    padding-bottom: 40px;
  }

  /************************
  ------ INZERAT ------
  ************************/
  .job-video {
    margin-left: 18px;
    margin-right: 18px;
    width: calc(100% - 36px);
  }

  .job-contact-outside h3 {
    margin-top: 40px;
  }

  .pracovni-nabidka-section .divider {
    width: 50%;
  }

  .blog-post-card {
    height: 116px;
  }

  .blog-post-card-excerpt p {
    font-size: 13px;
  }

  .blog-post-card-inner .h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .blog-post-card-image-wrap {
    width: 152px;
    height: 116px;
  }

  .blog-post-card-image-wrap {
    aspect-ratio: 152 / 116;
  }

  /************************
  ----- PAGE GALERIE -----
  ************************/
  .galerie-tabs .h4 {
    font-size: 10px;
  }

  .galerie-video-text .body-text {
    margin-bottom: 0;
  }

  .galerie-video-name {
    max-width: 200px;
  }
}

/* min-width: 320px */

@media (hover: none) and (pointer: coarse) {
  .main-menu *:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    cursor: default !important;
  }
}