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

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
	font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
	letter-spacing:1px;
}

.page-wrap {
  min-height: 100%;
  margin-bottom: -90px;   /* equal to footer height */

}

.page-wrap:after {
  content: "";
  display: block;
  height: 90px;   /* equal to footer height */

}

.container {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}

.col-1, .col-2, .col-3 {
	width:100%;
}

.col-1 {
	padding-top:25px;
	text-align:left;
}

.col-2 {
	text-align:left;
}

.col-3 {
	text-align:right;
}

h1 {
	display:none;
}

.single-news {
	margin-bottom:20px;
}

.single-news h2, .single-news p {
	margin:4px 0;
	font-size: 12px;
	font-weight:normal;
	line-height:14px;
}

.single-news a {
	color:inherit;
	text-decoration:none;
}

.single-news a:hover {
	text-decoration:underline;
}

.icone {
}

.icone span {
	display:none;
}

.icone a {
	display:block;
	float:left;
	height:50px;
	width:50px;
	margin-top:10px;
	margin-right:10px;
	margin-bottom:5px;
	border:1px solid #000;
	background-size:50px 50px;
	background-position:center center;
	background-repeat:no-repeat;
	
	transition: 0.5s ease;
}

.icone a:hover {
	-webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#icon-hundebiss {
	background-image:url(../images/icon_hundebiss.png);
}

#icon-still {
	background-image:url(../images/icon_still.png);
}

#icon-palmwine {
	background-image:url(../images/icon_palmwine.png);
}

.email {
	float:none;
	font-size:10px;
	color:inherit;
	text-decoration:none;
}

.email:hover {
	text-decoration:underline;
}
	
.portfolio {
	display:block;
	float:none;
	margin-top:10px;
	margin-bottom:10px;
	width:200px;
	height:40px;
	background-image:url(../images/portfolio.png);
	background-size:200px 40px;
	background-position:center center;
	background-repeat:no-repeat;
	
	transition: 0.5s ease;
}

.footer {
	height:90px;
}

.portfolio span {
	display:none;
}

.portfolio:hover {
	background-image:url(../images/portfolio-over.png);
}

.clear {
	clear:both;
}
	
	
/*////////////////////////////// For devices larger than 480px */

@media (min-width: 480px) {
		
	.col-1, .col-2, .col-3 {
		float:left;
	}
	
	.col-1 {
		width:26%;
		text-align:left;
	}
	
	.col-2 {
		padding-top:10%;
		width:66%;
		text-align:center;
	}
	
	.col-2 .video {
		padding-right:10%;
		padding-left:5%;
	}
	
	.col-3 {
		width:8%;
		text-align:right;
		background-color:#C4DBC5;
	}
	
	.icone {
		position:absolute;
		bottom:17%;
		right:2%;
	}
	
	.icone a {
		float:none;
		margin-top:0;
		margin-right:0;
	}
	
	.email {
		float:right;
		margin-top:10px;
	}
	
	.portfolio {
		margin-top:0px;
		float:left;
	}
		
}



/*////////////////////////////// For retina displays */

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
	.icone a {
	background-size:50px 50px;
	}
	
	.portfolio {
	background-size:200px 40px;
	}
}


/*////////////////////////////// For jquery slide-in */

.box-wrapper {
    -webkit-transition-duration: 600ms;
    transition-duration: 600ms;
}

.box-wrapper.loading:nth-child(odd) {
	-webkit-transform: translate(-110%);
	-MS-transform: translate(-110%);
	transform: translate(-110%);
}

.box-wrapper.loading:nth-child(even) {
	-webkit-transform: translate(-110%);
	-MS-transform: translate(-110%);
	transform: translate(-110%);
}

