/* Start Header */
.theme-header{
	padding: 48px 0px;
}
.burger-trigger{
	position: relative;
	height: 30px;
	width: 30px;
	z-index: 6;
	margin-left: auto;
}
.burger-trigger:hover{
	cursor: pointer;
}
.burger-trigger span{
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: black;
	transition-duration: 0.75s;
}
.burger-trigger span:first-child{
	top: 0px;
}
.burger-trigger .center {
	top: calc(50% - 1px);
}
.burger-trigger span:last-child{
	bottom: 0px;
}
.burger-active span:first-child, .burger-active span:last-child{
	opacity: 0;
}
.burger-active .center:nth-of-type(2){
	rotate: 45deg;
}
.burger-active .center:nth-of-type(3){
	rotate: -45deg
}
.theme-overlay{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	z-index: 4;
}
.overlay-visible{
	opacity: 1;
	visibility: visible;
}
.theme-sidebar{
	position: fixed;
	right: -25%;
	top: 0px;
	width: 25%;
	height: 100%;
	background-color: red;
	transition: 1s;
	z-index: 6;
}
.sidebar-open{
	right: 0px
}
/*	
	End Header
	Start Body 
*/
.theme-sidebar-open{
	height: 100vh;
	overflow: hidden;
}
.theme-wrapper{
	padding: 75px 0px;
}
.container{
	max-width: 1440px !important;
}
h1{
	color: green;
}
button{
	border: none;
	background-color: gray;
	color: white;
}
.post-link{
	color: magenta;
}
.post-link:hover{
	color: yellow;
	text-decoration: none;
}
.archief-post-wrapper{
	border: 1px solid grey;
	border-radius: 8px;
	text-align: center;
	padding: 24px;
	margin: 20px 0px;
}
.archief-post-wrapper img{
	border-radius: 8px;
}
.archief-post-wrapper:hover{
	background-color: #023356;
}
/*
	End Body
	Start footer 
*/
.theme-footer{
	background-color: rgb(190, 184, 184);
	padding: 24px 0px;
}
/*
	End Footer
	Start MediaQuerys 
*/
@media only screen and ( max-width: 576px ) {
	.theme-wrapper{ 
		background-color: grey;
	}
	.post-link{
		color: white;
	}
	.post-link:hover{
		color: red;
	}
}
/* End MediaQuerys */




.company-image-slider .carousel-cell{
	width: 12.5%;
	padding: 0px 2%;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.company-image-slider .carousel-cell img{
	max-width: 100%;
	height: auto;
	object-fit: cover;
}
.company-image-slider .flickity-button{
	width: 40px;
	height: 40px;
	color: black;
	opacity: 0.3;
	background: transparent;
	box-shadow: none;
}
.company-image-slider .flickity-button:hover{
	opacity: 1; 
}
.company-image-slider .previous{
	left: 0px;
}
.company-image-slider .next{
	right: 0px;
}
@media only screen and ( max-width: 1200px ) {
	.company-image-slider .carousel-cell{
		width: 16.67%;
	}
}
@media only screen and ( max-width: 992px ) {
	.company-image-slider .carousel-cell{
		width: 25%;
		padding: 0px 3%;
		height: 240px;
	}
}
@media only screen and ( max-width: 768px ) {
	.company-image-slider .carousel-cell{
		width: 50%;
		padding: 0px 5%;
	}
}