@charset "UTF-8";
/* CSS Document */





html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}




/* Základní formátování */
html, body {
	height: 100%;
	box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
	position: relative;
	margin: 0;
	min-height: 100%;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	color: #424242;
	font-size: 100%;
	background: #FFF;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.BodyMain {
  flex: 1 0 auto;
  padding-top: 0;
}

.Content {
	padding: 80px 35px;
}

.Content.Full {
	padding: 0;
}

.Content.FullWindow {
	min-height: 100%;
    min-height: 100vh;
    padding: 0;
}


.Footer {
	position: relative;
	padding: 60px 30px 60px 30px;
	margin-top: 30px;
	box-sizing: border-box;
	background: #2b2b2b;
	background-size: contain;
	color:#FFF;
	flex-shrink: 0;
}



.Content .Half {
	display: inline-block;
	float: left;
	width: 50%;
	max-width:550px;
	padding: 0 10px;
	box-sizing: border-box;
}



.Limited {
	max-width: 1200px;
	margin: auto;
}

.BgrDark {
	background-color: #006035;
}

.BgrLight {
	background-color: rgba(0, 82, 45, 0.2);
}




/* úpravy */
.Clear {
	clear: both;
}

.NoDisplay {
	display: none;
}

.Display {
	display: block;
}

.Center {
	text-align: center;
}

.TxtLeft {
	text-align: Left;
}



hr {
	border: 0 none;
	height: 1px;
	background: #111e3b;
	margin: 50px auto;
	max-width: 100%;
}

.BgrDark hr {
	background: #fff;
}


.Anchor140 {
	margin-top:-140px;
	margin-bottom:140px;
	display: block;
	visibility: hidden;
	}
	
	
.Anchor90 {
	margin-top:-60px;
	margin-bottom:60px;
	display: block;
	visibility: hidden;
	}





/* písma */
h1 {
	font-size: 3em;
	font-weight: 300;
	color: #2b2b2b;
}

.BgrDark h1 {
	color:#FFF;
}


h2 {
	font-size: 2.2em;
	font-weight: 300;
	line-height: 1.2em;
}

.BgrDark h2 {
	color:#FFF;
}



h3, .h3 {
	font-size: 1.6em;
	font-weight: 300;
	line-height: 1.2em;
}

.BgrDark h3 {
	color:#FFF;
}


p {
	font-size: 1.0em;
	font-weight: 300;
	line-height: 1.6em;
}

.BgrDark p {
	color:#FFF;
}

p.Small {
	font-size: 0.8em;
	font-weight: 400;
}

a {
	text-decoration: none;
	color: #2b2b2b;
}

.BgrDark a {
	text-decoration: none;
	color:#ffffff;
}

.BgrDark a:hover {
	color:#ffffff;
	text-decoration: underline;
}

.NoDecor a {
	text-decoration: none;
}



ul {
    list-style: none;
    
}

ul li {
    position: relative;
    font-size: .95em;
	font-weight: 300;
	line-height: 1.5em;
    margin-bottom: 2px;
    margin-left: 20px;
}

ul li:before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px;
    border-color: #00522D;
    border-radius: 50%;
    content: "";
    left: -20px;
    top:8px;
}


ul li li {
    position: relative;
    font-size: 0.9em;
    margin: 2px 0 2px 20px;
}

ul li li:before {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: #00522D;
    content: "";
    left: -20px;
    top:7px;
    border: 0 none;
}


ol {
    
}

ol li {
    position: relative;
    font-size: .95em;
	font-weight: 300;
	line-height: 1.5em;
    margin-bottom: 2px;
    margin-left: 20px;
}

ol li li {
    position: relative;
    font-size: 0.9em;
    margin: 2px 0 2px 20px;
}
 
.Perex {
	font-size: 1.4em;
	line-height: 1.4em;
	font-weight: 200;
	margin: auto;
	margin-bottom: 40px;
	max-width: 800px;
}

/* Header */
 
.Header {
	display: block;
	position: fixed;
	width: 100%;
	height: 100px;
	padding: 0 35px;
	box-sizing: border-box;
	text-align: left;
	background: transparent;
	z-index: 1000;
	transition: all .2s ease-in-out;
	background-image: linear-gradient(rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.0) 100%);
 }
 
 .Header .Limited {
	max-width: 1200px;
	position: relative;
 }
 
 
.Header .Logo {
	height: 80px;
	max-width: 100%;
	margin: 00;
	transition: all .2s ease-in-out;
	vertical-align: middle;
	}
 

.Header .LogoWrapper {
	display: inline-block;
	float: left;
	height: 0;
	width: 450px;
	border-style: solid;
	border-width: 0 100px 100px 100px;
	border-color: transparent transparent #FFF transparent;
	line-height: 100px;
	vertical-align: middle;
	margin-left: -100px;
	text-align: center;
	transition: all .2s ease-in-out;
 }
 
 
.Header.OnScroll {
	height: 60px;
	transition: all .2s ease-in-out;
	}
 
.Header.OnScroll .Logo {
	height: 30px;
	transition: all .2s ease-in-out;
	}
	
	
.Header.OnScroll .LogoWrapper {
	width: 340px;
	border-width: 0 60px 60px 60px;
	line-height: 60px;
	margin-left: -60px;
	transition: all .2s ease-in-out;
 }
 
.NaviDistance {
	position: relative;
	display: block;
	visibility: hidden;
	height: 100px;
}
	



@media (max-width: 992px)
{
	.Header {
	padding: 0 15px;
	height: 80px;
	}
	
	.Header.OnScroll {
	padding: 0 15px;
	height: 60px;
	}
	
	.Header .Logo {
	height: 40px;
	margin:0;
	float: none;
	z-index: 1002
	}
	
	.Header .LogoWrapper {
	width: 350px;
	border-width: 0 80px 80px 80px;
	line-height: 80px;
	margin-left: -100px;
	padding-left: 15px;
 	}
 	
 	.Header.OnScroll .LogoWrapper {
	width: 250px;
	border-width: 0 60px 60px 60px;
	line-height: 60px;
	margin-left: -80px;
	}
	
	.NaviDistance {
	height: 80px;
}
	
} 

 


/* Footer */

.Footer .Half {
	display: inline-block;
	float: left;
	width: 50%;
	padding-right: 40px;
	}
	
		
.Footer .FootBox {
	display: inline-block;
	vertical-align: top;
	margin: 0 80px 40px 0;
	}
	
.Footer .FootBox h3 {
	font-size: 1.5em;
	font-weight: 600;
	}
	
.Footer .FootBox p {
	font-size: .9em;
	font-weight: 200;
	}
	
.Footer .FootBox a {
	color:#FFF;
	text-decoration: underline;
	}
	
.Footer .FootBox a:hover {
	color:#ff6600;
	text-decoration: underline;
	}

.Footer .FootBox.Social img {
	margin-right: 20px;
}

.Footer .Half.Map {
	padding: 0;
	}
	
.Footer .Half.Map iframe {
	width: 100%;
	height: 350px;
	}
	
	
.Footer .FootBox.Right {
	float:right;
	margin: 0 0 40px 80px;
	}










/* Formulare  */

.Form {
	max-width: 500px;
	margin: auto;
	text-align: left;
}



label {
	display: block;
	font-size: 0.9em;
	margin-top: 10px;
	width: 100%;
	max-width: 100%;
}

label a {
	float: right;
	color: #ff6600;
	text-decoration: none;
}

label a:hover {
	text-decoration: underline;
}


label.CustomCheckRadio {
	margin-top: 25px;
}


input::placeholder { 
  color: #CCC;
  font-size: 1em;
  font-weight: 300;
}




input[type="text"] {
	width: 100%;
	max-width: 100%;
	height: 40px;
	background: #FFF;
	border: none;
	padding: 0px 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	border-radius: 2px;
}




input[type="text"].Two {
	width: 49%;
	float: left;
	vertical-align: baseline;
}


textarea {
	width: 100%;
	height: 160px;
	background: #FFF;
	border: none;
	padding: 10px;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	border-radius: 2px;
}


.SelectWrapper {
	display: inline-block;
	position: relative;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	height: 40px;
	background-color:#FFF;
	border-radius: 2px;
	}
		
.SelectInside {
	position: relative;
	width:100%;
	height:40px;
	line-height:40px;
	vertical-align:middle;
	background-color:transparent;
	overflow:hidden;
	border:none;
	box-sizing:border-box;
	z-index: 1;
	}
	
.SelectWrapper.Filtration .SelectInside {
	height:40px;
	line-height:40px;
	}
	
.SelectWrapper::after {
	content:"";
	position: absolute;
	right:15px;
	top:15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #CCC transparent transparent transparent;
}

.SelectWrapper.Filtration::after  {
	top:15px;
	}

.SelectInside select {
	width: 100%;
	height: 40px;
	background-color: transparent;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
	font-size:1em;
	color:#606060;
	font-weight: 300;
	-webkit-appearance: none;
	border: none;
	box-sizing: border-box;
	padding-left:12px;
	}
	
.SelectWrapper.Filtration .SelectInside select {
	height:40px;
	}
	
.SelectInside select option {
    color: #363a35;
}


.InlineLabel {
	display: inline-block;
	font-size:1.1em;
	color:#606060;
	min-height: 50px;
	padding: 0 10px 0 30px;
}


input[type="file"] {
	width: auto;
	max-width: auto;
	height: auto;
	background: transparent;
	border: none;
	padding: 0;
	box-sizing: border-box;
	margin: 4px auto;
	font-size: auto;
	font-weight: auto;
	font-family: 'Montserrat', sans-serif;
}


	
/* Custom Checkbox */
.CustomCheckWrapper {
  display: block;
  position: relative;
  margin-bottom: 12px;
}

.CustomCheckWrapper.InLIne {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  margin-right: 15px;
}

.CustomCheckWrapper .Label {
	padding-left: 40px;
	font-size:.95em;
	color:#606060;
	margin-top: 5px;
	font-weight: 400;
}/* Customize the label (the container) */

/* Custom Checkbox */
label.CustomCheck {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}/* Customize the label (the container) */


.CustomCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}/* Hide the browser's default checkbox */


.CheckMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border: none;
  border-radius: 2px;
}/* Create a custom checkbox */


.CustomCheck:hover input ~ .CheckMark {
  background-color: #ededed;
}/* On mouse-over, add a grey background color */


.CustomCheck input:checked ~ .CheckMark {
  background-color: #FFF;
}/* When the checkbox is checked, add a blue background */


.CheckMark:after {
  content: "";
  position: absolute;
  display: none;
}/* Create the checkmark/indicator (hidden when not checked) */


.CustomCheck input:checked ~ .CheckMark:after {
  display: block;
}/* Show the checkmark when checked */


.CustomCheck .CheckMark:after {
  left: 10px;
  top: 3px;
  width: 8px;
  height: 16px;
  border: solid #606060;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}/* Style the checkmark/indicator */

	
/* Buttony */


a.button {
    text-decoration: none;
    background: #00ccff;
    color: #FFF;
    padding: 0 35px;
    height: 50px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: 300;
    border:none;
    cursor: pointer;
    transition:background-color .2s ease-in-out;
}

a:hover.button {
    text-decoration: none;
    background: rgba(0, 204, 255, 0.7);
    transition:background-color .2s ease-in-out;
}






button {
	text-decoration: none;
    background: #00ccff;
    color: #FFF;
    padding: 0 35px;
    height: 50px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: 300;
    border:none;
    cursor: pointer;
	transition:background-color .2s ease-in-out;
}

button:hover {
	text-decoration: none;
    background: rgba(0, 204, 255, 0.7);
	transition:background-color .2s ease-in-out;
	}
	
button.Small {
    padding: 0 25px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.1em;
    font-weight: 300;
    border:none;
    cursor: pointer;
	transition:background-color .2s ease-in-out;
}
	






