:root {
  --white-clr: #ffffff;
  --black-clr: #000;
  --grey-text: #6c6c6c;
  --green-clr: #b1c700;
  --light-grey: #f3f3f3;
}

/* Lightbox Kustomizace*/
.lb-outerContainer {
  background-color: var(--dark-grey) !important;
}

.lightbox .lb-image {
  border: none !important;
}

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.loading_animation {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading_animation img {
  max-width: 360px;
  width: 80%;
}

body {
}

b {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 1.25rem;
  line-height: 1;
}

h1 {
  font-size: 2.95rem;
  margin-bottom: 2.25rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 2.25rem;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.5rem;
  box-shadow: none;
  border: none;
  background-color: var(--light-bg);
}

p,
li {
  line-height: 1.75;
  font-size: 1.15rem;
}

.content_width {
  width: 95%;
  max-width: 1600px;
}

@keyframes menubar {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

[data-closemenu] {
  display: none;
}

[data-openmenu] {
  height: 40px;
  width: 40px;
  margin: 0 0 0 1.5rem;
  border: none;
  color: transparent;
  position: relative;
  background: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 99;
  display: none;
}

[data-openmenu] span {
  display: block;
  width: 90%;
  height: 3px;
  background-color: var(--white-clr);
  transition: 0.25s;
  animation: menubar 3s ease-out;
  animation-delay: 0.15s;
}
.black [data-openmenu] span,
.black [data-openmenu]::before,
.black [data-openmenu]::after {
  background-color: var(--black-clr);
}

[data-openmenu]::before,
[data-openmenu]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 3px;
  background-color: var(--white-clr);
  transition: 0.25s;
  animation: menubar 3s ease-out;
  animation-fill-mode: forwards;
}

[data-openmenu]::before {
  transform: translate(-50%, -10px);
  bottom: 50%;
  top: unset;
  transition: 0.5s;
}

[data-openmenu]::after {
  transform: translate(-50%, 10px);
  animation-delay: 0.25s;
}

.btn {
  color: var(--black-clr);
  background: var(--green-clr);
  border-radius: 50px;
  padding: 0.95rem 1.25rem;
  text-decoration: none;
  display: block;
  width: fit-content;
  transition: 0.25s;
}

.btn:hover {
  -webkit-box-shadow: 0px 0px 21px 0px rgba(217, 217, 217, 1);
  -moz-box-shadow: 0px 0px 21px 0px rgba(217, 217, 217, 1);
  box-shadow: 0px 0px 21px 0px rgba(217, 217, 217, 1);
}

.textbtn {
  position: relative;
  display: inline-flex;
  padding: 0.5rem 80px 0.5rem 0.5rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.textbtn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: 1px;
  width: 60px;
  background: var(--white-clr);
}

.textbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translate(0, -50%) rotate(90deg);
  border-bottom: 5px var(--white-clr) solid;
  border-left: 5px transparent solid;
  border-right: 5px transparent solid;
}

.textbtn.black::after {
  border-bottom: 5px var(--black-clr) solid;
}

.textbtn.black::before {
  background: var(--black-clr);
}

.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 580px;
  max-height: 100%;
  height: 90vh;
  z-index: 2;
  overflow: hidden;
  background: var(--white-clr);
}

.floating-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-bg.bottom img {
  object-position: bottom;
}

.floating-bg.fixed img {
  position: fixed;
  top: 0;
}

.floating-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-clr);
  opacity: 0.45;
}

.index-header .floating-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-clr);
  opacity: 0.45;
  mix-blend-mode: hue;
}
.index-header .floating-bg img {
  opacity: 0.75;
}
.hdr-article {
  color: var(--black-clr);
  padding: 40vh 0 0 0;
  position: relative;
  z-index: 2;
  animation: loadText 1s linear;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  opacity: 0;
  text-align: center;
}

@keyframes loadText {
  from {
    opacity: 0;
    transform: translate(0, 10%);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.hdr-article span {
  display: block;
}

.hdr-article span.title {
  display: block;
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--black-clr);
  letter-spacing: 3px;
}

.hdr-article span.title::before,
.hdr-article span.title::after {
  content: '"';
}

.hdr-article span.auth {
  display: block;
  font-weight: 300;
  font-size: 1.5rem;
}

.hdr-article span.auth::before {
  content: "- ";
}
.index-header .hdr-article {
  color: var(--black-clr);
  padding: 20vh 0 0 0;
  min-height: 50vh;
}
.grid-article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 240px;
  column-gap: 4rem;
  max-width: 70%;
  position: relative;
  z-index: 3;
}

.grid-article > header {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}

.grid-article > header h2 {
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.grid-article article p {
  margin-bottom: 2.25rem;
}

.grid-article header h1 {
  text-align: center;
}

.grid-article header h2 {
  margin-bottom: 2.25rem;
  text-align: left;
  font-size: 2.25rem;
}

.grid-article a.btn {
  margin: 1rem auto 0 0;
}

.grid-article-cnt {
  position: relative;
  background: var(--white-clr);
}

.grid-article-cnt::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 30%;
  width: 100%;
  background: var(--white-clr);
  z-index: 2;
}

.grid-article-cnt .floating-bg {
  height: 100vh;
  max-height: 100vh;
  z-index: 1;
}

.grid-article-cnt .floating-bg::after {
  opacity: 1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 41%,
    rgba(255, 255, 255, 0.4556023092830882) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 41%,
    rgba(255, 255, 255, 0.4556023092830882) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 41%,
    rgba(255, 255, 255, 0.4556023092830882) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}
.grid-article-cnt .floating-bg::after {
  d: DXImageTransform.Microsoft.gradient(
    startColorstr= "#ffffff",
    endColorstr= "#ffffff",
    GradientType=1
  );
}

#document-header {
  position: absolute;
  width: 100%;
  z-index: 99;
}

#document-header .content_width {
  display: flex;
  color: var(--black-clr);
  padding: 2rem 0;
  justify-content: center;
  align-items: center;
}

#document-header .logo {
  margin-left: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate(0, -50%);
}

.animation #document-header .logo {
  animation: header 2s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
}

@keyframes header {
  from {
    transform: translate(0, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

#document-header .logo img {
  height: auto;
  width: 280px;
}

#document-header nav {
  margin-right: 0;
}

#document-header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translate(0, -250%);
}
.animation #document-header nav ul {
  animation: header 2s ease;
  animation-fill-mode: forwards;
  animation-delay: 0.55s;
}

#document-header nav ul li {
  list-style-type: none;
  padding: 0.25rem;
  margin-left: 1.5rem;
}

#document-header nav ul li a {
  padding: 0.25rem 0.5rem;
  color: var(--black-clr);
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  border: 2px transparent solid;
  transition: 0.25s;
}

#document-header.black nav ul li a {
  color: var(--black-clr);
}

#document-header nav ul li a:hover {
  border-color: var(--green-clr);
}

.index-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.index-header .floating-bg {
  height: 100%;
}

.index-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 4;
  transform: translate(0, 50%);
}

.animation .index-main {
  animation: loadEl 0.5s ease;
  animation-fill-mode: forwards;
}

@keyframes loadEl {
  from {
    transform: translate(0, 50%);
  }
  to {
    transform: translate(0, 25%);
  }
}

.index-main::after {
  content: "";
  width: 100%;
  position: absolute;
  background: var(--green-clr);
  height: calc(100% - (54px + 2rem));
  width: 100%;
  left: 0;
  z-index: -1;
  bottom: 0;
  /*background: rgb(15, 15, 15);
  background: -moz-linear-gradient(
    0deg,
    rgba(15, 15, 15, 1) 0%,
    rgba(12, 12, 12, 0.8071429255295868) 100%,
    rgba(15, 15, 15, 0.4205883036808473) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(15, 15, 15, 1) 0%,
    rgba(12, 12, 12, 0.8071429255295868) 100%,
    rgba(15, 15, 15, 0.4205883036808473) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(15, 15, 15, 1) 0%,
    rgba(12, 12, 12, 0.8071429255295868) 100%,
    rgba(15, 15, 15, 0.4205883036808473) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f0f0f", endColorstr="#0f0f0f", GradientType=1);*/
}

.index-main article {
  width: 100%;
  position: relative;
  padding: 2rem;
}

.index-main article h1,
.index-main article h2 {
  color: var(--black-clr);
  font-weight: 600;
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.index-main article p {
  padding: 1rem 0;
  color: var(--black-clr);
}

.index-main article a.btn {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 0 2rem;
  transform: translate(0, 50%);
  background: var(--white-clr);
}

section.kontakt {
  width: 100%;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  z-index: 3;
  background: var(--white-clr);
}

section.kontakt h2,
section.kontakt .num {
  color: var(--black-clr);
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0;
}

section.kontakt h2 {
  margin-bottom: 2.25rem;
}

section.kontakt .num {
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

article.kontakt {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1rem;
  align-items: center;
  justify-content: center;
}
article.kontakt img {
  width: auto;
  height: 36px;
}

.index-info {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
  background: var(--white-clr);
}

.index-info h2 {
  font-size: 2.75rem;
}

.index-info .floating-bg {
  z-index: 1;
  position: absolute;
  text-align: center;
  padding-top: 130px;
  background-color: var(--white-clr);
}

.index-info .floating-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-clr);
  opacity: 0.5;
  opacity: 1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.4556023092830882) 80%,
    rgba(255, 255, 255, 0.4556023092830882) 90%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 1) 80%,
    rgba(255, 255, 255, 0.4556023092830882) 90%
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 0.4556023092830882) 80%,
    rgba(255, 255, 255, 0.4556023092830882) 90%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}

.index-info .floating-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  object-position: top;
}

.index-info > * {
  position: relative;
  z-index: 3;
}

.index-info .ul {
  padding: 6rem 0 7rem 0;
}

.index-info .ul ul {
  padding: 1rem 0 0 1rem;
}

.index-info .ul li {
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  margin-bottom: 0.55rem;
}

.index-info .ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 2px var(--green-clr) solid;
  border-right: 2px var(--green-clr) solid;
}

.index-info .info-grid-cnt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  width: 100%;
}

.index-info .map-info {
  text-align: right;
  width: 80%;
  margin: 0 0 0 auto;
  max-width: 680px;
}

.index-info .map-info h2 {
  margin-top: 2rem;
}

.index-info .map-info p {
  max-width: 80%;
  margin: 0 0 0 auto;
  margin-bottom: 0px;
  margin-bottom: 2rem;
}

.index-info .map-info figure {
  position: relative;
  pointer-events: none;
}

.index-info .map-info figure img {
  width: 120%;
  transform: translate(-10%, 0);
}

.index-info .map-info figure figcaption {
  text-align: right;
  font-weight: bold;
  font-size: 1rem;
}

.index-info .map {
  width: 100%;
}

.index-info .map iframe {
  width: 100%;
  height: 100%;
  border: none;
  -webkit-box-shadow: -15px 23px 24px -19px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: -15px 23px 24px -19px rgba(0, 0, 0, 0.39);
  box-shadow: -15px 23px 24px -19px rgba(0, 0, 0, 0.39);
}

.sponzori {
  background: var(--white-clr);
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sponzori img {
  width: 100%;
  max-width: 180px;
  min-width: 55px;
  margin-bottom: 0.75rem;
}

.sponzori figcaption {
  max-width: 210px;
}

#document-footer {
  background: var(--green-clr);
  width: 100%;
  position: relative;
  z-index: 98;
}

#document-footer .footer-col {
  padding: 4rem 0;
}

#document-footer .content_width {
  display: flex;
  color: var(--black-clr);
}

#document-footer figure.logo img {
  width: 100%;
  max-width: 230px;
  margin-bottom: 1rem;
}

#document-footer ul {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#document-footer ul li {
  list-style-type: none;
  pad: 0.25rem;
}

#document-footer ul li a {
  padding: 0.25rem 0.5rem;
}

.page-cnt {
  position: relative;
  min-height: 100vh;
  padding: 230px 0 80px 0;
}

.page-cnt .page-body {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 75%;
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  background-color: var(--white-clr);
  align-items: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 0 50px -25px var(--grey-text);
  -webkit-box-shadow: 0 0 50px -25px var(--grey-text);
  -moz-box-shadow: 0 0 50px -25px var(--grey-text);
  text-align: left;
}
.page-cnt .page-body p {
  margin-bottom: 2rem;
}

.page-cnt .page-body h1,
.page-cnt .page-body h2,
.page-cnt .page-body h3,
.page-cnt .page-body h4,
.page-cnt .page-body h5,
.page-cnt .page-body h6 {
  text-align: left;
}
.page-cnt .page-body li {
  padding-left: 1rem;
  margin-bottom: 0.55rem;
  position: relative;
  list-style-type: none;
}
.page-cnt .page-body li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  border-left: 5px transparent solid;
  border-right: 5px transparent solid;
  border-bottom: 5px var(--green-clr) solid;
  transform: rotate(90deg);
}

/* Error 404 page */

.err-404 {
  text-align: center;
  max-width: 720px !important;
  margin: 0 auto !important;
}

@media screen and (max-height: 760px) {
  .grid-article-cnt::after {
    height: 60%;
  }

  p,
  li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1160px) {
  #document-header nav ul li {
    margin-left: 0rem;
  }

  .grid-article {
    max-width: 80%;
  }

  .index-info .map-info p {
    max-width: 100%;
  }
}

@media screen and (max-width: 1090px) {
  .page-cnt .page-body {
    padding: 0;
  }
}

@media screen and (max-width: 980px) {
  #document-header nav {
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: #1f1f1f;
    width: 100%;
    max-width: 360px;
    z-index: 99;
    transform: translate(100%, 0);
    transition: 0.25s ease-in-out;
    padding-right: 2.75rem;
  }

  #document-header nav.active {
    transform: translate(0, 0);
    -webkit-box-shadow: -21px 0px 94px 5px rgba(0, 0, 0, 0.72);
    -moz-box-shadow: -21px 0px 94px 5px rgba(0, 0, 0, 0.72);
    box-shadow: -21px 0px 94px 5px rgba(0, 0, 0, 0.72);
  }

  [data-closemenu] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 88;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    background: var(--black-clr);
  }

  [data-openmenu] {
    pointer-events: all;
    cursor: pointer;
    display: block;
  }

  [data-closemenu].active {
    pointer-events: all;
    opacity: 0.55;
  }

  nav [data-closemenu] {
    position: absolute;
    z-index: 1;
    display: block;
    background: transparent;
  }
  .grid-article {
    padding-top: 320px;
  }
  [data-openmenu]:hover span,
  [data-openmenu]:hover::before,
  [data-openmenu]:hover::after,
  .active[data-openmenu] span,
  .active[data-openmenu]::before,
  .active[data-openmenu]::after {
    background-color: var(--green-clr);
  }

  [data-openmenu]:hover::after,
  .active[data-openmenu]::after {
    width: 60%;
    left: 65%;
  }

  .grid-article-cnt::after {
    height: 60%;
  }

  #document-header nav ul {
    display: block;
    text-align: right;
    padding: 2rem;
    position: relative;
    z-index: 2;
  }

  #document-header nav ul li {
    margin-bottom: 1rem;
    border-bottom: 1px solid white;
  }

  #document-header nav ul li a {
    font-size: 1.55rem;
    margin-left: 0;
    color: var(--white-clr);
  }
}

@media screen and (max-width: 860px) {
  .index-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .index-main article:last-of-type {
    grid-column: 1/-1;
    text-align: center;
  }

  .index-main article:last-of-type a.btn {
    left: 50%;
    transform: translate(-50%, 50%);
    margin: 0;
  }
}

@media screen and (max-width: 830px) {
  .grid-article-cnt::after {
    height: 70%;
  }
}

@media screen and (max-width: 760px) {
  .grid-article {
    grid-template-columns: repeat(1, 1fr);
  }

  .index-info .info-grid-cnt {
    grid-template-columns: repeat(1, 1fr);
  }

  .index-info .map-info {
    margin: 0 auto;
    text-align: center;
  }

  .index-info .map-info figure {
    display: none;
  }

  .index-info .map {
    height: 480px;
  }
}

@media screen and (max-width: 680px) {
  .index-main {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .index-main article:last-of-type {
    grid-column: 1/-1;
    text-align: left;
  }

  .index-main article a.btn,
  .index-main article:last-of-type a.btn {
    position: relative;
    margin: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .grid-article {
    max-width: 90%;
    padding-top: 340px;
  }

  .index-info .ul {
    max-width: 85%;
  }

  .index-info .ul ul {
    padding: 1rem 0 0 0;
  }
}

@media screen and (max-width: 580px) {
  #document-header a.logo img {
    width: 200px;
  }
  .page-cnt .page-body {
    max-width: 100%;
  }

  #document-footer .content_width {
    flex-wrap: wrap;
    width: 100%;
  }

  .sponzori {
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
  .grid-article-cnt::after {
    height: 90%;
  }
  section.kontakt .num {
    font-size: 7.25vw;
  }
  #document-footer .footer-col {
    padding: 4rem 1rem;
  }
}

@media screen and (max-width: 380px) {
  .grid-article {
    padding-top: 370px;
  }
}
