/*
Stichting Marijke van Warmerdam
*/

html { /* Always show browser scrollbar to prevent page jumping */
  overflow-y: scroll;
	-webkit-text-size-adjust: none;
  	text-size-adjust: none;
	-moz-box-sizing: border-box;
		box-sizing: border-box;
}

body {
	margin: 0;
	color: #777;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 0.015em;
	background: #fff;
}

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

/* Sticky footer
----------------------*/
html,
body {
	height: 100%;
	min-height: 100%;
}

#sticky-footer-wrap {
  overflow: auto;
  padding-bottom: 75px;
}
/*--------------------*/

/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
	font-size: 15px;
	line-height: 1.5;
}

h2 {
	clear: both;
	line-height: 1.5;
	margin: 0 0 0.75em;
	color: #777;
}

h1 {
	font-size: 15px;
	font-weight: 600;
}

h2 {
	line-height: 1.4;
	color: #777;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

h3 {
	color: #333;
	font-size: 14px;
	font-size: 1.125rem;
	font-weight: 300;
}

p {
	margin: 0 0 1.5em 0;
	padding: 0;
}

b, strong {
    font-weight: 600;
    color: #777;
}

.site-content {
    padding: 3em 0 75px 0;
    min-height: 400px;
}

#page,
.site-content-contain {
	min-height: 100%;
}

.site-content-contain {
	padding-top: 125px;
	background-color: #fff;
	position: relative;
}


/*--------------------------------------------------------------
2.0 Links
--------------------------------------------------------------*/

a,
a:visited,
a:active,
a:focus {
	color: #777;
	text-decoration: none;
}

a:hover {
	color: #333;
	outline: none;
	box-shadow: none;
}

a {
	cursor: pointer;
}

/*--------------------------------------------------------------
3.0 Header
--------------------------------------------------------------*/

#masthead .wrap {
	position: relative;
}

.site-header {
	width: 100%;
	position: fixed;
	z-index: 10;
	background-color: #fff;
	box-shadow: 0 8px 0 0 #fff;
}

.site-header .menu-scroll-down {
	padding: 0.5em;
}

/* Site branding */
body:not(.home) .site-branding {
	padding: 1em 0;
}

.site-branding {
	padding: 1em 0;
	position: relative;
	 -webkit-transition: margin-bottom 0.2s;
	transition: margin-bottom 0.2s;
}

.site-branding a {
	text-decoration: none;
	/*-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;*/
	 -webkit-transition: color 0.1s;
	transition: color 0.1s;
}

.site-branding a:hover,
.site-branding a:focus {
	/*opacity: 0.7;*/
	color: #b6b6b6;
}

.site-title {
	clear: none;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
	text-transform: initial;
}

.site-title,
.site-title a {
	/*color: #777;*/
	color: #c5c5c5;
	opacity: 1; /* Prevent opacity from changing during selective refreshes in the customize preview */
}

/*--------------------------------------------------------------
4.0 Navigation
--------------------------------------------------------------*/

.navigation-top {
	background: #fff;
	border-bottom: 1px solid #eee;
	border-top: 1px solid #eee;
	position: relative;
	font-weight: normal;
  	line-height: normal;
  	color: #777;
}

.main-navigation {
	clear: both;
	display: block;
	margin-left: -1em;
  	width: auto;
}

.main-navigation ul {
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
	text-align: left;
	background: transparent;
}

.main-navigation ul li {
	border: 0;
	float: left;
}

.main-navigation ul li:hover,
.main-navigation ul li a:hover,
.main-navigation ul li a span:hover {
	cursor: pointer;
}

.main-navigation a {
	display: block;
	padding: 11px 0.94em;
	text-decoration: none;
}

.wrap,
.footerwrap {
	max-width: 1024px;
	padding-left: 2em;
	padding-right: 2em;
	margin-left: auto;
	margin-right: auto;
}

.wrap:after {
	clear: both;
	content: "";
	display: block;
}

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .menu-item a:hover {
	box-shadow: 0 13px 0 -12px #777;
	color: #333;
}

/*--------------------------------------------------------------
5.0 Content
--------------------------------------------------------------*/

.stmvw-flex {
	display: flex; 
	justify-content: space-between;
	gap: 0 4%;
	line-height: 1.8;
}

.home .stmvw-flex em {
	font-weight: 300;
}

.docs .stmvw-flex {
	width: 60%;
}

.docs .stmvw-flex a {
	padding: 0 2px 1px 1px;
}

.docs .stmvw-flex a:hover {
	color: #fff;
	background: #aaa;
}

.docs .stmvw-flex a:hover .arrow {
	color: #fff;
}

.stmvw-flex-row {
	display:flex;
}

.stmvw-col {
	width:48%;
}

.stmvw-flex-col01 .stmvw-flex-row-col01,
.stmvw-flex-col02 .stmvw-flex-row-col01 {
	width:35%;
	max-width: 180px;
}

.stmvw-flex-col04 .stmvw-flex-row-col01 {
	width:88%;
}

.middle-text {
	margin: 40px 0;
}

.arrow {
	color: green;
	position: relative;
	top: 1px;
	margin-right: 2px;
	display: inline-block;
	font-size: 15px;
	transform: rotate(180deg);
}

/*--------------------------------------------------------------
6.0 Footer
--------------------------------------------------------------*/

.site-footer {
  position: relative;
  margin-top: -75px;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #eee;
  clear: both;
}

.site-footer .footerwrap {
  padding-bottom: 1em;
  padding-top: 1em;
  background: #fff;
}

.site-info {
  float: left;
  width: 58%;
  font-size: 14px;
  margin-bottom: 1em;
  padding: 0.7em 0 0;
}

.site-info .copyright {
  font-size: 1.2em;
  position: relative;
  left: 2px;
}

/*--------------------------------------------------------------
Media Queries
--------------------------------------------------------------*/

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

	.stmvw-col {
		width:100%;
	}
	
	.stmvw-flex:not(.docs .stmvw-flex) {
		display: block;
		width: 100%;
	}
	
	.stmvw-flex-col04 .stmvw-flex-row-col01 {
		width: 50%;
	}
	
	.docs .stmvw-flex {
		width: 80%;
	}
	
	.stmvw-flex-row {
		width: 100%;
	}

	.stmvw-col:nth-child(odd) {
		margin-bottom: 40px;
	}
	
}

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

	.site-content-contain {
    	padding-top: 175px;
	}

}

@media screen and (max-width: 624px) {
	
	.stmvw-flex-col04 .stmvw-flex-row:nth-child(4) {
		display: block;
	}
	
	.docs .stmvw-flex {
		display: block;
		margin-bottom: 30px;
	}

}

@media screen and (max-width: 588px) {
	
	.docs .stmvw-flex {
		width: 100%;
	}

}

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

	.stmvw-flex-col04 .stmvw-flex-row-col01 {
		width: 70%;
	}
	
}

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

	.site-title {
    	font-size: 32px;
    	font-size: 12vw;
	}

	.site-header {
		position: relative;
	}

	.site-content-contain {
    	padding-top: 0;
	}

	.post-thumbnail {
    	width: 100%;
	}

}

@media screen and (max-width: 62.8em) {

}
