/* Hero wrapper */
.home #main{
    padding-top: 0;
}
.heroHero {
	position: relative;
	width: 100vw;
	height: calc(100vh - 112px);
	overflow: hidden;
	margin-left: -15px;
}

/* Video full-screen */
.heroHero .heroVideoBg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}


/* Content over video */
.heroHero .heroContent {
	position: relative;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	text-shadow: 0 0 10px black;
	color: #ffffff !important;
}
/* definice animace */
@keyframes fadeInAnim {
	from { opacity: 0; transform: translateY(30px); } /* lehký posun zdola */
	to   { opacity: 1; transform: translateY(0); }
}

.heroHero .heroContent h1 {
	font-size: 5vw; 
	line-height: 5vw; 
	margin-bottom: 3vw;
	opacity: 0;               /* na začátku neviditelné */
	animation: fadeInAnim 1.5s forwards; /* spustí animaci a zůstane viditelné */
	animation-delay: 1s;    /* optional, prodleva před startem */
	font-weight: 900;
	color: #ffffff !important;
}
.heroHero .heroContent p {
	font-size: 3vw; 
	line-height: 3vw; 
	margin-bottom: 1em;
	opacity: 0;               /* na začátku neviditelné */
	animation: fadeInAnim 1.5s forwards; /* spustí animaci a zůstane viditelné */
	animation-delay: 2s;    /* optional, prodleva před startem */
}

@media (max-width: 1200px) and (orientation: portrait)  {
  .heroHero .heroContent h1 {
    font-size: 10vw; 
	line-height: 10vw; 
  }
  .heroHero .heroContent p {
	font-size: 6vw; 
	line-height: 6vw; 
  }
}

/* puvodni homepage - bile bloky pres celou siri */
.content-row.vc_row {
    background: #fff;
    /* padding: 0 50px; */
    border-radius: 40px;
    margin: 50px 0 0 0;
}

.content-row .vc_column_container {
	padding: 40px;
}
.content-row .wpb_single_image{
	margin-bottom: 0;
}

/* nova homepage - products columns */
.products-row .vc_column_container .vc_column-inner {
	padding: 40px;
	border-radius: 30px;
	background: white;
}


/* budova about us */
.image-col {
	min-height: 60vh !important;
}

.image-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* our clients 
.our-clients .wpb_single_image .vc_single_image-wrapper{
    display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.our-clients .wpb_single_image img {
	display: block;
	max-height: 70px;
	width: auto;
}
.our-clients .vc_column_container,
.our-clients .vc_column-inner,
.our-clients .vc_single_image-wrapper{
	height: 100%;
}*/
.our-clients-masonry .post {
    display: flex;
    align-items: center;
}