/* =================================
------------------------------------
  	Template Name: Photographer
	Description: Photographer HTML Template
	Author: colorlib
	Author URI: https://www.colorlib.com/
	Version: 1.0
	Created: colorlib
 ------------------------------------
 ====================================*/



/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #010d50;
	font-weight: 700;
}

h1 {
	font-size: 60px;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 40px;
		text-align: center;
	}
}

h2 {
	font-size: 36px;
	margin-top: 15px;
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 28px;
	}
}

h3 {
	font-size: 30px;
}

@media screen and (max-width: 768px) {
	h3 {
		font-size: 24px;
	}
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	color: #7d7d7d;
	line-height: 1.8;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 105px;
	padding-bottom: 105px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

.elements-section {
	padding-top: 120px;
}

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

.el-title {
	margin-bottom: 62px;
}

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 500;
	min-width: 218px;
	padding: 24px 47px;
	border-radius: 0;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	background: #010d50;
}

.site-btn:hover {
	color: #fff;
	background-color: #f9bf44;
}

.site-btn.sb-line {
	color: #010d50;
	background: transparent;
	padding: 22px 47px;
	border: 2px solid #010d50;
}

.site-btn.sb-light-bg {
	background: #f3f3f3;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #010d50;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f9bf44;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #ffffff;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f9bf44;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f9bf44;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #ffffff;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f9bf44;
		border-left-color: transparent;
	}
}

/* Accordion */

.accordion-area .panel {
	margin-bottom: 18px;
}

.accordion-area .panel-header {
	display: block;
	font-weight: 500;
	position: relative;
	border: 2px solid #212121;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active .panel-link {
	color: #fff;
	background-color: #323232;
}

.accordion-area .panel-header.active .panel-link.collapsed {
	color: #323232;
	background-color: transparent;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	font-size: 18px;
	font-weight: 500;
	right: 25px;
	top: 50%;
	color: #000;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
	margin-top: -10px;
	color: #fff;
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
	color: #323232;
}

.accordion-area .panel-link {
	text-align: left;
	background-color: transparent;
	border: none;
	position: relative;
	width: 100%;
	padding: 23px 40px;
	padding-left: 30px;
	font-size: 14px;
	text-transform: uppercase;
	color: #212121;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
}

.accordion-area .panel-body p {
	margin-bottom: 0;
	padding-top: 20px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

/* Tab */

.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 25px;
}

.tab-element .nav-item {
	margin-right: 10px;
	margin-bottom: 10px;
}

.tab-element .nav-tabs .nav-link {
	border: 2px solid #212121;
	text-align: left;
	background-color: transparent;
	border-radius: 0;
	position: relative;
	width: 100%;
	padding: 23px 38px;
	font-size: 14px;
	text-transform: uppercase;
	color: #323232;
	font-weight: 500;
	line-height: 1.3;
	cursor: pointer;
}

.tab-element .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
	background: #212121;
	color: #fff;
}

.tab-element .tab-pane p {
	margin-bottom: 0;
	line-height: 1.9;
}

/* Circle progress */

.circle-progress {
	text-align: center;
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -30px;
}

.circle-progress .progress-info h2 {
	font-size: 36px;
	font-weight: 400;
}

.circle-progress .progress-info p {
	margin-bottom: 0;
	line-height: normal;
}

/* milestones */

.milestone {
	margin-bottom: 30px;
}

.milestone h2 {
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
}

.milestone p {
	margin-bottom: 0;
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/*------------------
  Header section
---------------------*/

.header-section {
	padding-top: 15px;
	padding-bottom: 27px;
	position: relative;
	z-index: 99;
}

.header-section.hs-bd {
	clear: both;
	border-bottom: 1px solid #e8e8e8;
}

.site-logo {
	display: inline-block;
	padding-top: 0;
	padding-left: 20px;
}

.site-logo img {
	width: 340px;
	height: auto;
}

@media screen and (min-width: 991px) and (max-width: 1280px) {
	.site-logo img {
		width: 180px;
		height: auto;
		position: relative;
		top: 10px;
	}
}

.header-controls {
	float: right;
	padding: 16px 25px 0 10px;
}

.header-controls button {
	background: transparent;
	border: none;
	font-size: 19px;
}

.header-controls button.nav-switch-btn {
	font-size: 21px;
	margin-right: 25px;
}

.slicknav_menu {
	display: none;
}

.main-menu {
	list-style: none;
	float: right;
	display: none;
}

.main-menu li {
	display: inline-block;
	position: relative;
}

.main-menu li a {
	display: block;
	font-size: 13px;
	color: #010d50;
	font-weight: 600;
	text-transform: uppercase;
	padding: 25px 0 5px 0;
	margin-right: 25px;
}

.main-menu li ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 220px;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	padding: 10px 0 5px;
	-webkit-box-shadow: 0 15px 50px 1px rgba(0, 0, 0, 0.13);
	box-shadow: 0 15px 50px 1px rgba(0, 0, 0, 0.13);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.main-menu li ul.sub-menu li {
	display: block;
}

.main-menu li ul.sub-menu li a {
	padding: 10px 15px;
	text-transform: none;
}

.main-menu li:hover ul.sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

/*------------------
  Hero section
---------------------*/

.hero-section {
	clear: both;
	position: relative;
}

.hero-item {
	height: 278px;
	position: relative;
}

.hero-item:hover .hero-link {
	opacity: 1;
}

.hero-item:hover .hero-link h2 {
	top: 0;
}

.hero-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #060606;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 30px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.hero-link h2 {
	color: #fff;
	line-height: 1.5;
	position: relative;
	top: 50px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

/* ----------------
  Intro section
---------------------*/

.intro-section {
	padding: 120px 15px 90px;
}

.intro-warp {
	max-width: 1780px;
	width: 100%;
	margin: 0 auto;
}

.intro-text h2 {
	font-size: 48px;
	margin-bottom: 25px;
}

.intro-text p {
	margin-bottom: 45px;
}

.sp-link {
	display: inline-block;
	font-weight: 500;
	font-size: 16px;
	color: #212121;
	border-bottom: 3px solid #212121;
	padding-right: 15px;
}

.sp-link:hover {
	color: #212121;
}

.skill-warp {
	padding-left: 83px;
	padding-top: 80px;
}

.single-progress-item {
	margin-bottom: 30px;
	position: relative;
}

.single-progress-item:last-child {
	margin-bottom: 0;
}

.single-progress-item p {
	padding-top: 28px;
}

.progress-bar-style {
	display: block;
	height: 6px;
	position: relative;
	width: 100%;
}

.progress-bar-style .bar-inner {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	background: #212121;
}

.progress-bar-style .bar-inner span {
	position: absolute;
	width: 54px;
	height: 40px;
	right: 0;
	top: 22px;
	padding-top: 8px;
	color: #fff;
	font-weight: 400;
	text-align: center;
	background: #212121;
}

/*------------------
  Footer section
---------------------*/

.footer-section {
	background: #010d50;
	padding: 19px 40px;
}

.copyright {
	color: #f9bf44;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 0;
}

.footer-social-links {
	text-align: right;
}

.footer-social-links a {
	display: inline-block;
	color: #f9bf44;
	font-size: 18px;
	margin-left: 40px;
}

/*------------------
====================
  Other Page
====================
--------------------*/

/*------------------
  About page
---------------------*/

.about-bg {
	height: 100%;
}

.about-text {
	padding: 100px 57px;
}

.about-text h2 {
	font-size: 48px;
	margin-bottom: 30px;
}

.about-text h4 {
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 45px;
}

.about-text .site-btn {
	margin-top: 20px;
}

.skill-section {
	padding-top: 60px;
	padding-bottom: 35px;
}

.services-section {
	padding: 117px 0;
}

.services-section .site-btn {
	min-width: 244px;
}

.services-section .services-item {
	padding-right: 20px;
	max-width: 440px;
}

.services-item {
	margin: 0 auto 70px;
}

.services-item img {
	margin-bottom: 30px;
}

.services-item h4 {
	margin-bottom: 20px;
}

.services-item p {
	margin-bottom: 0;
}

.instagram-section {
	border-top: 1px solid #e8e8e8;
	padding-top: 25px;
}

.instagram-section h6 {
	font-size: 14px;
	padding-left: 80px;
	padding-bottom: 25px;
}

/* ----------------
  Portfolio page 1
---------------------*/

.portfolio-section {
	padding-top: 120px;
}

@media screen and (max-width: 991px) {
	.portfolio-section {
		padding: 50px 0;
	}
}

.portfolio-filter {
	list-style: none;
	margin-bottom: 40px;
	padding: 15px 0;
}

.portfolio-filter li {
	display: inline-block;
	font-size: 14px;
	color: #010d50;
	font-weight: 500;
	margin-right: 46px;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.portfolio-filter li {
		display: block;
		font-size: 18px;
		margin-right: 0;
		text-align: left;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.portfolio-filter li {
		font-size: 16px;
		margin-right: 38px;
		margin-top: 16px;
		text-align: left;
	}
}

.portfolio-filter li:last-child {
	margin-right: 0;
}

.portfolio-item {
	min-height: 100%;
	display: block;
}

.portfolio-item.next-btn {
	background: #060606;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.portfolio-item.next-btn h2 {
	color: #fff;
	font-size: 41px;
}

.portfolio-gallery {
	padding-bottom: 60px;
}

/* ----------------
  Portfolio page 2
---------------------*/

.portfolio-2-section {
	padding-top: 120px;
	padding-bottom: 100px;
}

.portfolio-2-section .site-btn {
	margin-top: 80px;
}

.pf-2 {
	padding-left: 83px;
}

.portfolio-warp {
	padding: 0 19px;
}

.portfolio-box {
	margin-bottom: 35px;
	padding: 0 64px;
}

.portfolio-box h6 {
	padding-top: 30px;
}

.portfolio-box p {
	margin-bottom: 0;
}

/* ----------------
  Portfolio page 3
---------------------*/

.portfolio-3-section {
	padding-top: 120px;
	padding-bottom: 100px;
	overflow: hidden;
}

.portfolio-grid {
	max-width: 1756px;
	margin: 0 auto;
}

.portfolio-grid:after {
	content: "";
	display: block;
	clear: both;
}

.grid-sizer,
.grid-item {
	width: 25%;
}

.grid-item {
	float: left;
}

.grid-width-1 {
	width: 50%;
}

.grid-width-2 {
	width: 75%;
}

.grid-portfolio {
	padding: 0 15px;
	margin-bottom: 35px;
}

.grid-portfolio img {
	min-width: 100%;
}

.grid-portfolio h6 {
	padding-top: 30px;
}

.grid-portfolio p {
	margin-bottom: 0;
}

.load-more-warp {
	max-width: 1756px;
	padding-top: 70px;
	margin: 0 auto;
}

/* ----------------
  Blog section
---------------------*/

.blog-section {
	padding: 120px 0;
}

@media screen and (max-width: 768px) {
	.blog-section {
		padding: 0 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.blog-section {
		padding: 50px 0;
	}
}

.blog-warp {
	max-width: 1386px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.blog-post {
	text-align: center;
	padding: 0 20px;
	margin-bottom: 120px;
}

.blog-post img {
	padding: 0 15px;
	margin-bottom: 50px;
}

.blog-post .blog-date {
	display: inline-block;
	font-size: 12px;
	line-height: 1.1;
	color: #fff;
	padding: 9px 17px;
	margin-bottom: 20px;
	background: #212121;
}

.blog-post h3 {
	margin-bottom: 10px;
}

.blog-post .blog-cata {
	margin-bottom: 30px;
}

.blog-post .blog-cata span {
	display: inline-block;
	font-size: 14px;
	color: #bcbcbc;
	font-weight: 500;
	padding-right: 13px;
	margin-right: 11px;
	position: relative;
}

.blog-post .blog-cata span:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 0;
	font-size: 14px;
	color: #bcbcbc;
	font-weight: 500;
	margin-bottom: 10px;
}

.blog-post .blog-cata span:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog-post .blog-cata span:last-child:after {
	display: none;
}

.blog-post p {
	margin-bottom: 35px;
	padding: 0 11px;
}

.site-pagination {
	text-align: center;
}

.site-pagination a {
	display: inline-block;
	height: 42px;
	font-size: 14px;
	font-weight: 500;
	color: #888888;
	padding: 11px 5px;
}

.site-pagination a.current {
	color: #fff;
	background: #212121;
	padding: 11px 13px;
}

/* ----------------
  Contact page
---------------------*/

.map {
	height: 663px;
	position: relative;
}

.map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

.contact-section {
	padding: 120px 0;
}

@media screen and (max-width: 768px) {
	.contact-section {
		padding: 50px 0;
	}
}

.contact-text h3 {
	margin-bottom: 30px;
}

.contact-text p {
	margin-bottom: 45px;
}

.contact-text ul {
	list-style: none;
}

.contact-text ul li {
	font-size: 14px;
	font-weight: 500;
	color: #212121;
	line-height: 1.9;
}

.contact-form {
	padding-top: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	color: #7d7d7d;
	border: none;
	border-bottom: 1px solid #b2b2b2;
	padding-bottom: 14px;
	margin-bottom: 20px;
	background: transparent;
}

.contact-form textarea {
	height: 165px;
	min-height: 165px;
	margin-bottom: 38px;
}

.text-msg::-webkit-input-placeholder {
	padding-top: 0x;
}

.text-msg::-moz-input-placeholder {
	padding-top: 0;
}

.text-msg:-moz-input-placeholder {
	padding-top: ;
}

.text-msg:-ms-input-placeholder {
	padding-top: 0;
}

/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

@media (max-width: 1270px) {
	.site-logo {
		padding-left: 15px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.site-logo {
		padding-left: 15px;
	}
	.main-menu li a {
		margin-right: 10px;
	}
	.skill-warp {
		padding-left: 40px;
	}
	.portfolio-box {
		padding: 0 15px;
	}
	.pf-2 {
		padding-left: 35px;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img {
		padding: 0;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-section {
		text-align: center;
		padding-bottom: 0;
	}
	.site-logo {
		padding-left: 15px;
	}
	.main-menu {
		float: none;
	}
	.main-menu li a {
		padding-top: 5px;
		margin-right: 10px;
	}
	.main-menu li:last-child a {
		margin-right: 0;
	}
	.main-menu li .sub-menu {
		text-align: left;
	}
	.header-controls {
		float: none;
		padding: 20px 15px;
	}
	.skill-warp {
		padding-left: 0px;
	}
	.about-bg {
		height: 800px;
	}
	.portfolio-box {
		padding: 0 15px;
	}
	.pf-2 {
		padding-left: 35px;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img,
	.blog-post p {
		padding: 0;
	}
	.contact-text {
		margin-bottom: 50px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
		text-align: center;
		padding-bottom: 0;
	}
	.site-logo {
		padding-left: 15px;
		margin-bottom: 20px;
	}
	.header-controls {
		display: none;
	}
	.main-menu {
		display: none !important;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
	}
	.slicknav_btn {
		margin: 0 auto 20px;
		background: #010d50;
		float: none;
		display: inline-block;
	}
	.slicknav_nav {
		background: #010d50;
		text-align: left;
		padding: 8px 5px;
		margin-bottom: 15px;
	}
	.slicknav_nav a:hover,
	.slicknav_nav .slicknav_row:hover {
		background: #25394c;
		color: #fff;
	}
	.skill-warp {
		padding-left: 0px;
	}
	.about-bg {
		height: 600px;
	}
	.about-text {
		padding: 100px 20px;
	}
	.portfolio-box {
		padding: 0 15px;
	}
	.pf-2 {
		padding-left: 35px;
	}
	.grid-sizer,
	.grid-item {
		width: 50%;
	}
	.grid-width-1 {
		width: 50%;
	}
	.grid-width-2 {
		width: 100%;
	}
	.blog-post {
		padding: 0;
	}
	.blog-post img,
	.blog-post p {
		padding: 0;
	}
	.contact-text {
		margin-bottom: 50px;
	}
	.footer-social-links {
		text-align: center;
		padding-top: 20px;
	}
	.footer-social-links a:first-child {
		margin-left: 0;
	}
	.copyright {
		padding-top: 15px;
		text-align: center;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.about-bg {
		height: 400px;
	}
	.services-section .services-item {
		padding-right: 0px;
	}
	.portfolio-box {
		padding: 0;
	}
	.pf-2 {
		padding-left: 15px;
	}
	.portfolio-item.next-btn h2 {
		font-size: 24px;
	}
	.grid-sizer,
	.grid-item,
	.grid-width-2 {
		width: 100%;
	}
	.hero-social-links {
		position: relative;
		width: 100%;
		bottom: 0;
		right: 0;
		z-index: 9;
		background: #fff;
		text-align: center;
		padding: 30px 0;
		border-bottom: 1px solid #e8e8e8;
	}
	.hero-social-links a {
		display: inline-block;
		padding: 5px 10px;
	}
	.map {
		height: 400px;
	}
}

.video-image {
	max-height: 184px;
	min-height: 184px;
	object-fit: cover;
}

.nieuwsbericht-holder {
	height: auto;
	margin-top: 40px;
	-webkit-box-shadow: 1px 0px 10px 0px rgba(222,222,222,0.75);
	-moz-box-shadow: 1px 0px 10px 0px rgba(222,222,222,0.75);
	box-shadow: 1px 0px 10px 0px rgba(222,222,222,0.75);
	padding-left: 0;
	cursor: pointer;
}

@media screen and (max-width: 991px) {
	.nieuwsbericht-holder {
		height: auto;
		padding-right: 0;
	}
}

.nieuwsbericht-holder:hover {
	background-color: rgba(222,222,222,0.75);
}

.nieuwsbericht-image {
	display: block;
	float: left;
	margin-right: 15px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.nieuwsbericht-image {
		float: none;
		margin-right: 0;
	}
}

.nieuwsbericht-image img {
	width: 190px;
	height: 150px;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
	.nieuwsbericht-image img {
		width: 100vw;
	}
}

.nieuwsbericht-holder:hover img {
	transform: scale(1.2);
}

.nieuwsbericht-holder h2 {
	font-size: 24px;
	padding-top: 15px;
}

button.leesverder {
	border: 0;
	width: 120px;
	height: 32px;
	position: absolute;
	right: 15px;
	bottom: 15px;
	background-color: #010d50;
	color: #FFF;	
}

@media screen and (max-width: 1200px) {
	button.leesverder {
		width: auto;
		position: absolute;
		top: 0;
		right: 0;
	}
}

button.leesverder:hover {
	background-color: #f9bf44;
}

button.terug {
	border: 0;
	width: 200px;
	height: 42px;
	background-color: #010d50;
	color: #FFF;	
}

button.terug:hover {
	background-color: #f9bf44;
}

.volledig-nieuwsbericht-holder {
	margin-top: 50px;
	border-top: 1px solid rgba(222,222,222,0.75);
	border-bottom: 1px solid rgba(222,222,222,0.75);
	padding-top: 25px;
	padding-bottom: 25px;
}

@media screen and (min-width: 991px) {
	.volledig-nieuwsbericht-holder {
		min-height: 400px;
	}
}

.nieuwsbericht-fullimage {
	float: left;
    width: 40%;
	max-width: 600px;
    height: auto;
    margin-right: 25px;
	margin-bottom: 25px;
	max-height: 350px;
	object-fit: cover;
}

@media screen and (max-width: 991px) {
	.nieuwsbericht-fullimage {
		width: 100%;
		margin-bottom: 40px;
		max-width: none;
	}
}

.image-with-caption-left {
	float: left;
	position: relative;
	margin: 15px 15px 15px 0;
	padding: 15px;
	background-color: #CBC7C7;
	text-align: center;
}

.image-with-caption-right {
	float: right;
	position: relative;
	margin: 15px 0 15px 15px;
	padding: 15px;
	background-color: #CBC7C7;
	text-align: center;
}

.image-with-caption-left small,
.image-with-caption-right small {
	font-style: italic;
}

@media screen and (max-width: 768px) {
	.image-with-caption-left {
		float: none;
		text-align: center;
        margin: 0px auto;
	}
	
	.image-with-caption-right {
		float: none;
		text-align: center;
        margin: 0px auto;
	}
}

.page-header {
	position: relative;
	max-height: 600px;
	height: 600px;
    width: 100%;
    background-image: url('/media/fotos/virm/virm-27.jpg');
	background-position: center center;
    background-size: cover;
}

@media screen and (max-width: 991px) {
	.page-header {
		max-height: 300px;
		height: 300px;
	}
}

.page-header h1 {
	position: absolute;
	bottom: 20px;
	padding-left: 80px;
	color: #FFF;
	-webkit-text-stroke: 1px #000;
}

@media screen and (max-width: 991px) {
	.page-header h1 {
		padding-left: 20px;
	}
}

/*Mobile table img fix */

@media screen and (max-width: 768px) {
	table img {
		object-fit: cover;
    	object-position: top left;
	}
}

/* Mobile video fix */
.fancybox__footer {
	display: none !important;
}

@media screen and (max-width: 600px) {
	
	.fancybox__nav {
		display: none !important;
	}
	
}