@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Inter", sans-serif;
}

h1, h2, h3 {
  font-family: "Inter", sans-serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  width: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 2rem 5rem;
  gap: 3rem;
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
header .logo {
  width: 24rem;
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .toggler {
  width: 5.5rem;
  height: 5.5rem;
  background: #000000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
header .toggler svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: #ffffff !important;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.scrolled {
  background: white;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

nav {
  width: 42rem;
  background: #000000;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 5rem;
  /* Výchozí stav menu - pozadí je skryté */
  -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out, -webkit-clip-path 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out, -webkit-clip-path 0.5s ease-out;
  transition: clip-path 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: clip-path 0.5s ease-out, opacity 0.5s ease-out, visibility 0.5s ease-out, -webkit-clip-path 0.5s ease-out;
}
nav .nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 3rem;
}
nav .nav-header .logo {
  width: 24rem;
}
nav .nav-header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .nav-header .toggler {
  width: 5.5rem;
  height: 5.5rem;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
nav .nav-header .toggler svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: #000000 !important;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
nav ul li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
nav ul li a {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 500;
  margin: 1rem 0;
}
nav .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.open {
  /* Když je menu otevřené, pozadí se postupně vykreslí */
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
  opacity: 1;
  visibility: visible;
}

main {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-areas: "main-img inner-img" "main-img inner-img" "main-img inner-img" "main-img main-text";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
main .main-img {
  width: 100%;
  height: 100%;
  grid-area: main-img;
}
main .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .inner-img {
  width: 100%;
  height: 100%;
  grid-area: inner-img;
}
main .inner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .main-text {
  grid-area: main-text;
  width: 100%;
  height: 100%;
  background: #000000;
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
main .main-text .main-text-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
main .main-text .main-text-content p {
  font-size: 2rem;
  color: #ffffff;
}
main .main-text .main-text-btn {
  width: 10rem;
  height: 10rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
}
main .main-text .main-text-btn a {
  width: 60%;
  height: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
main .main-text .main-text-btn a svg {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: translateZ(0);
  fill: #000000 !important;
}
main .main-text .main-text-btn a:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

section {
  padding: 10rem 15rem;
}

#prolog {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10rem;
}
#prolog .prolog-txt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
#prolog .prolog-txt .prolog-txt-heading .square {
  width: 5rem;
  height: 5rem;
  background: #000000;
  margin-bottom: 2rem;
}
#prolog .prolog-txt .prolog-txt-heading h2 {
  font-size: 10rem;
  padding: 1rem 2rem;
  padding-top: 2rem;
  background: #000000;
  color: #ffffff;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5rem;
  font-weight: 800;
}
#prolog .prolog-txt .prolog-txt-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
}
#prolog .prolog-txt .prolog-txt-content p {
  font-size: 2rem;
}
#prolog .prolog-img {
  width: 100%;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
#prolog .prolog-img img {
  width: 100%;
  height: 100%;
  max-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
#prolog .prolog-img .labels {
  width: 100%;
  padding-top: 2rem;
  position: relative;
  top: 0;
  right: 0;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#prolog .prolog-img .labels .label {
  margin-bottom: 3rem;
}
#prolog .prolog-img .labels .label h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #000000;
}

#work {
  padding-top: 0;
}
#work h2 {
  font-size: 10rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  font-weight: 800;
}
#work .categories {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 3rem;
}
#work .categories a {
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#work .categories a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#work .categories a .category {
  aspect-ratio: 1;
  position: relative;
}
#work .categories a .category .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  overflow: hidden;
}
#work .categories a .category .overlay h3 {
  width: 100%;
  text-align: center;
  letter-spacing: 20px;
  font-size: 2.2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  word-wrap: break-word;
}

footer {
  width: 100%;
  padding: 0 15rem;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer p {
  font-size: 2rem;
  color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
}
footer p a {
  color: #ffffff;
}
footer p svg {
  width: 2rem;
  fill: #ffffff !important;
}

.active {
  border-bottom: 3px dotted #ffffff;
  padding-bottom: 0.5rem;
}

#about {
  width: 100%;
  min-height: calc(100dvh - 6.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15rem;
  padding-top: 16rem;
}
#about .about-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-txt h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5rem;
}
#about .about-txt p {
  font-size: 2rem;
  padding-bottom: 5rem;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 10%;
  aspect-ratio: 1;
  max-height: 75rem;
  max-width: 75rem;
}
#about .about-img .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}
#about .about-img .socials .social {
  margin: 2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#about .about-img .socials .social .icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1.5rem;
}
#about .about-img .socials .social .icon svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: #ffffff !important;
}
#about .about-img .socials .social p {
  font-size: 2rem;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 2rem;
  background: #000000;
  padding: 1.5rem 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  font-weight: 500;
  border: 3px solid #000000;
}
.btn:hover {
  background: #ffffff;
  border: 3px solid #000000;
  color: #000000;
}

#portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  padding-top: 16rem;
}
#portfolio h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5rem;
}
#portfolio a {
  width: 100%;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  margin-bottom: 5rem;
}
#portfolio a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#portfolio a .portfolio-category {
  width: 100%;
  height: 65rem;
  aspect-ratio: 1;
  position: relative;
}
#portfolio a .portfolio-category .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  overflow: hidden;
}
#portfolio a .portfolio-category .overlay h3 {
  width: 100%;
  text-align: center;
  letter-spacing: 30px;
  font-size: 4rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  word-wrap: break-word;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 2;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #000000;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: 3px solid #000000;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #000000;
  background: transparent;
  padding: 0.7rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border: 3px solid #000000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#rules {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16rem;
}
#rules .rules-content {
  width: 80%;
  margin: 0 auto;
}
#rules .rules-content h1 {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5rem;
  text-align: center;
}
#rules .rules-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

#sliders {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  padding-top: 16rem;
  gap: 5rem;
}
#sliders h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
}
#sliders .slider-category {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sliders .slider-category h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  margin-bottom: 2.5rem;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#sliders .slider-category .swiper {
  width: 100%;
  /* Posunuti pagination pod slidy */
  /* Černé kuličky pro aktivní pagination */
  /* Tmavší černá pro aktivní kuličku */
  /* Při hover efektu na kuličky */
}
#sliders .slider-category .swiper .swiper-slide {
  width: 100%;
  padding-bottom: 5rem;
}
#sliders .slider-category .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
#sliders .slider-category .swiper .swiper-pagination {
  text-align: center;
}
#sliders .slider-category .swiper .swiper-pagination-bullet {
  background-color: #888 !important; /* Šedá pro neaktivní kuličky */
  opacity: 1; /* Zajistí, že kuličky budou neprůhledné */
}
#sliders .slider-category .swiper .swiper-pagination-bullet-active {
  background-color: #000 !important; /* Černá pro aktivní kuličky */
}
#sliders .slider-category .swiper .swiper-pagination-bullet:hover {
  background-color: #555 !important; /* Tmavší šedá pro hover efekt */
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a {
  margin: 0.5rem;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a svg {
  width: 1rem;
}
.pagination .p-active {
  font-weight: bold;
}

#private-gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  padding-top: 16rem;
  position: relative;
}
#private-gallery h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 2rem;
}
#private-gallery h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  margin-bottom: 2.5rem;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#private-gallery .btn {
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#private-gallery .btn svg {
  width: 2.5rem;
  margin-right: 1.5rem;
  fill: #ffffff !important;
}
#private-gallery .btn:hover svg {
  fill: #000000 !important;
}
#private-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 3rem;
  margin-bottom: 5rem;
}
#private-gallery .gallery a {
  width: 100%;
  height: 100%;
}
#private-gallery .gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#private-gallery .gallery a img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.login {
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px); /* Rozmazání pozadí */
  z-index: 10;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login .login-popup {
  width: 60rem;
  background: #ffffff;
  padding: 3rem;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login .login-popup h1 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.login .login-popup p {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.login .login-popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login .login-popup form input {
  padding: 0.8rem;
  outline: none;
  background: none;
  border: 3px solid #000000;
  color: #000000;
  font-size: 2rem;
  width: 100%;
}
.login .login-popup form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 2rem;
  background: #000000;
  padding: 0.8rem 2rem;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  font-weight: 500;
  border: 3px solid #000000;
  cursor: pointer;
  margin-top: 2rem;
}
.login .login-popup form input[type=submit]:hover {
  background: #ffffff;
  border: 3px solid #000000;
  color: #000000;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
  width: 100%;
  min-height: 100dvh;
  padding-top: 16rem;
}
#contact .contact-content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#contact .contact-content h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0rem;
}
#contact .contact-content p {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
#contact .contact-content form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
#contact .contact-content form input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 2rem;
  border-bottom: 2px solid rgb(173, 181, 189);
  padding: 0.5rem;
  color: #000000;
}
#contact .contact-content form input::-webkit-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form input::-moz-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form input:-ms-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form input::-ms-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form input::placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form textarea {
  width: 100%;
  min-height: 3.5rem;
  border: none;
  outline: none;
  font-size: 2rem;
  border-bottom: 2px solid rgb(173, 181, 189);
  padding: 0.5rem;
  color: #000000;
  resize: vertical;
}
#contact .contact-content form textarea::-webkit-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form textarea::-moz-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form textarea:-ms-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form textarea::-ms-input-placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form textarea::placeholder {
  color: rgb(173, 181, 189);
}
#contact .contact-content form .row {
  gap: 1.5rem;
}
#contact .contact-content form label {
  font-size: 2rem;
  color: rgb(173, 181, 189);
}
#contact .contact-content form input[type=date] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-content form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 2rem;
  background: #000000;
  padding: 0.8rem 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  font-weight: 500;
  border: 3px solid #000000;
  cursor: pointer;
  -ms-flex-item-align: end;
      align-self: end;
}
#contact .contact-content form input[type=submit]:hover {
  background: #ffffff;
  border: 3px solid #000000;
  color: #000000;
}
#contact .contact-content .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#contact .contact-content .socials .social {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#contact .contact-content .socials .social h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  word-break: keep-all;
  white-space: nowrap;
}
#contact .contact-content .socials .social p {
  font-size: 1.8rem;
  margin-bottom: 0;
  word-break: keep-all;
  white-space: nowrap;
}
#contact .contact-content .socials .social .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact .contact-content .socials .social .row a {
  margin-right: 1rem;
}
#contact .contact-content .socials .social .row a svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: #000000;
}
#contact .contact-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#contact .contact-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}

#services {
  width: 100%;
  min-height: 100dvh;
  padding-top: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#services h1 {
  font-size: 10rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0rem;
}
#services h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  background: #000000;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#services .packages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin: 5rem 0;
}
#services .packages .package {
  width: 42rem;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3rem;
  border: 3px dashed #000000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#services .packages .package:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  cursor: pointer;
}
#services .packages .package img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  width: 12rem;
  height: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2rem;
}
#services .packages .package h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
#services .packages .package ul {
  margin-bottom: 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1rem;
}
#services .packages .package ul li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  list-style-type: disc;
  list-style-position: inside;
}
#services .packages .package h4 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
#services .packages .package .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 1rem 4rem;
}
#services .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5rem;
}
#services .info p {
  font-size: 2rem;
}
#services .info h3 {
  font-size: 3rem;
}

@media (min-width: 1921px) {
  html {
    font-size: 12.5px;
  }
  #prolog .prolog-img img {
    max-height: 1000px;
  }
}
@media (max-width: 1600px) {
  #work .categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9px;
  }
  #prolog {
    gap: 8rem;
  }
  #prolog .prolog-txt .prolog-txt-heading h2 {
    font-size: 8rem;
  }
  #work h2 {
    font-size: 8rem;
  }
  section {
    padding: 5rem 10rem;
  }
  footer {
    padding: 0 10rem;
  }
  #about {
    gap: 10rem;
  }
  #about .about-txt h1 {
    font-size: 8rem;
  }
  #about .about-img .socials .social {
    margin: 1rem;
  }
  #about .about-img .socials .social .icon {
    width: 4.5rem;
    height: 4.5rem;
    margin-right: 1rem;
  }
  #about .about-img .socials .social .icon svg {
    width: 2rem;
    height: 2rem;
  }
  #about .about-img .socials .social p {
    font-size: 1.6rem;
  }
  #portfolio h1 {
    font-size: 8rem;
  }
  #rules .rules-content {
    width: 85%;
    margin: 0 auto;
  }
  #sliders h1 {
    font-size: 8rem;
  }
  #private-gallery h1 {
    font-size: 8rem;
  }
  #contact {
    gap: 10rem;
  }
  #contact .contact-content h1 {
    font-size: 8rem;
  }
  #services h1 {
    font-size: 8rem;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 8.5px;
  }
  #about {
    gap: 8rem;
    padding-top: 12rem;
  }
  #portfolio {
    padding-top: 12rem;
  }
  #sliders {
    padding-top: 12rem;
  }
  #private-gallery {
    padding-top: 12rem;
  }
  #contact {
    gap: 8rem;
    padding-top: 12rem;
  }
  #services {
    padding-top: 12rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px;
  }
  #prolog {
    gap: 5rem;
  }
  #prolog .prolog-txt .prolog-txt-heading h2 {
    font-size: 6rem;
  }
  #prolog .prolog-txt .prolog-txt-heading .square {
    width: 4rem;
    height: 4rem;
  }
  #work h2 {
    font-size: 6rem;
  }
  #work .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  section {
    padding: 5rem 8rem;
  }
  footer {
    padding: 0 8rem;
  }
  #about .about-txt h1 {
    font-size: 6rem;
  }
  #about .about-img .socials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #portfolio h1 {
    font-size: 6rem;
  }
  #rules .rules-content {
    width: 100%;
  }
  #sliders h1 {
    font-size: 6rem;
  }
  #sliders .slider-category .swiper-slide {
    width: 50%;
  }
  #private-gallery h1 {
    font-size: 6rem;
  }
  #private-gallery .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  #contact {
    gap: 5rem;
  }
  #contact .contact-content {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  #contact .contact-content h1 {
    font-size: 6rem;
  }
  #contact .contact-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  #services h1 {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 7px;
  }
  #about {
    gap: 5rem;
  }
  section {
    padding: 5rem 5rem;
  }
  footer {
    padding: 0 5rem;
  }
  #portfolio a .portfolio-category {
    aspect-ratio: 1 !important;
    width: 100%;
    height: auto;
  }
  #portfolio a .portfolio-category .overlay h3 {
    letter-spacing: 20px;
    font-size: 3rem;
  }
  #private-gallery .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #contact .contact-content {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact .contact-content form {
    width: 100%;
  }
  #contact .contact-img {
    width: 75%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (max-width: 600px) {
  main {
    display: grid;
    grid-template-areas: "inner-img" "inner-img" "inner-img" "main-text";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  main .main-img {
    display: none;
  }
  #prolog {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #prolog .prolog-img .labels .label h3 {
    font-size: 2rem;
  }
  #work .categories {
    grid-template-columns: repeat(1, 1fr);
  }
  footer {
    padding: 1rem 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer p {
    padding: 1.5rem;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #portfolio a .portfolio-category .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #portfolio a .portfolio-category .overlay h3 {
    letter-spacing: 3px;
  }
  #sliders .slider-category .swiper-slide {
    width: 100%;
  }
  #private-gallery h2 {
    font-size: 3rem;
  }
  #private-gallery .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact .contact-content {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #contact .contact-content form {
    width: 100%;
    margin-bottom: 4rem;
  }
  #contact .contact-content form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-img {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media (max-width: 425px) {
  header {
    width: 100%;
  }
  nav {
    width: 100%;
  }
  nav .nav-header {
    width: 100%;
  }
  nav ul li a {
    font-size: 3.5rem;
  }
  nav .socials {
    padding-bottom: 3rem;
  }
  nav .socials p {
    font-size: 2.5rem;
  }
  main {
    gap: 0;
  }
  #prolog .prolog-img .labels .label h3 {
    font-size: 1.7rem;
  }
  .cookies {
    width: 100%;
  }
  #rules .rules-content h1 {
    font-size: 4rem;
  }
  #private-gallery h2 {
    font-size: 2.5rem;
  }
  .login .login-popup {
    width: 90%;
  }
  #services .packages .package {
    width: 100%;
  }
}
@media (max-width: 320px) {
  #prolog .prolog-img .labels .label h3 {
    font-size: 1.4rem;
  }
}