@charset "utf-8";
/* CSS Document */

.kontakt {
	position: fixed;
	width: 100%;
	height: 1000px;
	background-color: #000;
}

.kontakt-box {
	width: 80%;
	height: 500px;
	background-color: #000;
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
}

.k-box {
	display: inline-block;
	width: 33%;
	padding-top: 180px;
}

.k-box:hover{
    -webkit-animation: wiggle 0.5s;
	-moz-animation: wiggle 0.5s;
	animation: wiggle 0.5s;
}

.k-box h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.5vw;
	font-weight: 400;
	color: #fff;
}

/* media options */

@media only screen and (min-width: 150px) and (max-width: 1000px) {

.kontakt {
	position: absolute;
}
	
.kontakt-box {
	width: 80%;
	height: auto;
	background-color: #000;
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
}

.k-box {
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
}

.k-box h1 {
	font-size: 4vw;
}