:root {
	--color-blue: #16509D;
	--color-gold: #FFAF0E;
	--color-text: #333333;

}

.row {
  /*   --bs-gutter-x: 3rem;*/
}
html{
	font-size: 16px;
}
body {
	font-family: "Campton", "Arial", Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	font-smoothing: antialiased;
	color: var(--color-text);
    z-index: 1;
	background-color: #fff;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	/*position: relative;*/
}

body.noscroll {
	overflow: hidden;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	font-weight: 600;
	color: var(--color-blue);
	margin-bottom: 1rem;
}

h1, .h1 {
	font-size: 2.7rem;
	color: var(--color-blue);
}
h2, .h2 {
    font-size: 2.4rem;
	margin-top: 2rem;
}
h3, .h3 {
    font-size: 1.65rem;
}
h4, .h4 {
    font-size: 1.25rem;
}
h5, .h5 {
    font-size: 1.1rem;
}
h6, .h6 {
    font-size: 1rem;
	font-weight: 300;
}

a {
	color: var(--color-blue);
	text-decoration: none;
}


main a{
/*	color: var(--color-gold);*/
}

a:hover {
	color: var(--color-gold);
}

img, iframe {
	max-width: 100%;
}
img{
	height: auto;
}

p{
	margin-bottom: 1.5rem;
}

table{
	border: none;
	border-top: 1px solid #555555;
	margin: 2rem 0;
	max-width: 100%;
}

td, th{
	border-bottom: 1px solid #555555;
	padding: 1rem 1rem 1rem 0;
}
thead{
	font-weight: bolder;
}
hr{
	margin: 50px 0;
}

strong, b {
    font-weight: 500;
}

ul{
	list-style-type: square;
}
.lead {
    font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.35;
}


/**/

header{
	padding: 10px 0;
	/*position: fixed;*/
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: var(--color-blue);
	/*border-bottom: 5px solid var(--color-gold);*/
	height: 100px;

	display: flex;
    align-items: center;
	/*font-size: 1.1rem;*/
}
.header {
	/* position: relative; */
	flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}

.header-logo {
	margin-right: auto;
	/*max-height: 60px;*/
	max-width: 150px;
}

.header-logo a {

}
.header-logo a:hover {

}
.socials{
	/* display: flex; */
	/* margin: 0 30px 0 0 ; */
	gap: 10px;
	display: none;
	justify-content: center;

}
.contacts .socials, footer .socials{
	display: flex;
}
.socials a{
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
}
.socials a:hover{
	border-color: var(--color-red);
}
.lang{
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 4px;
    height: 40px;
	display: flex;
	align-items: center;
	margin-right: 10px ;
	font-weight: 400;
}
.lang a{
	color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 0 1rem;
}
.lang:hover, .lang:hover a {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.header-nav {
	z-index: 99999;
	display: none;
}
.header-nav.open {
	
}
.header-nav > ul {
}



.header-nav ul {
	display: flex;
	margin: 0 10px ;
	padding: 0;
	list-style-type: none;
	/*text-align: center;	*/
}

.header-nav > ul > li {
	position: relative;
}

.header-nav .nav-menu > li > a {
	display: block;
	line-height: 1;
	margin: 0 5px;
	/*padding: 70px 10px;*/
	padding: 20px 5px;
	color: #fff;
	font-weight: 400;
	
	border-top: 7px solid transparent;
  	/*border-bottom: 5px solid var(--color-gold);*/
    /*margin-bottom: -5px;*/
	transition: all ease 0.3s;
}
.header-nav .nav-menu > li > a:hover {
	color: var(--color-gold);
	border-top: 7px solid rgba(255, 255, 255, 0.5);

}

.header-nav > ul > li > a.active {
	opacity: .5;
	border-top: 7px solid rgba(255, 255, 255, 0.5);

}

.header-nav .sub ul {
	display: none;
	margin-bottom: 10px;
	box-shadow: 0px -10px 20px 10px rgba(50,50,50,0.2);
}

.header-nav .sub li a {
	text-transform: initial;
	white-space: nowrap;
	line-height: 1.5;
	font-size: 1rem;
	padding-bottom: 10px;
	color: var(--color-blue);
	border-bottom: 1px solid #eee;
}

.header-nav .sub > a > span {
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0;
    width: 20px;
    right: 1px;
    z-index: 1;
	color: var(--color-gold);
}

.header-nav .sub > a > span:after {
	content: ' > ';
}


.header-nav-toggler button {
	padding: 5px;
	width: 65px;
	border: none;
	outline: none;
	background: none;
	display: flex;
	flex-flow: column;
	align-items: start;
	justify-content: center;
	box-shadow: none !important;
}

.header-nav-toggler button span {
	display: block;
	margin: 4px 0;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background-color: var(--color-gold);
	transition: all ease 0.3s;
}
.header-nav-toggler button span:nth-of-type(2) {
	width: 85%;
}
.header-nav-toggler button span:last-of-type {
	width: 70%;
}

.header-nav-toggler button:hover span{
	background-color: #fff;
}
.header-nav-toggler button:hover span {
	width: 100%;
}


.nav-modal{
	display: none;
	z-index: 99999;
	background: rgba(20, 20, 20, 0.9);
	
	color: #fff;
    backdrop-filter: blur(4px);
	
	width: 100vw;
	width: 100%;
	height: 105vh;
	overflow: auto;
	text-align: center;

	position: absolute;
    left: 0;
    right: 0;
    top: 0;
	bottom: 0;
}
.nav-modal.open{
	display: block;
}
.nav-modal .container-xxl{
	min-height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.nav-modal .button-close{
	position: absolute;
    top: 3rem;
    right: 1.5rem;
	border: none;
	outline: none;
	background: none;
	width: 40px;
	height: 40px;
}
.nav-modal .button-close span{
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-gold);
	transform: rotate(-45deg);
	position: absolute;
	left: 0;
	top: 18px;
	transition: all ease 0.3s;

}
.nav-modal .button-close span:last-of-type{
	transform: rotate(45deg);
}

.nav-modal .button-close:hover span{
	transform: rotate(45deg);
	background-color: #fff;
}
.nav-modal .button-close:hover span:last-of-type{
	transform: rotate(135deg);
}

.nav-modal a{
	color: #fff;
}
.nav-modal .nav-menu{
	list-style: none;
	margin: 30px 0;
	padding: 0;
}
.nav-modal .nav-menu ul{
	display: none;
}

.nav-modal .mega-menu{
	/*margin-top: 70px;*/
	text-align: center;
}
.nav-modal .mega-menu a{
	display: inline-block;
	font-size: 1.35rem;
	line-height: 1.4;
	margin: 0 0 10px 0;
	padding: .75rem 0;
	font-weight: 400;
	text-transform: uppercase;
}
.nav-modal .mega-menu a::after{
	content: "";
	display: block;
	border-bottom: 2px solid  var(--color-gold);
	transition: all ease 0.3s;
	margin: 0 auto;
}
.nav-modal .mega-menu a:hover::after{
	width: 100%;
	border-color: #fff;
}

.nav-modal .second-menu a{
	display: inline-block;
	border-bottom: 1px solid  var(--color-gold);
	margin: 0 0 10px 0;
}
.nav-modal .second-menu a:hover{
	border-color: #fff;
}

.nav-modal .live-menu-contact {
	display: flex;
    flex-flow: column;
	justify-content: space-between;
}
.nav-modal .live-menu-contact .nav-menu a{
	display: inline-block;
	border-bottom: 1px solid  var(--color-gold);
	color: var(--color-gold);
	margin: 0 0 10px 0;
}
.nav-modal .live-menu-contact .nav-menu a:hover{
	border-bottom: 1px solid  var(--color-gold);
	color: #fff;
}
.nav-modal .live-menu-contact .socials{
	margin-bottom: 30px;
}



/*
ul.descendants {
    position: absolute;
	margin: 0;
	padding: 0;
    margin-top: 50px;
	font-size: 1.2rem;
	display: none;
}
ul.descendants li{
    list-style: none;
	margin: 0;
	padding: 0;
}

ul.descendants a{
    display: block;
	padding: 10px 0;
}
ul.descendants a::before{
	content: '';
    display: inline-block;
	width: 12px;
	height: 12px;
	border: 1px solid red;
	margin-right: 10px;
}

ul.descendants a.active::before{
	background: red;
}
*/


footer {
	background: #fff ;
	/*background-size: 100% auto;*/
    box-shadow: 0 0 100px rgb(205 205 205 / 50%);
	padding-top: 50px;
	text-align: center;  
	/*color: #fff;*/
}
footer a{
	/*color: #fff;*/
}

.footer .nav-menu{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5em;
	margin-bottom: 1rem;
	font-size: 1.1em;
}
footer .nav-menu li{
	list-style: none;
	margin: 0;
	padding: 0;
}
footer .nav-menu li ul{
	display: none;
}

footer .nav-menu li a{
	padding: 0.5rem 0;;
	border-bottom: 1px solid rgba(255,255,255,0.7);
	white-space: nowrap;
	
	font-weight: 400;
}
footer .nav-menu li a.active{
	border-bottom: 1px solid transparent;
	/*color: #fff;*/
}


footer .menu-contact{
	text-align: center;
}
footer .menu-contact a{
	display: inline-block;
	font-weight: 400;

}
footer .menu-contact p{
	margin: 1.5em 0;
}
footer .nav-contact{
	display: flex;
	flex-flow: column;
	font-size: 1.3em;
	margin-bottom: 1.5em;
}



footer .footer-copy img{
	max-width: 90%;
}


.footer-social{
	justify-content: center;
	margin:  auto;
}
.move-top{
	margin: auto;
	text-align: center;
}
.creactive{
	opacity: .3;
}
.creactive a{
	border: none;
}
.creactive a:hover{
	color: #ccc;
	opacity: .8;
}


.content-header {
	margin: 40px 0 60px 0;
}


/**/

.content-wrapper {
	/* margin: 0px calc(var(--bs-gutter-x) / 2); */
}

main {
}

main h1:first-of-type {
    margin: 3rem 0;
}


#block-2::before, #block-35::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 750px;
    z-index: -1;
    /* background-color: pink; */
	/*background: url(/frontend/img/bg_intro.jpg) no-repeat;*/
	background-size: 100% auto;
    margin-top: -2.8rem;
}
@media (min-width: 800px) {
	#block-2 h1, #block-35 h1{
	padding-top: 1.85rem;
	}
	#block-3 .lead{
		padding-right: 2em;
	}
}


.block-2_cols_image{
	margin-bottom: 60px;
}
.block-2_cols_image + .block-2_cols_image:nth-of-type(odd) .col-md-6:first-of-type{
 order:2;
}
.block-2_cols_image .col-md-6:first-of-type{
	padding-right: 3%;
   }
   

.block-2_cols_image img.img-fluid{
 border-radius: 1rem;
}

.block-info_page {
	margin-bottom: 20px;
}
.block-video {
	margin-bottom: 60px;
}

.block-video__container {
	position: relative;
	border-radius: 20px;
    overflow: hidden;
    background: black;
}

.block-video__play {
	position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100%;	
	display: flex;
	align-items: center;
	justify-content: center;
	
	/* background-blend-mode: multiply; */
    background-color: var(--color-blue);
	transition: all ease 0.3s;
}

.block-video__play-icon {
	background: #fff;
    border-radius: 200px;
    text-align: center;
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    transition: all .3s ease;
	margin: 20px auto;
	box-shadow: 0 0 70px 30px rgba(0, 0, 0, 0.3);
}

.block-video__play-icon::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-right: 50px solid #000;
    transform: rotate(-45deg);
    position: absolute;
    top: 30%;
    left: 18%;
}

.block-video__play-title {
    text-align: center;
    color: #fff;
    text-decoration: none;
	font-weight: bold;
	font-size: 1.5em;
	position: relative;
}
.block-video__play:hover{
	background-blend-mode: luminosity;
}

.video-carousel .block-video__play{
	border-radius: 20px;
}

.button{
	/*z-index: 20;*/
	border: 1px solid #000;
    padding: .95rem 5rem .75rem 1.5rem;
	transition: all ease 0.3s;
	display: inline-block;
	line-height: 1.25;
	color: #fff;
	background-color: #000;
	position: relative;
	border-radius: .5rem;
	cursor: pointer;

}
.button:after {
	content: ">";
	position: absolute;
	right: 2rem;
	color: var(--color-gold);
	font-weight: 300;
	transform: scaleY(2);
}   
.button:hover{
    color: var(--color-gold);
	background-color: var(--color-blue);
	border-color: var(--color-blue);
}

 .button-green{
		border: 1px solid green;
		background-color:green;
 }



ul.list{
	margin-top: 1rem ;
	margin-bottom: 1rem ;
}
ul.list li {
    padding: 0.75em 0;
    border-bottom: 1px solid #ddd;
	list-style-type: square;
}
ul.list li::marker {
    color: var(--color-gold);
}

.files{
	padding: 0;
	border-bottom: 2px solid var(--color-gold);
	margin: 2rem 0 3rem 0;
}
.files li{
	padding: 1.25em 0 1.25em 2.75em ;
	border-top: 2px solid var(--color-gold);
	list-style-position: inside;
	list-style: none;
	background: url(/frontend/img/ico_download.svg) no-repeat   .5em center;
	background-size: 1.3em auto;
	display: flex;
}
.files li a{
	margin-right: auto;
	font-weight: 400;
}



/**/

.rozcestnik{
	margin: 100px 0;
	padding: 50px 0;
	position: relative;
	z-index: 99;
	background:  url(/frontend/img/bg_services.jpg) no-repeat;
	background-size: 100% auto;

}

.page-5 .rozcestnik, .page-18 .rozcestnik{
	margin-top: 0;	
	margin-bottom: 0;

}


.roz-item{
	position: relative;
	margin-top: 1rem;
	/*margin-bottom: 1rem;*/
	background: var(--color-blue);
	color: #fff;
	padding: 3rem;
	padding: 1.5rem;
	height: 100%;
	display: flex;
    flex-flow: column;
	justify-content: space-between;
	gap: 2rem;
	border-radius: 1rem;
}
.roz-item:hover a{
	color: #fff;
}
.roz-item img {
	mix-blend-mode: multiply;
	max-width: 115px;
	max-width: 90px;
	/*
	align-self: end;
	margin-left: 30px;
	margin-bottom: -50px;
    margin-top: 60px;
	*/
	/* position: absolute; */
	bottom: 2rem;
	right: 2rem;
	margin: 1rem ;

	display: none;
}

.roz-item h3{
	font-size: 1.5em;
	margin-bottom: 1rem;
}
.roz-item h3 a{
	color: var(--color-gold);
}
.roz-item .link{
	margin-top: auto;
}
.roz-item .button{
	color: #fff;
}
.roz-item .button:hover{
	color: var(--color-gold);
	border-color: #000;
}
.roz-item .desc{	
	display: flex;
	align-items: start;
	position: relative;
}
.stretched::after{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

/**/

.benefit-item{
	margin-top: 1rem;
	padding: 3rem 1rem 0 1rem;
	height: 100%;
	/*display: flex;*/
    flex-flow: column;
	justify-content: space-between;
	gap: 1rem;

	border-top: 3px solid #eee;
}
.benefit-item img{
	margin: 1rem 0;
}

.partner-item{
	margin-top: 1rem;
	padding:  1rem;
	height: 100%;
	/*display: flex;*/
    flex-flow: column;
	justify-content: space-between;
	gap: 1rem;
	border-top: 3px solid #eee;
}
.partner-item img{
	margin: 1rem 0;
	mix-blend-mode: darken;
}




/**/

.counter{
	margin: 20px 0;
	padding: 0 2rem;
}
.counter-2{
}
.counter h2{
	padding-top: 75px;
	padding-bottom: 80px;
	line-height: 1;
	margin: 20px 0;
	font-size: 3.5rem;
	font-weight: 300;
}

/**/

/**/
.faq{
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 3rem;
  }
  
  .faq-item:last-of-type{
	border-bottom: 1px solid #ccc ;
  }
  .faq-question{
	font-weight: 500;  
	border-top: 1px solid #ccc ;
	padding: 1.5rem 3rem 1.5rem 0;
	cursor: pointer;
	opacity:1;
	transition: all ease 0.2s;
	background: url(../img/ico_arr_mini_d.svg) no-repeat center right 0.5rem;
  }
  .faq-question:hover{
	 border-color: var(--color-blue);
	 color: var(--color-blue);
  }
  .faq-question.open{
	  background: url(../img/ico_arr_mini_black_u.svg) no-repeat center right 0.5rem;
  }
  .faq-question p {
	margin: 0;
  }
  
  .faq-answer{
	height: 0;
	margin: 0;
	padding: 0 2rem 0 2rem;  
	font-weight: 300;    
	overflow: hidden;
	transition: all linear .2s;
	position: relative;
  }
  

  .open + .faq-answer {
	  height: auto;  
	  padding: 0.5rem 2rem 2.5em 2rem;
	  overflow: hidden; 
  }
  
  .faq-answer p{
   margin: 0;
   position: relative;
  }
  

/**/

#block-69, #block-70 {
    background: rgba(226, 233, 238, .5);
	padding-bottom: 3rem;
}
#block-70 {
    padding: 0 0 5rem 0;

	display: none;
}


/**/

.articles{
	   /*background: rgba(0,0,0,0.5);	*/
	  /*  background: linear-gradient(0deg, #fff 50%, rgba(128,128,128,0.1) 100%); */
}
.clanky{

}
.clanek-item{
	margin-bottom: 2rem;
	height: 100%;
	padding-bottom: 3rem;
	padding-right: 12%;
	position: relative;
}
.clanek-head{
	position: relative;
}

.clanek-photo{
	display: block;
	/*border-radius: 50px;*/
	/*box-shadow: 5px 5px 20px black;*/
	transition: all ease-in-out 0.3s;
	overflow: hidden;
}
.clanek-photo img {
	display: block;
	transition: all ease-in-out 0.3s;
	aspect-ratio: 2 / 1;
    object-fit: cover;
	margin: 1.5rem 0;
	border-radius: 1rem;
}
.clanek-photo:hover img{
	/* transform: scale(1.05); */
	opacity: 0.8;
}
.clanek-date{
	color: rgba(180,180,180,0.7);
	font-size: 0.9rem;
	margin: 1.5rem 0 1rem 0;
	font-weight: 500;
}
/*
.clanek-title {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    right: 0;
	pointer-events: none;
	background: linear-gradient(0deg, black, transparent 30%);
}
.clanek-title::before {
	content: "";
	display: block;
	position: absolute;
	background: var(--color-blue);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	opacity: .5;
	transition: all ease 0.3s;
}
.clanek-head:hover .clanek-title::before{
	opacity: 0.2;
}
	*/

.clanek-title a{
}
.clanek-perex{
	font-size: 1rem;
	margin-bottom: 2rem;
}

#related-articles{
	margin-bottom: 50px;
}


/**/

.reference-param{
    padding: 1rem 0;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}
.reference-param .label{
	min-width: 8.5rem;
	opacity: .6;
	font-weight: 400;
}
.reference-galerie .container-xxl{
	padding: 0;
}
.reference-galerie h2{
	font-size: 1.5rem;
	margin: 0;
}


.divider{
	border-top: 1px solid var(--color-gold);
}


.btn-outline-primary {
    --bs-btn-color: #005493;
    --bs-btn-border-color: #005493;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #005493;
    --bs-btn-hover-border-color: #005493;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #005493;
    --bs-btn-active-border-color: #005493;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #005493;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #005493;
    --bs-gradient: none;
}
.btn {
    --bs-btn-border-radius: 0.2rem;
	--bs-btn-padding-y: 0.75rem;
	--bs-btn-padding-x: 1rem;
}

/**/
.gallery-item{
	margin-bottom: var(--bs-gutter-x);
}
.gallery-item a{
	transition: all ease 0.3s;
	background-color: var(--color-gold);
	display: block;
	border-radius: 5px;
	overflow: hidden;
}
.gallery-item img{
	aspect-ratio: 3 / 2;
    object-fit: cover;
	transition: all ease 0.3s;

}
.gallery-item a:hover img{
	opacity: .7;
}

#article-detail img.w-100{
	border-radius: 10px;
}

/**/

.block-carousel{
	position: relative;
	aspect-ratio: 16 / 12; /**/
	width: 100%;
	overflow: hidden;
	margin-bottom: 50px;
	/* background: var(--color-blue); */
}

.video-carousel .block-carousel{
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	margin: 30px 0 120px 0;
	background: none;
	overflow: visible;
}
.video-carousel .block-video__video{
	display: flex;
}

.owl-carousel::after{
	content: '';
	display: block;
	position: absolute;
	/*height: 200px;*/
	height: 75px;
	/*background: linear-gradient(0deg,#005493 0%, rgba(34, 34, 34, 0) 100%);	*/
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	pointer-events: none;
}
.owl-carousel{
	/*
	-ms-touch-action: pan-x;
	touch-action: pan-x; 
	*/
}

.owl-carousel .owl-stage-outer, .owl-carousel .owl-item img{
	aspect-ratio: 16 / 12; /**/
	object-fit: cover;
	height: auto;
}
.video-carousel .owl-carousel .owl-stage-outer{
	aspect-ratio: 16 / 9; 
}
.owl-item{
	overflow: hidden;
}
.owl-item img{
	opacity: 0;	
	transform: scale(1.1);
	transition: all ease 1s;
}
.owl-item.active img{
	transform: scale(1);
	/* opacity: 0.8;	 */
	opacity: 1;
}
.owl-item a{
	color: #fff;
}
.owl-item a:hover{
	color: #fff;
}


.owl-dots {
	display: flex;
    justify-content: center;
    position: absolute;
	z-index: 9999;
	bottom: 10px;
	left: 0;
	right: 0;
}
.video-carousel .owl-dots{
	bottom: -30px;
}

.owl-dots .owl-dot {
	width: 14px;
	height: 14px;
	border: 1px solid #ffffff75;
	border-radius: 11px;
	margin: 0 2px;
}
.owl-dots .owl-dot.active {
	background: var(--color-gold) !important;
	border-color: var(--color-gold)  !important;
}

.video-carousel .owl-dots .owl-dot {
	border: 1px solid #ccc;
	background-color: #ccc;
}


.owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent
}
.owl-theme .owl-nav {
  position: absolute;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 48%;
  font-size: 80px;
}
.owl-theme .owl-nav [class*=owl-] {
	display: inline-block;
	cursor: pointer;
}
.owl-theme .owl-nav [class*=owl-]:hover {
	color: #fff;
	text-decoration: none
}
.owl-theme .owl-nav button:focus,
.owl-theme .owl-nav span:focus {
	outline: 0;
}
.owl-theme .owl-nav span {
	display: none;
}
.owl-theme .owl-nav .disabled {
	opacity: .5;
	cursor: default
}
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next
 {
    border: none ;
	  border-left: 2px solid var(--color-gold) !important;
    border-bottom: 2px solid var(--color-gold) !important;
    width: 20px;
    height: 20px;
    border-radius: 0;
    outline: 0;
    transform: rotate(45deg);
    border-radius:0;
    font-size: 0;
	position: absolute;
    left: 2.5vw;
}

.owl-theme .owl-nav .owl-next  {
    border: none !important;
	  border-right: 2px solid var(--color-gold) !important;
    border-bottom: 2px solid var(--color-gold) !important;
    transform: rotate(-45deg);
	left: unset;
	right: 2.5vw;
}
.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover
 {
    border-color: #fff !important;
}


.intro--caption{
	position: absolute;
	z-index: 9999;
	top: 5%;
	bottom: 10%;
	margin: auto 10%;
	width: 80%;
	background: transparent;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}
.intro--caption p{
	margin: 0;
}
.intro--caption h2{
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	opacity: 0;
}
.intro--caption h2 strong{
	color: var(--color-gold);
}

.intro--caption h2.initialized {
	opacity: 1;
}

/**/
.scroll-more{
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	height: 40px;
	width: 26px;
	border: 2px solid var(--color-gold);
	border-radius: 15px;
	z-index: 9999;
	top: calc(100vw / 1.1 + 1px);
	
}
.scroll-more:after{
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	top: 15%;
	left: calc(50% - 2px);
	width: 4px;
	height: 7px;
	border-radius: 1px;
	background-color: var(--color-gold);

	animation: scrollanim 3s ease infinite both ;
	
}

@keyframes scrollanim{
	0%{top: 20%;}
	50%{opacity: 1;}
	100%{top: 70% ; opacity: 0;}
}







.block-image-text > .row {
	align-items: center;
}

.block-image-text h2 {
	color: var(--main-color-hex);
}

.block-image-text .sub-block-image {
	text-align: center;
}

.block-image-text .sub-block-image img {
	max-width: 100%;
}






.gallery .gallery-item {
	margin-bottom: var(--bs-gutter-x);
}

.gallery .gallery-item a {
	aspect-ratio: 3/2;
	display: block;
}

.gallery .gallery-item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.contact-item img.thumb{
	border-radius: 20px;
	object-fit: cover;
}
.contact-item p{
	margin-bottom: 0.5rem;
}

.lang-flags{
	margin: .5rem 0;
}
.ico-lang{
	background-image: url(../img/icon-langs.png);
	background-size: auto 100%;
	display: inline-block;
	margin-right: 5px;
	height: 18px;
	width: 25px;
	overflow: hidden;
	border-radius: 5px;
}
.ico-lang.cz{
	background-position: 0px 0px;
}
.ico-lang.sk{
	background-position: -25px 0;
}
.ico-lang.en{
	background-position: -50px 0;
}
.ico-lang.pl{
	background-position: -225px 0;
}
.ico-lang.it{
	background-position: -175px 0;
}




.form{
	display: flex;
	flex-wrap: wrap;
	/*max-width: 860px;*/
    margin-left: auto;
    margin-right: auto;
	column-gap: 3rem;
}

.form-item{
  width: 45%;
  /*padding-bottom: 1rem;*/
  margin-bottom: 2rem;
}
.form-item:nth-of-type(2n + 2){
  margin-left: var(--inner-gutter);;
}
.form-item label{
  display: inline-block;
  padding-bottom: 0.5rem;
  /*font-size: 0.9rem;*/
}
.form-item input[type=text], .form-item textarea, button, .form-item select{
  width: 100%;
  font-family: var(--sans);
  font-size: var(--fs);
  padding: 0.7rem ;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 4px 4px 20px -4px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.form-item input[type=file]{
	display: block;
	max-width: 100%;
}

.form-item textarea{
  height: 5rem;
}


.textarea{
  width: 100%;
}
.form-item.checkbox{
  margin-left: 0;
   /*margin-right: var(--inner-gutter);*/
    margin-top: 1rem;
	width: 66%;
}
.form-item.submit{
  margin-top: 0.5rem;
}
.g-recaptcha{
  width: 100%;
  margin: 0;
}
.g-recaptcha > div{
}

.required label:after{
	content: "*";
	color: red;
}




.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
















































/*    ----------------------               RESPONSIVE           -----------------------           */




@media (min-width: 380px) {

}

@media (min-width: 410px) {

	
}

@media (min-width: 576px) {
	:root {
	   --bs-gutter-x: 30px;
    }
	header{
		height: 120px;
	}
	.header-logo {
		max-width: 180px;
	}
	.lang a{
		padding: 0 1.5rem 0 1.5rem;
	}
    .nav-modal .nav-menu{
		margin: 0;
	}
	.nav-modal .mega-menu a{
		font-size: 1.85rem;
		text-transform: none;
		padding: 0;
	}
	
	.footer {
		flex-wrap: nowrap;
		text-align: left;
	}

	.footer > div {
		width: auto;
	}
	
	.footer-social {
		margin-bottom: unset;
	}

	.content-wrapper .block-carousel:first-child {
		/*margin-top: -150px;*/
	}
	.block-carousel{
		aspect-ratio: 16 / 9;
	}
	.owl-carousel .owl-stage-outer, .owl-carousel .owl-item img{
		aspect-ratio: 16 / 9;
	}
	.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next{
		width: 60px;
		height: 60px;
	}
	.owl-dots{
		bottom: 30px;
	}
	.video-carousel .owl-dots{
		bottom: -30px;
	}
	.owl-dots .owl-dot {
		width: 18px;
		height: 18px;
		border: 2px solid #ffffff75;
		margin: 0 5px;
	}
	.video-carousel .owl-dots .owl-dot {
		border: 2px solid #ccc;
		background-color: #ccc;	
	}
	.owl-carousel::after{
		height: 200px;
	}
	.intro--caption{
		width: 70%;
		font-size: 1.25rem;
	}
	.scroll-more{
		display: block;
		top: 45vw;
	}

    .nav-modal .mega-menu{
		text-align: left;
	}
	.nav-modal .mega-menu a::after{
		width: 2rem;
		margin: 0;
	}
	.nav-modal{
		text-align: left;
	}

}


@media (min-width: 768px) {

	
	.header-nav .sub ul {
		margin: 0;
		padding: 0;
		position: absolute;
		background-color: #fff;
		background: radial-gradient(farthest-corner at 40px 190px,    #ffff 50%,    rgb(223,223,223) 100%);
		left: 0px;
		text-align: left;
		padding: 20px 0;
		z-index: 5;
	}	
   	
   	.header-nav .sub:hover ul {
   		display: block;
   	}
   	
   	.header-nav .sub ul a {
   		margin: 0;
   		padding: 19px 70px 17px 60px;
    	display: block;
		position: relative;
		font-weight: 400;
   	}
   	.header-nav .sub ul a:after {
   		content: ">";
		position: absolute;
		left: 40px;
		color: var(--color-gold);
		font-weight: 300;
    	transform: scaleY(2);
   	}   
   	.header-nav .sub ul a:hover {
   		color: #000;
   	}	    
	   	.header-nav .sub ul a:hover:after {
   		color: var(--color-blue);
   	}	
	
        
	.header-nav .sub > a > span {
		display: none;
	}
	.nav-modal .mega-menu{
		margin-top: 0px;
	}
	.nav-modal .mega-menu a{
		margin: 0 0 40px 0;
	}
	.rozcestnik{
		padding-left: 50px;
		padding-right: 50px;
	}
	.roz-item{
		padding: 3rem;
	}
	.roz-item .desc{	
		/* padding-right: 25%; */
	}
	.roz-item img{
		max-width: 120px;
	}
	.footer .nav-menu{
		flex-flow: row;
		justify-content: start;
	}
	
}

@media (min-width: 800px) {
	.header-nav{
		display: block;
	}
	.header-nav-toggler{
		display: none;
	}

}




@media (min-width: 992px) {
	
	.block-carousel{
		aspect-ratio: 16 / 7;
	}
	.video-carousel .block-carousel{
		aspect-ratio: 16 / 9;
	}	
	.owl-carousel .owl-stage-outer, .owl-carousel .owl-item img{
		aspect-ratio: 16 / 7;
	}
	.video-carousel .owl-carousel .owl-stage-outer{
		aspect-ratio: 16 / 9; 
	}
	

	.intro--caption{
		width: 40%;
		font-size: 1.5rem;
	}
	.intro--caption h2{
		font-size: 3rem;
	}
	#slider-calendar{
		position: absolute;
		z-index: 999;
			
		right: 10%;
		top: calc(100vw / 7);
		/*bottom: 15%;*/
		/*height: 20vh;*/
		/*min-height: 14em;*/
		width: 35%;
		max-width: 500px;
		padding: 2rem 2rem 2.5rem 2rem;
		margin: auto;
	}
	.owl-item img{
		/* filter: blur(1px);  */
	}
	.owl-dots{
		bottom: 60px;
	}
	.video-carousel .owl-dots{
		bottom: -60px;
	}
	footer .menu-contact{
		justify-content: end;
	}
	.creactive{
		padding-bottom: 3rem;
		text-align: right;
	}
	.reference-param .label{
		min-width: 10rem;
	}


 	
}

@media (min-width: 1100px) {
	.socials{
		display: none;
	}
	.intro--caption h2{
		font-size: 3.5rem;
	}

        

}

@media (min-width: 1200px) {

	html{
		font-size: 17px;
	}
	header{
	height: 140px;
	/*font-size: 1.1rem;*/

	
	}
	.header-logo {
		max-width: 240px;
	}
	.header-nav ul {
		margin: 0 40px ;
	}
	.header-nav .nav-menu > li > a{
		/*margin-left: 10px;*/
		/*margin-right: 10px;*/
		margin: 0;
		padding: 57px 15px;
	}
	.lang{
		margin-right: 25px ;
	}

	.block-carousel{
		aspect-ratio: 16 / 6;
	}
	.video-carousel .block-carousel{
		aspect-ratio: 16 / 9;
	}	

	.owl-carousel .owl-stage-outer, .owl-carousel .owl-item img{
		aspect-ratio: 16 / 6;
	}
	.video-carousel .owl-carousel .owl-stage-outer{
		aspect-ratio: 16 / 9; 
	}
	

	.scroll-more{
		top: calc(38vw - 30px);
	}
	.intro--caption{
		font-size: 1.7rem;
	}
	.block-info_page {
		margin-bottom: 40px;
	}

}

@media (min-width: 1400px) {

	html{
		font-size: 18px;
	}

	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1600px;
	}   
	.intro--caption{
		font-size: 1.7rem;
	} 
	.header-nav-toggler{
		display: flex;
	}    
}

@media (min-width: 1900px) {

	.intro--caption{
		font-size: 2.2rem;
	}    

}

@media (max-width:578px){
	h1{
		font-size: 1.7rem;
	}
	h2{
		font-size: 1.6rem;
	}	
	.lead{
		font-size: 1.2rem;
	}
	
	.block-video__play-icon{
		border-radius: 150px;
		width: 80px;
		height: 80px;
		margin: 10px auto;
	}
	.block-video__play-icon::before {
		border-top: 30px solid transparent;
		border-right: 30px solid #000;
		top: 32%;
		left: 22%;
	}
	.block-video__play-title{
		font-size: 1rem;
	}
	.faq-answer{
		padding: 0 1rem 0 1rem;  
	  }
	  
	
	  .open + .faq-answer {
		  padding: 0.5rem 1rem 2.5em 1rem;
	  }

	  .form-item{
		width: 100%;
	  }
}
	