@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap');
body {
	background-color: black;
	color: white;
	font-family: 'Roboto', sans-serif;
	margin: 0;
}
h1,h2 {
	font-weight: 500;
	text-align: center;	
	margin-top: 50px;
}
h2 {
	font-weight: 300;
	min-height: 90px;
}
.main {
	font-weight: 100;
	width: 100%;
	text-align: center;
}
.box {
	box-sizing: border-box;	
	display: flex;
	flex-wrap: nowrap;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
}
.box .highlights {
	box-sizing: border-box;
	width: 33%;
	padding: 0 10px 30px 10px;
	text-align: left;
	float: left;
}
.prodejci {
	box-sizing: border-box;	
	display: flex;
	flex-wrap: nowrap;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
}
.prodejci .highlights {
	box-sizing: border-box;
	width: 100%;
	padding: 0 10px 0 10px;
	text-align: justify;
	float: left;
}
hr.style {
	border: 0;
	height: 1px;
	background: #fff;
	background-image: -webkit-linear-gradient(left, #000, #fff, #000);
	background-image: -moz-linear-gradient(left, #000, #fff, #000);
	background-image: -ms-linear-gradient(left, #000, #fff, #000);
	background-image: -o-linear-gradient(left, #000, #fff, #000);	
}
img {
  border: 0;
  display: block; /* collapse top and bottom margins */
  max-width: 100%;
}
img.ilustrace {
	border: 1px solid white;
	margin-left: auto;
	margin-right: auto;	
}
.section {
  padding: 16px 20px;
}
.container {
  margin: 0 auto;
  max-width: 560px;
}
.gallery {
  padding-bottom: 10px;
  text-align: center;
}
.gallery-heading {
  color: #00d6c8;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
  padding-bottom: 8px;
}
.gallery-heading::after {
  content: "";
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100px;
}
.gallery-grid {
  background: #333333;
  background: linear-gradient(to right, #999999, #333333);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: minmax(200px, -webkit-max-content);
  grid-auto-rows: minmax(200px, max-content);
  grid-auto-flow: dense;
  gap: 10px;
  margin-top: 40px;
  padding: 10px;
}

.gallery-item img {
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-item-text {
  display: none;
}

/*******************************
       .lightbox styles
*******************************/
.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 10;
}

/* .preload will be removed by JS code during DOMContentLoaded event. This is done to avoid lightbox transition appearing on page load. */
.lightbox.preload {
  transition: none !important;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox .lb-content {
  background-color: lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1em;
  max-height: 90%;
  padding: 1rem;
  position: relative;
}

.lightbox .lb-img {
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
  width: 100%;
  height: auto;
}

.lightbox .lb-caption {
  color: #333;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  max-width: 50ch;
  overflow-y: auto; /* may occur in smartphones */
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.open .lb-caption {
  opacity: 1;
}

.lightbox .lb-url {
  color: #005fa9;
  text-decoration: underline;
  text-underline-position: under;
  padding-top: 8px;
  padding-bottom: 14px;
}

.lightbox .close {
  background-color: lightgray;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  display: inline-block;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  position: absolute;
  top: -0.4em;
  right: -0.4em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}

/* Lightbox overlay */
.lightbox .close::before {
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  cursor: default;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cta {
	background: #073763;
	background: linear-gradient(#073763, #0b5394);
	border-radius: 1000px;
	padding: 20px 45px;
	color: #ffffff;
	display: inline-block;
	text-align: center;
}
a, a.visited, a.hover {
	color: #ffffff;
	text-decoration: none;
}
a.hover {
	font-size: 300;
}
.prodejloga {
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.video-wrap {
	position: relative;	
}
video {
	width: 100%;
    position: relative;
    z-index: 5;
}
.poster-image {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    pointer-events: all;
    opacity: 1;
    transition: .3s ease-out;	
}
.play-btn {
	width: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    cursor: pointer;	
}

/**********************************
          Media queries
 **********************************/

/* Small devices (phones) */
@media screen and (max-width: 768px) {
	.play-btn {
	 width: 50px;
	}
.box {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(200px, -webkit-max-content);
    grid-auto-rows: minmax(200px, max-content);
    grid-auto-flow: dense;
    gap: 10px;	
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
}
.box .highlights {
	box-sizing: border-box;
	width: 100%;
	padding: 0 10px 30px 10px;
	text-align: left;
	float: none;
}
.prodejci {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(200px, -webkit-max-content);
    grid-auto-rows: minmax(200px, max-content);
    grid-auto-flow: dense;
    gap: 10px;	
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
}
.prodejci .highlights {
	box-sizing: border-box;
	width: 100%;
	padding: 0 10px 30px 10px;
	text-align: left;
	float: none;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .lightbox .lb-caption {
    font-size: 1rem;
  }
}

/* Large devices (laptops/desktops, 1024px and up) */
@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .lightbox .lb-content {
    flex-direction: row;
  }

  .lightbox .lb-img {
    margin-bottom: 0;
  }

  .lightbox .lb-caption {
    padding: 0 1.5em;
  }
  .lightbox .lb-url {
    padding-top: 0;
  }
}
