/* thiemokirberg by pikku-media.at based on GRID 1200 (by PMKMedia.nl/grid) */

/* body css */

html, 
body {
	height: 100%;
}

body {
	font-family: 'Raleway', sans-serif;
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	-webkit-text-size-adjust: 100%;
	width: 100%;
}

/* headings and paragraph margin css */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 20px;
}
p {
	margin: 10px 30px;
}
/* headings css */

h1 {
	font-size: 2.5em;
	line-height: 35px;
	font-weight: 400;
	color: #000;
}

h2 {
	font-size: 25px;
	font-weight: 400;
	color: #000;
}

h3 {
	font-size: 20px;
	font-weight: 400;
	color: #000;
}

h4 {
	font-size: 20px;
	font-weight: 400;
	color: #000;
}
	
h5 {
	font-size: 15px;
	font-weight: 400;
	color: #000;
}

h6 {
	font-size: 15px;
	font-weight: 400;
	color: #000;
}

/* list css */

ul {
	list-style-type: disc;
	margin: 15px 60px;
}

ol {
	list-style-type: decimal;
	margin: 15px 60px;
}

ul li,
ol li {
	display: list-item;
}

/* link css */

a {
	/* color: #000; */
	/* text-decoration: underline; */
}

a:visited {
	/* color: #333; */
}

a:hover {
	color: #999;
}

a:active {
	color: #666;
}

/* elements css */

strong,
b {
	/* font-weight: 400; */
}

em,
i {
	font-style: italic;
}

u {
	text-decoration: underline;
}

/* form css */

form {
	margin: 30px;
}

form h1,
form h2,
form h3,
form h4,
form h5,
form h6,
form p {
	margin: 10px 0;
}

form input,
form textarea,
form button,
form select {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 300;
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=password],
form select,
form textarea {
	padding: 10px;
	background: #fff;
	border: 1px solid #ccc;
}

form input[type=radio],
form input[type=checkbox] {
	margin-top: 15px;
}

form input[type=submit],
form input[type=reset] {
	margin-top: 15px;
	padding: 10px;
	background: #999;
	color: #fff;
	border: 0;
	width: 100%;
}

form input[type=submit]:hover,
form input[type=reset]:hover {
	background: #000;
	cursor: pointer;
}

form table {
	width: 100% !important;
	margin: 0;
}

/* search form css */

.search label,
.search input[type=submit] {
	display: none;
}

.search-form input[type=text] {
	width: 60%;
}

.search-form input[type=submit] {
	width: 40%;
	margin-left: -5px;
}

/* formbuilder css */

.formbuilderform td {
	padding: 5px 0;
	border: 0;
}

.formbuilderform {	
	width: auto;
}

.website,
.website * {
	display: none !important;
}

/* table css */

table {
	width: calc(100% - 60px);
	margin: 30px;
	border-spacing: 0;
	border-collapse: collapse;
}

table th {
	font-weight: 400;
	padding: 10px;
	border: 1px solid #ccc;
	background: #efefef;
}

table td {
	padding: 10px;
	border: 1px solid #ccc;
}

/* header css */

header {
	/* background: #fff; */
	/* border-bottom: 1px solid #ccc; */
}

.top-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center; /* align horizontal */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center; /* align vertical */
	text-align: center;
	text-shadow: 0 0 5px #000;
	font-size: 20px;
	line-height: 30px;
	border-bottom: 1px solid #ccc;
  	width: 100vw;
}

.top-header,
.top-header h1,
.top-header h2,
.top-header h3,
.top-header h4,
.top-header h5,
.top-header h6,
.top-header p {
	font-weight: 500;
	color: #fff;
}

.top-header h1 {
	font-size: 30px;
}

.top-header a {
	color: #fff;
	text-decoration: none;
}

.top-header a:visited {
	color: #fff;
}

.top-header a:hover {
	color: #fff;
	text-decoration: underline;
}

.top-header a:active {
	color: #fff;
}

/* header backgrounds css */

.sample-background-1 {
	background: url("images/sample-background.jpg");
	background-position: top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	height: calc(100vh - 74px); /* header height min 1px */
}

.sample-background-2 {
	background: url("images/sample-background.jpg");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	height: 60vh; /* header height 60% of viewport height */
}

.sample-background-3 {
	background: url("images/sample-background.jpg");
	background-position: center;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-size: cover;
	height: 60vh; /* header height 60% of viewport height */
}
	
.sample-video {
	height: calc(100vh - 74px); /* header height min 1px */
}
	
.sample-youtube {
	height: calc(100vh - 74px); /* header height min 1px */
}

#video-viewport {
	z-index: -1000;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

/* content css */

.content-block {
	background: #fff;
	border-bottom: 1px solid #ccc;
}

.block-img-left img {
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
	width: 30%;
	display: block;
}

.block-img-right img {
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;
	width: 30%;
	display: block;
}

/* footer css */

footer {
	/* background: #999; */
	color: #fff;
}

footer,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p {
	color: #fff;
	margin: 10px 30px 5px;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:visited {
	color: #fff;
}

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

footer a:active {
	color: #fff;
}

/* hide for desktop css */

.mobile {
	display: none;
}

/* columns samples css */

#columns .one-column,
#columns .two-column,
#columns .three-column,
#columns .three-column-close,
#columns .two-third-column,
#columns .four-column,
#columns .one-fourth-column,
#columns .two-fourth-column,
#columns .three-fourth-column,
#columns .six-column,
#columns .five-sixth-column {
	background: #fff;
	border: 1px solid #ccc;
}

#columns p {
	margin: 20px 30px;
}

/* text center css */

.text-center,
.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center h5,
.text-center h6,
.text-center p {
	text-align: center; /* remove if you want the text alignment left for these elements */
}

/* header scroll button css */

.top-nav,
.bottom-nav {
	font-family: 'Quicksand', sans-serif;
	height: 25px;
	text-align: center;
}

.top-nav {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.bottom-nav p {
	margin: 0;
}

.top-nav a,
.bottom-nav a  {
	color: #fff;
	font-size: 70px;
	font-weight: 300;
	-webkit-transition: 300ms ease;
	transition: 300ms ease; 
}

.bottom-nav a  {
	opacity: 0.50;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.top-nav a:hover,
.bottom-nav a:hover {
	font-size: 80px;
	text-decoration: none;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* top title link css */

.grid-link a {
	font-weight: 400;
	text-decoration: none;
	-webkit-transition: 300ms ease;
	transition: 300ms ease;
}

.grid-link {
	margin: 15px;
}

/* social css */

.social {
	padding: 0 60px;
}

.social img {
	opacity: 0.25;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
	-webkit-transition: 300ms ease;
	transition: 300ms ease; 
}

.social img:hover {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	overflow: hidden;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

/* scroll to top button css */

.scroll-to-top {
	opacity: 0.25;
	font-family: 'Quicksand', sans-serif;
	text-align: left;
	padding: 22px 10px;
	color: #fff;
	position: fixed;
	font-size: 70px;
	line-height: 0;
	font-weight: 300;
	right: 20px;
	bottom: 20px;
	height: 60px;
	width: 60px;
	z-index: 4000;
	background: #000;
	display: none;
}
	
.scroll-to-top:hover {
	opacity: 0.50;
}

@media screen and (max-width: 1200px) {
	
	/* header backgrounds css */

	.sample-background-1 {
		background-attachment: scroll !important;
    }
	
	.sample-background-2 {
		background-attachment: scroll !important;
    }
	
}

@media screen and (max-width: 1024px) {
	
	/* social css */
	
	.social {
		padding: 0 40px;
	}
	
}

@media screen and (max-width: 800px) {
	
	/* header backgrounds css */

	.sample-background-1 {
		background: url("images/sample-background-mobile.jpg");
		background-position: center !important;
		background-size: cover;
	}
	
	.sample-background-2 {
		background: url("images/sample-background-mobile.jpg");
		background-position: center !important;
		background-size: cover;
		height: calc(100vh - 74px); /* header height min 1px */
	}
	
	.sample-background-3 {
		background: url("images/sample-background-mobile.jpg");
		background-position: center !important;
		background-size: cover;
		height: calc(100vh - 74px); /* header height min 1px */
	}
	
	.sample-video {
		background: url("images/sample-background-mobile.jpg");
		background-position: center !important;
		background-size: cover;
	}
	
	.sample-youtube {
		background: url("images/sample-background-mobile.jpg");
		background-position: center !important;
		background-size: cover;
	}
	
	/* content css */
	
	.block-img-left img {
		margin-right: 0;
		width: 100%;
	}
	
	.block-img-right img {
		margin-left: 0;
		width: 100%;
	}
	
	.block-img-left, 
	.block-img-right {
		text-align: center; /* remove if you want the text alignment left for these elements */
	}
	
	img {
		width: 100%;
	}
	
	/* hide for mobile css */
	
	.desktop {
		display: none;
	}
	
	/* hide for desktop css */

	.mobile {
		display: block;
		text-align: center; /* remove if you want the text alignment left for these elements */
	}
	
	/* social css */

	.social {
		padding: 0 10px;
		width: 22%;
		margin: 10px 1.5%;
	}
	
}

@media screen and (max-width: 600px) {
	
	/* social css */
	
	.social {
		padding: 0 20px;
		width: 46%;
		margin: 10px 2%;
	}

}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (        min-device-pixel-ratio: 2),
only screen and (           min-resolution: 192dpi),
only screen and (            min-resolution: 2dppx) {

	/* retina display css */

}