/*

	Theme Name: MetPeople
	Theme URI: https://www.metpeople.nl
	Description: MetPeople - Mediation & HR
	Version: 1.0
	Author: Bloemendaal in Vorm
	Author URI: http://www.bloemendaalinvorm.nl

*/
/*-----------------------------------------------------------------------------------

   0.	Clearfix
   1.  Basics (fonts, body, links etc)
   2.  Header
   3.  Masthead
   4.  Frontpage
   5.  Pages
   6.  Footer
   7.  Accordion
   8.  Testimonial

-----------------------------------------------------------------------------------*/
/*----------------------------------------------
0. Clearfix
------------------------------------------------*/



/*----------------------------------------------
1. Basics
------------------------------------------------*/

/* Fonts -------------------------------------- */
@import url('//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');

@font-face {
  font-family: 'museo_300';
  src: url('fonts/MuseoSansRounded300.eot');
  src: url('fonts/MuseoSansRounded300.eot') format('embedded-opentype'),
       url('fonts/MuseoSansRounded300.woff2') format('woff2'),
       url('fonts/MuseoSansRounded300.woff') format('woff'),
       url('fonts/MuseoSansRounded300.ttf') format('truetype'),
       url('fonts/MuseoSansRounded300.svg#MuseoSansRounded300') format('svg');
}

@font-face {
  font-family: 'museo_700';
  src: url('fonts/MuseoSansRounded700.eot');
  src: url('fonts/MuseoSansRounded700.eot') format('embedded-opentype'),
       url('fonts/MuseoSansRounded700.woff2') format('woff2'),
       url('fonts/MuseoSansRounded700.woff') format('woff'),
       url('fonts/MuseoSansRounded700.ttf') format('truetype'),
       url('fonts/MuseoSansRounded700.svg#MuseoSansRounded700') format('svg');
}

@font-face {
  font-family: 'museo_900';
  src: url('fonts/MuseoSansRounded900.eot');
  src: url('fonts/MuseoSansRounded900.eot') format('embedded-opentype'),
       url('fonts/MuseoSansRounded900.woff2') format('woff2'),
       url('fonts/MuseoSansRounded900.woff') format('woff'),
       url('fonts/MuseoSansRounded900.ttf') format('truetype'),
       url('fonts/MuseoSansRounded900.svg#MuseoSansRounded900') format('svg');
}

.text-300 { font-family: 'museo_300', sans-serif; font-weight: normal; }
.text-700, p.lead { font-family: 'museo_700', sans-serif; font-weight: normal; }
.text-900, h1, h2, .btn-primary { font-family: 'museo_900', sans-serif; font-weight: normal; }

h1, h2{
	font-size: 8.5vw;
	line-height: 0.9em;
	text-transform: uppercase;
}
@media (min-width: 576px) {
	h1, h2{
		font-size: 2.75em;
		line-height: 0.9em;
		text-transform: uppercase;
	}
}

/* Links -------------------------------------- */
a {
	-webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

/* Colors ------------------------------------- */
.text-purple, h1, h2{ color: rgb(72,37,128); }
.text-pink, p.lead{ color: rgb(231,29,114); }
.text-black { color: rgb(0,0,0); }

.link-pink { color: rgb(231,29,114); }
.link-pink:hover { color: rgb(231,29,114); }

* {
	margin: 0;
	padding: 0;	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body {
	position: relative;
	height: 100%;
	font-family: 'museo_300', sans-serif;
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.text-gradient {
	  display: inline-block;
	  padding: 1em 0;
	  margin: 0 auto;
	  background: -webkit-linear-gradient(left, #47267f 0%, #e71d72 100%);
	  background: linear-gradient(to right, #47267f 0%, #e71d72 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.text-gradient {
		display: block;
		background: none;
		padding: 0;
		color: rgb(231,29,114);
	    -webkit-text-fill-color: rgb(231,29,114);
	}
}
.mobile-break:before{
	content: '-';
}
.mobile-break:after{
	content: '';
	display: block;
}
@media (min-width: 992px) {
	html,
	body{
		font-size: 16px;
	}
	.mobile-break{
		display: none;
	}
}

/* Backgrounds ------------------------------- */
.overlay:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.overlay{
	position: relative;
	z-index: 1;
}

/* Buttons ------------------------------------ */
.btn-primary{
	text-transform: uppercase;
	border: none;
	border-radius: 2em;
	background: rgb(231,29,114);
	padding: 0.55rem 1rem 0.4rem;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active{
	border: none;
	background: rgb(72,38,128);
}

.btn-primary.disabled, .btn-primary:disabled {
	color: #fff;
	background-color: rgb(231,29,114);
	border-color: rgb(231,29,114);
}

/* Carousel animation ------------------------- */
.animated  {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}  

.owl-animated-out {
  z-index : 1 
}

.owl-animated-in {
  z-index : 0 
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}  
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }  
  100% {
    opacity: 0;
  }  
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }  
  100% {
    opacity: 0;
  }  
}

.row-kenmerken {
  margin-top: 6rem;
}

ul:not([class]) {
  padding-left: 1rem;
}

/* Forms -------------------------------------- */
.form-control{
	position: relative;
	background: rgb(242,233,241);
	border: 0.1em solid rgba(0,0,0,0.15);
	border-radius: 0.5em;
	font-family: 'museo_700', sans-serif;
	padding: 1rem 1.5rem 0.75rem;
	color: rgb(125,36,114);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group{
	margin-bottom: 0.25rem;
}
.wrapper-form .control-label{
	position: relative;
	font-family: 'museo_700', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	margin: -1em 0 0 0.75rem;
	top: 1em;
	background: rgb(242,233,241);
	padding: 0.2rem 0.75rem;
	z-index: 1;
}
.form-control:focus {
	border: 0.1em solid rgba(126,36,114,1);
  	outline: 0 none;
	box-shadow: none;
	color: rgb(125,36,114);
	background: rgb(242,233,241);
}
.form-check-input,
.form-check-label{
	position: relative;
	display: inline;
	vertical-align: middle;
}
.form-check-input{
	margin: 0;
	background: rgb(242,233,241);
}
.form-check-label{
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block !important;	
}

.wpcf7 .wpcf7-not-valid-tip {
	padding-top: 5px;
	color: #d70842;
	text-align: right;
	display: none;
}

.wpcf7 .wpcf7-not-valid,
.not-valid {
	border-left: 4px solid #d70842 !important;	
}

.wpcf7 .wpcf7-response-output {
	padding: 15px;
	text-align: center;
	margin: 15px 0 0 0;
}

.wpcf7 .wpcf7-validation-errors {
	background: #fff;
	color: #f0ad4e;
	border: none;
	border-left: 4px solid #f0ad4e;
}

.wpcf7 .wpcf7-mail-sent-ok {
	display: none;
	background: #fff;
	color: #155724;
	border: none;
	border-left: 4px solid #155724;
}

.wpcf7-form-control-wrap.brochures span.wpcf7-list-item {
	display: block;
	margin: 0;
}

span.wpcf7-list-item {
	margin: 0;
}

/*----------------------------------------------
2. Header
------------------------------------------------*/
.header{
	position: relative;
	padding: 1em 0 0;
	z-index: 90;
}
.logo{
	width: 230px;
	max-width: 100%;
	height: auto;
}
.wrapper-menu ul,
.wrapper-menu li{
	list-style: none;
	display: inline-block;
}
.wrapper-menu li{
	margin-left: 1.25rem;
}
.wrapper-menu li a{
  font-size: 1.125rem;
	display: inline-block;
	color: rgb(0,0,0);
}
.wrapper-menu li.current_page_item a,
.wrapper-menu li a:hover{
	color: rgb(225,29,114);
}
.wrapper-menu li.current_page_item a{
	font-family: 'museo_700', sans-serif;
}

.wrapper-menu .dropdown-menu {    
  color: #fff;
  background-color: rgb(231,29,114);
  border: none;
  border-radius: .25rem;
}

  .wrapper-menu .dropdown-menu a {
    color: #fff;  
  }

@media (max-width: 992px) {
	.menu-trigger{
		position: fixed;
		right: 1em;
		top: 1.25em;
		font-size: 2em;
		color: white;
		width: 3.5rem;
		height: 3.5rem;
		cursor: pointer;
		z-index: 92;
	}
	.menu-trigger.active{
		background: white;
		color: rgb(125,36,114);
	}
	.menu-trigger .myclose,
	.menu-trigger .myopen{
		position: relative;
		display: block;
		line-height: 3.5rem;
		text-align: center;
		border-radius: 3rem;
		background: rgb(225,29,114);
		z-index: 2;
	}
	.menu-trigger .myclose,
	.menu-trigger.active .myopen{
		display: none;
	}
	.menu-trigger.active .myclose{
		display: block;
		background: white;
	}
	.menu-trigger:after{
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		margin: -0.5em;
		width: 1em;
		height: 1em;
		border-radius: 200%;
		background: rgb(125,36,114);
		z-index: 1;
	    -webkit-transition: all 500ms ease;
	    -moz-transition: all 500ms ease;
	    transition: all 500ms ease;
	}
	.menu-trigger.active:after{
		width: 120em;
		height: 120em;
		margin: -60em;
	}
	.wrapper-menu{
		opacity: 0;
	    height: 0;
	    overflow: hidden;
		-webkit-transition: opacity 250ms 300ms ease;
		-moz-transition: opacity 250ms 300ms ease;
		-ms-transition: opacity 250ms 300ms ease;
		-o-transition: opacity 250ms 300ms ease;
		transition: opacity 250ms 300ms ease;
	}
	.wrapper-menu.active{
		position: fixed;
		left: 0;
		right: 0;
		margin-top: 1em;
		z-index: 92;
		opacity: 1;
	    height: auto;
	}
	.wrapper-menu ul,
	.wrapper-menu li{
		display: block;
		text-align: center;
		color: white;
	}
	.wrapper-menu li a{
		font-size: 2em;
		color: rgba(255,255,255,0.6);
		margin-bottom: 0.5em;
	}
	.wrapper-menu li.current a{
		color: rgb(255,255,255);
		padding: 0.15em 0.75em 0;
		background: rgb(225,29,114);
		border-radius: 10em;
	}
}
@media (min-width: 992px) {
	.wrapper-menu{
		display: block;
		opacity: 1;
	}
	.menu-trigger{
		display: none;
	}
}

/*----------------------------------------------
3. Masthead
------------------------------------------------*/
section.masthead{
	position: relative;
	/*
	background: rgb(242,233,241);
	*/
}
section.masthead:after{
	content: '';
	display: block;
	position: relative;
	margin-top: -10vw;
	padding: 32.5% 0 0 0;
	background: url('../images/bg-header-bottom-frontpage.svg') center bottom / 100% auto no-repeat;
	z-index: 1;
}
section.masthead .wrapper{
	position: relative;
	display: table;
	padding: 3em 0 0;
	table-layout: fixed;
	width: 100%;
	z-index: 2;
}
section.masthead .wrapper .masthead-text,
section.masthead .wrapper .masthead-image{
	display: table-cell;
	vertical-align: middle;
}
section.masthead .wrapper .masthead-text{
	position: relative;
	text-align: right;
	z-index: 2;
}
section.masthead .masthead-image{
	width: 55%;
}
section.masthead .masthead-image img{
	width: 100%;
	height: auto;
}
.masthead-image .overlay:after{
	background: -moz-linear-gradient(45deg, rgba(72,38,128,1) 17%, rgba(225,29,115,0.16) 70%, rgba(225,29,115,0) 80%);
	background: -webkit-linear-gradient(45deg, rgba(72,38,128,1) 17%,rgba(225,29,115,0.16) 70%,rgba(225,29,115,0) 80%);
	background: linear-gradient(45deg, rgba(72,38,128,1) 17%,rgba(225,29,115,0.16) 70%,rgba(225,29,115,0) 80%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482680', endColorstr='#00e11d73',GradientType=1 );
}
section.masthead h1{
	margin-right: -0.95em;
}
@media (min-width: 576px) {
	section.masthead h1{
		margin-right: -0.95em;
	}
}
@media (min-width: 768px) {
	section.masthead h1{
		font-size: 6vw;
	}
}
@media (min-width: 992px) {
	section.masthead h1{
		font-size: 5vw;
	}
}
@media (min-width: 1200px) {
	section.masthead h1{
		font-size: 4.5vw;
	}
}

/*----------------------------------------------
4. Frontpage
------------------------------------------------*/
body.frontpage{
	background: rgb(242,233,241);
}
body.frontpage:after{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	width: 100%;
	padding: 33% 0 0 0;
	background: url('../images/bg-header-top-frontpage.svg') center top / 100% auto no-repeat;
	z-index: 1;
}
section.intro{
	position: relative;
	background: white;
}
section.intro:after{
	display: block;
	position: relative;
	content: '';
	z-index: 1;
	padding: 20% 0 0 0;
	bottom: 0;
	z-index: 1;
	background: url('../images/bg-purple-top.svg') center bottom / 100% auto no-repeat;
}
section.intro .wrapper{
	position: relative;
	margin: -2vw 0;
	z-index: 2;
}
body.subpage,
body.error404 {
	background: white url('../images/bg-subpage.svg') center top / 100% auto no-repeat;
}
section.work{
	position: relative;
	padding: 3em 0;
	background: rgb(242,233,241);
}
section.work:after{
	position: absolute;
	content: '';
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 22.5% 0 0 0;
	background: url('../images/bg-purple-bottom.svg') center 2px / 100% auto no-repeat;
	z-index: 1;
}
section.work ul.work-list{
	position: relative;
	z-index: 2;
}
.work-item:nth-child(odd) .work-image.overlay:after{
	background: -moz-linear-gradient(left, rgba(125,36,114,0) 40%, rgba(125,36,114,0.6) 100%);
	background: -webkit-linear-gradient(left, rgba(125,36,114,0) 40%,rgba(125,36,114,0.6) 100%);
	background: linear-gradient(to right, rgba(125,36,114,0) 40%,rgba(125,36,114,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007d2472', endColorstr='#7d2472',GradientType=1 );
}
.work-item:nth-child(even) .work-image.overlay:after{
	background: -moz-linear-gradient(left, rgba(125,36,114,0.6) 0%, rgba(125,36,114,0) 60%);
	background: -webkit-linear-gradient(left, rgba(125,36,114,0.6) 0%,rgba(125,36,114,0) 60%);
	background: linear-gradient(to right, rgba(125,36,114,0.6) 0%,rgba(125,36,114,0) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d2472', endColorstr='#007d2472',GradientType=1 );
}
.work-text{
	position: relative;
	padding: 3em 2em;
	background: white;
}
.work-item{
	margin-bottom: 4em;
}
@media (min-width: 768px) {
	.work-item:nth-child(odd) .work-image{
		float: right;
		right: -15vw;
	}
	.work-item:nth-child(even) .work-image{
		float: left;
		left: -15vw;
	}
	ul.work-list:after{
		content: '';
		display: block;
		clear: both;
	}
	.work-image img{
		width: 55vw;
		max-width: 1000px;
	}
	.work-image:after{
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
	}
	.work-text{
		margin-top: 4em;
		padding: 4em;
		z-index: 2;
	}
}
section.about{
	position: relative;
	padding: 2em 0;
	background: white;
	z-index: 4;
}
.profile-container{
	position: relative;
	margin: 0 auto 2em;
}
.profile-container a{
	position: absolute;
	right: 0;
	bottom: 1.5rem;
	display: block;
	font-size: 1.5rem;
	width: 2em;
	line-height: 2em;
	border-radius: 2em;
	text-align: center;
	color: white;
	background: rgb(225,29,114);
}
.profile{
	display: block;
	width: 14em;
	height: 14em;
	border-radius: 14em;
	overflow: hidden;
}
@media (min-width: 768px) {
	section.about{
		padding: 8em 0 0;
	}
	.profile-container{
		position: absolute;
		left: 52%;
		top: 0;
	}
}

/*----------------------------------------------
5. Pages
------------------------------------------------*/
body.subpage,
body.error404{
	background: white url('../images/bg-header-top-subpage.svg') center top / 100% auto no-repeat;
}
body.subpage .header,
body.error404 .header{
	padding-bottom: 14vw;
}
main.main{
	position: relative;
	min-height: 15vw;
	z-index: 2;
}
.faq{
	margin-top: 4em;
}
.aside{
	margin-top: 2em;
}
@media (min-width: 768px) {
	.aside{
		margin-top: 0;
	}
}
/*----------------------------------------------
6. Footer
------------------------------------------------*/
.footer{
	position: relative;
	background: rgb(242,233,241);
}
.footer:before{
	display: block;
	position: relative;
	content: '';
	padding: 20vw 0 0 0;
	margin-bottom: -2px;
	background: url('../images/bg-purple-top.svg') center -2px / 100% auto no-repeat;
	z-index: 1;
}
.footer .wrapper-form{
	padding: 2em 0;
}
.footer .wrapper-contact{
	margin: 0 0 -2px 0;
	padding: 23vw 0 3em;
	background: rgb(125,36,114) url('../images/bg-footer.svg') center -1px / 100% auto no-repeat;
}
@media (min-width: 768px) {
	.footer .wrapper-contact{
		margin-top: -10vw;
	}
}
.wrapper-contact ul,
.wrapper-contact li{
	list-style: none;
	padding: 0;
}
.wrapper-contact h5{
	font-family: 'museo_700', sans-serif;
	font-weight: normal;
	color: white;
}
.wrapper-contact li,
.wrapper-contact li a,
.biv,
.biv a{
	color: rgba(255,255,255,0.6);
}
.wrapper-contact li{
	margin-bottom: 0.75rem;
}
.wrapper-contact ul{
	margin-top: 3rem;
}
.wrapper-contact .mediatorsfederatie{
	padding: 3em 0;
}
.wrapper-contact .mediatorsfederatie img{
	width: 260px;
	max-width: 80%;
	height: auto;
}
.biv{
	margin-top: 4rem;
	font-size: 0.8rem;
}
/*----------------------------------------------
7. Accordion
------------------------------------------------*/
.faq{
	margin-top: 2em;
}
.faq .faq-card{
	position: relative;
	padding-left: 1.5em;
}
.faq .faq-card h5{
	font-family: 'museo_700', sans-serif;
	font-weight: normal;
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
}
.faq .faq-title{
	color: rgb(72,38,128);
	cursor: pointer;
}
.faq .faq-card i{
	position: absolute;
	display: block;
	width: 1em;
	line-height: 1em;
	text-align: center;
	left: 0;
	top: 2px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.faq .faq-card.show i{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq .faq-card .faq-text{
	max-height: 0;
	overflow: hidden;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}
.faq .faq-card.show .faq-text{
	max-height: 20em;
	padding-bottom: 1.5em;
}
/*----------------------------------------------
8. Testimonial
------------------------------------------------*/
.testimonial{
	position: relative;
}
.testimonial:before{
	content: '';
	display: block;
	background: url('../images/bg-ref-top.svg') center top / 105% auto no-repeat;
	padding-top: 8%;
}
.testimonial:after{
	content: '';
	display: block;
	background: rgb(242,233,241) url('../images/bg-ref-bottom.svg') center bottom / 100% auto no-repeat;
	padding-top: 40%;
}
.testimonial .owl-carousel{
	padding: 1em 2em;
	background: rgb(242,233,241);
}
.testimonial .item{
	position: relative;
	font-family: 'museo_700', sans-serif;
	color: rgb(72,38,128);
	padding-left: 0.5em;
}
.testimonial .item:before,
.testimonial .item:after{
	content: '"';
}
.testimonial .item:before{
	position: absolute;
	left: 0;
}
.testimonial .buttons{
	padding: 0 2em;
	background: rgb(242,233,241);
}
.testimonial .buttons:after{
	content: '';
	display: table;
	clear: both;
}
.testimonial .buttons .next,
.testimonial .buttons .prev{
	display: inline-block;
	float: right;
	width: 2.5em;
	height: 2em;
	cursor: pointer;
}
.testimonial .buttons .prev{
	margin-right: 1em;
	background: url('../images/prev.svg') center center / 100% auto no-repeat;
}
.testimonial .buttons .next{
	background: url('../images/next.svg') center center / 100% auto no-repeat;
}
