@font-face {
  font-family: "Rift";
  src: url("../fonts/Rift Medium.otf");
}
@font-face {
  font-family: "Rift-bold";
  src: url("../fonts/Rift Bold.otf");
}
html {
  margin: 0 auto;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  font-family: Rift;
}

body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background-color: white;
  color: black;
  min-width: 320px;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

nav {
  overflow: hidden;
  margin-inline: calc(1.25% + 40px);
  display: flex;
  justify-content: space-between;
  font-family: Rift-bold;
}
@media (max-width: 962px) {
  nav {
    justify-content: right;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  nav {
    background-color: rgba(0, 0, 0, 0.462745098);
    margin-bottom: 0px;
    width: 100%;
    margin-inline: 0%;
    height: 110px;
  }
}

nav ul:first-child {
  margin-top: 46px;
}

nav ul:last-child {
  margin-top: 7px;
  justify-content: right;
}
@media (max-width: 962px) {
  nav ul:last-child {
    margin-left: 10px;
  }
}

nav ul {
  margin-bottom: 5px;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  list-style-type: none;
}
nav ul li:not(:first-child) {
  margin-left: 20px;
}
@media (max-width: 962px) {
  nav ul li:not(:first-child) {
    margin-left: 10px;
  }
}
nav ul li a {
  font-size: 25px;
  position: relative;
}
@media (max-width: 962px) {
  nav ul li a {
    font-size: 20px;
  }
}
nav ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}
nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
nav ul li .active:after {
  transform: scaleX(0.5);
  transform-origin: bottom center;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}

nav a {
  text-decoration: none;
  color: black;
}

nav div {
  padding-top: 10px;
}

nav .lang {
  display: flex;
  justify-content: right;
  color: #9A9A9A;
}
nav .lang a {
  transition: 0.5s;
  color: #9A9A9A;
}
nav .lang a:hover {
  color: black;
}
nav .lang .lng-active {
  color: black;
}
nav .lang .lng-active:hover {
  color: #9A9A9A;
}
nav .lang a:first-child {
  margin-right: 10px;
}
nav .lang a:not(:first-child) {
  margin-inline: 10px;
}
nav .lang a:last-child {
  margin-right: 0px;
}

@media (max-width: 768px) {
  nav .lang:first-of-type {
    display: none;
  }
}

nav .img img {
  height: 50px;
}

nav .img {
  z-index: 3;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
  background-color: black;
  padding: 20px;
  text-align: center;
  justify-content: center;
  display: flex;
}
@media (max-width: 962px) {
  nav .img {
    top: 15px;
    left: 1.25%;
    transform: translateX(0%);
  }
}
@media (max-width: 768px) {
  nav .img {
    background-color: rgba(0, 0, 0, 0);
  }
}

.menu-btn {
  z-index: 3;
  display: none;
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    width: 25px;
    height: 25px;
    padding-top: 0;
    margin-top: 50px;
    margin-right: 20px;
  }
}

.menu-btn div {
  padding: 0;
  height: 2px;
  width: 25px;
  background-color: white;
  transition: 0.5s;
}

.menu-btn div:not(:first-child) {
  margin-top: 8px;
}

.mobile-menu {
  z-index: 2;
  position: absolute;
  top: 0px;
  background-color: black;
  min-height: 100vh;
  max-height: 100vh;
  min-width: 320px;
  width: 100vw;
  max-width: calc(100vw - 25px);
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 100px;
  padding-left: 25px;
  font-size: 40px;
  display: none;
  left: 100vw;
}
.mobile-menu a {
  position: relative;
}
.mobile-menu .active:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0.5);
  height: 3px;
  bottom: 0px;
  left: 0;
  background-color: white;
  transform-origin: bottom center;
}
.mobile-menu div:last-child {
  color: #9A9A9A;
}
.mobile-menu div .menu-a {
  color: white;
}
.mobile-menu .lang {
  color: #9A9A9A;
  justify-content: left;
  font-size: 20px;
}
.mobile-menu .lng-active {
  color: white !important;
}

.menu-active {
  display: block;
  transition: 0.5s;
}

.menuslide {
  overflow-x: hidden;
  transition: 0.5s;
  left: 0px !important;
  top: 0px !important;
}

.mobile-menu div:last-child {
  margin-top: 50px;
}

.active-btn div {
  background-color: white;
}

.active-btn div:nth-child(2) {
  opacity: 0;
}

.active-btn div:nth-child(1) {
  transform: rotate(-45deg);
  margin-top: 12px;
}

.active-btn div:nth-child(3) {
  transform: rotate(45deg);
  margin-top: -12px;
}

footer {
  margin-top: 15px;
  margin-bottom: 5px;
  overflow: hidden;
  margin-inline: 2.5%;
  display: flex;
  justify-content: space-between;
  font-family: Rift-bold;
}
@media (max-width: 1150px) {
  footer {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer {
    margin-inline: 0%;
    padding-inline: 2.5%;
    border-top: 1px solid black;
    padding-top: 10px;
    margin-top: 0px;
  }
}

footer ul:first-child {
  margin-top: 0px;
}

footer ul:last-child {
  margin-top: 0px;
}

footer span {
  font-size: 25px;
}
footer span a {
  position: relative;
}
footer span a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}
footer span a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
@media (max-width: 1500px) {
  footer span {
    font-size: 20px;
  }
}
@media (max-width: 520px) {
  footer span {
    font-size: 18px;
  }
}
@media (max-width: 451px) {
  footer span {
    font-size: 14px;
    text-align: center;
  }
}

footer span span:first-child {
  margin-right: 30px;
}
@media (max-width: 1500px) {
  footer span span:first-child {
    margin-right: 15px;
  }
}

footer span span:last-child {
  margin-left: 30px;
}
@media (max-width: 1500px) {
  footer span span:last-child {
    margin-left: 15px;
  }
}

footer ul {
  margin-bottom: 5px;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  list-style-type: none;
}
footer ul li:not(:first-child) {
  margin-left: 20px;
}
footer ul li a {
  color: #9A9A9A;
  font-size: 25px;
  position: relative;
}
@media (max-width: 1500px) {
  footer ul li a {
    font-size: 20px;
  }
}
footer ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #9A9A9A;
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}
footer ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
@media (max-width: 1150px) {
  footer ul {
    display: none;
  }
}

footer a {
  text-decoration: none;
  color: black;
}

.err404 {
  min-height: calc(100vh - 150px);
  width: 100%;
  margin-inline: 1.25%;
  text-align: center;
  align-content: center;
  font-size: 50px;
  font-family: Rift-bold;
}

.video-div {
  position: relative;
  overflow: hidden;
  margin-inline: 1.25%;
  max-height: 80vh;
  height: 80vh;
  padding: 40px;
}
@media (max-width: 768px) {
  .video-div {
    margin-inline: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    height: 100vh;
    max-height: 100vh;
    margin-top: -110px;
  }
}

.video-div .p {
  width: 41%;
  text-transform: uppercase;
  font-size: 45px;
  color: white;
}
@media (max-width: 962px) {
  .video-div .p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .video-div .p {
    font-size: 30px;
  }
}

.video-div .container {
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-div .container .btns {
  margin-top: 25px;
  display: flex;
}
.video-div .container .btns .btn:last-child {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .video-div .container .btns {
    margin-inline: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .video-div .container .btns .btn:last-child {
    margin-left: 0px;
    margin-top: 10px;
  }
}

.btn {
  border: 2px solid white;
  text-decoration: none;
  color: black;
  background-color: white;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 10px 50px;
  transition: 0.5s;
  font-size: 29px;
}
@media (max-width: 768px) {
  .btn {
    text-align: center;
    font-size: 20px;
  }
}

.btn:hover {
  background-color: #d2d2d2;
  border-color: #d2d2d2;
}

.transparent-btn {
  background-color: transparent;
  color: white;
  transition: 0.5s;
}

.transparent-btn:hover {
  background-color: rgba(255, 255, 255, 0.2352941176);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.sluzby {
  margin-block: 15px;
  display: flex;
  margin-inline: 1.25%;
  justify-content: center;
  gap: 5%;
}
.sluzby span:nth-child(2) {
  display: none;
}
@media (max-width: 768px) {
  .sluzby span:nth-child(2) {
    display: block;
  }
}
@media (max-width: 1350px) {
  .sluzby {
    justify-content: left;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .sluzby {
    text-align: left;
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 30px;
  }
}

.sluzby span {
  font-size: 29px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1350px) {
  .sluzby span {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .sluzby span {
    text-align: left;
    margin-left: 0px;
  }
}

.sluzby span:first-child {
  color: #9A9A9A;
  margin-left: 0;
}
@media (max-width: 768px) {
  .sluzby span:first-child {
    white-space: nowrap;
  }
}

.sluzby span img {
  height: 20px;
  margin-right: 10px;
}

@media (max-width: 490px) {
  .sluzby span:not(:first-child) {
    font-size: 20px;
  }
}
@media (max-width: 363px) {
  .sluzby span:not(:first-child) {
    font-size: 18px;
    white-space: nowrap;
  }
}

.lines {
  left: 50px;
  top: 90px;
  position: relative;
}
@media (max-width: 1440px) {
  .lines {
    left: 30px;
    top: 70px;
  }
}
@media (max-width: 1300px) {
  .lines {
    top: 50px;
  }
}
@media (max-width: 768px) {
  .lines {
    top: 30px;
    left: 10px;
  }
}
.lines div {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
}
.lines div:first-child {
  width: 80px;
  height: 2px;
}
.lines div:last-child {
  width: 2px;
  height: 80px;
}

.t-100 {
  top: 100px;
}
@media (max-width: 1440px) {
  .t-100 {
    top: 80px;
  }
}
@media (max-width: 1300px) {
  .t-100 {
    top: 50px;
  }
}
@media (max-width: 768px) {
  .t-100 {
    top: 30px;
  }
}

.flex {
  display: flex;
}

.pribeh {
  margin-inline: 1.25%;
  position: relative;
}

.P-in-mid {
  background-color: white;
  border: 20px solid white;
  position: absolute;
  left: 50%;
  top: 50%;
  fill: black;
  transform: translate(-10%, -50%);
}
@media (min-width: 2194px) {
  .P-in-mid {
    transform: translate(10%, -50%);
  }
}
@media (min-width: 2700px) {
  .P-in-mid {
    transform: translate(0%, -50%);
    width: 150px;
  }
}
@media (max-width: 1300px) {
  .P-in-mid {
    width: 70px;
  }
}
@media (max-width: 768px) {
  .P-in-mid {
    display: none;
  }
}

.pribeh .img-1 {
  min-width: 55vw;
  -o-object-fit: cover;
     object-fit: cover;
}

.pribeh .flex p {
  font-size: 40px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  padding: 10%;
}
@media (max-width: 1300px) {
  .pribeh .flex p {
    font-size: 30px;
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .pribeh .flex p {
    margin-left: 0px;
    padding: 5%;
    padding-left: 7%;
  }
}

.pribeh .flex:first-child p {
  padding-block: 5% 0%;
}

.pribeh .img-2 {
  min-width: 48vw !important;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .pribeh .flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .pribeh .flex:last-child {
    flex-direction: column-reverse;
  }
}

.landing {
  margin-inline: 1.25%;
  margin-top: 20px;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../img/landing.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .landing {
    margin-inline: 0%;
  }
}

.landing img {
  width: 25vw;
  min-width: 600px;
}
@media (max-width: 768px) {
  .landing img {
    min-width: 400px;
  }
}
@media (max-width: 550px) {
  .landing img {
    min-width: 300px;
  }
}
@media (max-width: 350px) {
  .landing img {
    min-width: 250px;
  }
}

.landing div {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .landing div {
    flex-direction: column;
    width: 120%;
  }
}

.landing div a {
  margin-top: 10px;
}
@media (max-width: 1300px) {
  .landing div a {
    font-size: 20px;
  }
}

.landing div a:last-child {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .landing div a:last-child {
    margin-left: 0px;
  }
}

.double-img {
  margin-top: 20px;
  margin-inline: 1.25%;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
}
@media (max-width: 768px) {
  .double-img {
    grid-template-columns: 100%;
    margin-inline: 0%;
    margin-top: 0px;
  }
}

.double-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  width: 100%;
  height: 100%;
}

.onas-first {
  margin-inline: 1.25%;
  display: flex;
}
@media (max-width: 768px) {
  .onas-first {
    flex-direction: column;
    margin-top: 30px;
  }
}

.onas-first img {
  width: 50vw;
}
@media (max-width: 768px) {
  .onas-first img {
    width: 100%;
  }
}

.onas-first p {
  font-size: 40px;
  padding: 5%;
}
@media (max-width: 1080px) {
  .onas-first p {
    font-size: 30px;
    padding: 0%;
    padding-left: 1%;
  }
}
@media (max-width: 768px) {
  .onas-first p {
    padding-inline: 5%;
  }
}

.year {
  margin-inline: 1.25%;
  display: flex;
}
@media (max-width: 768px) {
  .year {
    flex-direction: column;
    margin-inline: 0px;
    width: 100%;
  }
}
.year div:first-child {
  font-size: 130px;
  font-family: Rift-bold;
  height: 140px;
}
@media (max-width: 768px) {
  .year div:first-child {
    color: white;
    background-color: black;
    text-align: center;
  }
}
.year div:last-child {
  background-color: black;
  color: white;
  text-align: center;
  align-content: center;
  height: 100px;
  margin-top: 35px;
  margin-left: 25px;
  width: 100%;
  font-size: 30px;
}
@media (max-width: 768px) {
  .year div:last-child {
    margin-top: 0px;
    margin-left: 0px;
    text-align: center;
    height: 100%;
    padding-bottom: 20px;
    padding-top: 10px;
  }
}

.onas-second {
  margin-inline: 1.25%;
  margin-top: 30px;
  display: grid;
  width: 100%;
  grid-template-columns: 48.75% 48.75%;
}
@media (max-width: 768px) {
  .onas-second {
    grid-template-columns: 100%;
    width: auto;
  }
}

.onas-second img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .onas-second img {
    width: 100%;
  }
}

.onas-second p {
  font-size: 40px;
  padding: 50px;
}
@media (max-width: 1080px) {
  .onas-second p {
    font-size: 30px;
    padding: 0%;
    padding-right: 1%;
  }
}
@media (max-width: 768px) {
  .onas-second p {
    padding-inline: 5%;
  }
}

.onas-second .black-box {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .onas-second .black-box {
    justify-content: flex-start;
    margin-left: -1.25%;
    margin-top: -40px;
  }
}
.onas-second .black-box p {
  padding: 10px;
  background-color: black;
  height: 200px;
  min-width: 200px;
  max-width: 200px;
  color: white;
  font-size: 30px;
  width: 50%;
  margin-top: 0px;
}
@media (max-width: 1080px) {
  .onas-second .black-box p {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .onas-second .black-box p {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .onas-second .black-box p {
    font-size: 20px;
    min-width: 150px;
    max-width: 150px;
    height: 150px;
  }
}
.onas-second div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .onas-second div:last-child {
    margin-left: 200px;
    margin-top: -200px;
  }
}
@media (max-width: 600px) {
  .onas-second div:last-child {
    margin-left: 150px;
  }
}
@media (max-width: 428px) {
  .onas-second div:last-child {
    margin-top: -140px;
  }
}
.onas-second div:last-child p {
  padding-left: 30px;
  font-size: 30px;
  margin-top: 0px;
}
@media (max-width: 1080px) {
  .onas-second div:last-child p {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .onas-second div:last-child p {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .onas-second div:last-child p {
    font-size: 20px;
  }
}

.onas-third {
  padding-left: 50px;
  margin-inline: 1.25%;
}
@media (max-width: 768px) {
  .onas-third {
    padding-left: 0px;
    margin-top: 50px;
  }
}
.onas-third div:first-child {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #9A9A9A;
  font-family: Rift-bold;
  font-size: 30px;
}
.onas-third div:first-child span {
  margin-top: -50px;
  color: black;
  font-size: 200px;
}
@media (max-width: 768px) {
  .onas-third div:first-child {
    padding-inline: 3%;
    width: auto;
  }
}
.onas-third div:last-child {
  margin-top: -150px;
  font-size: 40px;
  color: black;
  padding-bottom: 50px;
}
@media (max-width: 1080px) {
  .onas-third div:last-child {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .onas-third div:last-child {
    padding-inline: 5%;
  }
}

.cenik-first {
  margin-inline: 2.5%;
}

.cenik-first .head {
  margin-top: 50px;
  font-size: 25px;
  font-family: Rift-bold;
}
.cenik-first .head span:first-child {
  color: #9A9A9A;
}
.cenik-first .head span:last-child {
  color: black;
}

.cenik-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  height: 400px;
  gap: 5%;
}
@media (max-width: 768px) {
  .cenik-grid {
    grid-template-columns: 100%;
    height: 100%;
    padding-bottom: 130px;
  }
}

.cenik-grid .box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5%;
  padding-top: 15%;
}
@media (max-width: 768px) {
  .cenik-grid .box {
    height: 30vw;
    min-height: 320px;
  }
}

.cenik-grid .box {
  color: black;
  background-color: white;
  border: 1px solid black;
}

.cenik-grid .box:first-child {
  color: white;
  background-color: black;
}

.cenik-grid .box .price {
  font-size: 90px;
  font-family: Rift-bold;
}
.cenik-grid .box .price div {
  color: #9A9A9A;
  font-size: 20px;
}

.cenik-grid .box .box-under {
  font-size: 30px;
}
@media (max-width: 1080px) {
  .cenik-grid .box .box-under {
    font-size: 25px;
  }
}

.cenik-grid .box .box-under div:last-child {
  font-size: 20px;
}

.cenik-sluzby {
  margin-top: 30px;
  padding-block: 2%;
  margin-inline: 2.5%;
  border-block: 1px solid black;
}
@media (max-width: 768px) {
  .cenik-sluzby {
    padding-bottom: 6%;
  }
}

.cenik-second {
  margin-top: 30px;
  margin-inline: 2.5%;
  display: flex;
}
.cenik-second .vykricniky {
  font-size: 80px;
}
.cenik-second div {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  padding-top: 1%;
  font-size: 28px;
  font-family: Rift-bold;
}
@media (max-width: 1550px) {
  .cenik-second div {
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .cenik-second div {
    margin-top: 15px;
  }
}

.rezervace-box {
  position: relative;
  margin-block: 50px;
  margin-inline: 2.5%;
  color: white;
  padding: 10%;
  text-align: center;
}
.rezervace-box div {
  font-size: 40px;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .rezervace-box div {
    text-align: left;
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .rezervace-box {
    margin-bottom: 0px;
  }
}
.rezervace-box .rezervace-text {
  padding-inline: 25%;
}
@media (max-width: 1500px) {
  .rezervace-box .rezervace-text {
    padding-inline: 0%;
  }
}
@media (max-width: 768px) {
  .rezervace-box .rezervace-text {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .rezervace-box .rezervace-text {
    width: 100%;
  }
}
.rezervace-box .btn {
  padding-inline: 80px;
}
@media (max-width: 768px) {
  .rezervace-box {
    padding-inline: 5%;
    text-align: left;
    padding-top: 50%;
    margin-inline: 0px;
  }
}

.galerie {
  margin-top: 20px;
  margin-inline: 2.5%;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 30px 2%;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .galerie {
    grid-template-columns: 49% 49%;
  }
}
@media (max-width: 550px) {
  .galerie {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
  }
}

.gallery-item {
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
  height: 400px;
}
@media (max-width: 1080px) {
  .gallery-item {
    height: 300px;
  }
}
.gallery-item:hover {
  transform: scale(1.05);
  filter: grayscale(0.5);
}
@media (max-width: 550px) {
  .gallery-item:not(:first-child) {
    margin-top: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  max-width: 800px;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ffffff;
  padding: 10px 0;
  height: 150px;
  font-size: 20px;
  font-family: "Rift-bold";
}
@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.gal-hidden {
  display: none;
}

@media (max-width: 550px) {
  .gal-btns::-webkit-scrollbar {
    display: none;
  }
}

.gal-btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 550px) {
  .gal-btns {
    white-space: nowrap;
    justify-content: left;
    margin-left: 1.5%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.gal-btns .btn:not(:first-child) {
  margin-left: 10px;
}
@media (max-width: 550px) {
  .gal-btns .btn:last-child {
    margin-right: 1.5%;
  }
}
.gal-btns .btn:hover {
  cursor: pointer;
  color: black;
}
.gal-btns .btn {
  color: #9A9A9A;
  border: 2px solid gray;
}
@media (max-width: 400px) {
  .gal-btns .btn {
    min-width: 100px;
  }
}
.gal-btns .gal-active {
  border: 2px solid black;
  background-color: black;
  color: white;
}
.gal-btns .gal-active:hover {
  color: white;
}

.rad {
  margin-inline: 10%;
}
.rad .rad-nadpis {
  font-size: 35px;
  margin-top: 70px;
  margin-bottom: 40px;
}
.rad li {
  font-size: 25px;
  margin-block: 10px;
}
@media (max-width: 768px) {
  .rad li {
    padding-right: 5%;
  }
}
@media (max-width: 768px) {
  .rad {
    margin-inline: 1.25%;
  }
}

.vylety {
  margin-inline: 2.5%;
  margin-top: 100px;
  margin-bottom: 100px;
}
.vylety .vylet-img {
  width: 50vw;
  -o-object-position: left;
     object-position: left;
  max-height: 50vw;
}
@media (max-width: 768px) {
  .vylety .vylet-img {
    width: 100%;
    max-height: 100%;
  }
}
.vylety .vylet {
  margin-top: 80px;
  display: flex;
}
@media (max-width: 768px) {
  .vylety .vylet {
    flex-direction: column;
    margin-top: 50px;
  }
}
.vylety .flex-column-space-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: 5%;
}
.vylety .flex-column-space-between p {
  font-size: 30px;
}
@media (max-width: 768px) {
  .vylety .flex-column-space-between {
    margin-top: 10px;
    margin-inline: 0%;
    padding-inline: 2%;
  }
}
.vylety .vylet-nadpis {
  font-size: 50px;
}
.vylety .qr {
  width: 150px;
}
.vylety .vylet:nth-child(even) {
  flex-direction: row-reverse;
}
.vylety .vylet:nth-child(even) .flex-column-space-between {
  margin-left: 0px;
}
@media (max-width: 768px) {
  .vylety .vylet:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .vylety {
    margin-top: 50px;
    margin-bottom: 0px;
  }
}

.kontakt {
  margin-top: 80px;
  margin-inline: 2.5%;
  font-size: 25px;
}
.kontakt .kontakt-grid {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 2%;
}
@media (max-width: 768px) {
  .kontakt .kontakt-grid {
    grid-template-columns: 100%;
  }
}
.kontakt .kontakt-box {
  border: 2px solid black;
  padding: 20px;
}
@media (max-width: 768px) {
  .kontakt .kontakt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }
  .kontakt .kontakt-box img {
    width: 40px;
    height: 40px;
  }
}
.kontakt a {
  text-decoration: none;
  color: black;
  position: relative;
}
.kontakt a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 0.25s ease-out;
}
.kontakt a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
.kontakt .map {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.kontakt .map iframe {
  width: 66%;
  border: none;
}
.kontakt .map img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 32%;
  height: 400px;
}
@media (max-width: 1080px) {
  .kontakt .map {
    flex-direction: column;
  }
  .kontakt .map img, .kontakt .map iframe {
    width: 100%;
    height: 500px;
  }
  .kontakt .map img {
    margin-top: 30px;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .kontakt .map {
    display: none;
  }
}
.kontakt .img-mobile {
  display: none;
}
@media (max-width: 768px) {
  .kontakt .img-mobile {
    display: block;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
}

h1 {
  position: absolute;
  opacity: 0;
  z-index: -2222;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */