/*
Theme Name: Femke
Author: Lammetje
Author URI: http://www.lammetje.com
Description: A semantic custom theme Femke
Version: 1.0

/* --- CSS Reset --- */
html,body,div,span,applet,object,h1,h2,h3,h4,h5,h6,p,blockquote,a,img,strong,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
ol,ul{list-style:none;}
blockquote:before,blockquote:after{content:none;}
table{border-collapse:collapse;border-spacing:0;}
input:focus,textarea:focus{border:1px solid #999; outline:0;}
a:hover, a:active, a:focus { outline: none; -moz-outline-style: none;}
::-webkit-input-placeholder {color:#787974;}
:-moz-placeholder {color:#787974;}
.placeholder {color:#787974;}

/* --- Clearfix --- */
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0;}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* =Structure
-------------------------------------------------------------- */
body {
	overflow-x:hidden;
	font-family: 'Raleway', sans-serif;
	font-size:16px;
}
html {
	background-color:#fbfbfb;
}
body, html{
	min-height: 100vh;

}
.wrapper {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100vh;
	padding-bottom: 50px;
	background-color:#fbfbfb;
	background-image:url(img/backgroundimg-big.jpg);
	background-repeat:no-repeat;
	background-position: center top;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.wrapper.is-active {
  transform: translateX(250px);
}
#page {
	position: relative;
	display:block;
	overflow: auto;
	max-width: 1200px;
	margin: 0 auto;
	width:100%;
	min-height:100%;
}

.leftside {
	float: left;
	width: 70%;	
}
.contentleft {
	display:block;
	margin-left:10px;
	margin-right:10px;
}
.rightside {
	float: right;
	width: 30%;	
}
.contentright {
	margin-right:10px;
}
.contentright a, .contentright a:visited  {
	color:#535353;
	text-decoration:none;	
}
.contentright a:hover {
	text-decoration:underline;
}
.full-width {
	float: left;
	width: 100%;	
}
.contentfullwidth {
	margin-left:10px;
	margin-right:10px;
}
#footer {
	display: block;
	width: 100%;
	height:60px;
}

/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.aligncenter img{
	max-width: 100%;
	height: auto;
}

/* =Header
-------------------------------------------------------------- */

#site-title {
	font-size: 45px;
	line-height:40px;
	padding:77px 30px 0 30px;
}
#site-title a {
	color:#000;
	text-decoration:none;
}
#site-description {
	font-size: 20px;
	padding:0 30px 0 32px;	
}


/* =Menu
-------------------------------------------------------------- */

.hamburger {
	display: none;
	position: absolute;
	top: 10px;
	left: 10px;
	height: 40px;
	width: 50px;
	padding:10px;
	z-index:99999;
	cursor:pointer;
}
.hamburger .line{
	position: relative;
	width:100%;
	height:3px;
	background-color:#000;
	margin-bottom:6px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

.hamburger.is-active .line:nth-child(2){
  opacity: 0;
  -webkit-transform: translateX(-8px);
  -ms-transform: translateX(-8px);
  -o-transform: translateX(-8px);
  transform: translateX(-8px);
}

.hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  background-color: #fff;
}

.hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
  background-color: #fff;
}


.accesholder {
	position: relative;
	margin-right:10px;
	margin-left:10px;
}
#access {
	background: #fff;
	display: block;
	float: left;
	width: 100%;
	margin:68px 0 20px 0;
	border: solid 1px #e1e1e1;
}
#access ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#access li {
	float: left;
	position: relative;
}
#access a {
	display: block;
	font-size:21px;
	padding:10px 20px 10px 20px;
	color:#000;
	text-decoration: none;
}

#access li:hover > a {
	background: #666666;
	color:#fff;
}
#access .current-menu-item > a {
	background: #000;
	color:#fff;
}

/* =Menumobile
-------------------------------------------------------------- */

#accessmobile {
	display: block;	
	position: absolute;
	bottom: 0;
	top: 0;
	height: 100%;
	padding: 83px 0 0 0;
	background-color:#000;
	width: 250px;
}
#accessmobile ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#accessmobile li {
	position: relative;
}
#accessmobile a {
	display: block;
	font-size:21px;
	padding:10px 20px 10px 20px;
	color:#fff;
	text-decoration: none;
	border-bottom:1px solid #646464;
}
#accessmobile .current-menu-item > a {
	color:#fff;
}
/* =Content
-------------------------------------------------------------- */
p {
	margin-bottom:10px;	
}
h1 {
	font-size:36px;
	line-height:38px;
	margin-bottom:10px;
}
h2 {
	font-size:30px;
	line-height:34px;	
	margin-bottom:10px;	
}
h3 {
	font-size:26px;
	line-height:30px;	
	margin-bottom:10px;	
}
h4 {
	font-size:20px;
	line-height:24px;
	margin-bottom:10px;	
}
h5 {
	font-size:18px;
	line-height:22px;	
	margin-bottom:10px;	
}
h6 {
	font-size:14px;
	line-height:18px;
	margin-bottom:10px;	
}
strong {
	font-weight:700;
}
table {
	border: 1px solid #CCC;
	line-height:20px;
	font-size:12px;
	color:#59595b;
	margin:7px 0 10px 1px;	
}
table td {
	border: 1px solid #CCC;	
	padding:10px;	
}
article ul {
	list-style-type:square;
	margin:7px 0 10px 20px;	
}
article ol {
	list-style-type:decimal;
	margin:7px 0 10px 20px;	
}
.wp-caption-text {
	font-size: 14px;
}
blockquote {

	font-size: 20px;
	font-style: italic;
	margin: 0.25em 0;
	padding: 20px 20px 20px 50px;
	line-height: 1.45;
	position: relative;
/*	color: #383838;*/
}

blockquote:before {
	font-family: Georgia, serif;
	display: block;
	content: "\201C";
	font-size: 60px;
	position: absolute;
	left: 5px;
	top: 3px;
	color: #7a7a7a;
}

blockquote cite {
	font-family: 'ralewayregular', sans-serif;
	color: #999999;
	font-size: 14px;
	display: block;
	margin-top: 5px;
}
 
blockquote cite:before {
	content: "\2014 \2009";
}

.quote {
	font-size:30px;
	line-height:34px;
	padding:10px 10px 16px 0;
	font-style:italic;
	color:#878787;	
}
.award {
	margin-bottom:10px;	
}
.awardy {
	float:left;
	width:60px;
	display:table-row;
}
.awardc {
	display:table-row;		
}

.credit {
	margin-bottom:10px;	
}
.credity {
	float:left;
	width:140px;
	display:table-row;
}
.creditc {
	display:table-row;		
}
.half {
	 display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.half article {
	margin: 10px;
	width: calc( 50% - 20px);
	float: left;
}
article {
	position:relative;
	margin-bottom:20px;
	padding:20px;
	border: solid 1px #e1e1e1;
	background-color:#fff;
	overflow: auto;
}
article a {
	color:#535353;
	
}
.entry-meta {
	margin-top:5px;
	font-size:14px;
	margin-bottom:10px;
}
.entry-title {
	font-size:35px;
	margin-bottom:7px;
}
.entry-title a{
	color:#000;
	text-decoration:none;
}
.entry-content {
	position:relative;
	font-size:16px;	
	line-height:28px;
}

.sidebarimg {
	margin-left:10px;
	border: solid 1px #e1e1e1;
	border-bottom:none;

}
.sidebarimg img {
	display:block;
	width:100%;
	height:auto;	
}
.sidebarfem {
	margin-left:10px;	
	padding:20px;
	background-color:#fff;
	border: solid 1px #e1e1e1;
	border-top:none;
	font-size:16px;	
	line-height:28px;
	margin-bottom:20px;
}
.spotify {
	position: relative;
	margin: -20px -20px -30px -20px;
}
.spotify iframe {
	width: 100%;
	height: 500px;
}
.nav-previous {
	background-color:#fff;
	border: solid 1px #e1e1e1;
	padding:10px;
	float:left;
	margin-bottom:20px;	
}
.nav-next {
	background-color:#fff;
	border: solid 1px #e1e1e1;
	padding:10px;
	float:right;
	margin-bottom:20px;	
}
.nav-previous a, .nav-next a {
	color:#000;
	text-decoration:none;
}

.sharetwitter {
	margin:0 10px 0 0;
	float:right;
	display:block;
	background-image:url(img/share.png);
	width:25px;
	height:25px;
	cursor:pointer;	
}
.sharetwitter:hover {
	background-position: 0 -25px;
}
.sharefacebook {
	margin:0;	
	float:right;
	display:block;
	background-image:url(img/share.png);
	width:25px;
	height:25px;
	cursor:pointer;
	background-position: -25px 0px;	
}
.sharefacebook:hover {
	background-position: -25px -25px;
}
.workitem {
	width:33.333%;
	float:left;
	margin-bottom:20px;
}
.workinner {
	border: solid 1px #e1e1e1;
	background-color:#fff;
	margin:0 10px 0 10px;
}
.workimg {
	width:100%;
	height:auto;
}
.workimg img {
	width:100%;
	height:auto;
}
.worktitle {
	width:100%;
	text-align:center;
	color:#000;
	font-size:17px;
	line-height:17px;
}
.worksub {
	width:100%;
	text-align:center;
	color:#828282;
	font-size:15px;	
}
.workitem a {
	text-decoration:none;
	color:#000;
}
.workinner:hover {
	border: solid 1px #fff;
}
.workdetail {
	border: solid 1px #e1e1e1;
	background-color:#fff;
	margin:0 10px 20px 10px;
}
.workdetailtekst {
	padding:20px;
}
.workdetailtitle {
	font-size:30px;
	line-height:34px;	
	margin-bottom:10px;	
}
.workdetailsub {
	font-size:16px;
	line-height:16px;	
	margin-bottom:10px;	
}


/* --- Video --- */

.video {
	width:100%;
	height:auto;
}


/* --- Slider --- */
.control {
	height:30px;
	z-index:100;
}
.sliderb {
	display:block;
	background-image:url(img/dot.png);
	width:15px;
	height:15px;
	float:left;
	cursor:pointer;	
}
.slider {
	display:block;
	position:relative;
	list-style:none;
	overflow:hidden;
}
.slider img {
	width: 100%;
	height: auto;
	display: block;
}
.slidetotaal {
	display:block;
	width:100%;		
}
.slidetotaal li {
	position:absolute;
	display: none;
}
.slidetotaal li:first-child {	
	display:inline-block;
}
.slidetotaal li img {
	display:block;
}
.workloader img {
	width:100%;
	height:auto;
	
}
/* =pagination
-------------------------------------------------------------- */
.pagination {
	clear:both;
	margin-top:-10px;
	padding:0 20px 40px 0;
	position:relative;
	font-size:13px;
	line-height:13px;
}
.pagination span, .pagination a {
	display:block;
	float:left;
	margin: 2px 6px 2px 0;
	padding:5px 9px 6px 9px;
	text-decoration:none;
	border: solid 1px #e1e1e1;	
	width:auto;
	color:#000;
	background: #fff;
}
.pagination a:hover{
	color:#fff;
	background: #666666;
}
.pagination .current{
	padding:5px 9px 6px 9px;
	background: #000;
	color:#fff;
}

/* =Images
-------------------------------------------------------------- */

a img {
	border: none;
}
p img {
	display:block;
	
}
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img,
.wp-caption {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 12px;
	margin-bottom: 3px;
}
img.alignright {
	margin-left: 12px;
	margin-bottom: 3px;
}


/* =Widgets
-------------------------------------------------------------- */

.widget {
	display: block;
}
.widget-area .widget_search {
	overflow: hidden;
}
.widget-area .widget_search input {
	float: left;
}

/*icons*/
@font-face {
  font-family: 'fontello';
  src: url('fonts/fontello.eot?20686287');
  src: url('fonts/fontello.eot?20686287#iefix') format('embedded-opentype'),
       url('fonts/fontello.woff2?20686287') format('woff2'),
       url('fonts/fontello.woff?20686287') format('woff'),
       url('fonts/fontello.ttf?20686287') format('truetype'),
       url('fonts/fontello.svg?20686287#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?20686287#fontello') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  color: #000;
  font-size: 20px;
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-twitter:before { content: '\f099'; } /* '' */
.icon-facebook:before { content: '\f09a'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-spotify:before { content: '\f1bc'; } /* '' */



@media screen and (max-width : 1180px) {

}
@media screen and (max-width : 760px) {


	.hamburger {
		display:block;
	}
	#access {
		display:none;
	}
	header {
		margin-bottom:20px;
	}
	.leftside {
		float: left;
		width: 100%;	
	}
	.rightside {
		float: left;
		width: 100%;	
	}
	.workitem {
		width:50%;
	}
	.half article {
		margin: 10px;
		width: calc( 100% - 20px);
		float: left;
	}
}
@media screen and (max-width : 500px) {
	.workitem {
		width:100%;
	}
}

@media screen and (max-width : 350px) {
	#site-title {
		font-size: 35px;
		line-height:32px;
	}
	#site-description {
		font-size: 16px;
	}
	img.alignleft {
		margin-right: 0;
		width:100%;
		height:auto;
	}
	img.alignright {
		margin-left: 0;
		width:100%;
		height:auto;		
	}
}


