/*
	Theme Name: Heiden's Miet WC
	Description: Heiden's Miet WC
	Version: 1.0.0
	Author: Thomas Pietsch (www.comtecda.de)
	Author URI: www.comtecda.de
	Tags: Heiden's Miet WC, ComTecDa, Generic, Template, HTML5, CSS3
*/

/* color sheme

blue: #1a6fe3

/*------------------------------------*\
    MAIN
\*------------------------------------*/
@font-face {
	font-family: 'inter';
	src:url('/wp-content/themes/heiden/fonts/inter.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Space Mono';
	src:url('/wp-content/themes/heiden/fonts/SpaceMono-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Open Sans Condensed';
	src:url('/wp-content/themes/heiden/fonts/OpenSansCondensed-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font: 26px 'Open Sans Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #333333;
	background: #ffffff;
}
ul, li{ 
	padding: 0;
	margin: 0;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}
.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
}


/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/
article ul{
	font-size: 100%;
	margin-left: 20px;
	padding: 0 0 24px 0;
}
article ol{
	font-size: 100%;
	margin-left: 20px;
	padding: 0 0 24px 0;
}
article a{
	color: #555555;
	font-size: 100%;
	font-weight: bold;
	text-decoration: none;
	transition: all .25s ease-in;
	padding: 0;
}
article pre{
	font-family: 'Space Mono';
	font-size: 80%;
	padding: 0 0 10px 0;
	white-space: normal;
	text-align: justify;
}
article blockquote p{
	font-family: 'Space Mono';
	font-style: italic;
	font-size: 100%;
	padding: 0 0 10px 0;
}
article p{
	margin: 0 0 24px 0;
	padding: 0;
}
article p .blocky{
	text-align:justify;
}
.shadow img{
	box-shadow: 0 0 10px #555555;
}
H1, H2, H3, H4, H5, H6{
	font-family: 'inter';
	color: #111111;
	font-weight: normal;
	padding: 0;
	margin: 0;
}
h1{ 
	font-size: 80px;
	line-height: 100px;
	margin-bottom: 25px;
	font-weight: bold; 
}
h2{ 
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 15px;
	font-weight: normal; 
}

/*------------------------------------*\
    LAYOUT
\*------------------------------------*/

/* Header */
.header{
	position:fixed;
	display: -webkit-flex;
	display: flex;
	top: 0;
	left: 0;
	width:100vw;
	height:50px;
	min-height:50px;
	background:#444444;
	z-index:1000;
}

/* Hamburger Navigation */

/*----- Icon 'OPEN' -----*/
a.open img{ position: fixed; padding: 0; top: 5px; right: 15px; width: 40px; height: 40px; display: block; z-index: 2000;}
/*----- Icon 'CLOSE' -----*/
a.close img{ position: fixed; padding: 0; top: 5px; right: 15px; width: 40px; height: 40px; display: block; z-index: 2001;}

/*----- Menü -----*/
nav.hamMenu{ 
	position: fixed; 
	right: 0px; 
	top: 0px; 
	width: 400px;
	max-width: 100vw;
	background: #444444; 
	border: 1px solid #333333;
	transform: scaleY(0);
	box-shadow: 0 0 5px #000000;
	
	overflow: hidden; 
	z-index: 2001;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

nav.hamMenu li{ display:block; height: 50px; line-height: 50px; background: #444444; margin: 0; padding: 0 0 0 10px;}
nav.hamMenu li:before { content: ""; border-top: 1px solid #999999; height: 50px; width:300%; display:block; clear:both; left:-100%; position:absolute; float:left; pointer-events:none;}
nav.hamMenu a { display: block; line-height: 50px; height: 50px; color: #ffffff; text-decoration: none; }

#nav-m:target { display: none; }
#nav-m:target + nav.hamMenu{ top: 0px; transform: scaleY(1); }

/* Wrapper */
.wrapper { 
	top: 50px;
	width:100%; 
	margin: 0;
	margin-top: 50px;
	padding: 0;
	z-index:1;
}
.site-wrapper{ 
	width:100%; 
	margin: 0 auto; 
}
/* extras */
.round{
	padding: 0 20px 20px 20px;
	margin: 0 10px 20px 10px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 5px #333333;
}
.round img{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.extralink a{
	position: absolute;
	bottom: 10px;
	right: 0px;
	font-size: 60%;
	margin: 10px;
	padding: 10px 20px;
	border-radius: 5px;
	color: #ffffff;
	background: #a058a2;
}

.footer{
	background: #444444;
	color: #ffffff !important;
}
.footer h2, .footer a{
	color: #ffffff !important;
}

/* RESPONSIVE */
@media screen and (max-width:799px){
	body{ font-size:20px; }
	
	.wrapper{margin-top: 70px;}
	.site-wrapper{ width: 100%; padding: 0 10px;}
	.wpb_content_element{padding:0!important;}
	.vc_column_container{ padding: 0 !important; }
	.head{font-size:73%; text-align:left !important; padding-left:10px;}
	h1{ font-size: 28px; line-height: 45px; }
	h2{ font-size: 21px; line-height: 35px; }
    
	.vc-hoverbox::after {
    	content: "";
    	width: 30px;
    	height: 30px;
    	background: url("/wp-content/uploads/finger_30.png") no-repeat 0 0;
    	bottom: 10px;
    	left: 10px;
    	position: absolute;
    	display: inline-block;
	}	
}


/*------------------------------------*\
    PLUGINS
\*------------------------------------*/

/* COMPOSER */
.vc_row { 
	margin:0 !important; 
	padding: 0 !important; 
}
.vc_row{ 
	margin-bottom:0 !important; 
}
.vc_column-inner{ 
	margin:0px !important; 
	padding:0px !important;
}
.wpb_content_element{ 
	margin-bottom: 0 !important; 
}
.vc_tta-panels p{
	color: #000000; 
}
.vc_grid.vc_row.vc_grid-gutter-10px .vc_grid-item{
	margin: 0 !important;
}


/* CONTACT  */
input.wpcf7-form-control { 
	height:40px; 
	border: 1px solid #333333; 
	padding:5px; 
	width:100%; 
	max-width: 100%;
}
input[type="checkbox"]{
	width: 30px; 
	height: 27px; 
	float:left; 
	margin-right:5px; 
}
span.wpcf7-list-item{
	margin:0;
}
input.wpcf7-submit{	
	height: 45px; 
	width: 140px;
	color: #ffffdd; 
	background: #000000;
}
textarea{ 
	width: 100%; 
	border: 1px solid #333333; 
	padding:5px; 
}
.vc-hoverbox-inner{min-height:500px !important;}



/* COMPLIANZ */
#cmplz-document{
	max-width:100% !important;
}
.grecaptcha-badge{z-index:1!important;}