/*************************/
/***   FONTS           ***/
/*************************/

@font-face {
    font-family: 'Roboto';
    src: url('/files/fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('/files/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Roboto';
    src: url('/files/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url('/files/fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 200;
}


* {
	margin: 0px;
	padding: 0px;
}
body {
      background-color: white;
      color: #4d4c4c;  
	font-size: 75%;
	text-align: left;
	font-family: Roboto,sans-serif;
	line-height: 1.4;
	height: 100%;
}

.EditableSection a[rel="lightbox[all]"] img, .EditableContent a[rel="lightbox[all]"] img, .editable-section a[rel="lightbox[all]"] img{
    	position: relative;
    	display: inline-block;
	border: 3px solid #e1e1e1 !important;
	margin: 4px;
}

.EditableSection a[rel="lightbox[all]"]:hover img, .EditableContent a[rel="lightbox[all]"]:hover img, .editable-section a[rel="lightbox[all]"]:hover img{
	border: 3px solid #bb1134 !important;
}
#cookies_souhlas{
	width: 100% !important;
}

/**********************************/
/*         COMMON COMPONENTS
/**********************************/

@media (min-width: 1400px){
.container {
    max-width: 1360px;
}
}
.cols{
	display: flex;
}
.col{
	display: inline-block;
	vertical-align: middle;
}
button, button:hover, button:active, button:focus{
	outline: none;
	box-shadow: none !important;
}
.fader{
	opacity: 0.0;
    	-webkit-transition: opacity 1.0s ease-in-out;
    	-moz-transition: opacity 1.0s ease-in-out;
    	-ms-transition: opacity 1.0s ease-in-out;
    	-o-transition: opacity 1.0s ease-in-out;
    	transition: opacity 1.0s ease-in-out;
}
.fader.visible{
	opacity: 1;
}
.borderEffect{
	position: relative;
	border: 1px solid white;
	background: white;
}
.borderEffect:before, .borderEffect:after {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    content: "";
    z-index: 3;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.borderEffect:before {
    border-bottom: 1px solid #d30933;
    border-left: 1px solid #d30933;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}
.borderEffect:after {
    border-top: 1px solid #d30933;
    border-right: 1px solid #d30933;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.borderEffect:hover:after, .borderEffect:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.borderEffect div.inner {
    	text-transform: uppercase;
	color: black;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding: 8px 25px;
	background: #dfdfdf;	
	border: 1px solid #dfdfdf;
	margin: 5px;
}
.borderEffect:hover div.inner{
	background: #bfbfbf;
	border: 1px solid #bfbfbf;
	color: white;
}
.borderEffect:hover{
	background: #EBF4FB;
}

.borderEffect a, .borderEffect a:hover{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	color: transparent !important;
}	

/**********************************/
/*         HEADER
/*********************************/
header{
	position: relative; 
	width: 100%; 
	background: #970120;	
}
#header{
	padding: 15px 0;
}
#header .row {
      margin: 0;
    	justify-content: space-between; 
}
.logo a{
	color: white;
	text-decoration: none !important;
}
.logo span{
	color: white;
	text-transform: uppercase;
    	vertical-align: bottom;
    	margin-bottom: 12px;
    	display: inline-block;
}
.link-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 10;
}
#kontakt{
	display: inline-block;
    	vertical-align: middle;
	margin-left: 15px;
}
#kontakt p, #kontakt a{
	font-size: 17px;
	text-decoration: none;
	font-weight: 300;
	font-family: roboto;
	color: white;
}
#kontakt a:hover{
	text-decoration: underline;
}	
.nomargin{
	margin: 0;
}

/**********************************/
/*         BUTTONS
/**********************************/

.btn-wrap{
	display: block;
	margin-top: 8px;
	clear: both;
}
.btn,  .camera_wrap .btn{
	text-decoration: none !important;
	font-weight: bold;
	font-size: 18px;
	box-shadow: none !important;
	padding: 0.3rem 1.2rem;
	border-radius: 0;
	display: inline-block;
}
.btn.btn:active{
	border: inherit !important;
	background: inherit !important;
}
.btn.btn-primary{
	background: #bb1134;
	text-align: center;
	border: 1px solid #bb1134;
	color: white !important;
}
.reference_box .btn.btn-primary{
	text-transform: initial;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .reference_box:hover .btn.btn-primary{
	background: #dfdfdf;
	border: 1px solid #dfdfdf;
	color: black !important;
}
.btn.btn-secondary{
	background: white;
	border-radius: 3px;
	border: 1px solid #013053;
	color: #013053 !important;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .article-thumb:hover .btn.btn-secondary{
	background: #013053;
	color: white !important;
}

/**********************************/
/*         MENU
/**********************************/
#menu_top .container{
	padding: 0;
	overflow: visible;
}
#menu_top{
	background: #d30933;
	z-index: 2;
-webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.4);
box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.4);
}
.navbar {
    	padding: 0;
	margin-top: 0;
	-webkit-transition: all 0;
    	transition: all 0;
}
.navbar-toggler {
    display: none;
}
.navbar-collapse.collapse:not(.show) {
    display: block;
}
.navbar-inner{
	text-align: left;
	display: inline-block;
	width: 100%;
}
.nav {
	justify-content: center;
}
.nav li {
    margin: 0;
    position: relative;
    display: inline-block;
}
.nav li.lvl-1{

}
.nav li.lvl-1 > a {
    font-size: 17px;
    color: white;
    font-weight: normal;
    padding: 10px 20px;
	border-radius: 0;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
	position: relative;
}
.topMenuItem35 {
	background: black;
}
.nav li.lvl-1 > a:hover:after, .nav li.lvl-1 > a.active:after, .nav li.lvl-1.show > a:after {
	position: absolute;
	bottom: 5px;
	left: 20px;
	right: 20px;
	margin: auto;
	content: '';
	height: 2px;
	background: white;
}
.dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
	color: white;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.nav li.lvl-1 > a:hover:before, .nav li.lvl-1 > a.active:before, .nav li.lvl-1.show > a:before{
	color: white;
}
.dropdown-toggle::after{
	display: none;
}
.dropdown-menu {
    border-radius: 0;
    border: 3px solid #d30933;
    margin: 0;
    left: 8px;
	top: 41px;
    min-width: calc(100% + 2px);
    background-color: white;
    transform-origin: 50% 0;
    transform: scaleY(0);
    opacity: 0;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}
.dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
}
.dropdown-menu a{
	text-transform: initial;
	text-decoration: none;
}
.dropdown-menu a:hover, .dropdown-menu a:active{
	color: white;
	background: #d91e44;
}

#intro{
	position: relative;
}

#intro img{
	width: 100%;
	display: block;
	height: auto;
}
#intro .caption img{
	width: auto;
	display: inline-block;
}
#intro .caption {
	bottom: 0;
	top: auto;
}
section {
    padding: 20px 0;
}

.bordered {
    border-bottom: 1px solid #eaeaea;
}

.section-red {
    background: #bb1134;
}
.section-red iframe {
    border: 4px solid white !important;
}
.section-red h2{
	color: white;
	font-size: 30px;
}
.section-red p{
	font-size: 24px;
	color: white;
}	

.green_box{
	border: 1px solid #30a865;
	color: #30a865;	
	text-align: center;
	padding: 20px;
	font-size: 18px;
      font-family: 'Roboto Slab',sans-serif;
}

.kontakt{
	width: 330px;
	display: inline-block;
}

.kontakt p:first-of-type, .kontakt h3{
      font-family: 'Roboto',sans-serif;
	margin: 10px 0;
}

.kontakt p{
	margin-bottom: 8px;
}

.kontakt strong, .kontakt strong a{
	color: black;
	font-size: 15px;
}
.btn-akce{
	float: right;
	font-weight: 300;
	font-size: 24px;
   	margin-top: 55px;
	margin-left: 20px;
	padding: 15px 25px;
	margin-bottom: 10px;
}


/**********************************/
/*         DEFAULTNI HODNOTY
/*********************************/

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  line-height: 1.3em;
  margin: 0 0 12px 0;
  text-align: left;
}
h1, .h1{
	color: black;
	font-size: 30px;
	font-weight: 300;
	text-align: left;
	position: relative;
	padding-bottom: 8px;
}
h1:after, .h1:after {
  content:""; 
  background: #bb1134; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  height: 2px; 
  width: 80px;
}

h1.cent, .h1.cent{
	text-align: center;
}
h1.cent:after, .h1.cent:after{
  content:""; 
  background: #bb1134; 
  position: absolute; 
  bottom: 0; 
  left: calc(50% - 40px); 
  height: 2px; 
  width: 80px;
}
 
h2, .h2{
	color: black;
	font-size: 24px;
	font-weight: 300;
}
h3, .h3{
	color: black;
	font-size: 18px;
	font-weight: bold;
	clear: both;
}
h4, .h4{
	color: #0ea155;
	font-size: 14px;
	font-weight: 600;
}
p, li, label, .EditableSection, .EditableContent, .editable-section{
  margin: 0 0 12px 0;
  line-height: 1.3em;
  font-size: 17px;
  list-style-type: none;
  color: #3d3d3d;
  font-weight: 300;
}

ul{
	padding-left: 0;
}
.EditableSection a, .EditableContent a, .editable-section a{
	text-decoration: underline;
}
.EditableSection a:hover, .EditableContent a:hover, .editable-section a:hover{
	text-decoration: none;
}
.EditableSection li:before, .EditableContent li:before, .editable-section li:before {
    content: '\f111';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 6px;
    vertical-align: top;
    margin-top: 1px;
    margin-right: 6px;
}

img {
	margin: 0; 
	max-width: 100%;
}

a,
a:visited {
    color: #3d3d3d;
    font-size: 17px;
}
a:hover {
	text-decoration: underline;
	color: #d91e44;
}
table {
	border-collapse: collapse;
	border: none;
  margin: 0 0 12px 0;
}
table td {
  vertical-align: top;
  text-align: left;
}
ul, ol {
	list-style-position: outside;
	margin: 0 0 12px 0px;
}
.EditableSection table {
  border: none;
  width: auto;
  height: auto;
}

.EditableSection td {
  border: 1px solid #E4E4E4;
  padding: 10px;
  line-height: 1.3em;
  font-size: 15px;
  color: #4d4c4c;
  margin-bottom: 5px;
}

bold, b{
	font-weight: bold;
}

.box.right{
	float: right;
}
.box.right * {
	color: white !important;
}
#ref_ukazka p.gal{
	display: table;
    	margin: 0 -5px;
}
#ref_ukazka p.gal a{
	display: table-cell;
	padding: 5px;
}
#ref_ukazka p.gal a img{
	border: 3px solid transparent;
	height: auto !important;
	width: 100% !important;
	margin: 0;
}
#ref_ukazka p.gal a img:hover{
	border: 3px solid #d3e7f7;
}

/**********************************/
/*  BANNERY 
/*********************************/

#banners{
	width: 100%;
	text-align: center;
}

.banner{
	text-align: center;
	position: relative;
}
.banner_img{
	display: inline-block;
	overflow: hidden;
	border-radius: 100px;
	border: 2px solid white;
    	width: 120px;
    	height: 120px;
    	background-size: cover !important;
}
.banner_img img{
	max-width: 200px;
	max-height: 200px;
}
.banner:hover .banner_img{
	border: 2px solid #bb1134;
}
.banner h2, .banner_name{
	text-align: center;
	color: black;
	font-size: 24px;
	height: 1.3em;
    	overflow: hidden;
    	font-weight: normal;
}
.banner p.banner_text{
	height: 5.2em;
	overflow: hidden;
}
.banner p.vice{
	text-decoration: underline;
	color: black;
	font-size: 18px;
	font-weight: 300;
}
.banner:hover p.vice{
	color: #bb1134;
}


/**********************************/
/*  MODULY 
/*********************************/

/* hlavicka - odkaz logo */
#head .link_logo  {
	background: url(/files/images/sablona1/logo.png);
	float: left;
	width: 397px;
	height: 78px;
	display: block;
	margin-top: 30px;
    margin-bottom: 10px;
}
/* clear obtekani */
.clear {
	border:  0px none;
	margin:  0px;
	padding: 0px;
	float: none;
	clear: both;
	width: 0px;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}
/**********************************/
/*  FORMULARE 
/*********************************/

.box{
	border: 1px solid rgb(234, 234, 234);
	text-align: center;
	padding: 15px;
	margin: 20px 0;
}

button#modal-launch, button#modal-launch-2{
    background: none;
    border: none;
    cursor: pointer;
	padding: 0;
	box-shadow: none;
	text-shadow: none;
}
button#modal-launch-2{
	text-align: left;
	white-space: normal;
	clear: both;
}
button#modal-launch-2 p{
	display: inline-block;
	font-weight: 300;	
	margin-right: 10px;
	margin-bottom: 0;
}
button#modal-launch-2 p, button#modal-launch-2 a.btn{
	font-size: 24px;
	font-weight: 300;
}
.modal-content{
	border: none;
	border-radius: 0;
	font-family: Roboto,sans-serif;
}

div.modal-header {
	border-radius: 0;
	background: #970120;
}

div.modal-header .close{
	margin: 0 0 auto;
	border: 1px solid white;
	border-radius: 5px;
	padding: 0.4rem 0.7rem;
	color: white;
	opacity: 1;
	-webkit-transition: all 0.3s; 
	-ms-transition: all 0.3s;
    	transition: all 0.3s;    
}
div.modal-header .close:not(:disabled):not(.disabled):hover, 
div.modal-header .close:not(:disabled):not(.disabled):focus{
	opacity: 1;
	color: black;
	background: white;
}

.modal-dialog label {
    margin-bottom: 0.2rem;
}

.modal-dialog .modal-title{
	color: white;
	/* text-transform: uppercase; */
	font-size: 25px;
	font-family: 'Roboto';
	font-weight: bold;
}

span.mandatory-star {
    color: #ff6d6d;
}

.modal-dialog .modal-body {
    background-color: #f5f5f5;
}

.modal-dialog .modal-body label{
	/* font-weight: bold; */
	font-size: 17px;
	color: black;
}

.modal-dialog .btn-primary{
	border: 1px solid #970120;
	color: white;
	font-family: 'Roboto';
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
    	padding: 0.375rem 1.75rem; 
	background: #970120;
	-webkit-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	-moz-box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
	box-shadow: inset 1px 1px 2px 0px rgba(255,255,255,0.5) !important;
}


.modal-dialog .btn-primary:hover{
	background: #d30933;
	color: white;
}


.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid
{
    background-color: #ffdede;
}

.invalid-feedback, .form-text, small, .small {
    font-size: 15px;
}


/***************************/
/*  FOOTER
/***************************/
#footer {
	height: auto;
	background: transparent;
	border: none;
}
footer{
  background: #970120;
  z-index: 0;
  width: 100%;

}
#footer a,
#footer a:visited,
#footer a:hover {
	color: white;
	text-decoration: none;
}
/* resetovac */
#reset {
	border:  0px none;
	margin:  0px;
	padding: 0px;
	float: none;
	clear: both;
	width: 0px;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}
#footer_text{ padding: 2em 0; overflow: hidden;}
#footer #footer_text, #footer #footer_text p, #footer #footer_text a{
	color: white;
	font-size: 15px;
}

#footer #footer_text a:hover{
	color: white;
	text-decoration: underline;
}

#footer .row{
	flex-direction: row-reverse;
	margin: 0;
}

#footer .col{
	display: inline-block;
	vertical-align: top;
	float: right;
}

#footer .col:nth-of-type(4){
	width: 50%;
	padding: 15px;
	padding-left: 0;
	
}

#footer .col:nth-of-type(4) > div:nth-of-type(2) {
	padding-top: 15px;
}
#footer .col:nth-of-type(1),#footer .col:nth-of-type(2), #footer .col:nth-of-type(3){
	padding: 15px;
	width: 16.666%;
	border-left: 1px solid #760119;
	min-height: 105px;
}
#footer .col p{
	margin-bottom: 5px;
	color: white;
}
#footer .col p strong{
	margin-bottom: 10px;
	color: white;
	font-weight: bold;
}
#footer .col p.gdpr{
	margin-bottom: 10px;
}
#footer .col p.gdpr a{
	display: inline-block;
	border: 1px solid #760119;
	background: #bb1134;
	color: white;
	font-weight: normal;
	text-decoration: none;
	padding: 8px 12px;
}
#footer .col p.gdpr a:hover{
	background: #760119;
	text-decoration: none !important;
}
#fcb a{
	display: flex;
	background: #ffffff;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
	color: #970120;
    	width: 45px;
    	height: 45px;
}
#fcb a:hover{
	text-decoration: none !important;
	background: #760119;
}
#fcb a .fab{
	color: #970120;
	font-size: 25px;
}
#fcb a:hover .fab{
	color: white;
}

/**********************************/
/*         BREADCRUMB 
/*********************************/

.breadcrumb {
    	border-top: 1px solid transparent;
    	border-bottom: 1px solid transparent;
	background: white;
	margin: 0;
	border-radius: 0;	
	font-size: 15px;
}
.breadcrumb span, .breadcrumb a {
    color: black;
}
.breadcrumb a{
	text-decoration: underline;
	color: #3C3C3C;
	font-size: 15px;
}
.breadcrumb a:hover{
    	color: black;
	text-decoration: none;
}
.breadcrumb .drobeckova-navigace-sipky {
    display: inline-block;
    padding: 0 1rem;
}
/*************
SLIDESHOW
**************/
#intro {
    position: relative;
}
#slides{
	position: relative;
	margin: 0 !important; 
	overflow: hidden;
	float: none;
}	

#slides .camera_pag{
	position: absolute;
	left: 0;
    	right: 0;
	bottom: 5px;
    	margin-left: auto;
    	margin-right: auto;
	max-width: 1360px;
	text-align: left;
	z-index: 1000;
}

.camera_wrap .camera_pag .camera_pag_ul{
	text-align: left;
}

#slides .camera_pag li{
	border: 3px solid white;
	width: 20px;
	height: 20px;
	border-radius: 0;
	display: inline-block;
	z-index: 1000;
	background: transparent;
	color: transparent;
}

#slides .camera_pag li span{
	display: none;
}

#slides .camera_pag li:hover, 
#slides .camera_pag li.cameracurrent{
	background: black;
	color: transparent;
}
.camera_commands{
    display: none;
}

#slides .camera_pag, .caption{
	width: 100%;
}
.caption{
	position:absolute;
    	left:0;
    	right:0;
    	margin-left:auto;
    	margin-right:auto;
    	top: 80px;
    	max-width: 1360px;
}
.caption .caption-inner{
	padding: 15px 20px;
	background: rgba(0, 0, 0, 0.5);
	display: inline-block;
	margin-bottom: 10px;
	float: left;
	max-width: 550px;
}
.caption p{
	color: white;
	font-size: 18px;
      font-weight: normal;
}
.caption p strong{
	font-size: 30px;
	font-weight: normal;
	text-transform: uppercase;
}
a.vice{
	display: inline-block;
	color: white;
	text-decoration: none;
	font-size: 17px;
	padding: 4px 10px;
	float: left;
    	clear: both;
	border: 1px solid #68ccff;
	background: rgba(0,0,0,0.3);
      font-weight: bold;
}
a.vice:hover{
	background: #68ccff;
	color: black;
}

/***********
RESPONSIVE
************/

@media screen and (min-width: 1200px){
header{
	position: fixed;
	top: 0;
	z-index: 200;
}
}

@media (min-width: 576px){
#slides .camera_pag, .caption{
	max-width: 510px;
}
}
@media (min-width: 768px){
#slides .camera_pag, .caption{
	max-width: 690px;
}
}
@media (min-width: 992px){
#slides .camera_pag, .caption{
	max-width: 930px;
}
}
@media (min-width: 1200px){
#slides .camera_pag, .caption{
	max-width: 1110px;
}
}
@media (min-width: 1400px){
#slides .camera_pag, .caption{
    max-width: 1330px;
}
}

@media screen and (max-width: 1360px){


#menu_top{
	height: auto;
}

figcaption{
	font-size: 20px;
}

.form_content #form_info{
	padding-left: 0;
}

#aktuality_slide .slidesjs-container{
	min-height: 275px;
	height: auto !important;
}

#aktuality_slide .aktuality_img img{
	    max-width: 88%;
}

.reference_col_container.detail .reference_galerie{
	overflow: auto;
}

.inside_container{
	text-align: center;
}

.inside_container hr{
	display: none;
}

#aktuality_slide .aktuality_text p{
	height: 6.5em;
}

}

@media screen and (max-width: 1100px){

.navbar-toggler {
    display: block !important;
    color: white;
    font-size: 25px;
    vertical-align: middle;
    outline: none !important;
    line-height: 25px;
    width: 100%;
}
.navbar-toggler-icon {
    font-size: 25px;
    height: auto;
    vertical-align: initial;
    margin-bottom: 0;
    color: white;
}
.navbar-collapse.collapse:not(.show) {
    display: none;
    height: auto;
}
.navbar-inner{
	width: 100%;
	text-align: center;
}
.nav li.lvl-1 {
    display: block;
    text-align: center;
    flex-basis: 100%;
}
#header .col-md-auto{
	flex-basis: 100%;
	max-width: 100%;
	text-align: center;
}
.logo {
    	width: 100%;
    	margin-bottom: 10px;
	text-align: center;
}

#kontakt{
	float: none;
	text-align: center;
	margin: 10px;
}
#footer .col:nth-of-type(1), #footer .col:nth-of-type(2), #footer .col:nth-of-type(3), #footer .col:nth-of-type(4){
	width: 100%;
	padding: 10px 0;
	border: none;
	min-height: 0;
	text-align: center;
	flex-basis: 100%;
}
#fcb a{
	margin: 0 auto;
}
#banners .col-md-3 {
    max-width: 50%;
    flex-basis: 50%;
}
.reference_box, .produkt_box{
	flex-basis: 25%;
	max-width: 25%;
}
#dalsi-obrazky .col {
    	flex-basis: 25%;
	max-width: 25%;
}
}

@media screen and (max-width: 800px){

#kontakt a:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin-top: 4px;
    margin-right: 6px;
    color: white;
}
#kontakt .mail a:before {
    content: '\f2b6';
    font-weight: normal;
}
#kontakt .tel a:before {
    content: '\f095';
}
#kontakt i {
    display: none;
}
#kontakt a {
    overflow: hidden;
    content: '';
    color: transparent;
    height: 25px;
    width: 25px;
    display: block;
}
#kontakt p {
    margin: 0 8px;
}
.caption{
    	position: relative;
    	left: auto;
    	right: auto;
    	bottom: auto;
    	top: auto;
	width: 100%;
}
.caption p {
    font-size: 16px;
}
.caption p strong{
	font-size: 20px;
}
.caption div{
	max-width: calc(100% - 30px);
}
#ref_ukazka p.gal {
    display: block;
    text-align: center;
}
#ref_ukazka p.gal a {
    display: inline-block;
    margin: 5px;
    padding: 0;
    position: relative;
    max-width: 100%;
    flex-basis: 100%;
    width: 240px;
}
#banners .col-md-3 {
    max-width: 100%;
    flex-basis: 100%;
}
.reference_box, .produkt_box{
	flex-basis: 50%;
	max-width: 50%;
}
.aktuality_col_container .aktuality_img{
	width: 100%;
	float: none;
	margin-bottom: 10px;
}
.aktuality_col_container .aktuality_box{
	text-align: center;
}

}

@media screen and (max-width: 720px){

.caption{
	display: none;
}
ul.slidesjs-pagination {
    bottom: 0;
    margin-bottom: 0;
}
#ref_ukazka p.gal{
	display: block;
	text-align: center;
}
#ref_ukazka p.gal a{
	display: inline-block;
	margin: 5px;
	padding: 0;
	position: relative;
	width: 240px;
	height: 160px;
}
#ref_ukazka p.gal a img{
	max-width: 100%;
	max-height: 100%;
    	width: auto !important;
    	height: auto !important;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto !important;
}
#dalsi-obrazky .col, .detail_images .col{
    	flex-basis: 50%;
	max-width: 50%;
}
.btn-akce{
	float: none;
	width: 100%;
	margin-left: 0;
	margin-top: 0;
}	
}
	
@media screen and (max-width: 640px){


}








