@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::selection {
  background: #c7e1c3;
}

.content {
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 25px 0;
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: #798777;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.navbar .logo {
  transition: .3s;
}

.navbar .logo:hover {
  transform: rotate(-3deg);
}

.navbar .menu-list {
  display: inline-flex;
}

.menu-list li {
  list-style: none;
}

.menu-list li a {
  position: relative;
  color: #d2d2d2;
  font-size: 18px;
  font-weight: 600;
  margin-left: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.menu-list li a::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: -7.5px;
  width: 0;
  height: 0;
  border-radius: 1px;
  background: rgb(255, 255, 255);
  transition: .2s;
}

.menu-list li a:hover::before {
  width: 2.5px;
  height: 10px;
}

.menu-list li a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  width: 0;
  height: 0;
  border-radius: 1px;
  background: #d6d6d6;
  transition: .2s;
}

.menu-list li a:hover::after {
  width: 2.5px;
  height: 10px;
}

.menu-list li a:hover {
  color: #ffffff;
}

.banner {
  background: url("images/IMG_0760\ -\ tmava.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about {
  padding: 50px 0;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.about .title {
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.about .title img {
  width: 700px;
  margin: 0 auto;
  opacity: .2;
  padding: 40px 0;
}

@media(max-width: 730px) {
  .about .title img {
    width: 500px;
  }
}

@media(max-width: 550px) {
  .about .title img {
    width: 350px;
  }
}

.about h1 {
  padding-bottom: 20px;
  font-size: 2.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;

}

.about p {
  text-align: justify;
  border-left: solid 3px #000;
  padding-left: 10px;
  font-size: 1.25rem;
}

.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.menu-list .cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}

@media (max-width: 1230px) {
  .content {
    padding: 0 60px;
  }
}

@media (max-width: 1100px) {
  .content {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .content {
    padding: 0 30px;
  }
}

@media (max-width: 868px) {
  body.disabled {
    overflow: hidden;
  }

  .icon {
    display: block;
  }

  .icon.hide {
    display: none;
  }

  .navbar .menu-list {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }

  .navbar.show .menu-list {
    left: 0%;
  }

  .navbar .menu-list li {
    margin-top: 45px;
  }

  .navbar .menu-list li a {
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .navbar.show .menu-list li a {
    margin-left: 0px;
  }
}

@media (max-width: 380px) {
  .navbar .logo a {
    font-size: 27px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px 30px 40px;
  background: #000000;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.social-links p {
  padding-top: 5px;
}

.social-links {
  margin-bottom: 15px;
}

#copyrights {
  color: #798777;
  font-weight: 600;
}

.footer .fa-brands {
  font-size: 25px;
  padding-right: 10px;
  transition: .3s;
}

.fa-instagram:hover {
  transform: scale(1.1);
  color: #C13584;
}

.fa-facebook:hover {
  transform: scale(1.1);
  color: #405DE6;
}


.footer .fa-solid {
  font-size: 25px;
  padding-right: 10px;
  transition: .3s;
}

.footer-right p {
  margin-bottom: 10px;
}

.footer-right .fa-phone:hover {
  transform: rotate(15deg);
  color: #757575;
}

.footer-right .fa-envelope:hover {
  transform: scale(1.1);
  color: #757575;
}

.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1000;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #ffffff;
}

@media(max-width: 515px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
    gap: 30px;
  }
}

.partners {
  opacity: .7;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: #ebebeb;
}

.partners a {
  transition: .5s;
}

.partners a:hover {
  transform: scale(1.1);
}

.banner-title {
  display: flex;
  justify-content: center;
  padding-top: 300px;
  color: #ffffff;
}

.banner .left {
  border-right: solid 5px #BDD2B6;
  font-size: 80px;
  padding-right: 20px;
}

.banner .right {
  padding-left: 20px;
  font-size: 60px;
}

@media (max-width: 1100px) {
  .banner-title {
    padding-top: 340px;
  }

  .banner .left {
    font-size: 60px;
  }

  .banner .right {
    font-size: 50px;
  }

}

@media (max-width: 900px) {
  .banner-title {
    padding-top: 340px;
    flex-direction: column;
    text-align: center;
  }
}

.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  padding-top: 70px;
  margin: 0 auto;
}

.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 99;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper h1 {
  font-size: 2.5rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.wrapper span {
  color: #757575;
}

.wrapper h3 {
  font-size: 10px;
  color: #757575;
}


.carousel a {
  text-decoration: none;
  color: #000;
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
  transform: translateY(10px);
  transition: .3s;
}

.carousel .card:hover {
  transform: translateY(-10px);
}

.carousel .card .img {
  background: #BDD2B6;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}

.card .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.carousel .card h2 {
  font-weight: 500;
  font-size: 1.3rem;
  margin: 30px 0 5px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}

.loader:before {
  animation: before8 2s infinite;
}

.loader:after {
  animation: after6 2s infinite;
}

@keyframes before8 {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(0, 194, 58, 0.75), -1em 0.5em rgba(0, 168, 98, 0.75);
  }

  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(0, 194, 58, 0.75), 0 0.5em rgba(0, 168, 98, 0.75);
  }

  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(0, 194, 58, 0.75), 1em 0.5em rgba(0, 168, 98, 0.75);
  }

  100% {
    box-shadow: 1em -0.5em rgba(0, 194, 58, 0.75), -1em 0.5em rgba(0, 168, 98, 0.75);
  }
}

@keyframes after6 {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }

  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }

  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }

  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  transition: opacity 2.5s ease;
  opacity: 1;
  z-index: 9999;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1.5s ease;
  opacity: 1;
}

.loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.about .list {
  padding: 30px;
  box-shadow: 0px 10px 20px 0px #cfcfcf;
  margin: 150px 0;
}

.banner-galerie {
  background: url("images/IMG_0756.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-galerie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
}

.album {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 100px 0;
  gap: 10px;

}

.album img {
  width: 400px;
  transition: .5s;
}

.album img:hover {
  transform: scale(1.02);
}

@media(max-width: 450px) {

  .album img {
    width: 350px;
  }
}


.banner-kontakt {
  background: url("images/IMG_0761.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-kontakt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
}

.mapa {
  margin: 0 0 0 0;
}

.obecne-info {
  max-width: 1300px;
  display: flex;
  justify-content: center;
  margin: 50px auto;
  width: 50%;
  gap: 100px;
}

.obecne-info i {
  transition: .3s;
  transform: translateY(0);
}

.obecne-info i:hover {
  transform: translateY(-5px);
}

.obecne-info a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.obecne-info a:hover {
  text-decoration: none;
  color: #4e614a;
  font-weight: 500;
}

.obecne-info .obecne {
  max-width: 800px;
  text-align: center;
}

.obecne-info .obecne i {
  padding-right: 10px;
  color: #A2B29F;
}

.obecne-info .obecne p {
  padding-bottom: 10px;
}


.obecne-info .linky {
  max-width: 900px;
  text-align: left;
}

.obecne-info .linky i {
  padding-right: 10px;
  color: #A2B29F;
}

.obecne-info .linky p {
  padding-bottom: 10px;
  max-width: 300px;
}



.recenze-nadpis h1 {
  font-size: 2.5rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 100px;
}

.recenze-podpis h2 {
  font-size: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #757575;
  font-style: normal;
}


.wrapper-recenze {
  max-width: 1200px;
  margin: 50px auto 200px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.wrapper-recenze .box {
  position: relative;
  background: #fff;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.wrapper-recenze .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.wrapper-recenze .box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.wrapper-recenze .box:hover::before {
  width: 100%;
}

.wrapper-recenze .box:hover::after {
  height: 100%;
}

.box span {
  display: block;
}

.wrapper-recenze .box span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.wrapper-recenze .box span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.wrapper-recenze .box span:hover::before {
  width: 100%;
}

.wrapper-recenze .box span:hover::after {
  height: 100%;
}


.wrapper-recenze .box i.quote {
  font-size: 20px;
  color: #A2B29F;
}

.wrapper-recenze .box .content-recenze {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.box .info .name {
  font-weight: 600;
  font-size: 17px;
}

.box .info .job {
  font-size: 16px;
  font-weight: 500;
  color: #A2B29F;
}

.box .info .stars {
  margin-top: 2px;
}

.box .info .stars i {
  color: #A2B29F;
}

.box .content-recenze .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #A2B29F;
  border-radius: 50%;
}

.content-recenze .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.box:hover .content-recenze .image img {
  border-color: #fff;
}

@media (max-width: 1045px) {
  .wrapper-recenze .box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}

@media (max-width: 702px) {
  .wrapper-recenze .box {
    width: 100%;
  }
}

.banner-honba {
  background: url("images/IMG_0744.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-honba {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.content-honba {
  max-width: 1250px;
  margin: auto;
  padding: 80px 30px;
}

.content-honba h1 {
  text-align: center;
  font-size: 2.6rem;
}

.content-honba p {
  padding-bottom: 50px;
  font-size: 1.3rem;
}

.obtiznosti {
  display: flex;
  justify-content: space-evenly;
  margin: 50px 30px 100px 30px;
}

.card-obtiznost i {
  font-size: 40px;
  color: #899887;
  padding: 10px 0;
}

.obtiznosti-nadpis {
  font-size: 2.7rem;
  text-align: center;
}

.card-obtiznost {
  position: relative;
  max-width: 450px;
  background: #ffffff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.23);
  margin: 0 40px;
}

@media(max-width: 1200px) {
  .card-obtiznost {
    margin: 0 20px;
  }

  .title-honba {
    font-size: 4rem;
  }
}

@media(max-width: 800px) {
  .obtiznosti {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
}

@media(max-width: 500px) {
  .title-honba {
    font-size: 3rem;
  }
}


.card-obtiznost::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.card-obtiznost::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.card-obtiznost span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.card-obtiznost span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}


.card-obtiznost:hover::after {
  height: 100%;
}

.card-obtiznost:hover::before {
  width: 100%;
}

.card-obtiznost span:hover::after {
  height: 100%;
}

.card-obtiznost span:hover::before {
  width: 100%;
}

.rules-nadpis {
  font-size: 2.7rem;
  text-align: center;
}

ul.rules {
  list-style: none;
  padding-left: 1.5rem;
  max-width: 800px;
  margin: 50px auto 100px auto;
}

ul.rules li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.2rem;
}

ul.rules li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #f2b01e;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

@media (max-width: 600px) {
  ul.rules li {
    font-size: 0.95rem;
    padding-left: 26px;
  }
}

.banner-alch {
  background: url("images/IMG_0782.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-alch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.content-alch {
  max-width: 1250px;
  margin: auto;
  padding: 80px 30px;
}

.content-alch h1 {
  text-align: center;
  font-size: 2.6rem;
}

.content-alch p {
  padding-bottom: 50px;
  font-size: 1.3rem;
}

#green {
  color: #4e614a;
}

#blue {
  color: #0e1f76;
}

.sezona {
  position: relative;
  width: 50%;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.23);
  padding: 20px;
  text-align: center;
  margin: 50px auto;
  font-size: 1.3rem;
}

.sezona::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.sezona::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.sezona span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: rgb(223, 223, 223);
  transition: .3s;
}

.sezona span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: rgb(223, 223, 223);
  transition: .3s;
}


.sezona:hover::after {
  height: 100%;
}

.sezona:hover::before {
  width: 100%;
}

.sezona span:hover::after {
  height: 100%;
}

.sezona span:hover::before {
  width: 100%;
}

.b {
  font-weight: 500;
}

@media(max-width: 1200px) {
  .title-alch {
    font-size: 4rem;
  }
}

@media(max-width: 500px) {
  .title-alch {
    font-size: 3rem;
  }
}


.banner-elx {
  background: url("images/IMG_0791.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-elx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media(max-width: 1200px) {
  .title-elx {
    font-size: 4rem;
  }
}

@media(max-width: 500px) {
  .title-elx {
    font-size: 3rem;
  }
}

.content-elx {
  max-width: 1250px;
  margin: auto;
  padding: 80px 30px;
}

.content-elx h1 {
  text-align: center;
  font-size: 2.6rem;
  padding: 80px 0 20px 0;
}

.content-elx p {
  padding-bottom: 50px;
  font-size: 1.3rem;
}

.center {
  text-align: center;
}

.center i {
  color: rgb(223, 223, 15);
  padding: 0 30px;
}

.content-elx {
  font-size: 1.3rem;
}

.content-elx b {
  font-weight: 600;
}

.content-elx a {
  text-decoration: none;
  cursor: pointer;
  color: #4e614a;
  font-weight: 500;
}

.button-link {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #000000;
  text-transform: uppercase;
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

.button-link::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  transform: scaleY(1);
}

.button-link:hover::before {
  transform: scaleY(0);
}

.button-link::after {
  content: '';
  position: absolute;
  left: 6px;
  top: -2px;
  height: calc(100% + 4px);
  width: calc(100% - 12px);
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

.button-link:hover::after {
  transform: scaleX(0);
}

.button-link span {
  font-size: 2rem;
  position: relative;
  z-index: 3;
}

button {
  background-color: none;
  text-decoration: none;
  background-color: #ffffff;
  border: none;
}


.banner-skupiny {
  background: url("images/IMG_0734.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-skupiny {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media(max-width: 1200px) {
  .title-skupiny {
    font-size: 4rem;
  }
}

@media(max-width: 500px) {
  .title-skupiny {
    font-size: 3rem;
  }
}

.content-skupiny {
  max-width: 1250px;
  margin: auto;
  padding: 80px 30px;
}

.content-skupiny h1 {
  text-align: center;
  font-size: 2.6rem;
  padding: 80px 0 20px 0;
}

.content-skupiny p {
  padding-bottom: 50px;
  font-size: 1.3rem;
}

.parallax-img {
  width: 500px;
}

.content-skupiny-1 {
  display: flex;
}

.content-skupiny-1 p {
  padding: 12px;
}

.content-skupiny-1 b {
  font-weight: 600;
}

.content-skupiny-1 a {
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #6e9766;
  font-weight: 600;
}

@media(max-width: 1000px){
  .content-skupiny-1 {
    flex-direction: column;
    text-align: center;
    max-width: 600px;
    margin: 50px auto;
  }
}

#jde-to-jinak-nadpis {
  font-size: 3.5rem;
  font-weight: 700;
}

.content-skupiny b{
  font-weight: 600;
}

.content-skupiny h1{
  color: #6e9766;
}

@media(max-width: 550px){
  #jde-to-jinak-nadpis {
    font-size: 2.7rem;
    font-weight: 700;
  } 
}
.errormessage {
  color: red;
  font-weight: 500;
  text-align: center;
}

.center-rezervace {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.center-rezervace a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 30px;
  font-size: 30px;
  margin: 0 auto 60px auto;
}


.banner-cenik {
  background: url("images/IMG_0744.JPG") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-cenik {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media(max-width: 1200px) {
  .title-cenik {
    font-size: 4rem;
  }
}

@media(max-width: 500px) {
  .title-cenik {
    font-size: 3rem;
  }
}

.content-cenik h1 {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  padding-top: 30px;
}

.seznam-cen {
  width: 60%;
  margin: 100px auto;
}

.seznam-cen hr {
  margin: 20px 0;
}

.seznam-cena{
  display: flex;
  justify-content: space-between;
}
.seznam-cena .popis {
  text-align: left;
  padding: 10px 0;
}
.seznam-cena .popis p {
  font-size: 17px;
}

.seznam-cena .popis span {
  font-size: 15px;
  color: #757575;
}

.seznam-cena .cena {
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}

.cenik-rezervace {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.cenik-rezervace b {
  font-weight: 600;
}
.cenik-rezervace p {
  padding: 10px 0;
}
.cenik-rezervace .pripominka {
 color: #326428;
 font-size: 15px;
}

.cenik-rezervace span {
 color: #000;
}
.cenik-rezervace button {
 padding: 40px 0;
}

.cenik-online-zakoupeni{
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
}
.cenik-online-zakoupeni b{
  font-weight: 600;
}

.cenik-online-zakoupeni span {
 color: #000;
}
.cenik-online-zakoupeni button {
 padding: 40px 0;
}

.seznam-cen h1 {
  font-size: 2.4rem;
  color: #676767;
  padding-bottom: 30px;
}

.banner-trezor {
  background: url("images-olomouc/20250804_110856.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.title-trezor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.content-trezor {
  max-width: 1250px;
  margin: auto;
  padding: 80px 30px;
}

.content-trezor h1 {
  text-align: center;
  font-size: 2.6rem;
}

.content-trezor p {
  padding-bottom: 50px;
  font-size: 1.3rem;
}