@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

.upheader {
  padding: 10px;
  background: #FEEC01;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upheader span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-align: center;
}
.upheader span a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

header {
  background: #0C0C0C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 7rem;
  padding: 0 5%;
  z-index: 100;
  position: relative;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5rem;
}
header .left .logo__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .left .logo__link .logo {
  height: 6rem;
}
header .left nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}
header .left nav .link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
header .left nav .link img {
  height: 1.5em;
}
header .left nav .link:hover {
  transform: scale(1.05);
}
header .left nav .link a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
header .left nav .link:hover, header .left nav .link.active {
  color: #fff;
}
header .left nav .link:hover .dropdown__menu, header .left nav .link.active .dropdown__menu {
  display: flex;
}
header .left nav .link svg {
  height: 1.25em;
  width: 1.25em;
}
header .left nav .link .dropdown__menu {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  transform: translateY(100%);
  min-width: 300px;
  background: #101010;
  padding: 20px;
  row-gap: 5px;
}
header .left nav .link .dropdown__menu a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}
header .left nav .link .dropdown__menu a:hover {
  color: #fff;
}
header .btn a {
  font-size: 1.1em;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column wrap;
  height: 1.5rem;
  width: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
header .ham div {
  height: 2px;
  width: 100%;
  background: #FEEC01;
  margin: 0.15rem 0;
  border-radius: 1rem;
  transition: 0.5s ease-in-out;
}
header .ham .ham-active:nth-child(1) {
  transform: translate(0, 7px) rotate(45deg);
  background: #FEEC01;
}
header .ham .ham-active:nth-child(2) {
  opacity: 0;
}
header .ham .ham-active:nth-child(3) {
  width: 100%;
  transform: translate(0, -7px) rotate(-45deg);
  background: #FEEC01;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: rgba(0, 0, 0, 0.9);
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  font-weight: 700;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .btn {
  width: 80%;
  margin: 0 auto;
  margin-top: 1rem;
}
.offcanvas .btn a {
  width: 100%;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}
.offcanvas .icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.offcanvas .icons a {
  text-decoration: none;
  color: #000;
  transition: 0.25s ease;
  border-bottom: none;
}
.offcanvas .icons a:hover {
  color: #000;
}
.offcanvas .icons a svg {
  height: 25px;
  width: 25px;
  stroke-width: 2;
}

#offcanvas2 {
  z-index: 41;
}

@media only screen and (max-width: 1300px) {
  header .left {
    gap: 2.5rem;
  }
  header .left .logo__link .logo {
    height: 5rem;
  }
  header .left nav {
    gap: 1rem;
  }
  header .left nav a {
    font-size: 12px;
  }
  header .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1065px) {
  .upheader span {
    font-size: 12px;
  }
  header {
    height: 5rem;
  }
  header .left .logo__link .logo {
    height: 4rem;
  }
  header .left nav {
    display: none;
  }
  header .btn {
    display: none;
    order: 2;
  }
  header .btn a {
    font-size: 0.8em;
  }
  header .right {
    display: flex;
    justify-content: start;
    align-items: end;
    flex-flow: column;
    gap: 1rem;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.15s linear;
}
.btn a {
  background: #FEEC01;
  padding: 0.75em 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
.btn a svg {
  height: 1.5em;
  width: 1.5em;
  stroke-width: 2.25;
}
.btn:hover {
  transform: scale(1.1);
}

#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 1300px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
footer {
  padding: 4rem 5%;
  background: #0C0C0C;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  height: 7.5rem;
}
footer nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4rem;
}
footer nav a {
  font-size: 1.2em;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
footer nav a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0;
  background: #FEEC01;
  transition: 0.15s linear;
}
footer nav a:hover::after {
  width: 100%;
}

@media only screen and (max-width: 1300px) {
  footer nav {
    gap: 2rem;
  }
  footer nav a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 900px) {
  footer {
    padding: 4rem 5%;
  }
  footer .logo {
    height: 5rem;
  }
  footer nav a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    padding: 3.5rem 10%;
  }
  footer .logo {
    margin-bottom: 2rem;
  }
  footer nav {
    flex-flow: column;
    gap: 1.5rem;
  }
}
.contact__form__parent {
  padding: 7.5rem 10%;
  background: rgb(12, 12, 12);
  background: linear-gradient(180deg, rgb(12, 12, 12) 0%, rgb(32, 32, 32) 100%);
  position: relative;
  overflow: hidden;
}
.contact__form__parent::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 150%;
  background: #FEEC01;
  z-index: 1;
  transform: rotate(30deg) translate(10%, -10%);
}

.contact__form {
  width: 100%;
  background: rgb(12, 12, 12);
  background: linear-gradient(0deg, rgb(12, 12, 12) 0%, rgb(32, 32, 32) 100%);
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  position: relative;
  z-index: 2;
}
.contact__form .form__content {
  width: 100%;
  padding: 4rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 2.5rem;
}
.contact__form .form__content input {
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1.15em;
  color: #fff;
}
.contact__form .form__content input:focus {
  outline: none;
}
.contact__form .form__content textarea {
  height: 10rem;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  resize: none;
  color: #fff;
  font-size: 1.15em;
}
.contact__form .form__content textarea:focus {
  outline: none;
}
.contact__form .form__content .btn a {
  font-size: 1.35em;
}
.contact__form img {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media only screen and (max-width: 1300px) {
  .contact__form__parent {
    padding: 3.5rem 5%;
  }
  .contact__form {
    grid-template-columns: 1fr;
  }
  .contact__form img {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .contact__form__parent {
    padding: 2.5rem 5%;
  }
  .contact__form .form__content {
    padding: 2.5rem 1.5rem;
  }
  .contact__form .form__content input, .contact__form .form__content textarea {
    font-size: 0.9em;
  }
  .contact__form .form__content .btn a {
    font-size: 1.15em;
  }
}
.notification {
  height: 5rem;
  max-width: 75vw;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  animation: 5s notification ease-in-out forwards;
  z-index: 500;
}
.notification.positive {
  background: #00a666;
}
.notification.negative {
  background: #B22222;
}
.notification span {
  font-family: "HelveticaNowLight", sans-serif;
  color: #fff;
  font-size: 1.1em;
  text-align: center;
}

@keyframes notification {
  0% {
    transform: translate(-50%, -100%);
  }
  10% {
    transform: translate(-50%, 0%);
  }
  90% {
    transform: translate(-50%, 0%);
  }
  100% {
    transform: translate(-50%, -100%);
  }
}
@media screen and (max-width: 700px) {
  .notification {
    max-width: 100%;
    width: 100%;
  }
}
/* Nastavení pozadí banneru a barvy textu */
#cc--main, #cm {
  background: #0D0D0D !important; /* Pozadí banneru */
  color: #FFFFFF; /* Bílý text */
}

/* Barva textu v popisu a nadpisech */
#cc--main h2,
#cc--main p,
#cc--main span, #cc--main #c-txt {
  color: #FFFFFF; /* Bílý text */
}

/* Styl tlačítek "Souhlasím" */
#cc--main button#c-p-bn {
  background-color: #FEEC01; /* Žluté pozadí */
  color: #0D0D0D; /* Černý text na tlačítku */
  border: none;
  padding: 10px 20px;
  border-radius: 5px; /* Mírně zakulacené rohy */
  font-weight: bold;
  cursor: pointer;
}
#cc--main button#c-p-bn span {
  color: #0D0D0D;
}

/* Styl ostatních tlačítek (např. "Přizpůsobit") */
#cc--main button#c-s-bn {
  background-color: #FFFFFF; /* Bílé pozadí */
  color: #0D0D0D !important; /* Černý text */
  border: 1px solid #FFFFFF; /* Bílý okraj */
  padding: 10px 20px;
  border-radius: 5px; /* Mírně zakulacené rohy */
  cursor: pointer;
}
#cc--main button#c-s-bn span {
  color: #0D0D0D;
}

/* Hover efekty pro tlačítka */
#cc--main button#c-p-bn:hover {
  background-color: #E6D501; /* Tmavší žlutá při najetí */
  color: #0D0D0D; /* Černý text */
}

#cc--main button#c-s-bn:hover {
  background-color: #E6E6E6; /* Světle šedá při najetí */
  color: #0D0D0D; /* Černý text */
}

header#fixed__header {
  transform: none;
}

h1 {
  font-size: 3em;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  padding: 5rem 15% 0;
}

.validity {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 0.25rem;
}

.content {
  padding: 2.5rem 15%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 3rem;
}
.content section h2 {
  font-size: 2em;
  margin-bottom: 0.5rem;
}
.content section h3 {
  margin-top: 0.5rem;
}
.content section ul {
  padding-left: 20px;
}
.content section p, .content section ul li {
  line-height: 1.75em;
}
.content section p a, .content section ul li a {
  color: #000;
}

@media only screen and (max-width: 1300px) {
  h1 {
    font-size: 2.5em;
  }
  .validity {
    font-size: 1.25em;
  }
  .content section h2 {
    font-size: 1.65em;
  }
  .content section p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 1.75em;
    font-weight: 700;
  }
  .validity {
    font-size: 1em;
  }
  .content {
    padding: 2rem 10% 3rem;
    gap: 2rem;
  }
  .content section h2 {
    font-size: 1.35em;
    font-weight: 500;
  }
}
@media only screen and (max-width: 700px) {
  h1 {
    font-size: 1.75em;
  }
  .content section h2 {
    font-size: 1em;
  }
  .content section p, .content section ul li {
    font-size: 0.75em;
  }
}/*# sourceMappingURL=style.css.map */