/*===========Typography Starts============*/

body {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	margin: 0px;
	padding: 0px;
  font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
h1 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 28px;
	line-height: 30px;
	color: #3f4646;
	padding: 0 0 15px;
}
h2 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 28px;
	line-height: 30px;
	color: #5cc1c4;
}
h3 {
	font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 18px;
  color: #5cc1c4;
  padding: 0 0 15px;
}
h4 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 20px;
	line-height: 22px;
	color: #3f4646;
}
h5 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	color: #5cc1c4;
	padding: 0 0 13px;
}
h6 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	padding: 0 0 3px;
}
p {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	margin: 0px;
	padding: 8px 0 10px;
}
p a, .page-content ul li a {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
	color: rgba(55, 150, 154, 1);
	text-decoration: underline;
}
strong {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 800;
}
.visible-xs{
	display: none !important;
}
.btn {
	display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #FFF;
    outline: none;
    padding: 20px 28px 17px 25px;
    cursor: pointer;
    background: #5cc1c4;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.btn:hover {
	background: #3f4646;
}
.btn-grey {
	display: inline-block;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #FFF;
	outline: none;
	padding: 18px 19px 16px 20px;
	cursor: pointer;
	background: #3f4646;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
}
.btn-grey:hover {
	background: #5cc1c4;
}
.check-box {
	position: relative;
}
.check-box input[type=checkbox] {
	display: none;
}
.check-box label:before {
	content: " ";
	display: inline-block;
	position: relative;
	top: 0px;
	margin: 0 13px 0 0;
	width: 17px;
	height: 17px;
	border: 1px solid #b7b7b7;
	background-color: #fff;
	cursor: pointer;
	vertical-align: bottom;
}
.check-box label:after {
	content: '';
	width: 20px;
	height: 10px;
	position: absolute;
	top: 2px;
	left: 2px;
	cursor: pointer;
	border: 3px solid #5cc1c4;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	transform: rotate(-45deg);
}
.check-box label:hover:after {
	opacity: 0;
}
.check-box input[type=checkbox]:checked + label:after {
	opacity: 1;
}
.check-box label {
	color: #000;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
}
.radio-box {
	position: relative;
}
.radio-box input[type='radio'] {
	display: none;
}
.radio-box label:before {
	content: "";
	display: inline-block;
	position: relative;
	top: 1px;
	margin: 0 13px 0 0;
	width: 17px;
	height: 17px;
	border-radius: 100%;
	border: 1px solid #b7b7b7;
	background-color: #fff;
	vertical-align: bottom;
	cursor: pointer;
}
.radio-box label:after {
	border-radius: 100%;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 9px;
	left: 6px;
	content: '';
	display: block;
	cursor: pointer;
	background: #5cc1c4;
	opacity: 0;
}
.radio-box input[type=radio]:checked + label:after {
	opacity: 1;
}
.radio-box label {
	color: #000;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	position: relative;
}
.select-box {
	width: 198px;
	height: 39px;
	background: #fff;
	position: relative;
	border: 1px solid #e3e1e1;
	cursor: pointer;
}
.select-box:before {
	background: url("../images/select-arrow.png") no-repeat right center;
	content: "";
	position: absolute;
	right: 10px;
	top: 17px;
	width: 9px;
	height: 7px;
}
.select-up {
	padding: 0 16px;
}
.select-up span {
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 0;
	display: block;
}
.select-down {
	display: none;
	position: absolute;
	top: 37px;
	left: 0;
	width: 100%;
	z-index: 1;
}
.select-down-in ul li .check-box label {
	font-size: 13px;
}
.select-down-in ul li .check-box label:before {
	margin: 0 11px 0 0;
	top: -2px;
}
.select-down-in ul li .radio-box label {
	font-size: 14px;
}
.select-down-in ul li .radio-box label:before {
	margin: 0 11px 0 0;
}
.select-down-in ul li .radio-box label:after {
	top: 8px;
}
.select-down-in {
	background: #fff;
	margin: 3px 0 0;
}
.select-down ul {
	display: block;
}
.select-down ul li {
	display: block;
	padding: 8px 9px 11px;
	border: 1px solid #e3e1e1;
	border-top: none;
}
.select-down ul li:first-child {
	border: 1px solid #e3e1e1;
}
.select-box.hover .select-down {
	display: block;
}
.select-box.selected:hover .select-down {
	display: none;
}
.selector {
	width: 100%;
	text-align: center;
}
.selector button {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 0;
	background: #5cc1c4;
	text-decoration: none;
	color: #fff;
	width: 100%;
	display: block;
	border: 1px solid #e3e1e1;
	border-top: none;
	letter-spacing: -1.2px;
}
.selector button:hover {
	background: #3f4646;
}
ul {
	background: none;
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
}
ul li {
	background: none;
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
}
a, a:hover, a:focus {
	text-decoration: none;
	outline: 0px none !important;
}
a {
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}
img, a img {
	max-width: 100%;
	margin: 0px;
	padding: 0px;
	border: none 0;
	outline: 0px none !important;
}
input:focus, textarea:focus, a:focus {
	outline: 0px none !important;
}
input {
    -webkit-appearance: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
hr {
	height: 20px;
	border: none;
}
.typo {
	padding: 40px 0;
}

/*===========Typography ends============*/

/*===========Grid Start============*/
.container {
	padding: 0 10px;
	margin: 0 auto;
}
.center {
	justify-content: center;
}
.right {
	justify-content: flex-end;
}
.left {
	justify-content: flex-start;
}
.justify {
	justify-content: space-between;
}
.row {
	margin: 0 -10px;
	display: flex;
	flex-wrap: wrap;
}
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
	position: relative;
	min-height: 1px;
	padding: 0 10px;
	width: 100%;
}
 @media (min-width: 768px) {
.container {
	width: 760px;
}
.col-md-12 {
	width: 100%;
}
.col-md-11 {
	width: 91.66666667%
}
.col-md-10 {
	width: 83.33333333%;
}
.col-md-9 {
	width: 75%;
}
.col-md-8 {
	width: 66.66666667%;
}
.col-md-7 {
	width: 58.33333333%;
}
.col-md-6 {
	width: 50%;
}
.col-md-5 {
	width: 41.66666667%;
}
.col-md-4 {
	width: 33.33333333%;
}
.col-md-3 {
	width: 25%;
}
.col-md-2 {
	width: 16.66666667%;
}
.col-md-1 {
	width: 8.33333333%;
}
}
 @media (min-width: 992px) {
.container {
	width: 960px;
}
}
 @media (min-width: 1280px) {
.container {
	width: 1200px;
}
}
/*===========Grid End============*/

/*===========Header Starts============*/
.header {
	padding: 12px 0 5px;
	background: #fff;
}
a.meanmenu-reveal {
	display: none;
}
.mean-container .mean-bar {
	float: left;
	width: 100%;
	position: relative;
	background: #0c1923;
	padding: 4px 0;
	min-height: 42px;
	z-index: 999999;
}
.mean-container a.meanmenu-reveal {
	width: 32px;
	height: 32px;
	padding: 10px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}
.mean-container a.meanmenu-reveal span {
	display: block;
	background: #fff;
	height: 3px;
	margin-top: 3px;
}
.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: transparent;
	margin-top: 44px;
}
.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}
.mean-container .mean-nav ul li.list-item {
	position: relative;
	float: left;
	width: 100%;
}
.mean-container .mean-nav ul li.list-item a {
	display: block;
	float: left;
	width: 90%;
	padding: 1em 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	border-top: 1px solid #383838;
	border-top: 1px solid rgba(255,255,255,0.5);
	text-decoration: none;
	text-transform: uppercase;
}
.mean-container .mean-nav ul li.list-item li a {
	width: 80%;
	padding: 1em 10%;
	border-top: 1px solid #f1f1f1;
	border-top: 1px solid rgba(255,255,255,0.25);
	opacity: 0.75;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible;
}
.mean-container .mean-nav ul li.list-item.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}
.mean-container .mean-nav ul li.list-item li li a {
	width: 70%;
	padding: 1em 15%;
}
.mean-container .mean-nav ul li.list-item li li li a {
	width: 60%;
	padding: 1em 20%;
}
.mean-container .mean-nav ul li.list-item li li li li a {
	width: 50%;
	padding: 1em 25%;
}
.mean-container .mean-nav ul li.list-item a:hover {
	background: #252525;
	background: rgba(255,255,255,0.1);
}
.mean-container .mean-nav ul li.list-item a.mean-expand {
	margin-top: 1px;
	width: 26px;
	height: 32px;
	padding: 12px !important;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: rgba(255,255,255,0.1);
	border: none !important;
	border-left: 1px solid rgba(255,255,255,0.4) !important;
	border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}
.mean-container .mean-nav ul li.list-item a.mean-expand:hover {
	background: rgba(0,0,0,0.9);
}
.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}
.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}
.mean-remove {
	display: none !important;
}
.menu ul {
	padding: 8px 27px 0px 0;
}
.menu ul li {
	display: inline-block;
	position: relative;
}
.menu ul li.drop-down {
	position: relative;
}
.menu ul li.drop-down:before {
	background: url("../images/arrow-down.svg") no-repeat;
	position: absolute;
	right: 0;
	top: 6px;
	margin: 0 0 0 0;
	width: 10px;
	height: 8px;
	content: "";
	cursor: pointer;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}
.menu ul li.add-menu {
	display: none;
}
.menu ul li a {
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	padding: 22px 7px;
	line-height: 1.8;
}

.menu ul li.drop-down > a {
	padding-right: 15px;
}

.menu ul li a img {
	position: relative;
	left: 8px;
	top: -3px;
}
.menu ul li:hover a {
	color: #5cc1c4;
}
.menu ul li.drop-down:hover:before {
	background: url("../images/arrow-down1.svg") no-repeat;
}
.login-blk {
	padding-bottom: 10px;
	margin-bottom: -10px;
}

.register-link {
	color: #5cc1c4;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	padding: 10px;
}
.register-link:hover {
	color: #3f4646;
}
.header-right-outer {
	display: flex;
	float: right;
	padding: 0 0 2px;
	position: relative;
}
.header-right-outer .btn-grey {
	padding: 8px 21px 8px 22px;
	max-height: 36px;
	margin: 1px 0 0 14px;
	position: relative;
}
.menu ul li.drop-down ul {
	width: 221px;
	display: none;
	position: absolute;
	right: -60px;
	top: 34px;
	z-index: 9;
	padding: 0;
}
.menu ul li.drop-down:hover ul {
	display: block;
}
.menu ul li.drop-down ul li {
	position: relative;
	border: 1px solid #c6c6c6;
	border-bottom: none;
	width: 100%;
	background: #fff;
}
.mean-expand {
	position: relative;
}
.mean-expand:before {
	background: url("../images/arrow-down.svg") no-repeat;
	position: absolute;
	right: -32px;
	top: 7px;
	width: 10px;
	height: 8px;
	content: "";
}
.mean-expand:hover:before {
	background: url("../images/arrow-down1.svg") no-repeat;
}
.menu ul li.drop-down ul li:last-child {
	border: 1px solid #c6c6c6;
}
.menu ul li.drop-down ul li a {
	font-size: 16px;
	padding: 14px 28px;
	display: block;
	color: #3f4646;
	text-transform: none;
}
.menu ul li.drop-down ul li:hover a {
	color: #5cc1c4;
}
.header-right-outer .login-drop-down {
	position: absolute;
	display: none;
	right: 0;
	top: 44px;
	background: #fff;
	z-index: 4;
	width: 221px;
	border-top: 1px solid #c7c7c7;
}
.header-right-outer .login-drop-down li {
	border: 1px solid #c7c7c7;
	border-top: none;
	position: relative;
}
.header-right-outer .login-drop-down li a {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	padding: 16px 29px 13px 28px;
	display: block;
}
.header-right-outer .login-drop-down li .logout {
	color: #5cc1c4;
}
.top {
	position: absolute;
	top: -10px;
	right: 45px;
	width: 0;
	height: 0;
	z-index: 100;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 10px solid #c0c0c0;
}
.bottom {
	position: absolute;
	width: 0;
	height: 0;
	z-index: 100;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 9px solid #fff;
	top: -9px;
	right: 47px;
}
.search-block {
	position: absolute;
	right: 0;
	bottom: -154px;
	max-width: 327px;
	width: 100%;
	z-index: 2;
	right: 13px;
}
.initiative-blk .btn.plus:before {
	background: url("../images/plus.svg") no-repeat;
	position: absolute;
	left: 24px;
	top: 16px;
	width: 20px;
	height: 20px;
	content: "";
}
.initiative-blk .btn.plus {
	position: relative;
}
.initiative-blk .btn {
	font-size: 20px;
	width: 100%;
	padding: 18px 25px 11px 80px;
}
.search {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 5px 0 0;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
}
.search-location {
	width: 100%;
	color: #737676;
	font-size: 14px;
	line-height: 18px;
	font-family: 'Josefin Sans', sans-serif;
	height: 100%;
	height: 52px;
	padding: 0 0 0 59px;
	border: 0;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
}
.search .btn-grey {
	position: absolute;
	right: 0;
	top: 0;
	padding: 18px 19px 16px 20px;
	max-height: 52px;
	margin: 0;
	border: 0;
}
.search:before {
	position: absolute;
	left: 23px;
	top: 12px;
	content: "";
	background: url("../images/search.svg") no-repeat left center;
	width: 23px;
	height: 28px;
	cursor: pointer;
}
/*===========Header ends============*/

/*===========Footer Starts============*/
.footer {
	background: #3f4646;
}
.footer-logo {
	margin: 65px 0 41px;
}
.social-media {
	text-align: right;
	margin: 49px 0 29px;
}
.social-media ul li {
	display: inline-block;
	vertical-align: top;
}
.social-media ul li a {
	display: block;
	width: 45px;
	height: 42px;
	background: #5cc1c4;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
}
.social-media ul li a:hover {
	background: #00c1c4;
}
.footer-links {
	text-align: right;
}
.footer-links ul li {
	display: inline-block;
	vertical-align: top;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 17px;
	color: #FFF;
	margin: 0 0 0 20px;
}
.footer-links ul li a {
	color: #FFF;
}
.footer-links ul li a:hover {
	color: #5cc1c4;
}
/*===========Footer ends============*/

/*===========Home Starts============*/
.banner {
	background: white;
	position: relative;
}
.banner-in {
	position: absolute;
	width: 100%;
	z-index: 10;
	background: #fff;
}
#map {
	height: 466px;
	width: 100%;
	border: 1px solid #eeeeee;
	border-left: none;
	border-right: none;
}
.map-in {
	position: relative;
}
.plat-ground {
	position: absolute;
	bottom: 0;
	right: 0px;
}
.plat-ground:hover .plat-ground-hover {
	display: block;
}
.plat-ground .plat-btn {
	position: relative;
	color: #3f4646;
	font-size: 14px;
	line-height: 18px;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	background: rgba(255,255,255, 0.9);
	padding: 13px 56px 8px 30px;
	display: block;
}
.plat-ground .plat-btn:after {
	position: absolute;
	right: 33px;
	top: 17px;
	content: "";
	background: url("../images/double-arrow.svg") no-repeat;
	width: 13px;
	height: 9px;
	cursor: pointer;
}
.plat-ground-hover {
	position: absolute;
	display: none;
	left: 0;
	bottom: -8px;
	width: 100%;
	background: #fff;
	padding: 26px 32px;
}
.plat-ground-hover span {
	font-size: 16px;
	line-height: 20px;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #3f4646;
	width: 100%;
	display: block;
}
.plat-ground-hover ul {
	padding: 7px 0 0;
}
.plat-ground-hover ul li {
	display: inline-block;
	width: 100%;
}
.plat-ground-hover ul li a {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	width: 100%;
	color: #3f4646;
	width: 100%;
	display: inline-block;
	padding: 7px 0;
}
.plat-ground-hover ul li a:hover {
	color: #5cc1c4;
}
.plat-ground-hover ul li a img {
	display: inline-block;
	width: 19px;
	height: 23px;
	margin: 0 24px 0 0;
	vertical-align: middle;
}
.close-icon, .meanclose {
	position: absolute;
	right: 0px;
	top: 18px;
	width: 38px;
	height: 38px;
	opacity: 1;
	z-index: 1;
	background: none;
	border: 0;
}
.close-icon:hover, .meanclose:hover {
	opacity: 1;
}
.close-icon:before, .close-icon:after, .meanclose:before, .meanclose:after {
	position: absolute;
	left: 14px;
	content: ' ';
	height: 38px;
	width: 3px;
	background: #3f4646;
}
.close-icon:before, .meanclose:before {
	transform: rotate(45deg);
}
.close-icon:after, .meanclose:after{
	transform: rotate(-45deg);
}

.meanmenu-reveal {
	-webkit-transition: all 0ms ease-in;
	-moz-transition: all 0ms ease-in;
	-ms-transition: all 0ms ease-in;
	-o-transition: all 0ms ease-in;
	transition: all 0ms ease-in;
}


.meanclose {
	overflow: hidden;
	text-indent: -84px !important;
	right: -17px !important;

}

.map-tag {
	position: absolute;
	left: 0px;
	bottom: 0;
	background: rgba(0,0,0,.67);
	width: 379px;
	padding: 90px 50px 35px 57px;
}
.map-tag p {
	color: #fff;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}
.map-tag a {
	color: #5cc1c4;
	text-decoration: none;
}
.map-tag a:hover {
	text-decoration: underline;
}
.map-tag .close-icon:before, .map-tag .close-icon:after {
	background: #fff;
	width: 2px;
}
.map-tag .close-icon {
	right: 4px;
	top: 15px;
}
.grid-content {
	padding: 35px 0 60px;
	position: relative;
}
.scroll-top {
	position: fixed;
	right: 20px;
	bottom: 62px;
	background: #d8d8d8;
	width: 45px;
	height: 42px;
	text-align: center;
	line-height: 42px;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	    z-index: 111111;
}
.scroll-top:hover {
	background: #5cc1c4;
}
.scroll-top img {
	width: 20px;
	height: 13px;
}

@media screen and  (min-width: 768px) and (max-width: 993px) {
	.hidden-md {
		display: none !important;
	}
}

.card-filter {
	width: auto;
	float: right;
}
.card-filter .filter-area h6 {
	font-size: 18px;
	float: left;
}
.card-filter .select-down-in ul li a {
	color: #000;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	line-height: 18px;
	display: block;
}
.card-filter .select-down-in ul li a:hover {
	color: #5cc1c4;
}
.card-block {
	border: solid 1px #dddddd;
	padding: 35px 0 20px 20px;
	margin: 0 0 33px;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
}

.card-block .card-image {
	height: 83px;
}

.card-block .card-image img {
	width: 80%;
}

.card-block .card-image.card-image-3 img, .card-block .card-image.card-image-4 img  {
	width: 70%;
}

.news-tile .card-block {
	padding: 15px 0 15px 15px;
	    background: #5cc1c4;
}

.card-inner {
	display: block;
}


.card-inner:after {
  content: "";
  display: table;
  clear: both;
}
.card-inner h5 {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 17px;
	line-height: 20px;
	color: #3f4646;
	padding: 0 0 6px;
	text-transform: uppercase;
}
.card-inner p {
	color: #696969
}
.card-inner p a {
	clear: both;
}
.card-left {
	border-right: solid 1px #dddddd;
	padding: 5px 15px 30px 0;
	position: relative;
	height: 185px;
	overflow: hidden;
	width: 235px;
	float: left;
}

.news-tile .card-left {
	background: white;
	    padding: 19px;
	    width: 250px;
	    height: 210px;
}

.card-right {
	width: 110px;
	padding: 0 10px;
	text-align: center;
	position: relative;
	float: right;
	height: 185px;
}
.highlighted {
	color: #7fd0d1;
}

.location {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	color: #3f4646;
	padding: 0 13px 0 20px;
	position: absolute;
	left: 0;
	bottom: 2px;
}
.location a {
	color: #3f4646;
}
.location:before {
	content: "";
	    position: absolute;
	    width: 20px;
	    height: 22px;
	    left: 0;
	    top: -4px;
	    bottom: 0;
	    background: url(../images/marker-small.svg) no-repeat left 2px;
	    background-size: 20px 20px;
	    margin: auto;
}
.image-text {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	color: #3f4646;
	padding: 0 0 10px;
}
.card-icon {
	text-align: left;
  display: inline;
  vertical-align: middle;
}
.card-icon img {
	width: 27px;
	margin: 0 1px;
	vertical-align: middle;
	height: 25px;
	max-width: 27px;
}
.card-mobile {
	display: none;
	text-align: center;
	background: #ebebeb;
	width: 100%;
	padding: 55px 40px 70px;
	margin: 0 0 33px;
}
.card-mobile p {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	max-width: 347px;
	display: inline-block;
	text-align: left;
}
.card-like {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	color: #3f4646;
	padding: 0 25px 0 0;
	position: absolute;
	right: 15px;
	bottom: 2px;
}
.card-like a {
	color: #3f4646;
}
.card-like:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 22px;
	right: 0;
	top: -1px;
	background: url("../images/like.svg") no-repeat left top;
	background-size: 20px;
}
.home-btn-outer {
	text-align: center;
}
.home-btn-outer .btn-grey {
	font-size: 18px;
	padding: 18px 29px 16px 27px
}
.stay-informed-blk {
	background: #ebebeb;
	padding: 76px 0 33px;
}
.stay-informed-blk .card-filter{
    width: 100%;
    float: none;
}
.stay-informed-blk .filter-area{
    margin: 0 0 26px;
}
.stay-blk-in h3 {
	color: #3f4646;
	padding: 0 0 11px;
}
.stay-blk-in p {
	font-size: 18px;
	line-height: 22px;
	color: #3f4646;
	padding: 0 0 14px;
}
.stay-flex-outer {
	display: flex;
	flex-wrap: wrap;
}
.stay-textbox-outer {
	display: flex;
	order: 1;
	padding: 0 0 23px;
}
.stay-text-outer {
	width: 287px;
	/*height: 52px;*/
	margin: 0 3px 0 0;
}
.home .stay-text-outer{
    width: 50%;
}
.stay-text-in {
	width: 100%;
	height: 52px;
	border: 1px solid #e3e3e3;
	padding: 10px 10px 10px 25px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #737676;
}
.stay-select-outer {
	order: 2;
	padding: 0 0 25px;
}
.stay-select-in {
	width: 100%;
	display: flex;
}
.stay-select-in .stay-label label {
	color: #3f4646;
	font-size: 16px;
	line-height: 18px;
	padding: 6px 0 0;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	width: 89px;
	display: block;
}
.stay-select-in .select-box {
	margin: 0 0 2px;
	width: 201px;
	height: 31px
}
.stay-select-in .select-box:before {
	top: 12px;
}
.stay-select-in .select-down {
	top: 28px;
	width: 100.45%;
}
.stay-select-in .select-up {
	padding: 0 10px;
}
.stay-select-in .select-up span {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	color: #505454;
	padding: 7px 0;
}
.stay-select-in .select-up .mob-select {
	display: none;
}
.stay-select-in .select-down-in ul li a {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
	color: #505454;
	width: 100%;
	padding: 0;
	line-height: 18px;
	text-decoration: none;
}
.stay-select-in .select-down-in ul li:hover a {
	color: #5cc1c4;
}
.stay-informed-blk .check-box {
	padding: 0 0 3px;
}
.stay-informed-blk .check-box label {
	color: #3f4646;
}
.stay-informed-blk .check-box label:before {
	margin: 0 16px 0 0
}
.stay-btn-outer {
    order: 3;
}
.stay-btn-outer .btn{
    padding-left: 32px;
		padding-right: 32px;
}
.mob-heading {
	position: absolute;
	left: 20px;
	top: 8px;
	display: none;
	color: #fff;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
}
/*===========Home ends============*/

/*===========Legenda Starts============*/
.legend {
	position: absolute;
	bottom: 9px;
	right: 282px;
}
.legend:hover .legend-hover {
	display: block;
}
.legend .legend-btn {
	position: relative;
	color: #3f4646;
	font-size: 14px;
	line-height: 18px;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	background: #fff;
	padding: 13px 56px 8px 30px;
}
.legend .plat-btn:after {
	position: absolute;
	right: 33px;
	top: 17px;
	content: "";
	background: url("../images/double-arrow.svg") no-repeat;
	width: 13px;
	height: 9px;
	cursor: pointer;
}
.legend-hover {
	position: absolute;
	display: none;
	right: 0;
	bottom: -8px;
	width: 307px;
	background: #fff;
	padding: 49px 0 38px 51px;
}
.legend-hover span {
	font-size: 16px;
	line-height: 20px;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #3f4646;
	width: 100%;
	display: block;
}
.legend-hover ul {
	padding: 7px 0 0;
}
.legend-hover ul li {
	display: inline-block;
	width: 100%;
}
.legend-hover ul li a {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	width: 100%;
	color: #3f4646;
	width: 100%;
	display: inline-block;
	padding: 7px 0;
}
.legend-hover ul li a:hover {
	color: #5cc1c4;
}
.legend-hover ul li a img {
	display: inline-block;
	width: 19px;
	height: 23px;
	margin: 0 24px 0 0;
	vertical-align: middle;
}
/*===========Legenda ends============*/


/*===========Agenda starts============*/
.content.agenda .banner #map {
	height: 18px;
  width: 100%;
  background: url("../images/content/image4.jpg");
}
.filter-area {
	display: block;
	height: 52px;
	background: #3f4646;
	justify-content: space-between;
	padding: 6px;
	margin: 0 0 40px;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.35);
}

.home .grid-content .filter-area {
		margin: 0;
}

.filter-area h6 {
	display: block;
	float: left;
	color: #ffffff;
	padding: 14px 15px 0 14px;
}
.filter {
	display: block;
	    float: right;
}
.filter .select-box {
	margin-left: 6px;
}
.ag-list {
	margin: 0 0 5px;
}
.ag-list-hidden {
	display: none;
}

.ag-list h2 {
	padding: 0 0 9px;
}
.ag-list ul li {
	display: flex;
	padding: 0 0 10px;
}
.agenda-date {
	min-width: 85px;
	padding-right: 30px;
}
.agenda-date h5 {
	text-align: center;
	color: #3f4646;
	line-height: 20px;
}
.agenda-date h5 span {
	font-size: 16px;
	display: block;
	font-family: 'Josefin Sans', sans-serif;
}
.agenda-details h6 {
	padding: 0 0 2px;
}
.agenda-details h6 a {
	color: #3f4646;
	text-decoration: underline;
	display: inline-block;
}
.agenda-details h6 a:after {
	display: inline-block;
	content: "";
	width: 6px;
	height: 7px;
	background: url("../images/angle-right.svg") no-repeat left top;
	margin: 0 0 0 5px;
}
.agenda-details h6 a:hover {
	color: #5cc1c4;
}
.agenda-details h6 a:hover:after {
	background: url("../images/angle-right-over.svg") no-repeat left top;
}
.agenda-details h5 {
	font-family: 'Josefin Sans', sans-serif;
	color: #3f4646;
	padding: 0 0 6px;
}
.agenda-details p {
	color: #3f4646;
}
.agenda-details p a {
	font-family: 'Josefin Sans', sans-serif;
	color: #3f4646;
}
.agenda-details p a:hover {
	color: #5cc1c4;
}
.more {
	padding: 0 0 0 85px;
}
.more a {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	color: #5cc1c4;
	text-decoration: underline;
	text-decoration-color: #def0f1;
}
.more a:hover {
	color: #3f4646;
}
/*===========Agenda ends============*/

/*===========Contact-person starts============*/

.content.contact-person .check-box {
	padding: 0 0 35px;
}
.content.contact-person .content-area {
	padding: 62px 0 110px;
}
.content.contact-person .content-inner {
	position: relative;
}
.content.contact-person .content-inner:before {
	position: absolute;
	left: 0;
	top: -45px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.content.contact-person .content-inner:after {
	position: absolute;
	left: 0;
	bottom: -49px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.content.contact-person h5 {
	padding: 0 0 11px;
}
.content.contact-person .data p {
	padding: 6px 26px 10px 26px;
}
.content.contact-person .check-box label:before {
	margin: 0 19px 0 0;
}
/*===========Contact-person ends============*/


/*===========Initative-form starts============*/

.content.aanmeld #map {
	height: 18px;
    width: 100%;
    background: url("../images/content/image4.jpg");
}
.content.aanmeld .content-area {
	padding: 74px 0 38px;
}
.register-text-outer label {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	color: #5cc1c4;
	padding: 0 0 4px;
	display: block;
}
.register-text-box {
	width: 100%;
	border: solid 1px #d9d9d9;
	height: 52px;
	padding: 0 22px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 17px;
	color: #737676;
}
.register-text-area {
	width: 100%;
	border: solid 1px #d9d9d9;
	height: 164px;
	padding: 17px 23px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 17px;
	color: #737676;
	display: block;
	resize: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
}
.register-text-outer {
	padding: 16px 0 10px;
}
.register-blk {
	position: relative;
	padding: 0 0 38px;
}
.register-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.photo-video-blk {
	padding: 45px 0 32px;
	position: relative;
}
.photo-video-blk h5 {
	padding: 0 0 8px;
}
.content-inner .photo-video-blk p {
	padding: 0 0 9px;
}
.photo-video-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.content-inner .photo-video-btn-outer p {
	color: #737676;
	padding: 7px 0 15px;
	font-size: 14px;
}
.register-locatie-blk {
	padding: 45px 0 50px;
	position: relative;
}
.register-locatie-blk h5 {
	padding: 0 0 8px;
}
.content-inner .register-locatie-blk p {
	padding: 0 0 8px;
}
.register-locatie-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.content.aanmeld .categorie-blk {
	padding: 44px 0 54px;
}
.content.aanmeld .categorie-blk h5 {
	padding: 0 0 8px;
}
.content.aanmeld .content-inner .categorie-blk p {
	padding: 0 0 7px;
}
.register-who-blk {
	position: relative;
	padding: 44px 0 46px;
	float: left;
	width: 100%;
}
.register-who-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.social-media-blk {
	position: relative;
	padding: 45px 0 47px;
	float: left;
	width: 100%;
}
.content.aanmeld .content-inner .social-media-blk p {
	padding: 0 0 8px;
}
.social-media-blk h5 {
	padding: 0 0 2px;
}
.social-media-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.register-agenda-blk {
	padding: 45px 0 49px;
	position: relative;
	float: left;
	width: 100%;
}
.register-agenda-blk h5 {
	padding: 0 0 2px;
}
.content.aanmeld .content-inner .register-agenda-blk p {
	padding: 0 0 8px;
}
.register-agenda-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.register-status-blk {
	position: relative;
	padding: 47px 0 46px;
	float: left;
	width: 100%;
}
.register-status-blk h5 {
	padding: 0 0 2px;
}
.content.aanmeld .content-inner .register-status-blk p {
	padding: 0 0 8px;
}
.register-status-blk .radio-box label::before {
	margin: 0 17px 0 0;
}
.register-status-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.register-status-blk .radio-box label {
	width: 100%;
	display: block;
	padding: 0 0 7px;
}
.register-status-blk .radio-box label:after {
	top: 8px;
}
.register-btn-blk {
	padding: 7px 0 0;
	float: left;
	width: 100%;
}
.content-inner .register-btn-blk p {
	padding: 4px 0 15px;
	color: #737676;
	font-size: 14px;
	max-width: 472px;
}
.register-btn-blk p a {
	position: relative;
	font-family: 'Josefin Sans', sans-serif;
	color: #5bc1c4;
	text-decoration: none;
	font-weight: 500;
}
.register-btn-blk p a:hover {
	color: #5cc1c4;
}
.register-btn-blk p a:hover:after {
	background: #5cc1c4;
}
.register-btn-blk p a:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #5bc1c4;
}
.register-agenda-blk .data.date {
	position: relative;
}
.register-agenda-blk .data.date .text-box {
	padding: 0 26px 0 62px;
}
.register-agenda-blk .data.date:before {
	position: absolute;
	left: 29px;
	top: 19px;
	background: url("../images/date.png") no-repeat left top;
	width: 17px;
	height: 17px;
	content: "";
}
.register-agenda-blk .data.time {
	position: relative;
}
.register-agenda-blk .data.time .text-box {
	padding: 0 26px 0 66px;
}
.register-agenda-blk .data.time:before {
	position: absolute;
	left: 29px;
	top: 19px;
	background: url("../images/time.png") no-repeat left top;
	width: 18px;
	height: 18px;
	content: "";
}
.register-agenda-blk .table-row.text-top .label {
	justify-content: normal;
	padding: 20px 0 0;
}
.register-agenda-blk .table-row.text-top .register-text-area {
	height: 154px;
}
/*===========Initative-form ends============*/

/*===========Initiative starts============*/
.content.frequentie #resizable #map {
	height: 263px;
	min-height: 263px;
}
.content.frequentie .content-area {
	padding: 20px 0 30px;
}
.content.frequentie .back {
	padding: 13px 0 35px 1px;
}
.neighbours-module {
	padding: 1px 0 15px;
}
.neighbours-module h1 {
  padding: 0 0 22px;
  text-transform: uppercase;
}
.neighbours-module p {
	font-size: 14px;
	line-height: 18px;
	color: #737676;
	font-family: 'Josefin Sans', sans-serif;
}
.neighbours-blk p {
	padding: 0 0 17px;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	font-family: 'Josefin Sans', sans-serif;
}
.neighbours-blk {
	padding: 0 0 6px;
}
.neighbours-module .neighbours-blk:last-child {
	padding: 0;
}
.neighbours-blk h3 {
	padding: 0 0 9px;
}
.neighbour-btn-outer {
	padding: 0 0 10px;
}
.location-who-ouer {
	padding: 48px 0 0;
	width: 100%;
	float: left;
}
.location-outer {
	width: 48%;
	float: left;
	margin-right: 2%;
}
.location-outer h3 {
	color: #3f4646;
}
.centrum-plutoplein-outer {
	width: 100%;
	display: table;
}
.centrum-outer {
	width: 35%;
	display: table-cell;
	padding: 0 0 0 2px;
}
.plutoplein-outer {
	width: 50%;
	display: table-cell;
}
.centrum-plutoplein-inner {
	display: table-row;
}
.centrum-outer a {
	width: 100%;
	display: inline-block;
	vertical-align: middle;
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 16px;
}
.centrum-outer a img {
	width: 17px;
	vertical-align: middle;
	margin: 0 11px 0 0;
}
.plutoplein-outer span {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #000;
}
.location-social-app {
	padding: 40px 0 0;
}
.location-social-app span {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #3f4646;
	font-size: 16px;
	line-height: 18px;
	display: block;
}
.location-social-app ul {
	display: inline-block;
	padding: 8px 0 0;
}
.location-social-app ul li {
	display: inline-block;
  background: #3f4646;
  text-align: center;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  float: left;
  margin-right: 2px;
}
.location-social-app ul li:hover {
	background: #5cc1c4;
}
.location-social-app ul li a {
	width: 37px;
	height: 35px;
	display: block;
	line-height: 42px;
	    padding-top: 2px;
}
.location-social-app ul li img {
	width: 17px;
	height: 20px;
}
.who-are-outer {
	width: 50%;
	float: left;
	padding: 0 0 0 10px;
}
.who-table-outer {
	display: table;
	width: 100%;
}
.who-table-inner {
	display: table-row;
}
.who-table-left {
	display: table-cell;
	width: 40%;
	padding: 0 0 13px;
}
.who-table-right {
	width: 50%;
	display: table-cell;
	padding: 0 0 13px 4px;
}
.who-are-outer h3 {
	color: #3f4646;
}
.who-table-left span {
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
}
.who-table-right span {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
}
.who-table-right a {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	position: relative;
}
.who-table-right a:hover {
	color: #5cc1c4;
}
.who-table-right a:before {
	position: absolute;
	bottom: 0;
	background: #d4d4d4;
	content: "";
	left: 0;
	width: 100%;
	height: 1px;
}
.who-table-right ul li a {
	width: 100%;
}
.who-table-right ul li a .contact {
	width: 21px;
	height: 19px;
	display: inline-block;
	text-align: center;
	background: #3f4646;
	margin: 0 8px 0 0;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	padding-top: 2px;
}
.who-table-right ul li:hover a .contact {
	background: #5cc1c4;
}
.who-table-right ul li a:before {
	display: none;
}
.who-table-right ul li a .contact-right {
	display: inline-block;
	position: relative;
}
.who-table-right ul li a .contact-right:before {
	position: absolute;
	bottom: 0;
	background: #d4d4d4;
	content: "";
	left: 0;
	width: 100%;
	height: 1px;
}
.who-table-right ul li a .contact img {
	width: 11px;
	height: 11px;
}
.who-table-right ul li {
	margin: 0 0 2px;
}
.agenda-blk h3 {
	color: #3f4646;
	padding: 0 0 32px;
}
.agenda-blk {
	padding: 89px 0 81px;
	float: left;
}
.agenda-blk .agenda-date {
	padding: 0 34px 0 0;
}
.agenda-blk .ag-list ul li {
	padding: 0 0 24px;
}
.agenda-blk .agenda-details h6 a.toggle-open:after {
	background: url("../images/angle-down.svg") no-repeat left top;
}

.agenda-blk .agenda-details h6 a.toggle-open:hover:after {
	background: url("../images/angle-down-over.svg") no-repeat left top;
}
.agenda-blk .agenda-content {
	display: none;
}
.agenda-blk .agenda-details.open .agenda-content {
	display: block;
}
.agenda-blk .agenda-details.open h6 a:after {
	background: url("../images/angle-up.svg") no-repeat left top;
}
.agenda-blk .agenda-details.open h6 a:hover:after {
	background: url("../images/angle-up-over.svg") no-repeat left top;
}
.content.frequentie .category-blk h3 {
	color: #394f50;
	padding: 0 0 27px;
}
.content.frequentie .category-image-blk {
	width: 33%;
	float: left;
	padding: 0 0 22px 4px;
}
.content.frequentie .category-image-blk span {
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	display: block;
	max-width: 68px;
	text-align: center;
	padding: 3px 0 0;
}
.content.frequentie .category-image-blk.disabled span {
	color: #ebebeb;
}
.content.frequentie .category-image-blk img {
	width: 68px;
	height: 66px;
}

.content.frequentie .category-image-blk.disabled img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
}

.content.frequentie .stay-informed-blk {
	background: #ebebeb;
	padding: 52px 0 66px;
}
.content.frequentie .stay-blk-in h3 {
	color: #394f50;
}
.content.frequentie .stay-blk-in p {
	color: #394f50;
	max-width: 500px;
}
.content.frequentie .stay-btn-outer {
	padding: 5px 4px 0 0;
	order: 3;
	width: 100%;
}
.content.frequentie .stay-select-in label {
	color: #fff;
}
.content.frequentie .stay-textbox-outer {
	padding: 0 0 3px;
}
.content.frequentie .stay-btn-outer .btn {
	float: none;
}
.content.frequentie .stay-select-in .select-box {
	width: 117px;
}
.content.frequentie .stay-select-outer {
	width: 50%;
	padding: 15px 0 0;
}
.reactions-blk {
	padding: 31px 0 44px;
}
.reactions-blk h5 {
	color: #3f4646;
}
.reactions-blk a {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #5cc1c4;
	position: relative;
}
.reactions-blk a:before {
	position: absolute;
	bottom: 0;
	background: #def0f1;
	content: "";
	left: 0;
	width: 100%;
	height: 1px;
}
.reactions-blk a:hover {
	color: #3f4646;
}
.reaction-detail {
	padding: 0 0 11px;
	float: left;
	width: 100%;
}
.reaction-venue {
	width: 32%;
	float: left;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
}
.reaction-time {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	width: 68%;
	float: left;
}
.reaction-content {
	padding: 0 0 5px;
	margin: 5px 0 25px;
}
.reaction-content p a {
	text-decoration: none;
}
.reply-blk h5 {
	color: #394f50;
}
.reply-blk .rsponds {
	    width: 577px;
	height: 176px;
	resize: none;
	font-size: 16px;
	line-height: 18px;
	font-family: 'Josefin Sans', sans-serif;
	border: 1px solid #ebebeb;
	color: #737676;
	padding: 30px 88px 30px 26px;
    -webkit-appearance: none;0
}
.reply-btn-outer {
	padding: 19px 0 0;
}
.like-blk {
	padding: 98px 0 0;
}
.like-blk > span {
	font-size: 18px;
	line-height: 18px;
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	text-align: right;
	display: block;
	position: relative;
	padding: 0 42px 14px 0;
}
.like-blk > span:before {
	position: absolute;
	right: 0;
	top: -3px;
	content: "";
	width: 28px;
	height: 26px;
	background: url("../images/like.svg") no-repeat right top;
}
.like-btn {
	display: inline-block;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	vertical-align: middle;
	border: 1px solid #ddd;
	padding: 17px 54px 15px 16px;
	background: #f4f4f4;
	float: right;
	position: relative;
}
.like-btn:before {
	position: absolute;
	right: 17px;
	top: 15px;
	content: "";
	width: 25px;
	height: 25px;
	background: url("../images/like1.svg") no-repeat right top;
}
.like-btn:hover:before, .like-btn.selected:before {
	background: url("../images/like1-over.svg") no-repeat right top;
}
.like-btn:hover,  .like-btn.selected {
	background: #5cc1c4;
	color: #fff;
}

.liked-text {
	display: none;
}

.selected .to-like-text{
		display: none;
}

.selected .liked-text{
		display: block;
}

.neighbour-arrow-left {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: block;
	cursor: pointer;
	margin: -20px 0 0;
	left: 17px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.neighbour-image-blk {
	position: relative;
}
.neighbour-arrow-right {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: block;
	cursor: pointer;
	margin: -20px 0 0;
	right: 17px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
/*===========Initiative ends============*/

/*===========Jouw-initiatieven starts============*/

.content.jouw_initiatieven .banner #map {
	height: 18px;
    width: 100%;
    background: url("../images/content/image4.jpg");
}
.online {
	padding: 13px 0 47px;
}
.online ul li {
	border-top: solid 2px #e8e8e8;
	padding: 12px 0 9px;
	display: flex;
	justify-content: space-between;
}
.online ul li p {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.btns {
    flex-direction: row;
}
.btn-sm {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 17px;
	color: #FFF;
	height: 36px;
	padding: 9px 15px 10px;
	background: #5cc1c4;
	margin-left: 2px;
	width: 91px;
	text-align: center;
	    float: right;
}
.btn-sm:hover {
	background: #3f4646;
}

.btns .btn-sm {
		width: auto;
}



.remove {
	width: 39px;
	height: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	background: #3f4646;
	margin-left: 2px;
	padding: 0;
	    float: right;
}
.remove:hover {
	background: #5cc1c4;
}

.remove img{
	width: 20px;
	height: 20px;
	display: inline-block;
	margin: 0 auto;
}

/*===========Jouw-initiatieven ends============*/


/*===========Login starts============*/
.content.login .banner #map, .content.register .banner #map {
	height: 18px;
    width: 100%;
    background: url("../images/content/image4.jpg");
}
.login .data-change {
	padding: 18px 0 0;
}
.login .check-box {
	margin: 6px 0 18px;
}
.forgot {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #5cc1c4;
}
.forgot a {
	color: #5cc1c4;
	text-decoration: underline;
}
.login .btn-outer {
	padding: 32px 0 20px;
}
.sign-up {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000000;
}
.sign-up a {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #5cc1c4;
	text-decoration: underline;
}
.login .btn-outer .btn {
	min-width: inherit;
}
/*===========Login ends============*/

/*===========News-detail starts============*/
.content.news-detail .banner {
	border-bottom: none;
}
.back {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #989898;
	padding: 0 0 15px;
}
.back a {
	color: #989898;
}
.back a:hover {
	color: #3f4646;
}
.details {
	display: flex;
	padding: 0 0 11px;
}
.details .news-content h5, .details .news-content h5 a  {
	font-size: 23px;
  line-height: 30px;
  color: #3f4646;
  padding: 0 0 4px;
  text-transform: uppercase;
}
.details .news-content p {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #000;
}
.details-block {
	padding: 0 0 10px;
}
.details-block h6 {
	color: #5cc1c4;
	text-transform: uppercase;
	padding: 0 0 5px;
}
.news-pict {
	justify-content: flex-end;
	order: 2;
	min-width: 200px;
	padding: 3px 0 0;
}
.news-pict img {
	width: 100%;
}
.news-content {
	justify-content: flex-start;
	order: 1;
	padding: 0 20px 0 0;
}
.news-content h5, .news-content h5 a {
	color: #3f4646;
	padding: 0 0 11px;
	text-transform: uppercase;
}
.nav-btns {
	border-top: solid 1px #b5b5b5;
	padding: 21px 0;
	display: flex;
	justify-content: space-between;
}
.nav-btns a {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	color: #3f4646;
	padding: 0 30px;
	position: relative;
}
.nav-btns a:before {
	content: "";
	position: absolute;
	top: 5px;
	width: 10px;
	height: 10px;
}
.nav-btns a:hover {
	color: #5cc1c4;
}
.nav-btns a.prev:before {
	background: url("../images/angle-left.svg") no-repeat left center;
	left: 0;
}
.nav-btns a.next:before {
	background: url("../images/angle-right.svg") no-repeat right center;
	right: 0;
}
.nav-btns a.prev:hover:before {
	background: url("../images/angle-left-over.svg") no-repeat left center;
}
.nav-btns a.next:hover:before {
	background: url("../images/angle-right-over.svg") no-repeat right center;
}
/*===========News-detail ends============*/

/*===========News-overview starts============*/
.content.news .banner #map {
	height: 18px;
    width: 100%;
    background: url("../images/content/image4.jpg");
}
.news-block ul li {
	display: flex;
	border-bottom: solid 1px #b5b5b5;
	padding: 26px 0 10px;
}
.news-block ul li:first-child {
	padding-top: 0;
}
.view-more {
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #3f4646;
	padding: 20px 0;
}
.view-more a {
	color: #3f4646;
}
.view-more a:hover {
	color: #5cc1c4;
}
/*===========News-overview ends============*/

/*===========Personal starts============*/
.content.gegevens .banner #map {
	height: 18px;
  width: 100%;
  background: url("../images/content/image4.jpg");
}
.password-change {
	padding: 13px 0 0;
}
.password-change h5 {
	padding: 0 0 10px;
}
/*===========Personal ends============*/

/*===========Pop up starts============*/
.pop-up {
	background: #fff;
	padding: 64px 100px 53px 107px;
	position: relative;
	z-index: 1;
}
.pop-up h1 {
	padding: 0 0 17px;
}
.pop-up p {
	padding: 0 0 29px;
}
.pop-up .btn {
	padding: 20px 44px 17px;
	margin: 0 20px 0 0;
}
.pop-up .btn:last-child {
	margin: 0;
}
.pop-up-outer {
	position: absolute;
	left: 0;
	top: 135px;
	z-index: 999;
	right: 0;
	width: 100%;
	max-width: 579px;
	margin: 0 auto;
}
.pop-up-outer:before {
	background: rgba(0,0,0,.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
}
/*===========Pop-up ends============*/

/*===========Register starts============*/
#fake-map {
	height: 18px;
    width: 100%;
    background: url("../images/content/image4.jpg");
}
.register .data-change {
	padding: 18px 0 0;
}
.register .data p {
	padding: 5px 0;
}
.register .btn-outer {
	padding: 28px 0 0;
}
.text-sm p {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #737676;
	padding: 5px 0 15px;
}
.text-sm p a {
	color: #737676;
}
/*===========Register ends============*/

/*===========Standard starts============*/
.content.standard .banner #map {
	height: 18px;
  width: 100%;
  background: url("../images/content/image4.jpg");
}
.main-text {
	padding: 0 0 22px;
}
.image-block {
	padding: 25px 0 40px;
}
.listing-block {
	padding: 4px 0 40px;
}
.page-content ul li {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	padding: 0 0 0 23px;
	position: relative;
}
.page-content ul li:before {
	content: "";
	position: absolute;
	left: 2px;
	top: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #5cc1c4;
}

.page-content .agenda-blk ul li:before {
	display: none;

}

.accordian-container {
	border-top: solid 1px #b5b5b5;
}

.accordian-container p {
	padding: 0;
}

.accordian-container .accordion p  {
	padding: 8px 0 10px;
}

.accordian-outer {
	padding: 23px 0 0;
}
.accordian {
	border-bottom: solid 1px #b5b5b5;
}

.accordian-title {
	position: relative;
}
.accordian-title:before {
	content: "";
	position: absolute;
	right: 28px;
	top: 28px;
	width: 10px;
	height: 10px;
	background: url("../images/angle-down.svg") no-repeat left top;
}
.open .accordian-title:before {
	background: url("../images/angle-up.svg") no-repeat left top;
}
.accordian-title h6 {
	padding: 22px 0 18px;
	cursor: pointer;
}
.accordian-content {
	display: none;
	padding: 5px 0 11px;
}
.open .accordian-content {
	display: block;
}
/*===========Standard ends============*/

/*===========Start-initiatief starts============*/

.content.stadsdelen .content-inner .locatie-blk p {
	padding: 0 0 18px;
}
.content.stadsdelen .content-area {
	padding: 66px 0 30px;
}
.content.stadsdelen h5 {
	padding: 0 0 7px;
}
.content.stadsdelen .check-box label:before {
	margin: 0 18px 0 0;
}
.categorie-blk {
	width: 100%;
	float: left;
	padding: 47px 0 49px;
	position: relative;
}
.categorie-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}

.categorie-image-blk input[type="radio"] {
	display: none;
}

#subcategory-container {
	margin: 35px 0 15px;

}

#subcategory-container .check-box {
	margin: 10px 0 ;
}

#subcategory-container .check-box label {
	font-size: 11px;
	font-weight: 700;
}

#subcategory-container .check-box label:before {
	top: -2px;
}


.categorie-image {
	width: 23.06%;
	float: left;
	border: 1px solid #cfcfcf;
	text-align: center;
	cursor: pointer;
	padding: 17px 0 12px;
	margin: 0 15px 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: block;
	text-align: center;
}
.categorie-image:last-child {
	margin: 0;
}


.categorie-image span {
	color: #3f4646;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	display: block;
	text-align: center;
	padding: 3px 0 0;
	max-width: 68px;
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: block;
margin: 0 auto;
}
.categorie-image img {
	width: 68px;
	height: 66px;
}
.categorie-image:hover span {
	color: #5cc1c4;
}
.categorie-image:hover {
	border: 1px solid #5cc1c4;
}
.content.stadsdelen .content-inner .categorie-blk p {
	padding: 0 0 8px;
}
.categorie-image-blk {
	padding: 0 0 24px;
	float: left;
	width: 100%;
}
.categorie-checkbox-outer {
	padding: 5px 0 0;
}
.content.stadsdelen .check-box {
	padding: 0 0 15px;
}
.locatie-blk {
	position: relative;
	float: left;
	padding: 0 0 37px;
}
.locatie-blk:before {
	position: absolute;
	left: 0;
	top: -48px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.locatie-blk:after {
	position: absolute;
	left: 0;
	bottom: 0px;
	content: "";
	height: 1px;
	width: 100%;
	background: #ededed;
}
.locatie-blk ul {
	width: 150px;
	float: left;
	padding: 0 0 0 1px;
}
/*===========Start-initiatief ends============*/
.content-area {
	padding: 65px 0 30px;
}
.content-inner h1 {
	padding: 0 0 10px;
}
.content-inner p {
	padding: 0 0 21px;
}
.table-row {
	display: flex;
	margin: 0 0 4px;
}
.label {
	width: 27.5%;
	font-family: 'Josefin Sans', sans-serif; font-weight: 700;
	font-size: 16px;
	line-height: 17px;
	color: #3f4646;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3px 0 0;
}
.data {
	width: 72.5%;
}
.text-box {
	width: 100%;
	border: solid 1px #d9d9d9;
	height: 52px;
	padding: 0 26px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
	line-height: 17px;
	color: #737676;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
}
.text-box::-moz-placeholder {
 color: #737676;
 opacity: 1;
}
.text-box:-ms-input-placeholder {
 color: #737676;
}
.text-box::-webkit-input-placeholder {
 color: #737676;
}
.data p {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	line-height: 14px;
	color: #737676;
	padding: 10px 26px;
}
.btn-outer {
	padding: 18px 0 0;
}
.btn-outer .btn {
	min-width: 170px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Safari and Chrome, if Chrome rule needed
.plat-ground {bottom: 5px;}
.legend{bottom: 5px;}
.search .btn-grey{height: 100%;padding: 18px 20px;}*/
}

.table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

.table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

.table th,
.table td {
  padding: .625em;
	text-align: left;
    font-size: 12px;
}

.table th {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .table {
    border: 0;
  }

  .table caption {
    font-size: 1.3em;
  }

  .table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  .table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  .table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a .table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  .table td:last-child {
    border-bottom: 0;
  }
}

.sub-menu  {
	margin: 10px 0 30px;
}

.sub-menu a {
	color: black;
}

.sub-menu a.active {
	text-decoration: underline;
}
