/* ------------------------------------------------------------------
Project: Bakery Institute
Version: 1.0
------------------------------------------------------------------ */

@import url("https://fonts.googleapis.com/css?family=Montserrat:700");
@import url("https://fonts.googleapis.com/css?family=Muli:400,800");
@import url('https://fonts.googleapis.com/css?family=Great+Vibes');
/* -- @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700");
	Rubik main font --*/

/* ------------------------------------------------------------------
General Styles
------------------------------------------------------------------ */

body {
	background: #fff;
	overflow-x: hidden;
	-ms-overflow-style: scrollbar;
	font: 400 14px/1.8 "Muli", sans-serif;
	color: #675445;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	border: 0;
}

/* ------------------------------------------------------------------
Selection
------------------------------------------------------------------ */

::-moz-selection {
	background: #675445;
	color: #fff;
}

::-webkit-selection {
	background: #675445;
	color: #fff;
}

::selection {
	background: #675445;
	color: #fff;
}

/* ------------------------------------------------------------------
Transition elsements
------------------------------------------------------------------- */

a,
.btn {
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

/* ------------------------------------------------------------------
Reset box-shadow
------------------------------------------------------------------- */

.btn,
.well,
.panel,
.progress,
.form-control, .form-control:hover, .form-control:focus {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
	        box-shadow: none;
}

/* ------------------------------------------------------------------
Reset border-radius
------------------------------------------------------------------- */

.well, .label, .alert,
.modal-content {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	    -ms-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
}

/* ------------------------------------------------------------------
Typography
------------------------------------------------------------------- */

a {
	color: rgba(230, 22, 113, 1);
}

a:hover, a:focus {
	text-decoration: none;
	color: #111;
	outline: 0;
}

.bg-dark a {
	color: #aaa;
}

.bg-dark a:hover,
.bg-dark a:focus {
	color: #fff;
}

.text-light {
	color: rgba(255, 255, 255, 0.7);
}

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6,
.text-light .h1, .text-light .h2, .text-light .h3, .text-light .h4, .text-light .h5, .text-light .h6 {
	color: #fff;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	line-height: 1.4;
	font-weight: 400;
}

h1, .h1 {
	font-size: 28px;
}

h2, .h2 {
	font-size: 24px;
}

h3, .h3 {
	font-size: 18px;
}

h4, .h4 {
	font-size: 16px;
}

h5, .h5 {
	font-size: 14px;
}

h6, .h6 {
	font-size: 12px;
}

p, ol, ul, blockquote {
	margin: 0 0 20px;
}

blockquote {
	border-color: #f7f7f7;
}

blockquote.serif-quote {
	border: 0;
	padding-left: 0;
	padding-right: 0;
}

.font-alt {
	text-transform: uppercase;
	letter-spacing: 2px;
}

.font-serif {
	font-family: 'Great Vibes', Times, "Times New Roman", cursive;
	font-weight: 400;
}

.rotate {
	text-shadow: none !important;
}

.img-rounded {
	border-radius: 20px;
}

/* ------------------------------------------------------------------
Forms
------------------------------------------------------------------- */

.form-control {
	border: 2px solid #eee;
	height: 36px;
	letter-spacing: 1px;
	font-size: 14px;
	color: #999;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	    -ms-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
	-webkit-transition: all 0.15s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.15s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.15s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.15s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.form-control:focus {
	border-color: #675445;
}

.control-label {
	font-size: 16px;
	letter-spacing: 1px;
}

.form-group label span {
	color: #999;
	font-weight: normal;
	padding-left: 5px;
}

/* Form sizes */

.input-lg,
.form-horizontal .form-group-lg .form-control {
	height: 42px;
	font-size: 12px;
}

.input-sm, .form-horizontal .form-group-sm .form-control {
	height: 29px;
	font-size: 10px;
}

/* ------------------------------------------------------------------
Buttons
------------------------------------------------------------------- */

.btn {
	text-transform: lowercase;
	letter-spacing: 1px;
	font-size: 20px;
	font-weight: 700;
	padding: 8px 50px 10px 50px;
	border-radius: 300px;
}

.btn.focus, .btn:focus,
.btn.active.focus, .btn.active:focus,
.btn:active.focus, .btn:active:focus {
	background: none;
	outline: 0;
}

/* Button colors */

.btn.btn-w {
	background: rgba(255, 255, 255, 0.8);
	color: #111;
}

.btn.btn-w:hover, .btn.btn-w:focus {
	background: white;
	color: #111;
}

.btn.btn-border-w {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.75);
	color: #fff;
}

.btn.btn-border-w:hover, .btn.btn-border-w:focus {
	background: #fff;
	border-color: transparent;
	color: #111;
}

.btn.btn-g {
	background: #eee;
	color: #111;
}

.btn.btn-g:hover, .btn.btn-g:focus {
	background: rgba(238, 238, 238, 0.7);
	color: #111;
}

.btn.btn-d {
	background: rgba(230, 22, 113, 1);
	color: #fff;
}

.btn.btn-d:hover, .btn.btn-d:focus {
	background: #111111;
}

.btn.btn-border-d {
	background: transparent;
	border: 1px solid #ccc;
	color: #111;
}

.btn.btn-border-d:hover {
	background: #ccc;
	color: #111;
}

.btn.btn-b {
	background: #fff;
	color: #e61671;
	margin-top: 20px;
	font-family: "Montserat" , sans-serif;
}

.btn.btn-b:hover, .btn.btn-b:focus {
	background: rgba(17, 17, 17, 0.8);
}

/* Button sizes */

.btn.btn-lg {
	font-size: 12px;
	padding: 12px 45px;
}

.btn.btn-m {
	font-size: 13px;
	padding: 6px 25px;
}

.btn.btn-sm {
	letter-spacing: 1px;
	font-size: 10px;
	padding: 6px 25px;
}

.btn.btn-xs {
	letter-spacing: 0;
	font-size: 10px;
	padding: 4px 19px;
}

/* ------------------------------------------------------------------
Progress bars
------------------------------------------------------------------- */

.progress {
	overflow: visible;
	height: 4px;
}

.progress-title {
	margin-top: 0;
}

.progress-bar {
	position: relative;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	    -ms-border-radius: 4px;
	     -o-border-radius: 4px;
	        border-radius: 4px;
}

.progress-bar.pb-dark {
	background: #111;
}

.progress-bar span {
	position: absolute;
	padding: 4px 0px;
	display: block;
	top: -28px;
	right: 0;
	opacity: 0;
	line-height: 12px;
	font-size: 12px;
	color: #777;
}

/* ------------------------------------------------------------------
Tabs and Accordion
------------------------------------------------------------------- */

.nav-tabs {
	border-color: #eee;
}

.nav-tabs > li > a {
	font-size: 12px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
}

.nav-tabs >li.active > a,
.nav-tabs >li.active > a:hover,
.nav-tabs >li.active > a:focus {
	border: 1px solid #eee;
	border-bottom-color: transparent;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
	background: #eee;
}

.tab-content {
	overflow: auto;
}

/* For multiple tabs on one page --- deleted for masonry nav
.tab-content :last-child {
	margin-bottom: 0;
}
*/

/* Accordion */

#list .row {
	border-top: 1px solid rgba(0,0,0,.05);
	padding-top: 2.5em;
	padding-bottom: 2.5em;
	margin-left: 0;
	margin-right: 0;
}

#list .row:last-child {
	border-bottom: 1px solid rgba(0,0,0,.05);
	margin-bottom: 60px;
}

#list .media:first-child {
    margin-top: 5px;
}

#list .media-left {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 0.9em;
	min-width: 70px;
	text-align: center;
	opacity: 0.35;
}

#list .media-heading {
    font-size: 1.2em;
    margin-bottom: 0;
}

#list .media-body h5 {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 4px;
	margin-bottom: 20px;
	color: #ccc;
}

#list .media-body p {
	color: rgba(230, 22, 113, 1);
}

#list h2 a {
    color: #675445;
}

#list h2 a:hover, #list h2 a:focus {
	text-decoration: none;
	color: #111;
	outline: 0;
}

#list .post-meta {
	font-size: 14px;
	color: #ccc;
	margin: 0;
	letter-spacing: 1.5px;
}

#list .post-button {
	position: relative;
	padding: 40px 0;
}

@media (max-width: 768px) {
	#list .media-left {
		padding-right: 20px;
		min-width: 60px;
	}
	
	#list .media-body h5 {
		margin-bottom: 0px;
	}
	
	#list .post-button {
		padding: 25px 0px 0px 0px;
	}
}

.panel-group {
	border: 1px solid #eee;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	    -ms-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
}

.panel-group .panel {
	border-radius: 0;
}

.panel {
	border: 0;
	border-bottom: 1px solid #eee;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-color: #eee;
}

.panel-body {
	font-size: 15px;
	line-height: 2;
	padding: 20px;
}

.panel-heading {
	padding: 15px 20px;
}

.panel-default > .panel-heading {
	background: transparent;
	border-color: #eee;
}

.panel-heading a {
	position: relative;
	display: block;
}

.panel-heading a:after {
	position: absolute;
	content: "\f106";
	top: 50%;
	right: 0px;
	margin-top: -7px;
	font-family: "FontAwesome";
	font-size: 18px;
	line-height: 1;
}

.panel-heading a.collapsed:after {
	content: "\f107";
}

.panel-title {
    font-size: 20px;
    text-transform: none;
    letter-spacing: normal;
}

.panel-group .panel + .panel {
	border-top: 0;
	margin-top: 0;
}

/* -------------------------------------------------------------------
Checkout table
------------------------------------------------------------------- */

.checkout-table {
	border: 1px solid #eee;
}

.checkout-table > tbody > tr > td,
.checkout-table > tbody > tr > th,
.checkout-table > tfoot > tr > td,
.checkout-table > tfoot > tr > th,
.checkout-table > thead > tr > td,
.checkout-table > thead > tr > th {
	border-top: 1px solid #eee;
	padding: 12px;
}

.checkout-table tr td,
.checkout-table tr th {
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
}

.checkout-table tbody tr td:first-child,
.checkout-table tbody tr th:first-child {
	max-width: 36px;
}

.pr-remove {
	vertical-align: middle !important;
	text-align: center;
}

/* -------------------------------------------------------------------
Price and date tables
------------------------------------------------------------------- */

.price-table, .date-table {
	background: #fff;
	border: 1px solid #eee;
	padding: 25px 20px;
	margin: 0 0 30px;
	text-align: center;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
}

.price-table:hover, .date-table:hover {
	border-color: #eee;
}

.price-table.best {
	margin: 0 0 30px;
}

.price-table .small {
	margin: 0;
}

.borderline {
	position: relative;
	background: #eee;
	display: block;
	height: 1px;
	width: 100%;
	margin: 20px 0 15px;
}

.borderline:before {
	position: absolute;
	background: #eee;
	content: "";
	bottom: -7px;
	left: 50%;
	height: 14px;
	width: 14px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	margin-left: -7px;
}

.borderline:after {
	position: absolute;
	background: #fff;
	content: "";
	bottom: -5px;
	left: 50%;
	height: 16px;
	width: 16px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	margin-left: -8px;
}

.price-table h4, .date-table h4 {
	font-weight: 700;
	margin: 0;
}

.price-table h5, .date-table h5 {
	font-weight: 700;
	margin: 0;
	color: rgba(230, 22, 113, 1);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.price-table p.price {
	font-weight: 700;
	font-size: 50px;
	color: #675445;
	padding: 0;
	margin: 0 0 0 -10px;
}

.price-table p.price span {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	padding-top: 25px;
	padding-right: 5px;
}

.price-details, .date-details {
	list-style: none;
	padding: 0;
	margin: 0 0 23px;
}

.price-details li {
	padding: 5px 0;
	font-size: 13px;
}

.price-details li > span {
	text-decoration: line-through;
	color: #aaa;
}

.price-table .btn.btn-border-d {
	margin-left: 28px;
}

.date-table .date-full {
	color: rgba(230, 22, 113, 1);
}

.fa-question-circle {
	color: #bbb;
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
}

/* ------------------------------------------------------------------
Pagination
------------------------------------------------------------------- */

.pagination > li {
	display: inline-block;
}

.pagination > li > a,
.pagination > li > span {
	background: #f7f7f7;
	border: 0;
	height: 32px;
	width: 32px;
	padding: 0;
	margin: 0;
	text-align: center;
	line-height: 32px;
	font-size: 10px;
	color: #111;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	     -o-border-radius: 2px;
	        border-radius: 2px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	background: #111;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	background: #f0f0f0;
	color: #111;
}

/* ------------------------------------------------------------------
Social links
------------------------------------------------------------------- */

.social-text-links,
.social-icon-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.socicon-round > li > a {
	-webkit-border-radius: 20px;
	   -moz-border-radius: 20px;
	     -o-border-radius: 20px;
	        border-radius: 20px;
}

.socicon-circle > li > a {
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	     -o-border-radius: 100%;
	        border-radius: 100%;
}

.social-text-links > li {
	display: inline-block;
	margin: 0 10px 20px;
}

.social-icon-links > li {
	display: inline-block;
	margin: 0 7px 10px 0;
}

.social-icon-links > li > a {
	display: inline-block;
	background: #f7f7f7;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	color: #111;
}

.social-icon-links > li > a:hover {
	background: #f0f0f0;
}

/* ------------------------------------------------------------------
Content box
------------------------------------------------------------------- */

.content-box {
	text-align: center;
	margin: 25px 0;
}

.content-box-icon {
	font-size: 42px;
	color: #111;
}

.content-box-title {
	text-align: center;
	margin: 5px 0 18px;
}

/* Alt content box */

.alt-content-box {
	position: relative;
	padding-left: 60px;
	margin: 25px 0;
}

.alt-content-box-icon {
	position: absolute;
	height: 40px;
	width: 52px;
	left: 0;
	top: 0;
	text-align: center;
	line-height: 40px;
	font-size: 28px;
	color: #111;
}

.alt-content-box-title {
	margin: 0 0 18px 0;
	padding-top: 5px;
	color: rgba(230, 22, 113, 1);
}

.maatwerk .alt-content-box:after {
	top: 66px;
	left: 26px;
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - (32px + 4px) * 2);
	background-color: #efefef;
}

.maatwerk .alt-content-box-icon {
	position: absolute;
	height: 52px;
	width: 52px;
	left: 0;
	top: 0;
	text-align: center;
	line-height: 52px;
	font-size: 28px;
	color: #111;
}

.maatwerk .fa-quote-right:before {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #e61671;
    height: 52px;
    width: 52px;
    line-height: 52px;
    border-radius: 50%;
    box-shadow: 0 0 0 18px #fff;
    font-size: 30px;
    padding-top: 2px;
}

.maatwerk .alt-content-box-title {
	margin: 0 0 18px 20px;
}

.maatwerk .content-box-text {
	margin: 0 0 0 20px;
	font-size: 16px;
}

.maatwerk .maatwerk_intro {
	font-size: 18px;
}

.maatwerk .content-box {
	padding: 25px 0 0 25px;
}

.maatwerk .module-subtitle {
	text-align: center;
	font-size: 18px;
	margin: 30px 0 30px 0;
}

.maatwerk .font-small {
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.5px;
	color: rgba(0, 0, 0, 0.5);
}

.maatwerk .overview .name {
	background: #eeeeee;
	position: relative;
	display: inline-block;
	padding: 1px 15px 1px 10px;
	margin: 0px 15px 10px 0;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	font-size: 11px;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
	        border-radius: 2px 0 0 2px;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.maatwerk .overview .name:before {
	border-left: 8px solid #eeeeee;
	border-top: 13px solid rgba(0, 0, 0, 0);
	border-bottom: 13px solid rgba(0, 0, 0, 0);
	position: absolute;
	content: "";
	right: -8px;
	top: 0;
	height: 0;
	width: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.maatwerk .overview .name:after {
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	right: 4px;
	top: 11px;
	height: 4px;
	width: 4px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.bg-light .maatwerk p {
	font-size: 16px;
}

.bg-teal {
	color: #FFF;
}

.bg-teal .maatwerk p {
	font-size: 16px;
}

.bg-pink .alt-content-box {
	padding: 0 45px 0 105px;
	margin: 0;
	letter-spacing: 0.4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.bg-pink .alt-content-box:after {
	top: 66px;
	left: 80px;
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - (40px + 4px) * 2);
	background-color: rgba(255, 255, 255, 0.35);
}

.bg-pink .card {
	min-height: 500px;
}

@media (max-width: 992px)
{
	.bg-pink .alt-content-box {
		position: relative;
		margin: 35px 0;
		transform: none;
		top: inherit;
	}

	.bg-pink .col-md-6 {
		width: 100%;
	}
}

.bg-pink .alt-content-box-icon {
	position: absolute;
	height: 52px;
	width: 52px;
	left: 55px;
	top: 0;
	text-align: center;
	line-height: 52px;
	font-size: 28px;
	color: #000;
}

.bg-pink .fa-quote-right:before {
    display: block;
    text-align: center;
    color: rgba(230, 22, 113, 1);
    background-color: rgba(255, 255, 255, 0.75);
    height: 52px;
    width: 52px;
    line-height: 52px;
    border-radius: 50%;
    box-shadow: 0 0 0 18px rgba(230, 22, 113, 1);
    font-size: 30px;
    padding-top: 2px;
}

.bg-pink .alt-content-box-title {
	margin: 0 0 18px 18px;
	color: rgba(255, 255, 255, 1);
}

.bg-pink .content-box-text {
	margin: 0 0 0 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
}

.bg-pink .font-small {
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.5);
}

.bg-pink .overview .name {
	background-color: rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.75);
	position: relative;
	display: inline-block;
	padding: 1px 15px 1px 10px;
	margin: 0px 15px 10px 0;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	font-size: 11px;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
	        border-radius: 2px 0 0 2px;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.bg-pink .overview .name:before {
	border-left: 8px solid rgba(255, 255, 255, 0.25);
	border-top: 13px solid rgba(0, 0, 0, 0);
	border-bottom: 13px solid rgba(0, 0, 0, 0);
	position: absolute;
	content: "";
	right: -8px;
	top: 0;
	height: 0;
	width: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.bg-pink .overview .name:after {
	background: rgba(230, 22, 113, 1);
	position: absolute;
	display: block;
	content: "";
	right: 4px;
	top: 11px;
	height: 4px;
	width: 4px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.bg-pink .font-small a,
.bg-pink .media-body a {
	color: #fff;
}

.bg-pink .font-small a:hover,
.bg-pink .media-body a:hover,
.bg-pink .font-small a:focus,
.bg-pink .media-body a:focus {
	color: #111;
}

@media(min-width:568px) and (max-width:1200px)
{
	.bg-pink .content-box-text {
		font-size: 14.5px;
	}
}

/* Referentie ------------------------------------------------------------------- */

.referentie .testimonial-wrapper {
    padding: 0 10px;
	margin-bottom: 45px;
}

.referentie .media-block {
	display: flex;
	align-items: flex-start;
	padding: 0 0 0 17px;
}

.referentie .media-img > img {
	width: 75px;
	height: 75px;
	display: block;
	border-radius: 50%;
	border: 1px solid #e3e3e3;
	margin: 0 1rem 0 0;
}

.referentie .media-block > div.media-body {
	flex: 1;
}

.referentie .testimonial {
    position: relative;
    padding: 24px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
	margin-bottom: 20px;
}

.referentie .testimonial p {
	font-size: 16px;
	margin-bottom: 0;
}

.referentie .testimonial::after {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-width: 0 0 1px 1px;
	position: absolute;
	bottom: -8px;
	left: 46px;
	transform: rotateZ(-46deg);
}

.referentie .overview {
	padding: 5px 0 0 15px;
}

.referentie .name {
	background: #f5f5f5;
	position: relative;
	display: inline-block;
	padding: 1px 10px 1px 15px;
	margin: 5px 15px 5px 0;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
	        border-radius: 2px 0 0 2px;
}

.referentie .name:before {
	border-right: 8px solid #f7f7f7;
	border-top: 13px solid rgba(0, 0, 0, 0);
	border-bottom: 13px solid rgba(0, 0, 0, 0);
	position: absolute;
	content: "";
	left: -8px;
	top: 0;
	height: 0;
	width: 0;
}

.referentie .name:after {
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	left: 4px;
	top: 11px;
	height: 4px;
	width: 4px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.referentie .overview .details {
	font-size: 12px;
	font-style: italic;
	letter-spacing: 0.5px;
	color: rgba(0, 0, 0, 0.5);
	padding: 5px 0 8px 15px;
}

.referentie .overview .details p {
	margin: 0;
}

/* Interview ------------------------------------------------------------------- */

.interview .well p {
	font-size: 18.5px;
	margin-bottom: 0;
}

p.subhead:first-child:first-letter {
    background-color: rgba(230, 22, 113, 1);
    float: left;
    font-family: Georgia;
    font-size: 75px;
    line-height: 85px;
    padding: 5px 30px;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-right: 21px;
    margin-top: 11px;
}

.interview h1 {
	margin-bottom: 35px;
}

.interview p {
	font-size: 16px;
	line-height: 1.85em;
}

.interview .well {
	margin-bottom: 40px;
}

.interview blockquote {
	font-size: 18.5px;
	padding: 24px 38px;
	background-color: #f0f3f2;
	border-left: none;
    position: relative;
    overflow: hidden;
    margin: 10px 40px 20px 0;
}

.interview blockquote:after {
	position: absolute;
    font-family: "FontAwesome";
	content: "\f10e";
    font-size: 60px;
    line-height: 24px;
    right: 12px;
    bottom: 0px;
    color: #fff;
}

.interview .thumbnail {
	margin-left: 40px;
}

.interview .col-md-12.thumbnail {
	margin-left: 0;
	margin-top: 40px;
	margin-bottom: 20px;
}

/* Ondernemer ------------------------------------------------------------------- */

.ondernemer ul.questions {
    list-style-type: none;
    position: relative;
}

.ondernemer ul.questions:before {
    content: "";
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 0;
}

.ondernemer ul.questions > li {
    margin: 0 0 25px 0;
    padding-left: 20px;
}

.ondernemer ul.questions > li:before {
    content: "";
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(230, 22, 113, 1);
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 10;
}

.ondernemer ul.questions p {
    font-size: 18px;
    line-height: 1.35;
}

.ondernemer .bg-pink h2 {
	color: #fff;
}

.ondernemer .pointer h3 {
	font-size: 18px;
	line-height: 1.8em;
    letter-spacing: 0.5px;
}

.ondernemer .bg-pink p {
	color: #fff;
	font-size: 15px;
}

.ondernemer .bg-pink .thumbnail {
    background-color: transparent;
    border-color: rgba(255,255,255,0.75);
    padding: 0;
    border-radius: 0;
    border-width: 2px;
    margin-top: 5px;
}

.ondernemer .bg-pink .thumbnail.col-md-5.pull-left {
	margin-right: 55px;
}

.ondernemer .bg-pink .thumbnail.col-md-5.pull-right {
	margin-left: 55px;
}

@media(max-width:768px) {
	.ondernemer .bg-pink .thumbnail.col-md-5.pull-left { margin-right: 0; }
	.ondernemer .bg-pink .thumbnail.col-md-5.pull-right { margin-left: 0; }
}

/* Data & Aanmelden ------------------------------------------------------------------- */

.data_aanmeld .wrap {
	background-color: #fff;
}

.data_aanmeld .content-box {
	padding: 0 80px;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	font-size: 15px;
}

.data_aanmeld .content-box h2 {
	color: #111;
}

.data_aanmeld .content-box-intro {
	margin-bottom: 90px;
}

.data_aanmeld .content-box-intro:after {
	top: 200px;
	left: 80px;
	position: absolute;
	content: "";
	width: calc(100% - (208px - 4px) * 2);
	height: 2px;
	background-color: #efefef;
}

.data_aanmeld #cursussen .heading-section {
	margin-bottom: 15px;
}

.data_aanmeld #cursussen .heading-section h2 {
	color: #111;
}

.data_aanmeld .well {
	padding: 40px;
	margin-bottom: 60px;
}

.data_aanmeld .well p.intro {
	margin-bottom: 0;
}

.data_aanmeld .alt-content-box:after {
	top: 66px;
	left: 26px;
	position: absolute;
	content: "";
	width: 2px;
	height: calc(100% - (32px + 4px) * 2);
	background-color: #efefef;
}

.data_aanmeld .alt-content-box-title {
	margin: 0 0 20px 20px;
	padding-top: 5px;
	color: #111;
}

.data_aanmeld .alt-content-box-icon span:before {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #e61671;
    height: 52px;
    width: 52px;
    line-height: 52px;
    border-radius: 50%;
    box-shadow: 0 0 0 18px #fff;
    font-size: 30px;
}

.data_aanmeld .content-box-text {
	margin: 0 0 0 20px;
	font-size: 16px;
}

@media(max-width:768px) {

	.data_aanmeld .wrap .col-sm-6 {
		width: 100%;
	}

	.data_aanmeld .content-box {
		position: relative;
		margin: 20px 0 0 0;
		top: inherit;
		transform: inherit;
		padding: 0 30px;
	}

	.data_aanmeld .content-box-intro {
		font-size: inherit;
		margin-bottom: inherit;
	}

	.data_aanmeld .content-box-intro:after {
		display: none;
	}
}

@media(min-width:768px) and (max-width:992px) {

	.data_aanmeld .content-box {
		padding: 0 50px;
	}

	.data_aanmeld .content-box.beta {
		margin: inherit;
		padding: 0 30px;
		font-size: inherit;
	}

	.data_aanmeld .content-box.beta p {
		margin-bottom: 0;
	}

	.data_aanmeld .content-box-intro {
		font-size: inherit;
		margin-bottom: inherit;
	}

	.data_aanmeld .content-box-intro:after {
		display: none;
	}
}

@media(min-width:768px) and (max-width:1200px) {

	.data_aanmeld .content-box {
		padding: 0 50px;
	}

	.data_aanmeld .content-box.beta {
		margin: inherit;
		padding: 0 50px;
		font-size: inherit;
	}

	.data_aanmeld .content-box.beta p {
		margin-bottom: 0;
	}

	.data_aanmeld .content-box-intro:after {
		left: 50px;
		width: calc(100% - (158px - 4px) * 2);
	}
}

/* Carri�reswitchers ------------------------------------------------------------------- */

.career .marquee .image-container {
	z-index: 1;
	margin-right: -60px;
	margin-top: 30px;
	height: 400px;
    position: relative;
    background-position: 50%;
    background-size: cover;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,.1);
}

.career .marquee .text-container {
	background-color: #fff;
	padding: 46px 40px 40px 100px;
}

.career .marquee .description p {
	font-size: 16px;
	color: #808080;
}

.career .marquee .text-container h2 {
	font-size: 26px;
	margin-bottom: 20px;
	color: #111;
}

.career p {
    font-size: 15px;
    letter-spacing: 0.4px;
}

.career .alt-content-box {
	padding: 0 75px;
	margin: 0;
	letter-spacing: 0.4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.career .bg-light .alt-content-box-title {
	color: #675445;
}

@media (max-width: 992px)
{
	.career .alt-content-box {
		position: relative;
		margin: 35px 0;
		transform: none;
		top: inherit;
	}
	
	.career .module-no-padding .col-md-6 {
		width: 100%;
	}
	
	.career .marquee .text-container {
		padding: 46px 40px 40px 90px;
	}
}

@media (max-width: 768px) {

	.career .marquee .row-center {
		display: block;
	}

	.career .marquee .image-container {
		margin: -30px auto -90px auto;
		box-shadow: none;
		border-radius: 50% !important;
		max-height: 175px;
		max-width: 175px;
		border: 7px solid #fff;
	}

	.career .marquee .text-container {
		padding: 80px 40px 40px 40px;
	}
}

.career .alt-content-box a {
	color: rgba(240,139,171,1);
}

.career .alt-content-box a:hover,
.career .alt-content-box a:focus {
	text-decoration: none;
	color: #111;
	outline: 0;
}

.career .heading-section {
	margin-bottom: 20px;	
}

.career .heading-section h2 {
	font-size: 24px;
	color: #111;
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
}

.career .media .text-right {
	padding-right: 20px;
}

.career .media .text-left {
	padding-left: 20px;
}

.career .media .media-body {
	font-size: 16px;
}

.career .media h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
}

.career .media p {
    margin: 0 0 27px;	
}

.career .alumni-c .image-container {
	height: 500px;
    position: relative;
    background-position: 50%;
    background-size: cover;
    box-shadow: 0 10px 25px 0 rgba(0,0,0,.3);
}

.career .alumni-c .image-container.image-left {
	margin-right: -100px;
	margin-bottom: 134px;
	z-index: 1;
}

.career .alumni-c .image-container.image-right {
	z-index: 2;
    top: 80px;
    margin-left: -100px;
    margin-bottom: 188px;
}

/* Video responsive embed */
.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 20px;
}

.embed-responsive-item, iframe, embed, object, video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 57.25%;
}

@media (max-width: 768px) {
	.career .module-small.media,
	.career .module-small.alumni-c {
		padding-top: 20px;
	}
	
	.career .heading-section {
    	margin-bottom: 40px;
	}
	
	.career .media .text-right {
    	padding-right: 0px;
	}
	
	.career .media .text-left {
    	padding-left: 0px;
	}
	
	.career .alumni-c .image-container.image-left {
		margin-right: 0px;
	    margin-bottom: 44px;
    }
    
    .career .alumni-c .image-container.image-right {
	    top: 10px;
	    margin-left: 0px;
	    margin-bottom: 44px;
    }
}
/* ------------------------------------------------------------------
Gallery box
------------------------------------------------------------------- */

.gallery-box {
	text-align: center;
	margin: 35px 0;
}

.gallery-box-text {
	font-size: 12px;
}

.gallery-box .gallery {
	display: block;
	margin: 20px 0 0;
}

.gallery-box .gallery:after {
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.gallery-box:hover .gallery:after {
	opacity: 1;
}

/* Counters ------------------------------------------------------------------- */

.counter-item {
	text-align: center;
}

.counter-number {
	font-weight: 700;
	font-size: 22px;
}

/* Client logos --------------------------------------------------------------- */

.client-item {
	margin-bottom: -10px;
	opacity: 0.8;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.client-item:hover {
	opacity: 1;
}

.alt-client-item {
	position: relative;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	padding: 0;
	text-align: center;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.alt-client-item a {
	display: block;
	width: 100%;
	padding: 50px 15px;
	opacity: 0.9;
}

.alt-client-item a:hover {
	background-color: rgba(0, 0, 0, 0.05);
	opacity: 1;
}

.alt-client-item:before {
	position: absolute;
	border-left: 1px solid #eee;
	height: 100%;
	content: "";
	top: 0;
	left: -1px;
}

.alt-client-item:after {
	position: absolute;
	border-bottom: 1px solid #eee;
	width: 100%;
	content: "";
	bottom: -1px;
	left: 0;
}

.quote {
	font-size: 20px;
}

.quote-author {
	font-size: 14px;
	opacity: 0.75;
}

/* -------------------------------------------------------------------
Shope item (Related items)
------------------------------------------------------------------- */

.shop-item {
	text-align: center;
	margin: 0 0 40px;
}

.shop-item-image {
	position: relative;
	overflow: hidden;
}

.shop-item-image img {
	width: 100%;
}

.shop-item-detail,
.shop-item-image:after {
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.shop-item-image:after {
	position: absolute;
	display: block;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.shop-item-detail {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 100%;
	padding: 20px;
	opacity: 0;
	z-index: 2;
	text-align: center;
	font-size: 12px;
	color: #aaa;
}

.shop-item-title {
	margin: 15px 0 5px;
	letter-spacing: 0.5px
}

/* Shop item hover */

.shop-item:hover .shop-item-image:after {
	background: rgba(103, 84, 69, 0.85);
}

.shop-item:hover .shop-item-detail {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	   -moz-transform: translateY(50%);
	        transform: translateY(50%);
}

.shop-item-detail h3,
.shop-item-detail h5 {
	color: #fff;
}

.shop-module-title {
	letter-spacing: 1px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 40px;
}

/* -------------------------------------------------------------------
Shop product detail
------------------------------------------------------------------- */

.product-gallery {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: 10px 0 0;
}

.product-gallery li {
	display: inline-block;
	width: 15%;
	margin: 0 5px;
}

.product-gallery li:first-child {
	margin-left: 0;
}

.product-title {
	margin: 0 0 20px;
	color: #111;
}

.amount {
	font-size: 32px;
	color: #111;
}

/* ------------------------------------------------------------------
Owl sliders
------------------------------------------------------------------- */

.owl-carousel .owl-controls .owl-buttons .owl-prev,
.owl-carousel .owl-controls .owl-buttons .owl-next {
	position: absolute;
	background: #675445;
	display: block;
	height: 40px;
	width: 40px;
	top: 50%;
	margin: -20px 10px 0;
	padding: 0;
	opacity: 0;
	text-align: center;
	line-height: 40px;
	font-size: 17px;
	color: #fff;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.owl-carousel .owl-controls .owl-buttons .owl-prev {
	left: -20px;
}

.owl-carousel .owl-controls .owl-buttons .owl-next{
	right: -20px;
}


.owl-carousel:hover .owl-controls .owl-buttons .owl-prev {
	opacity: 0.5;
	left: 0px;
}

.owl-carousel:hover .owl-controls .owl-buttons .owl-next {
	opacity: 0.5;
	right: 0px;
}

/* Pagination */

.owl-pagination {
	position: absolute;
	z-index: 3;
	margin-top: 15px;
	text-align: center;
	width: 100%;
}

.slider-testimonials .owl-pagination {
	bottom: -50px;
	margin: 0;
}

/* Slider images */

.slider-images .owl-pagination {
	bottom: 10px;
	margin: 0;
}

.owl-page {
	position: relative;
	background: rgba(255, 255, 255, 0.7);
	display: inline-block;
	overflow: hidden;
	height: 6px;
	width: 6px;
	margin: 6px 4px;
	text-indent: -200%;
	z-index: 1000;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
	        border-radius: 6px;
	-webkit-box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
	   -moz-box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
	     -o-box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
	        box-shadow: 0 0 1px rgba(17, 17, 17, 0.4);
	-webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.owl-page.active {
	-webkit-transform: scale(1.3);
	   -moz-transform: scale(1.3);
	     -o-transform: scale(1.3);
	        transform: scale(1.3);
}

.heading-section .owl-page {
	background: rgba(103, 84, 69, 0.7);	
}

/* ------------------------------------------------------------------
Overlays
------------------------------------------------------------------- */

.bg-light {
	background-color: #efefef;
	height: 100%;
	width: 100%;
}

.bg-pink {
	background-color: rgba(230, 22, 113, 1);
	height: 100%;
	width: 100%;
}

.bg-dark {
	background-color: #111;
	height: 100%;
	width: 100%;
}

.bg-teal {
	background-color: #b9a795;
	height: 100%;
	width: 100%;
}

.bg-footer {
	background-color: #675445;
	height: 100%;
	width: 100%;
	font-size: 15px;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.bg-footer a {
	color: rgba(255, 255, 255, 1);
}

.bg-footer a:hover, .bg-footer a:focus {
	text-decoration: none;
	color: #e61671;
	outline: 0;
}

.bg-dark,
.bg-footer,
.bg-dark-30,
.bg-dark-60,
.bg-dark-75,
.bg-dark-90,
.bg-pink-90,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-dark-30 h1, .bg-dark-30 h2, .bg-dark-30 h3, .bg-dark-30 h4, .bg-dark-30 h5, .bg-dark-30 h6,
.bg-dark-60 h1, .bg-dark-60 h2, .bg-dark-60 h3, .bg-dark-60 h4, .bg-dark-60 h5, .bg-dark-60 h6,
.bg-dark-75 h1, .bg-dark-75 h2, .bg-dark-75 h3, .bg-dark-75 h4, .bg-dark-75 h5, .bg-dark-75 h6,
.bg-pink-90 h1, .bg-pink-90 h2, .bg-pink-90 h3, .bg-pink-90 h4, .bg-pink-90 h5, .bg-pink-90 h6,
.bg-dark-90 h1, .bg-dark-90 h2, .bg-dark-90 h3, .bg-dark-90 h4, .bg-dark-90 h5, .bg-dark-90 h6,
.bg-dark .content-box-icon, .bg-dark-30 .content-box-icon, .bg-dark-60 .content-box-icon, .bg-dark-75 .content-box-icon, .bg-dark-90 .content-box-icon, .bg-pink-90 .content-box-icon {
	color: #fff;
}

.bg-film:before,
.bg-dark-30:before,
.bg-dark-60:before,
.bg-dark-75:before,
.bg-dark-90:before,
.bg-pink-90:before,
.bg-light-30:before,
.bg-light-60:before,
.bg-light-75:before,
.bg-light-90:before {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.bg-dark-30:before {
	background: rgba(103, 84, 69, 0.3);
	content: "";
	left: 0;
	top: 0;
}

.bg-dark-60:before {
	background: rgba(103, 84, 69, 0.6);
	content: "";
	left: 0;
	top: 0;
}

.bg-dark-75:before {
	background: rgba(103, 84, 69, 0.75);
	content: "";
	left: 0;
	top: 0;
}

.bg-dark-90:before {
	background: rgba(103, 84, 69, 0.9);
	content: "";
	left: 0;
	top: 0;
}

.bg-light-30:before {
	background: rgba(255, 255, 255, 0.3);
	content: "";
	left: 0;
	top: 0;
}

.bg-light-60:before {
	background: rgba(255, 255, 255, 0.6);
	content: "";
	left: 0;
	top: 0;
}

.bg-light-75:before {
	background: rgba(255, 255, 255, 0.75);
	content: "";
	left: 0;
	top: 0;
}

.bg-light-90:before {
	background: rgba(255, 255, 255, 0.9);
	content: "";
	left: 0;
	top: 0;
}

.bg-film:before {
	background: url(../images/dot.gif);
	opacity: 0.09;
	content: "";
	left: 0;
	top: 0;
}

.bg-pink-90:before {
	background: rgba(255, 128, 183, 0.9);
	content: "";
	left: 0;
	top: 0;
}

/* ------------------------------------------------------------------
Navigation
------------------------------------------------------------------- */

.navbar-custom {
	-webkit-transition: background 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000), padding 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: background 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000), padding 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: background 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000), padding 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: background 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000), padding 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.navbar-custom {
	background: rgba(255, 255, 255, 0.95);
	border: 0;
	letter-spacing: 0.75px;	
	font-size: 15px;
	webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
	  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
	       box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar-custom .navbar-brand {
	float: none;
	height: 60px;
	display: table-cell;
	vertical-align: middle;
	padding-top: 0;
	padding-bottom: 0;
	letter-spacing: 4px;
	font-weight: 400;
	font-size: 20px;
	color: #111;
}

.navbar-custom a,
.navbar-custom .navbar-brand {
	color: #111;
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
}

.navbar-custom .nav li > a {
	position: relative;
}

.navbar-custom .nav > li > a:focus,
.navbar-custom .nav > li > a:hover,
.navbar-custom .nav .open > a,
.navbar-custom .nav .open > a:focus,
.navbar-custom .nav .open > a:hover,
.navbar-custom .dropdown-menu > li > a:focus,
.navbar-custom .dropdown-menu > li > a:hover {
	background: none;
	color: rgba(17, 17, 17, 0.7);
}

/* Navbar toggle */

.navbar-custom .navbar-toggle {
	margin-top: 13px;
}

.navbar-custom .navbar-toggle .icon-bar {
	background: #111;
}

/* Navbar dropdown */

.navbar-custom .dropdown-menu {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 0;
	padding: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.navbar-custom .dropdown-menu > li > a {
	border: 0;
	letter-spacing: 1px;
	font-size: 14px;
	padding: 11px 15px;
}

.navbar-custom .dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
	right: auto;
	margin-top: -1px;
}

.leftauto {
	right: 0 !important;
	left: auto !important;
}

.navbar-custom .dropdown-menu.left-side {

	right: 100%;
	left: auto;
}

.navbar-custom .dropdown-toggle:after {
	position: absolute;
	display: block;
	right: 0;
	top: 50%;
	margin-top: -5px;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 12px;
	content: "\f0d7";
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle {
	padding-right: 28px;
}

.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle:after {
	position: absolute;
	display: block;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 12px;
	content: "\f0d7";
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.light-logo {
	display: none !important;
}

.navbar-transparent.navbar-dark .light-logo {
	display: block !important;
}

.navbar-transparent.navbar-dark .dark-logo {
	display: none !important;
}

/* Push search */

.navbar-custom .navbar-nav > .dropdown > .dropdown-toggle.search-dropdown:after {
	content: "";
}

.dropdown-search {
	position: relative;
	padding: 7px 5px;
}

.dropdown-search .form-control {
	position: relative;
}

.dropdown-search .search-btn {
	position: absolute;
	background: transparent;
	border: none;
	overflow: hidden;
	top: 50%;
	right: 0px;
	width: 42px;
	height: 32px;
	line-height: 30px;
	font-size: 14px;
	outline: none;
	color: #eee;
	margin-top: -16px;
}
/* ------------------------------------------------------------------
Hero
------------------------------------------------------------------- */

.module-hero {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.hero-caption {
	display: table;
	height: 100%;
	width: 100%;
	text-align: center;
}

.hero-text {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

/* Hero caption sizes */

.mh-line-size-1,
.mh-line-size-2,
.mh-line-size-3,
.mh-line-size-4,
.mh-line-size-5,
.mh-line-size-6 {
	font-weight: 400;
	margin: 0;
}

.mh-line-size-1 {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 48px;
	letter-spacing: 2px;
	font-weight: 700;
}

.mh-line-size-2 {
	letter-spacing: 40px;
	font-size: 24px;
}

.mh-line-size-3 {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 400;
	font-size: 22px;
}

.mh-line-size-4 {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
	letter-spacing: 8px;
	font-size: 18px;
}

.mh-line-size-5 {
	letter-spacing: 6px;
	font-size: 12px;
}

.mh-line-size-6 {
	font-weight: 400;
	font-size: 16px;
}

/* Modules ------------------------------------------------------------------- */

.wrapper {
	background: #fff;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
}

.module,
.module-small,
.module-small-bottom,
.module-mini,
.module-no-padding {
	padding: 140px 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.module-opleidingen {
	padding: 80px 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.module-founders {
	padding: 60px 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.module-small {
	padding: 60px 0;
}

.module-small-bottom {
	padding: 60px 0 0 0;
}

.module-mini {
	padding: 30px 0;
}

.module-no-padding {
	padding: 0 !important;
}

.navbar-custom + .module {
	padding: 200px 0;
}

.navbar-custom + .module-small {
	padding: 150px 0 110px 0;
}

.module-parallax {
	background-attachment: fixed;
}

/* Module titles */

.module-title {
	text-transform: uppercase;
	letter-spacing: 10px;
	text-align: center;
	font-size: 18px;
	margin-bottom: 70px;
}

.module-title-img {
	margin-bottom: 40px;
}

.module-subtitle {
	text-align: center;
	font-size: 13px;
	margin-bottom: 70px;
}

.module-icon {
	font-size: 36px;
	margin-bottom: 70px;
}

.module-title + .module-subtitle {
	margin-top: -35px;
}

.divider {
	margin: 0;
	border-top: 1px solid #eee;
}

.copyright {
	padding: 0 5px;
}

.no-padding {
	padding: 0 !important;
	margin: 0 !important;
}

/* About ------------------------------------------------------------------- */

.about {
	position: relative;
	background-color: #e61671;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

/* TImeline homepage ------------------------------------------------------------------- */

.opleidingen {
	padding: 130px 0;
}

.opleidingen h2.section-heading {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 48px;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

.opleidingen h3.section-subheading {
    margin-bottom: 25px;
    text-transform: none;
    font-size: 18px;
}

.opleidingen h4.section-subheading {
    margin-bottom: 75px;
    text-transform: none;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    background-color: #f9c5db;
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f9c5db;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #e61671;
}

.timeline>li .timeline-image img {
	display:block;
	position:relative;
	-webkit-transition:all .15s linear;
	transition:all .15s linear;
}

.timeline>li .timeline-image:hover img {
	-ms-transform:scale(1.1);
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-button {
	z-index: 100;
	position: absolute;
	margin-left: 0px;
	text-align: center;
	left: 3%;
	width: 270px;
	height: 50px;
}

.btn.btn-tl {
	background: #e61671;
	color: #fff;
	margin-top: 20px;
	font-family: "Montserat" , sans-serif;
    border: 8px solid #f9c5db;
}

.btn.btn-tl:hover, .btn.btn-tl:focus {
	background: rgb(103, 84, 69);
}

.timeline>li:last-child {
    margin-bottom: 0;
    min-height: 68px;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    font-size: 24px;
    color: #e61671;
}

.timeline .timeline-heading h5 {
    font-size: 18px;
    color: #675445;
    text-transform: lowercase;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
}

.timeline .timeline-body>p{
	font-size: 16px;
}

@media(min-width:768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        margin-bottom: 100px;
        min-height: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }

	.timeline>li .timeline-button {
		margin-left: -135px;
		left: 50%;
	}

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media(min-width:992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 30px;
        font-size: 18px;
        line-height: 26px;
    }

	.timeline>li .timeline-button {
		margin-left: -135px;
		left: 50%;
	}

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media(min-width:1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 40px;
    }

	.timeline>li .timeline-button {
		margin-left: -135px;
		left: 50%;
	}

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}

/* visie ------------------------------------------------------------------- */

@media (max-width: 992px)
{
	.visie .module-no-padding .col-md-6 {
		width: 100%;
	}
}

.row-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.px-0 {
    padding-left: 0!important;
    padding-right: 0!important;
}

.card {
    word-wrap: break-word;
    position: relative;
    width: 100%;
    background-position: 50%;
    background-size: cover;
    background-clip: border-box;
    text-align: center;
    min-height: 550px;
    min-width: 0;
    margin: 0;
    display: block;
}

.card:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    z-index: 2;
    max-width: 80%;
    min-height: auto;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.4rem;
}

.card-description {
	color: #fff;
	text-align: left;
	background-color: rgba(103, 84, 69, 0.65);
	padding: 5px 15px;
	border: 1px solid transparent;
    border-radius: 5px;
}

.visie p {
	font-size: 15px;
	letter-spacing: 0.4px;
}

.visie .bg-light,
.visie .bg-light h2 {
	color: #675445;
}

.visie .bg-dark-90 .card {
	min-height: 650px;
}

.visie .alt-content-box {
	padding: 0 75px;
	margin: 0;
	letter-spacing: 0.4px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 992px)
{
	.visie .alt-content-box {
		position: relative;
		margin: 35px 0;
		transform: none;
		top: inherit;
	}
}

.visie .alt-content-box a {
	color: rgba(240,139,171,1);
}

.visie .alt-content-box a:hover,
.visie .alt-content-box a:focus {
	text-decoration: none;
	color: #111;
	outline: 0;
}

.visie_docenten {
    background-color: #f0ebe7;
}

.visie .module-no-padding figure {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	width: 80%;
	height: 80%;
	max-width: 100%;
	margin-bottom: -1px !important;
	margin-top: -5em !important;
	filter: drop-shadow(0 0 6px rgba(0,0,0,.16));
}

.visie blockquote.font-serif {
	color: rgba(230, 22, 113, 1);
	line-height: 1.2em;
	font-size: 40px;
}

@media (max-width: 992px)
{
	.visie .module-no-padding figure {
		margin-top: 0 !important;
		width: 50%;
		height: 50%;
	}
}

/* Team Section ------------------------------------------------------------------- */

.team {
	background-color: #e3dbd6;
	padding: 80px 0 90px 0;
}

.team h2.section-heading {
    font-size: 38px;
    font-family: "Montserrat",Helvetica,Arial,sans-serif;
}

.team h3.section-subheading {
    margin-bottom: 55px;
    text-transform: none;
    font-size: 16px;
}

.team-member {
    margin-bottom: 50px;
    text-align: center;
}

.team-member img {
    margin: 0 auto;
    border: 7px solid #fff;
}

.team-member h4 {
	font-size: 18px;
	color: #e61671;
	font-weight: bold;
    margin-top: 25px;
    margin-bottom: 0;
    text-transform: none;
}

.team-member p {
    margin-top: 0;
}

.team ul.social-buttons {
    margin-bottom: 0;
}

.team ul.social-buttons li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    font-size: 18px;
    line-height: 32px;
    outline: 0;
    color: #675445;
    background-color: #fff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.team ul.social-buttons li a:hover,
.team ul.social-buttons li a:focus,
.team ul.social-buttons li a:active {
    color: #e61671;
}

.team-overview {
	background-color: #f7f7f7;
	padding: 40px 0 40px 100px;
}

.team-overview h1 {
    margin-top: 20px;
    margin-bottom:45px;
    font-size: 38px;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

.team-overview h1:after {
	content: "";
	display: block;
	position: absolute;
	left: 18px;
	width: 25%;
	height: 2px;
	bottom: 30px;
	border-radius: 2px;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 100;
}

.team-overview h2 {
    letter-spacing: 0.45px;
    margin-top: 0;
    margin-bottom: 20px;
}

.team-overview .no_pink a {
	color: #111;
}

.team-overview img {
    margin: 0 auto;
    border: 7px solid #fff;
}

.team-overview .col-md-9 p {
	font-size: 16px;
}

.team-overview figure {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	max-width: 100%;
	margin-left: 90px !important;
	margin-right: -10em !important;
}

.team-overview .tags .function {
	background: #dbdbdb;
	position: relative;
	display: inline-block;
	padding: 1px 15px 1px 10px;
	margin: 0px 15px 10px 0;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	font-size: 11px;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
	        border-radius: 2px 0 0 2px;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.team-overview .tags .function:before {
	border-left: 8px solid #dbdbdb;
	border-top: 13px solid rgba(0, 0, 0, 0);
	border-bottom: 13px solid rgba(0, 0, 0, 0);
	position: absolute;
	content: "";
	right: -8px;
	top: 0;
	height: 0;
	width: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.team-overview .tags .function:after {
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	right: 4px;
	top: 11px;
	height: 4px;
	width: 4px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.team-overview .tags .function:hover {
	background: #ccc;
}

.team-overview .tags .function:hover:before {
	border-left-color: #ccc;
}

@media (max-width: 992px)
{

	.team-overview {
		background-color: #f7f7f7;
		padding: 20px 30px 20px 60px;
	}

	.team-overview h1 {
		margin-bottom: 25px;
	}

	.team-overview h1:after {
		display: none;
	}

	.team-overview figure {
		display: block;
		vertical-align: middle;
		margin: 0 !important;
		max-width: 100%;
	}
}

.team-individual .image-container {
	z-index: 1;
	margin-right: -60px;
	margin-top: 60px;
	height: 500px;
    position: relative;
    background-position: 50%;
    background-size: cover;
    box-shadow: 5px 5px 20px 0 rgba(0,0,0,.1);
}

.team-individual .text-container {
	background-color: #fff;
	padding: 40px 40px 40px 100px;
}

@media (max-width: 768px) {

	.team-individual .row-center {
		display: block;
	}

	.team-individual .image-container {
		margin: -30px auto -90px auto;
		box-shadow: none;
		border-radius: 50% !important;
		max-height: 175px;
		max-width: 175px;
		border: 7px solid #fff;
	}

	.team-individual .text-container {
		padding: 80px 40px 40px 40px;
	}
}

/* Alumni ------------------------------------------------------------------- */

.alumni {
	font-size: 15px;
	letter-spacing: 0.5px;
}

.alumni .image-container {
	height: 500px;
    position: relative;
    background-position: 50%;
    background-size: cover;
    box-shadow: 0 10px 25px 0 rgba(0,0,0,.3);
}

.alumni .image-container.image-left {
	margin-right: -100px;
	z-index: 1;
}

.alumni .image-container.image-right {
	z-index: 2;
    top: 80px;
    margin-left: -100px;
    margin-bottom: 134px;
}

.alumni .vorig {
    min-width: 200px;
    min-height: 100px;
    text-align: left;
    position: absolute;
    top: 545px;
    right: 120px;
    z-index: 0;
    color: rgba(230, 22, 113, 1);
    border: 1px solid rgba(230, 22, 113, 1);
    padding: 30px;
    font-size: 1.05em;
    letter-spacing: 0.5px;
}

.alumni .vorig th {
	font-weight: 400;
	border: none;
	padding-top: 14px;
	padding-bottom: 14px;
}

.alumni .vorig td {
	font-weight: 800;
	border: none;
	padding-top: 14px;
	padding-bottom: 14px;
	text-transform: uppercase;
}

.alumni .image-left p {
	margin-bottom: 0;
}

.alumni .bg-dark-90 .image-container {
	height: 325px;
}

.alumni .bg-dark-90 .image-container.image-left {
	z-index: 1;
	margin-left: -100px;
	margin-right: 0;
}

.alumni .bg-dark-90 .image-container.image-right {
	z-index: 2;
    margin-right: -100px;
    margin-left: 0;
    margin-bottom: 140px;
}

.alumni .bg-dark-90 .vorig {
    top: 375px;
    right: 40px;
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
}

.alumni .bg-dark-90 .vorig a {
	color: rgba(255, 255, 255, 1);
}

.alumni .bg-dark-90 .vorig a:hover,
.alumni .bg-dark-90 .vorig a:focus {
	text-decoration: none;
	color: #111;
	outline: 0;
}

.alumni .infographic {
	padding: 40px;
	border: 2px solid #e61671;
	border-radius: 20px;
}

.alumni .infographic-text {
	padding: 20px 0 0 40px;
	font-size: 14px;
}

.alumni .col-md-2 img {
	border-radius: 50%!important;
	border: 5px solid rgba(230, 22, 113, 0.3);
}

@media (max-width: 768px) {

	.alumni .row-center {
		display: block;
	}

	.alumni .image-container {
		margin: 0;
		box-shadow: none;
	}

	.alumni .image-container.image-left {
		margin-right: 0;
		height: 335px;
		margin-bottom: 295px;
	}

	.alumni .image-container.image-right {
		margin-left: 0;
		margin-bottom: 0;
		top: 0;
	}

	.alumni .vorig {
		right: 0;
		margin: 0 auto;
		position: relative;
		top: 370px;
		padding: 10px 30px;
	}

	.alumni .bg-dark-90 .image-container.image-right {
		margin-right: 0;
		margin-bottom: 0;
	}

	.alumni .bg-dark-90 .image-container.image-left {
		margin-left: 0;
	}

	.alumni .bg-dark-90 .vorig {
		right: 0;
		margin: 0 auto;
		position: relative;
		top: 370px;
		padding: 10px 30px;
	}

	.alumni .module {
		padding: 60px 0;
	}
}

@media(min-width:768px) and (max-width:992px)
{
	.alumni .col-md-2 {
		margin-top: 0;
	}

	.alumni .col-md-2 img {
		margin-bottom: 10px;
	}

	.alumni .bg-dark-90 .vorig {
		max-width: 300px;
	}
}

@media(min-width:992px) and (max-width:1200px)
{
	.alumni .bg-dark-90 .vorig {
		max-width: 380px;
	}
}

/* Radial Progress Pies ------------------------------------------------------------------- */

.fixed-height-250 {
    height: 250px;
}

.vertical-text {
	font-size: 12.5px;
	line-height: 1.4;
	color: #8b8b8b;
}

.progress-barv {
	float: left;
	width: 0%;
	height: 100%;
	font-size: 13px;
	line-height: 20px;
	color: #ffffff;
	text-align: center;
	background-color: rgba(230, 22, 113, 1);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: width 0.6s ease;
	-o-transition: width 0.6s ease;
	transition: width 0.6s ease;
}

.verticalprogress .progress-barv {
	position: absolute;
	overflow: hidden;
	padding-top: 6px;
}

.verticalprogress.vertical {
	width: 100%;
	height: 100%;
	float: left;
	margin-right: 20px;
	overflow: hidden;
	margin-bottom: 20px;
	background-color: #fff;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
	position: relative;
}

.verticalprogress.vertical .progress-barv {
	width: 100%;
	height: 0;
	-webkit-transition: height 2s ease-in-out;
	-moz-transition: height 2s ease-in-out;
	-ms-transition: height 2s ease-in-out;
	-o-transition: height 2s ease-in-out;
	transition: height 2s ease-in-out;
	position: absolute;
	bottom: 0;
}

/* Radial Progress Pies ------------------------------------------------------------------- */

svg.radial-progress {
	height: auto;
	max-width: 200px;
	padding: 1em;
	transform: rotate(-90deg);
	width: 100%;
}

svg.radial-progress circle {
	fill: rgba(0,0,0,0);
	stroke: #e61671;
	stroke-dashoffset: 219.91148575129; /* Circumference */
	stroke-width: 10;
}

svg.radial-progress circle.incomplete { opacity: 0.25; }
svg.radial-progress circle.complete { stroke-dasharray: 219.91148575129; /* Circumference */ }

svg.radial-progress text {
	fill: #000;
	text-anchor: middle;
}

/* Opleidingen ------------------------------------------------------------------- */

.intro {
	font-size: 18px;
	margin-bottom: 25px;
}

.opleiding_intro {
	font-size: 18px;
}

.alt-opleidingen-image {
	padding-top: 40px;
}

.blog-2 {
	padding-top: 135px;
	padding-bottom: 135px;
	position: relative;
	background-color: #fdebf0;
	box-sizing: border-box;
}

.opleiding-body {
	font-size: 16px;
}

.opleiding-body h1 { font-size: 22px; text-transform: uppercase; letter-spacing: 2px; }
.opleiding-body h2 { font-size: 20px; text-transform: uppercase; letter-spacing: 2px; }
.opleiding-body h3 { font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
.opleiding-body h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 2px; }
.opleiding-body h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.opleiding-body h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }

.doelgroep ul {
	margin: 0;
	padding: 0 0 0 20px;
}

@media (max-width: 768px)
{
	.blog-2
	{
		padding-top: 20px;
		padding-bottom: 80px;
	}
}

.blog-2 h3
{
	margin: 0 0 10px;
	font-size: 35px;
	font-weight: 500;
	letter-spacing: -1px;
}

.blog-2 h3 img
{
	display: block;
	margin-bottom: 40px;
}

.blog-2 h4
{
	margin: 0 0 24px;
	font-size: 30px;
	letter-spacing: -1px;
	font-weight: 300;
}

.blog-2 h6
{
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 30px;
	text-transform: none;
}

.blog-2 p
{
	line-height: 1.85;
	margin: 0;
	font-size: 16px;
}

.blog-2 p + p { margin-top: 20px; }
.blog-2 > * { position: relative; }
.blog-2 .promo { margin: -20px 0 49px; }

.blog-2 .btn
{
	padding: 11px 22px;
	margin-top: 24px;
}

.blog-2 .background
{
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 1;
	filter: alpha(opacity=100);
}

.blog-2 .background > .container {
	height: 100%;
	position: relative;
	z-index: 2;
}

.blog-2 .background .col-sm-4
{
	position: absolute;
	height: 100%;
}

.blog-2 .background .col-sm-4 > div
{
	position: absolute;
	right: 0;
	height: 100%;
	width: 800px;
	margin: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.blog-2 .background .col-sm-4 > div img
{
	height: 100% !important;
	width: auto;
	vertical-align: middle;
	border: 0;
}

@media (max-width: 480px)
{
	.blog-2 h3 img { margin-bottom: 30px; }

	.blog-2 h4
	{
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 45px;
	}
}

.background
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: 50% 50% no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	opacity: 0.2;
	filter: alpha(opacity=20);
}

@media (max-width: 768px)
{
	.background
	{
		-webkit-background-size: auto 200%;
		-moz-background-size: auto 200%;
		-o-background-size: auto 200%;
		background-size: auto 200%;
	}
}

/* Thuisbakkers ------------------------------------------------------------------- */
.pointer {
    min-height: 100px;
    position: relative;
    padding: 60px 0 10px 0;
    margin-bottom: 90px;
}

.pointer-light {
	padding: 45px 0 0;
}

.pointer-light .intro {
	font-size: 16px;
	margin-bottom: 0;
}

.pointer:after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(/assets/images/triangle.png) no-repeat scroll center center rgba(230, 22, 113, 1);
    background-size: cover;
    width: 100%;
    min-height: 94px;
    z-index: 1;
}

.pointer-light:after {
    background: url(/assets/images/triangle_light.png) no-repeat scroll center center white;
}

.heading-section {
	margin-bottom: -25px;
	z-index: 2;
}

.heading-section h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: rgba(230, 22, 113, 1);
}

.heading-section h2:after {
	z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
	content: "";
    height: 2px;
    background: rgba(0,0,0,.05);
}

@media (max-width: 992px)
{
	.heading-section h2:after{
		display: none;
	}
}

.heading-section h2 span {
    background: #fff;
    padding: 0 30px;
}

.heading-section .subheading {
    font-size: 24px;
    display: block;
    font-family: Serif;
    font-style: italic;
}

.bg-pink .media .text-right {
	padding-right: 50px;
}

.bg-pink .media .text-left {
	padding-left: 50px;
}

.bg-pink .media .media-body {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
}

.bg-pink .media .icon {
    line-height: 1.3;
    position: relative;
    z-index: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin-top: 20px;
}

.bg-pink .media .icon img {
	width: 75%;
	height: 75%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.bg-pink .media .media-right img {
	width: 65%;
	height: 65%;
	left: 45%
}

.bg-pink .media .icon span {
    font-size: 50px;
    color: #fff;
}

.bg-pink .media h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 1);
}

.thuiswerk {
    min-height: 100px;
    position: relative;
    padding: 60px 0 0 0;
    background-color: #f0ebe7;
}

.professionals .thuiswerk {
    padding: 40px 0 20px 0;
}

.thuiswerk_inner .thuiswerk_item {
    text-align: center;
}

.thuiswerk_item h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.thuiswerk_item p {
	text-align: left;
	font-size: 15px;
	letter-spacing: .28px;
}

.thuiswerk_icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(103,84,69,0.6);
    font-size: 24px;
    line-height: 55px;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-align: center;
}

.thuiswerk_icon img {
	width: 75%;
	height: 75%;
	top: 50%;
	left:50%;
}

.thuiswerk_inner:before {
    content: "";
    max-width: 66%;
    width: 100%;
    position: relative;
    height: 2px;
    top: 28px;
    border: 1px solid rgba(0,0,0,.05);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 992px)
{
	.thuiswerk_inner:before {
		display: none;
	}
}

.thuiswerk_inner .thuiswerk_item .thuiswerk_icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-radial-gradient(rgba(103,84,69,0.6),#675445);
    background-image: -o-radial-gradient(rgba(103,84,69,0.6),#675445);
    background-image: radial-gradient(rgba(103,84,69,0.6),#675445);
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

#cursussen {
    position: relative;
    margin-top: 90px;
}

#cursussen:before {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(/assets/images/triangle_cursus.png) no-repeat scroll center center #f0ebe7;
    background-size: cover;
    width: 100%;
    min-height: 94px;
}

.data_aanmeld #cursussen:before {
    background: none;
}

.cursus-pills {
	margin-top: -110px;
	margin-bottom: 40px;
}

.cursus-pills .nav-pills {
	position: relative;
	margin: 15px auto 0 auto;
    margin-bottom: 0;
    box-sizing: border-box;
}

.cursus-pills .nav-pills:before {
    content: "";
    max-width: 45%;
    width: 100%;
    position: relative;
    height: 2px;
    top: 36px;
    border: 1px solid #ccc7c2;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cursus-pills .nav-pills > li {
	text-align: center;
	padding-bottom: 10px;
}

.cursus-pills .nav-pills > li.active > a,
.cursus-pills .nav-pills > li.active > a:focus,
.cursus-pills .nav-pills > li.active > a:hover {
	background-color: #fff;
	border: 2px solid rgba(230, 22, 113, 1);
	color: rgba(230, 22, 113, 1);
	cursor: default;
}

.cursus-pills .nav-pills > li > a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 25px;
    line-height: 50px;
    color: #ccc7c2;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-align: center;
	background-color: #fff;
	border: 2px solid #ccc7c2;
	cursor: pointer;
}

.cursus-pills .nav-pills > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 768px) {
	.cursus-pills .nav-pills:before {
		display: none;
	}
}

/* Professionals ------------------------------------------------------------------- */

.professionals .col-md-6 {
	padding-left: 50px;
	padding-right: 50px;
}

.professionals .bg-pink .media .text-right {
	padding-right: 25px;
}

.professionals .bg-pink .media .text-left {
	padding-left: 25px;
}

.professionals .center figure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.professionals figure img {
	border: solid 10px #f08bab;
}

.professionals .thuiswerk_inner:before {
    content: "";
    max-width: 45%;
    width: 100%;
    position: relative;
    height: 2px;
    top: 28px;
    border: 1px solid rgba(0,0,0,.05);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.professionals .thuiswerk_item p {
	margin-top: 25px;
}

@media (max-width: 992px)
{
	.professionals figure {
		margin: 0 auto;
		text-align: center;
		max-height: 35%;
		max-width: 35%;
	}

	.professionals .thuiswerk_item {
		overflow: hidden;
		zoom: 1;
	}

	.professionals .thuiswerk_item .thuiswerk_icon {
		float: left;
		margin-right: 30px;
	}

	.professionals .thuiswerk_item p {
		margin-top: 0;
	}
}

@media (min-width: 992px) and (max-width:1200px)
{
	.professionals figure {
		margin-top: 60px;
	}

	.professionals figure img {
	}

}

/* Works grid ------------------------------------------------------------------- */

.works-grid {
	position: relative;
	width: 100%;
}

@media (min-width: 768px)
{
	.works-grid {
		float: left;
	}
}

.grid-sizer {
	width: 25%;
}

/* ------------------------------------------------------------------
Portfolio Filter
------------------------------------------------------------------- */

.filters {
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 0 0 70px;
}

.filters > li {
	display: inline-block;
    position: relative;
}

.filters > li > a {
	color: #111;
    bottom: -2px;
    margin: 0px;
    margin-right: -6px;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid #eeeeee;
}

.filters > li > a:hover,
.filters > li > a.current {
	color: rgba(230, 22, 113, 1);
}

.filters > li > a:after {
	opacity: 0;
}

.filters > li > a.current:after {
	opacity: 1;
}

.filters > li > a.current:after {
	content: "";
	display: block;
	position: absolute;
	left: 29px;
	right: 29px;
	bottom: -13.5px;
	height: 5px;
	border-radius: 5px;
	background-color: rgba(230, 22, 113, 1);
	z-index: 100;
}

.filters > li:first-child > a {
	padding-left: 0;
}

.filters > li:first-child > a:after {
	left: 0px;
	right: 24px;
}

.filters > li:last-child > a {
	padding-right: 0;
}

.filters > li:last-child > a:after {
	right: -6px;
}

/* ------------------------------------------------------------------
FAQ Single
------------------------------------------------------------------- */

.image-caption {
	position: relative;
	margin: 0 0 20px;
}

.image-caption .caption-text {
	position: absolute;
	display: table;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	padding: 20px;
	font-size: 12px;
}

.project-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-details {
	padding: 6px 0 10px 0;
	font-size: 20px;
	color: rgba(230, 22, 113, 1);
}

/* ------------------------------------------------------------------
Blog
------------------------------------------------------------------- */

/* Fix Firefox 3 column width bug */

@-moz-document url-prefix() {

	@media (min-width: 1310px) {
		.posts-masonry .col-lg-4 {
			width: 33.3333%;
		}
	}

	@media (min-width: 992px) {
		.posts-masonry .col-md-4 {
			width: 33.3333%;
		}
	}

}

.post {
	width: 100%;
}

.post-media {
	position: relative;
	margin: 0 0 20px;
}

.post-media img {
	width: 100%;
}

.post-media a:after {
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.post-media:hover a:after {
	opacity: 1;
}

.post-title {
	margin: 0;
	font-size: 20px;
	text-transform: none;
	letter-spacing: normal;
}

.post-title a {
	color: #111;
}

.post-title a:hover {
	color: rgba(34, 34, 34, 0.55);
}

.post-meta {
	font-size: 10px;
	margin: 0 0 20px;
}

.post-header {
	margin: 0 0 10px;
}

.post-more-link {
	font-size: 12px;
}

/* Single post */

.post-single .post-media,
.post-single .post-header,
.post-single .post-entry {
	margin: 0 0 20px;
}

.post-single .post-meta {
	margin: 0 0 40px;
}

/* ------------------------------------------------------------------
Tags
------------------------------------------------------------------- */

.tags a {
	background: #eeeeee;
	position: relative;
	display: inline-block;
	padding: 1px 15px 1px 10px;
	margin: 0px 15px 10px 0;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	font-size: 11px;
	-webkit-border-radius: 2px 0 0 2px;
	   -moz-border-radius: 2px 0 0 2px;
	        border-radius: 2px 0 0 2px;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.tags a:before {
	border-left: 8px solid #eeeeee;
	border-top: 13px solid rgba(0, 0, 0, 0);
	border-bottom: 13px solid rgba(0, 0, 0, 0);
	position: absolute;
	content: "";
	right: -8px;
	top: 0;
	height: 0;
	width: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	   -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	     -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	        transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.tags a:after {
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	right: 4px;
	top: 11px;
	height: 4px;
	width: 4px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.tags a:hover {
	background: #dbdbdb;
}
.tags a:hover:before {
	border-left-color: #dbdbdb;
}

/* ------------------------------------------------------------------
Post author
------------------------------------------------------------------- */

.post-author .author-avatar {
	max-width: 70px;
	float: left;
}

.post-author .author-avatar img {
	border: 4px solid rgba(230, 22, 113, 0.25);
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.post-author .author-content {
	margin-left: 90px;
}

.post-author .author-name {
	margin-top: 0;
}

.post-author h5.p-l-25:last-child {
	text-indent: -9999em;
}

/* ------------------------------------------------------------------
Comments and Comment form
------------------------------------------------------------------- */

.comment-avatar {
	float: left;
	max-width: 70px;
}

.comment-avatar img {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
}

.comment-content {
	margin-left: 100px;
	margin-bottom: 40px;
}

.comment-author {
	margin: 0 0 20px;
}

.comment-author a {
	color: #111;
}

.comment-meta {
	font-size: 12px;
}

.comments,
.comment-form {
	margin: 80px 0 0;
}

.comment-title,
.comment-form-title,
.post-author-title {
	margin: 0 0 15px;
}

/* ------------------------------------------------------------------
Widgets
------------------------------------------------------------------- */

.widget {
	margin: 0 0 60px;
}

.widget-title {
	border-bottom: 1px solid #eee;
	padding: 0 0 10px;
	margin: 0 0 20px;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget li {
	padding-bottom: 10px;
}

/* Search */

.search-box {
	position: relative;
}

.search-btn {
	background: transparent;
	border: none;
	position: absolute;
	overflow: hidden;
	right: 1px;
	top: 50%;
	height: 40px;
	width: 42px;
	outline: none;
	margin-top: -20px;
	line-height: 38px;
	font-size: 14px;
	color: #eee;
}

/* Recent posts */

.widget-posts li {
	padding-bottom: 20px;
}

.widget-posts-image {
	float: left;
	width: 64px;
}

.widget-posts-body {
	margin-left: 74px;
}

.widget-posts-title {
	margin: 0 0 5px;
}

.widget-posts-meta {
	letter-spacing: 1px;
	font-size: 11px;
}

/* Affix ------------------------------------------------------------------- */

.affix-top {
	position: relative;
}

#myAffix {
	padding-top:20px;
}

.affix {
	width: 262px;
	top: 100px;
}

.affix, 
.affix-bottom {
}

.affix-bottom {
	position: absolute;
}

@media (max-width: 767px) {
	.affix {
		position: relative;
		top: inherit;
		width: inherit;
	}
}

@media (min-width: 768px) {
	.affix {
		width: 157px;
	}
	
	.widget {
		margin-top: 22px;
	}

}

@media (min-width: 992px) {
	.affix {
		width: 212px;
	}

}

@media (min-width: 1200px) {
	.affix {
		width: 262px;
	}
}

/* -------------------------------------------------------------------
Google map
------------------------------------------------------------------- */

#module-maps {
	position: relative;
	height: 350px;
	width: 100%;
}

#map {
	height: 100%;
	width: 100%;
}

#map img {
	max-width: none;
}

/* Contact ------------------------------------------------------------------- */

.social-contact .btn-default {
	color: #999;
	font-size: 16px;
}

.social-contact .btn-default .fa {
	color: #111;
	padding-right: 10px;
}

/* ------------------------------------------------------------------
Preloader
------------------------------------------------------------------- */

.page-loader {
	background: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 9998;
}

.loader {
	background: rgba(230, 22, 113, 0.25);
	position: absolute;
	display: inline-block;
	height: 60px;
	width: 60px;
	left: 50%;
	top: 50%;
	margin: -20px 0 0 -20px;
	text-indent: -9999em;
	-webkit-border-radius: 0%;
	   -moz-border-radius: 0%;
	        border-radius: 0%;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
	        animation: ball-scale 1s 0s ease-in-out infinite;
}


@-webkit-keyframes ball-scale {

	0% {
		-webkit-transform: scale(0);
		   -moz-transform: scale(0);
		    -ms-transform: scale(0);
		     -o-transform: scale(0);
		        transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}

}

@keyframes ball-scale {

	0% {
		-webkit-transform: scale(0);
		   -moz-transform: scale(0);
		    -ms-transform: scale(0);
		     -o-transform: scale(0);
		        transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}

}

/* Footer ------------------------------------------------------------------- */

.bg-footer .crkbo {
	margin-left: 30px;
}

.bg-footer .links {
	margin: 32px 0 28px;
	padding: 0;
}

.bg-footer .company-name {
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

.bg-footer .footer-contacts span {
	background-color:  #fff;
	color: #675445;
	font-size: 18px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	text-align: center;
	line-height: 32px;
	margin: 10px 15px;
	vertical-align: middle;
}

.bg-footer .footer-contacts span.fa-envelope {
	font-size: 16px;
	line-height: 30px;
}

.bg-footer .footer-contacts p {
	display: inline-block;
	color: #ffffff;
	vertical-align: middle;
	margin: 0;
	line-height: normal;
}

.bg-footer .footer-contacts p i {
	display: block;
	font-weight: normal;
	line-height: 2;
	margin-top: 10px;
}

.bg-footer .footer-contacts p span {
	background-color: transparent;
	color: #fff;
	font-size: 15px;
	width: inherit;
	height: inherit;
	border-radius: inherit;
	text-align: left;
	line-height: normal;
	margin: 0;
	vertical-align: inherit;
}

.bg-footer .footer-about {
	margin: 0;
	font-size: 14px;
}

.bg-footer .social-icons {
	margin-top: 25px;
}

.bg-footer .social-icons a {
	display: inline-block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-color: #fff;
	border-radius: 5px;
	font-size: 18px;
	color: #675445;
	text-align: center;
	line-height: 32px;
	margin-right: 15px;
	margin-bottom: 5px;
}

.bg-footer .social-icons a:hover {
	color: #e61671;
}

/* Scroll to top ------------------------------------------------------------------- */

.scroll-up {
	position: fixed;
	display: none;
	bottom: 7px;
	right: 7px;
	z-index: 999;
}

.scroll-up a {
	background: #fff;
	display: block;
	height: 28px;
	width: 28px;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #000;
	opacity: 0.6;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

.scroll-up a:hover,
.scroll-up a:active {
	opacity: 1;
	color: #000;
}

/* Responsive Media Querries ------------------------------------------------------------------- */

@media (min-width: 768px) {

	/* Navbar */

	.navbar-custom .navbar-brand {
		padding-left: 0;
	}

	.navbar-custom .navbar-nav > li > a {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.navbar-transparent {
		background: transparent;
		padding-top: 15px;
		padding-bottom: 15px;
		background: transparent;
		webkit-box-shadow: none;
		  -moz-box-shadow: none;
		       box-shadow: none;
	}

	/* Tra */

	.navbar-transparent.navbar-dark .navbar-nav > li > a,
	.navbar-transparent.navbar-dark .navbar-brand {
		color: rgba(255, 255, 255, 0.95);
	}

	.navbar-transparent.navbar-dark .nav > li > a:focus,
	.navbar-transparent.navbar-dark .nav > li > a:hover {
		color: rgba(255, 255, 255, 0.75);
	}

	.navbar-custom .dropdown-menu .dropdown-toggle:after {
		position: absolute;
		display: block;
		right: 9px;
		top: 50%;
		margin-top: -6px;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 9px;
		content: "\f105";
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.navbar-custom .dropdown-menu {
		position: absolute;
		display: block;
		visibility: hidden;
		opacity: 0;
	}

	.navbar-custom .open > .dropdown-menu {
		visibility: visible;
		opacity: 1;
	}

	.navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}

	/* Comments */

	.comment .comment {
		margin-left: 100px;
	}

}

@media (max-width: 992px) {

	/* Hero captions */

	.mh-line-size-1 {
		letter-spacing: 4px;
		font-size: 36px;
	}

	.mh-line-size-2 {
		letter-spacing: 28px;
		font-size: 20px;
	}

	.mh-line-size-3 {
		letter-spacing: 20px;
		font-size: 22px;
	}

	.mh-line-size-4 {
		letter-spacing: 8px;
		font-size: 16px;
	}

	.navbar-custom {
		letter-spacing: 0;
		font-size: 10px;
	}
	
	.nav>li>a {
		padding: 10px 10px;
	}

	/* Portfolio grid */

	.work-item,
	.grid-sizer {
		width: 33.3333%;
	}

	.work-item.wide,
	.work-item.wide-tall {
		width: 66.6666%;
	}

	/* Footer */

	.bg-footer {
		font-size: 14px;
	}

	.bg-footer .footer-navigation,
	.bg-footer .footer-contacts,
	.bg-footer .footer-about {
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.bg-footer .footer-contacts {
		text-align: left;
		padding-left: 38%;
	}

	.bg-footer .footer-contacts span {
		margin-left: 0;
	}

	.font-alt {
		letter-spacing: 1px;
	}

	.filters > li > a {
		padding: 15px;
	}
}

@media (min-width: 992px) and (max-width:1200px) {
	
	.navbar-custom {
		letter-spacing: 0;
		font-size: 14px;
	}
}


@media (max-width: 767px) {

	/* Navbar */

	.navbar-custom {
		letter-spacing: 2px;
		font-size: 10px;
	}

	.navbar-transparent.navbar-dark .light-logo {
		display: none !important;
	}

	.navbar-transparent.navbar-dark .dark-logo {
		display: block !important;
	}

	.navbar-custom .navbar-nav .open .dropdown-menu > li > a,
	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-header {
		padding: 10px 25px;
	}

	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-header,
	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
		padding: 10px 35px;
	}

	.navbar-custom .dropdown-toggle:after, .navbar-custom .dropdown-menu .dropdown-toggle:after {
		right: 15px;
		content: "\f107";
	}

	.navbar-custom .nav > .open >.dropdown-toggle:after, .navbar-custom .dropdown-menu .dropdown.open .dropdown-toggle:after {
		right: 15px;
		content: "\f106";
	}

	/* Hero captions */

	.mh-line-size-1 {
		letter-spacing: 4px;
		font-size: 36px;
	}

	.mh-line-size-2 {
		letter-spacing: 16px;
		font-size: 15px;
	}

	.mh-line-size-3 {
		letter-spacing: 14px;
		font-size: 14px;
	}

	.mh-line-size-4 {
		letter-spacing: 4px;
		font-size: 14px;
	}

	.mh-line-size-5 {
		letter-spacing: 2px;
		font-size: 13px;
	}

	.mh-line-size-6 {
		font-size: 13px;
	}

	/* Portfolio filters */

	.filters {
		margin-bottom: 30px;
	}

	.filters li {
		display: block;
		margin: 20px;
	}

	.filters li:last-child {
		margin: 0 10px 40px;
	}

	.filters > li:first-child > a {
		padding-left: 15px;
	}

	.filters > li:last-child > a {
		padding-right: 15px;
	}

	.filters > li > a.current:after {
		left: 140px;
		right: 140px;
	}

	.filters > li:first-child > a:after {
		right: 140px;
	}

	.filters > li:last-child > a:after {
		right: 140px;
	}

	/* Portfolio grid */

	.work-item,
	.grid-sizer {
		width: 50%;
	}

	.work-item.wide,
	.work-item.wide-tall {
		width: 100%;
	}

	.bg-footer .footer-navigation,
	.bg-footer .footer-contacts,
	.bg-footer .footer-about {
		text-align: left;
	}

	.bg-footer .footer-contacts {
		padding-left: 15px;
	}

}

@media (max-width: 500px) {

	/* Hero captions */

	.mh-line-size-1 {
		letter-spacing: 4px;
		font-size: 26px;
	}

	.mh-line-size-2 {
		letter-spacing: 6px;
		font-size: 14px;
	}

	.mh-line-size-3 {
		letter-spacing: 4px;
		font-size: 13px;
	}

	.mh-line-size-4 {
		letter-spacing: 4px;
		font-size: 12px;
	}

	.mh-line-size-5 {
		letter-spacing: 2px;
		font-size: 11px;
	}

	.mh-line-size-6 {
		font-size: 12px;
	}

	/* Portfolio grid */

	.work-item,
	.grid-sizer {
		width: 100%;
	}

	.work-item.wide,
	.work-item.wide-tall {
		width: 100%;
	}

}

/* -------------------------------------------------------------------
Multi-columns-row
------------------------------------------------------------------- */

.multi-columns-row .first-in-row {
	clear: left;
}

.multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: left; }
.multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: left; }
.multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: left; }
.multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: left; }
.multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: left; }

@media (min-width: 768px) {

	.multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: left; }
}

@media (min-width: 992px) {

	.multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-md-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-md-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-md-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-md-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-md-1:nth-child(12n + 13) { clear: left; }
}

@media (min-width: 1200px) {

	.multi-columns-row .col-md-6:nth-child(2n + 3) { clear: none; }
	.multi-columns-row .col-md-4:nth-child(3n + 4) { clear: none; }
	.multi-columns-row .col-md-3:nth-child(4n + 5) { clear: none; }
	.multi-columns-row .col-md-2:nth-child(6n + 7) { clear: none; }
	.multi-columns-row .col-md-1:nth-child(12n + 13) { clear: none; }

	.multi-columns-row .col-lg-6:nth-child(2n + 3) { clear: left; }
	.multi-columns-row .col-lg-4:nth-child(3n + 4) { clear: left; }
	.multi-columns-row .col-lg-3:nth-child(4n + 5) { clear: left; }
	.multi-columns-row .col-lg-2:nth-child(6n + 7) { clear: left; }
	.multi-columns-row .col-lg-1:nth-child(12n + 13) { clear: left; }

}

.et-icons .box1 {
	border: 1px solid #eee;
	display: block;
	width: 25%;
	float: left;
	padding: 0;
	font-size: 13px;
	margin: -1px 0 0 -1px;
}

.et-icons .box1 > span {
	display: inline-block;
	border-right: 1px solid #eee;
	min-width: 60px;
	min-height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 28px;
	margin-right: 5px;
}

.fa-icons {
	padding: 0 15px;
}
.fa-icons > div {
	padding: 0;
	border: 1px solid #eee;
	margin: -1px 0 0 -1px;
	font-size: 13px;
}

.fa-icons > div > i {
	display: inline-block;
	margin-right: 5px;
	min-width: 40px;
	min-height: 40px;
	border-right: 1px solid #eee;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
}
