@charset "UTF-8";
.pixly__container--potisky {
  width: 100%;
  height: 100%;
  min-height: 840px;
  display: inline-flex;
  position: relative;
  gap: 2px;
}

.pixly__container--potisky-column {
  height: 100%;
}

.pixly__container--potisky-img-overlay {
  width: 33%;
  max-width: 350px;
  height: 350px;
  position: absolute;
  right: 0;
  top: -5%;
  background-image: url("/assets/media/img/potisky-right-overaly.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}

.pixly__container--potisky-img-overlay2 {
  width: 33%;
  max-width: 250px;
  height: 250px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(/assets/media/img/potisky-left-overaly.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

.a1 {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.a2 {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.a1a {
  display: flex;
  align-items: flex-end;
}

.pixly__container--potisky-column-wrap {
  padding-top: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hexagon {
  width: 18vw; /* Šířka hexagonu */
  height: 18vw; /* Výška hexagonu */
  position: relative;
  margin: 0 auto;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  cursor: pointer;
  transition: 0.3s;
}
.hexagon:hover {
  scale: 1.1;
}

.position1 {
  position: absolute;
}

.position3 {
  position: absolute;
  z-index: 200;
}

.hexagon::before {
  content: "";
  position: absolute;
  top: -5px; /* Šířka borderu 5px */
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgb(203, 19, 169); /* Barva borderu */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Stejný tvar, větší o 5px */
  z-index: -1; /* Za obsahem */
}

.hexagon img {
  width: 95%; /* Zmenšení obrázku na 80% velikosti */
  height: 95%; /* Zmenšení obrázku na 80% velikosti */
  position: absolute; /* Absolutní pozice pro centrování */
  top: 50%; /* Posun na střed vertikálně */
  left: 50%; /* Posun na střed horizontálně */
  transform: translate(-50%, -50%); /* Centrování přesně na střed */
  -o-object-fit: cover;
     object-fit: cover; /* Zachování poměru stran */
  display: block;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.pixly__container--potisky-text {
  padding: 25px;
  margin-top: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 30px auto;
  width: 100%;
  z-index: 20;
}

.pixly__container--potisky-text p {
  text-align: justify;
  margin: 15px 0px;
}

.pixly__container--potisky-title {
  width: 100%;
  text-align: center;
  font-size: 2.5vw;
  padding: 28px 0 40px 0;
}

.pixly__container--grafika {
  width: 100%;
  height: calc(100vh + 250px);
  display: flex;
  background-color: rgb(0, 0, 0);
  clip-path: polygon(0% 100%, 0% 24.91%, 24.95% 35.62%, 36.01% 24.91%, 75.42% 27.99%, 82.97% 24.91%, 100% 24.91%, 100% 96.02%, 75.1% 87.11%, 64.01% 100%);
  margin-top: -200px;
  z-index: 0;
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding-top: 220px;
}

.pixly__container--grafika-overaly {
  max-width: 450px;
  height: auto;
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: 50;
}

.t2 {
  font-size: 3vw;
}

.pixly__container--grafika-content {
  padding: 25px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin: 30px auto;
  width: 100%;
  z-index: 200;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pixly__container--grafika-content2 {
  max-width: 500px;
  margin: 30px auto;
  width: 100%;
  z-index: 200;
  transform: rotate(-25deg);
}

.pixly__container--grafika-content-title h2 {
  color: white;
  font-size: 3vw;
  text-align: center;
}

.pixly__container--grafika-text {
  color: white;
  text-align: justify;
}

.pixly__container--grafika-text p {
  margin-top: 50px;
}

.pixly__container--kontakt {
  width: 100%;
  position: relative;
}

.pixly__container--kontakt-title h2 {
  margin-top: 50px;
  font-size: 4rem;
  text-align: center;
}

.pixly__container--kontakt-form {
  width: 100%;
  margin-top: 50px;
}

#contactForm {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.767);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}

.form-group input {
  height: 45px;
  border-radius: 9px;
  outline: none;
  border: 1px solid black;
}

.form-group label {
  margin-bottom: 3px;
}

.form-group textarea {
  border-radius: 9px;
  height: 200px;
}

.pixly__container--kontakt button {
  border: none;
  background-color: transparent;
  color: white;
  font-size: 19px;
}

.button-container {
  background-color: rgb(206, 61, 143);
  color: white;
  box-shadow: rgb(255, 255, 255) 0px 0px 5px, rgb(255, 255, 255) 0px 0px 10px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  -o-border-image: initial;
  border-image: initial;
  padding: 14px 0px;
  border-radius: 18px;
  margin-top: 30px;
  text-align: center;
  width: 170px;
  font-size: 19px;
  cursor: pointer;
  transition: 0.3s;
}
.button-container:hover {
  background-color: rgb(172.4444444444, 43.5555555556, 116.4444444444);
}

.pixly__container--footer {
  width: 100%;
  height: 60px;
  background-color: #2C2D2C;
  color: white;
  text-align: center;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 20;
  position: relative;
}

.pixly-container--kontakt-overaly {
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-image: url(/assets/media/img/kontakty-bg-left.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

.pixly-container--kontakt-overaly-right {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url(/assets/media/img/kontakty-bg-right.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.modal {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.892);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  width: 100%;
  max-width: 800px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  border: 1px solid white;
  background-color: black;
}

.modal-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  padding: 10px;
  max-width: 100%;
}

.modal-thumbnail {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.modal-thumbnail.active {
  border: 2px solid #eb25c0;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.modal-prev,
.modal-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.665);
  color: #eb25c0;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

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

.pixly__container--hero-carousel-container {
  overflow: hidden;
  width: 100%;
}

.pixly__container--hero-carousel {
  display: flex;
  width: 100%;
}

.pixly__container--hero-carousel img {
  width: 100%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel__navigation-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel__navigation-item {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 1025px) {
  .pixly__container--potisky {
    flex-direction: column;
    gap: 0px;
  }
  .pixly__container--potisky-column {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .pixly__container--potisky-column-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-end;
    height: 260px;
  }
  .a2 {
    flex-direction: column;
  }
  .hexagon {
    width: 30vw;
    height: 30vw;
  }
  .position1 {
    position: absolute;
    position: absolute;
    top: -10%;
    left: 6%;
  }
  .position3 {
    position: absolute;
    left: 60%;
    top: 95%;
  }
  .a1 {
    position: relative;
    width: 100%;
  }
  .pixly__container--grafika h2 {
    font-size: 1.7rem;
  }
  .t2, .pixly__container--potisky-title h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  .a1a {
    align-items: normal;
  }
  .pixly__container--potisky-text {
    margin-top: 0px;
  }
  .pixly__container--grafika h2 {
    font-size: 1.7rem;
  }
  .pixly__container--grafika {
    height: calc(100vh + 250px);
  }
  .hexagon {
    width: 150px;
    height: 150px;
  }
  #contactForm {
    max-width: 410px;
  }
  .pixly__container--grafika-content {
    max-width: 410px;
  }
  .pixly__container--potisky-text {
    max-width: 410px;
  }
}
@media (max-width: 376px) {
  .position2 {
    margin-left: -45vw;
  }
  .position3 {
    position: absolute;
    left: 50%;
    top: 85%;
  }
  .position1 {
    position: absolute;
    position: absolute;
    top: -3%;
    left: 6%;
  }
  .pixly__container--potisky-text {
    max-width: 310px;
  }
  .pixly__container--grafika-content {
    max-width: 310px;
  }
  #contactForm {
    max-width: 310px;
  }
}/*# sourceMappingURL=styles.css.map */