/*
	Theme Name: Perpetual template
	Author: perpetual-digital.com
	Author URI: http://perpetual-digital.com/
	Description: Stop Food Waste Template
	Version: 1.0
	Text Domain: perpetual
*/


/* ---------------------------
	Fonts & reset
--------------------------- */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,600i,700');
@import url('https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.0.47/jquery.fancybox.min.css');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('assets/css/reset.css');


/* ---------------------------
	General
--------------------------- */
body {
	background: #f4f4f4;
	position: relative;
	font: 300 16px/1.5 'Open Sans', sans-serif;
	color: #42495c;
}

a {
	color: #42495c;
	text-decoration: underline;
}
a:hover {
	color: #254c74;
}

p {
	margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5 {
	margin-bottom: 15px;
	font-weight: normal;
	font-size: 14px;
}
h1 {
	font-size: 22px;
	font-weight: 600;
}
h2,
h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
}
h4 {
	font-size: 18px;
}
nav li {
	display:inline-block;
	list-style:none;
	position: relative;
}
b,
strong {
	font-weight: bold;
}
article p a,
article li a {
	color: #47aa42;
	text-decoration: none;
}
article p a:hover,
article li a:hover {
	color: #47aa42;
	text-decoration: none;
	opacity: .61;
}


/* ---------------------------
	Layout
--------------------------- */

#header {
	background: #fff;
	padding: 20px 0 40px;
}

#header .logo img {
	display: inline-block;
	max-height: 90px;
	max-width: 390px;
}

#header .finder {
	float: right;
}

#header .finder form {
	display: flex;
	margin-top: 40px;
}

#header .finder p {
	margin-bottom: 0;
}

#header .finder input {
	width: 290px;
	height: 40px;
	border: none;
	background: rgba(70, 170, 65, 0.1);
	color: #42495c;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	font-style: italic;
	border-radius: 0px;
	padding: 10px 18px;
}

#header .finder .btn-search {
	width: 40px;
	height: 40px;
	border: none;
	outline: none;
	background: rgba(70, 170, 65, 0.2);
	padding-top: 6px;
	text-align: center;
	transition: ease-in-out 0.2s;
}

#header .finder .btn-search:hover {
	background: rgba(70, 170, 65, 0.1);
}

#header .social {
	padding-top: 40px;
	margin-bottom: 0px;
}

#nav {
	background: #7CC779;

}
#breadcrumbs {
	padding-top: 15px;
}
#breadcrumbs p {
	margin-bottom: 10px;
	font-size: 14px;
}
#nav .container {
	display: flex;
}

#nav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}
#nav ul li {
	flex:  1 0 auto;
}
#nav a {
	color: #fff;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 1.4px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 12px;
	width:  100%;
	transition: ease-in-out 0.2s;
	text-align: center;
}

#nav a:hover {
	background: #47AA42;
	color: #fff;
}
#nav li.active a {
	color: #47AA42;
	background: #fff;
}

#nav .container > a {
	font-size:  0;
	position: relative;
	width: 60px;
}
#nav .container > a:before {
	display: block;
	content: '\f015';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #fff;
	font-size: 20px;
	line-height: 21px;
	letter-spacing: 1.4px;
	text-decoration: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
#nav .container > a.active:before {
	color:  #47AA42;
}
#nav .container > a.active {
	color:  #47AA42;
	background: #fff;
}
#nav .container > ul li:nth-of-type(1) a:hover {
	color: #fff;
	background: #EC6B53;
}

#nav .container > ul li:nth-of-type(2) a:hover {
	color: #fff;
	background: #39AFDD;
}

#nav .container > ul li:nth-of-type(3) a:hover {
	color: #fff;
	background: #F69E1C;
}
#nav .container > ul li.active:nth-of-type(1) a {
	color: #EC6B53;
	background: #fff;
}
#nav .container > ul li.active:nth-of-type(2) a {
	color: #39AFDD;
	background: #fff;
}
#nav .container > ul li.active:nth-of-type(3) a {
	color: #F69E1C;
	background: #fff;
}


#nav div div ul {
	display: none;
}

.nav-trigger {
	display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
}
#header .nav-trigger {
	display: none;
}
.nav-trigger span,
.nav-trigger span::before,
.nav-trigger span::after {
    position: absolute;
    width: 100%;
	height: 3px;
    background: #fff;
}
#header .nav-trigger span,
#header .nav-trigger span::before,
#header .nav-trigger span::after {
	background: #4c4c4e;
	height: 5px;
}

.nav-trigger span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.nav-trigger span::before,
.nav-trigger span::after {
    content: '';
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    transition: all .15s;
}
.nav-trigger span::before {
    top: -10px;
}
.nav-trigger span::after {
    bottom: -10px;
}
.nav-visible .nav-trigger span,
.nav-visible #header .nav-trigger span {
    background: rgba(34, 34, 33, 0);
}
.nav-visible .nav-trigger span::before,
.nav-visible .nav-trigger span::after {
    background: #4c4c4e;
}
.nav-visible #nav .nav-trigger span::before,
.nav-visible  #nav .nav-trigger span::after {
	background: #fff;
}
.nav-visible .nav-trigger span::before {
    -webkit-transform: translate(5px, -4px) rotate(45deg);
    -ms-transform: translate(5px, -4px) rotate(45deg);
    -o-transform: translate(5px, -4px) rotate(45deg);
    transform: translate(5px, -4px) rotate(45deg);
}
.nav-visible .nav-trigger span::after {
    -webkit-transform: translate(5px, 4px) rotate(-45deg);
    -ms-transform: translate(5px, 4px) rotate(-45deg);
    -o-transform: translate(5px, 4px) rotate(-45deg);
    transform: translate(5px, 4px) rotate(-45deg);
}

#main {
	padding-bottom: 90px;
}
#main > section {
	padding-top: 60px;
}

.newsletter {
	background: #47aa42;
	padding: 40px 0 ;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
.newsletter p {
	padding-left: 30%;
	margin-bottom: 0;
}

.newsletter p:first-of-type {
	font-style: italic;
	font-weight: 600;
	font-size: 12px;
}

.newsletter p:last-of-type {
	font-size: 30px;
	font-weight: 400;
}
.newsletter-form {
	display: inline-block;
	background: #47AA42;
}
.newsletter-form input {
	border: none;
	border-radius: 0px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	font-size: 12px;
	padding: 18px 16px;
	width: 220px;
	height: 53px;
}

.newsletter-form button {
	background: rgba(255, 255, 255, 0.2);
	width: 60px;
	height: 53px;
	border: none;
	margin-left: -3px;
	color: #fff;
	font-size: 40px;
	transition: ease-in-out 0.2s;
}

.newsletter-form button:hover {
	background: #fff;
	color: #47aa42;
}

.newsletter-form input:focus {
	outline: none;
}

.newsletter-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.newsletter-form input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.newsletter-form input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.newsletter-form input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

#footer {
	background: #fff;
	padding: 20px 0 40px;
}

#footer, #footer a {
	color: #42495c;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	font-family: "Open Sans", sans-serif;
}

#footer a:hover {
	text-decoration: underline;
}

#footer .logo img {
	display: inline-block;
	max-height: 70px;
	margin-bottom: 15px;
}

#footer .social {
	padding-top: 17px;
	margin-bottom: 18px;
}

#footer .social a {
	color :#fff;
	font-size: 20px;
}

#footer .social a {
	padding-top: 8px;
	text-decoration: none;
}

#footer nav li a {
	border-right: 1px solid #42495c;
	padding-right: 10px;
	margin-right: 10px;
}
#footer nav li:last-of-type a {
	padding-right: 0;
	margin-right: 0;
	border: none;
}

aside nav,
aside .widget {
	margin-bottom: 30px;
}

aside ul {
	padding: 0;
	margin: 0;
}
aside li {
	list-style: none;
	display: block;
	margin-bottom: 10px;
}
aside li a,
.nav-accordion dt > a,
.nav-accordion dt span {
	position: relative;
	display: block;
	padding: 15px;
	background: #47aa42;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}
aside li a:after,
.nav-accordion dt > a:after,
.nav-accordion dt span:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url('assets/images/lines.png');
	/*mix-blend-mode: screen;
	opacity: .5;*/
}
aside li a:hover,
aside .active a,
.nav-accordion dt > a:hover,
.nav-accordion dt span:hover,
.nav-accordion dt.active > a,
.nav-accordion dt.active span {
	opacity: .6;
	text-decoration: none;
	color: #fff;
}

.term-resource_category aside li a,
.single-resource aside li a {
	padding-right: 48px;
	background-size: 18px;
	background-position: 15px center;
	background-repeat: no-repeat;
}

.term-resource_category aside li a:before,
.single-resource aside li a:before {
	display: block;
	content: '';
	width:  15px;
	height: 15px;
	border-bottom:  3px solid #fff;
	border-right:  3px solid #fff;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: ease-in-out .3s;
}
.term-resource_category aside li a:hover:before,
.single-resource aside li a:hover:before {
	right: 20px;
}

.term-resource_category .post-listing + .aligncenter,
.post-listing + .aligncenter {
	padding-top: 30px;
}
.widget h5 {
	display: none;
}

/* ---------------------------
	Specific
--------------------------- */
.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
.clearfix:after {
	clear: both
}
.clearfix {
	zoom: 1
}


.aligncenter {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.alignleft {
	text-align: left;
}
.alignright {
	text-align: right;
}
img.aligncenter {
	display: block;
}
img.alignleft {
	float: left;
	margin: 0 30px 30px 0;
}
img.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

.alert {
	text-align:left;
	padding: 15px 20px;
	border-left: 10px solid #eee;
	font-size: 16px;
	line-height: 20px;
	background:#fafafa;
	position:relative;
	z-index:9999;
	margin-bottom: 15px;
}
.alert-error {
	background-color: #fcf2f2;
	border-color: #b94a48;
	color:#b94a48;
}
.alert-warning {
	color: #c09853;
	background-color: #fefbed;
	border-color: #c09853;
}
.alert-info {
	background-color: #f0f7fd;
	border-color: #d0e3f0;
}
.alert-success {
	color: #468847;
	background-color: #dff0d8;
	border-color: #468847;
}

.social {
	display: flex;
	padding: 0;
	justify-content: flex-end;
}
.social li {
	list-style: none;
}
.social a {
	display: block;
	text-decoration: none;
}
.social i {
	display: block;
	margin-right: 8px;
	width: 40px;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}
.social i.fa-youtube {
	background: #b31217;
}
.fa-youtube:before {
	content: '\f16a';
}
.fa-facebook {
	background: #3B5998;
}
.fa-twitter {
	background: #1dcaff;
}
.fa-instagram {
	background: #B2487C;
}


.social a:hover,
.social a:focus {
	text-decoration: none;
}
.social a:hover i {
	opacity: 0.5;
}

/* events */

.event {
	background: #fff;
	margin:10px 0 20px 0;
}
.event a {
	text-decoration: none;
}
.event .inner {
	padding: 0 70px;
}
.title-date {
	display: flex;
	align-items: center;
	background: #47aa42;
	color: #fff;
	padding: 5px;
}
.title-date p {
	border: 1px solid #fff;
	margin: 5px;
    font-size: 16px;
    width: 45px;
    text-align: center;
    text-transform: uppercase;
}
.title-date h4 {
	margin-bottom: 0px;
	font-size: 24px;
	margin-left: 10px;
}
.event-img {
	max-width: 100%;
	margin: 15px 0;
}
.inner .details {
	border-bottom: 1px solid #42495c;
	padding-top: 15px;
	padding-bottom: 10px;
}
.inner .details p {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #4c4c4c;
	margin-bottom: 0;
}
.inner .details .date {
	position: relative;
	margin-left: 35px;
}
.inner .details .date:before {
	content: "\f133";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	font-size: 20px;
	display: block;
	position: absolute;
	left: -27px;
	top: -4px;
}
.inner .details .location {
	position: relative;
	margin-left: 60px;
}
.inner .details .location:before {
	content: "\f041";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	font-size: 20px;
	display: block;
	position: absolute;
	left: -20px;
	top: -4px;
}
.inner .text {
	padding: 15px 0;
	font-size: 16px;
	line-height: 1.5;
	color: #4c4c4c;
}
.event-nav {
	margin-top: 10px;
	margin-bottom: 30px;
}
.event-nav li {
	list-style: none;
}
.event-nav a {
	position: relative;
	background: #47aa42;
	display: block;
	text-decoration: none;
	color: #fff;
	text-align: left;
	padding: 18px 15px;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	align-self: center;
	text-transform: uppercase;
	transition: ease-in-out 0.2s;
	margin-bottom: 10px;
}
.event-nav a:hover,
.event-nav .active a {
	opacity: .6;
}
.event-nav a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url('assets/images/lines.png');
	/*mix-blend-mode: screen;
	opacity: .5;*/
}
.resource-header {
	padding: 30px 0;
}
.resource-header .resource-header-img {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 350px;
	position: relative;
}

.intro {
	padding-bottom: 30px;
}
.intro .inner {
	padding: 30px;
	padding-top: 200px;
	background-position: center;
	background-size: cover;
}
.intro h1 {
	color: #fff;
	font-size: 50px;
	max-width: 400px;
}
.term-resource_category .bg-white {
	font-size: 18px;
}

.term-name,
.term-resource_category section header,
.single-resource section header {
	text-align: center;
	text-transform: uppercase;
	color: #47aa42;
	margin-bottom: 50px;

}
.term-resource_category section header h3 {
	margin: 0;
	font-weight: normal;
	font-size: 24px;
}
#main h3.green {
	color: #fff;
	background: #47aa42;
	padding: 10px 0;
	font-weight: bold;
}


.post-listing a {
	position: relative;
	display: block;
	height: 300px;
	background-position: center;
	background-size: cover;
	margin-bottom: 30px;
}
.post-listing span {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	padding: 10px;
	text-transform: uppercase;
	line-height: 1.4;
	background-color: #47aa42;
	color: #fff;
}
.post-listing h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 90%;
	margin: 0;
	padding: 15px 20px;
	border-bottom: 5px solid #47aa42;
	background: rgba(255,255,255, .8);
	font-size: 20px;
	font-weight: normal;
	color: #47aa42;
}
/*.post-listing a:hover h3 {
	background: #fff;
}*/
.resource-listing .col-xs-12 {
	display: none;
}

.resource-listing h3 {
	width: 100%;
	border: 0;
	background-color: #47aa42;
	color: #fff;
}
.resource-listing span {
	padding-left: 25px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 22 24"><path fill="#ffffff" fill-rule="evenodd" d="M19.167 2.5H14.29C13.8 1.147 12.517.167 11 .167c-1.517 0-2.8.98-3.29 2.333H2.833A2.34 2.34 0 0 0 .5 4.833v16.334A2.34 2.34 0 0 0 2.833 23.5h16.334a2.34 2.34 0 0 0 2.333-2.333V4.833A2.34 2.34 0 0 0 19.167 2.5zM11 2.5a1.17 1.17 0 0 1 1.167 1.167A1.17 1.17 0 0 1 11 4.833a1.17 1.17 0 0 1-1.167-1.166A1.17 1.17 0 0 1 11 2.5zM8.667 18.833L4 14.167l1.645-1.645 3.022 3.01 7.688-7.689L18 9.5l-9.333 9.333z"/></svg>');
	background-size: 11px;
	background-position: 8px center;
	background-repeat: no-repeat;
}


.single-post #main {
	padding-bottom: 30px;
}

.single-post .intro {
	height: 350px;
	margin-bottom: -100px;
	background-position: center;
	background-size: cover;
}
.page-events .intro {
	margin-bottom: 0;
}

.single-post aside {
	padding-top: 130px;
}

.bg-white {
	background-color: #fff;
	padding-bottom: 50px;
}
.term-0 .bg-white .p1 {
	font-size: 22px;
	font-weight: bold;
}
.bg-white .p2 {
	font-size: 20px;
}

h3.category {
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	background-color: #47aa42;
	line-height: 2;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
article > div.bg-white {
	padding: 30px;
}

body.page-404 .intro,
body.search-results .intro,
body.search-no-results .intro {
	background: url(assets/images/page-header.jpg) center no-repeat;
	background-size: cover;
	padding-top: 300px;
}
body.page-404 #nav {
	margin: 0;
}
body.page-404 .intro {
	margin-bottom: -60px;
}
body.page-404 #main section {
	padding: 0;
	padding-bottom: 100px;
}
body.page-404 #main .bg-white {
	padding: 30px;
	font-size: 18px;
}


.home-post {
	display: block;
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	margin-top: 40px;
}

.home-post-high {
	height: 640px;
}

.page-home .home-post {
	margin-top: 0;
}

.page-home .home-post p {
	top: 15px;
	left: 15px;
}

.page-home .home-post h4 {
	left: 15px;
	bottom: 15px;
}

.home-post p {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 1.4px;
	display: block;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	padding: 6px 14px;
	background: #47aa42;
}

.home-post a {
	color: #fff;
	text-decoration: none;
}
.page-home .home-post h4 {
	padding: 10px;
	padding-left: 16px;
	z-index: 9999;
}
.page-home .home-post h4 a {
	font-size: 14px;
	color: #47aa42;
	letter-spacing: 1.4px;
	display: block;
	margin-top: 6px;
	position: relative;
	text-transform: uppercase;
	padding-left: 20px;
}
.page-home .home-post.orange h4 a {
	color: #f69e1c;
	letter-spacing: 1.4px;
	display: block;
	margin-top: 6px;
	position: relative;
	text-transform: uppercase;
	padding-left: 20px;
}
.page-home .home-post h4 a::before {
	content: '\f02b';
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
		color: #47aa42;
		font-size: 14px;
		width: 15px;
		height: 15px;
		display: block;
	position: absolute;
	left: 0;
}
.page-home .home-post.orange h4 a::before {
	content: '\f02b';
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
		color: #f69e1c;
		font-size: 14px;
		width: 15px;
		height: 15px;
		display: block;
	position: absolute;
	left: 0;
}
.home-post h4 {
	max-width: 600px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 32px 24px 26px 24px;
	color: #42495c;
	font-size: 24px;
	line-height: 28px;
	border-bottom: 4px solid #47aa42;
	background: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
	width: 85%;
	transition: ease-in-out 0.3s;
}
.home-post h4:hover {
	background: rgba(255, 255, 255, .96);
}

.page-home .home-post-new h4 {
	right: 15px;
	width: auto !important;
}
.page-home .home-post-new h4 {
	background: #EC6B53;
}
.home-post-new h4 {
	position: relative;
	background: #30beb3;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 20px;
	color: #fff;
	border-bottom: none;
	left: -15px !important;
	bottom: -307px !important;
}
.home-post-new.small h4 {
	left: -15px !important;
	bottom: -187px !important;
}
.home-post-new h4:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url('assets/images/lines.png');
	/*mix-blend-mode: screen;
	opacity: .5;*/
}
.home-post-new.home-post-high {
	height: 420px;
}
.home-post-new p a {
	color: #47AA42;
	font-size: 12px;
}

.home-post-large h4 {
	width: 50%;
}

.page-home .home-post-new p a {
	color: #fff;
}
.page-home .home-post-new p {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><path fill="#fff" fill-rule="evenodd" d="M12.25 2.25H9.115A2.258 2.258 0 0 0 7 .75c-.975 0-1.8.63-2.115 1.5H1.75c-.825 0-1.5.675-1.5 1.5v10.5c0 .825.675 1.51.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5V3.75c0-.825-.675-1.5-1.5-1.5zM7 2.25c.412 0 .75.337.75.75s-.338.75-.75.75A.752.752 0 0 1 6.25 3c0-.413.338-.75.75-.75zm-1.5 10.5l-3-3 1.058-1.057L5.5 10.627l4.943-4.942L11.5 6.75l-6 6z"/></svg>');
	background-color: #EC6B53;
	background-size: 12px 14px;
	background-repeat: no-repeat;
	background-position: 9px center;
	margin: 0;
	padding: 10px;
	padding-left: 30px;
	border: 0;
}

.home-post h4 span {
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	color: rgba(66, 73, 92, 0.63);
	display: inline-block;
	width: 100%;
}
/*.home-post.red h4 {
	border-bottom: 4px solid #EC6B53;
}
*/
.home-post.orange p {
	background: #f69e1c;
}
.home-post-new.orange p {
	background: #f69e1c;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><path fill="#fff" fill-rule="evenodd" d="M12.25 2.25H9.115A2.258 2.258 0 0 0 7 .75c-.975 0-1.8.63-2.115 1.5H1.75c-.825 0-1.5.675-1.5 1.5v10.5c0 .825.675 1.51.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5V3.75c0-.825-.675-1.5-1.5-1.5zM7 2.25c.412 0 .75.337.75.75s-.338.75-.75.75A.752.752 0 0 1 6.25 3c0-.413.338-.75.75-.75zm-1.5 10.5l-3-3 1.058-1.057L5.5 10.627l4.943-4.942L11.5 6.75l-6 6z"/></svg>');
	background-size: 12px 14px;
	background-repeat: no-repeat;
	background-position: 9px center;
	margin: 0;
	padding: 10px;
	padding-left: 30px;
	border: 0;
}
.home-post-new.blue p {
	background: #39AFDD;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><path fill="#fff" fill-rule="evenodd" d="M12.25 2.25H9.115A2.258 2.258 0 0 0 7 .75c-.975 0-1.8.63-2.115 1.5H1.75c-.825 0-1.5.675-1.5 1.5v10.5c0 .825.675 1.51.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5V3.75c0-.825-.675-1.5-1.5-1.5zM7 2.25c.412 0 .75.337.75.75s-.338.75-.75.75A.752.752 0 0 1 6.25 3c0-.413.338-.75.75-.75zm-1.5 10.5l-3-3 1.058-1.057L5.5 10.627l4.943-4.942L11.5 6.75l-6 6z"/></svg>');
	background-size: 12px 14px;
	background-repeat: no-repeat;
	background-position: 9px center;
	margin: 0;
	padding: 10px;
	padding-left: 30px;
	border: 0;
}
.home-post-new.green p {
	background: #47aa42;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><path fill="#fff" fill-rule="evenodd" d="M12.25 2.25H9.115A2.258 2.258 0 0 0 7 .75c-.975 0-1.8.63-2.115 1.5H1.75c-.825 0-1.5.675-1.5 1.5v10.5c0 .825.675 1.51.5 1.5h10.5c.825 0 1.5-.675 1.5-1.5V3.75c0-.825-.675-1.5-1.5-1.5zM7 2.25c.412 0 .75.337.75.75s-.338.75-.75.75A.752.752 0 0 1 6.25 3c0-.413.338-.75.75-.75zm-1.5 10.5l-3-3 1.058-1.057L5.5 10.627l4.943-4.942L11.5 6.75l-6 6z"/></svg>');
	background-size: 12px 14px;
	background-repeat: no-repeat;
	background-position: 9px center;
	margin: 0;
	padding: 10px;
	padding-left: 30px;
	border: 0;
}
.home-post-new.orange p a {
	color: #fff;
}
.home-post-new.orange h4 {
	background: #f69e1c;
	border: none;
}
.page-home .home-post-new.blue h4 {
	background: #39AFDD;
}
.page-home .home-post-new.green h4 {
	background: #47aa42;
}
.home-post.orange h4 {
	border-bottom: 4px solid #f69e1c;
}
.home-post .blue h4 {
	border-bottom: 4px solid #39AFDD;
}
.home-post .green h4 {
	border-bottom: 4px solid #47aa42;
}
.page-home .home-post-large {
	height: 600px;
}
.page-home .home-post:hover {
	cursor: pointer;
}
.page-home .home-post.swiper-slide h4 {
	bottom: 0;
	left: 0px;
	padding-top: 16px;
	padding-bottom: 5px;
}
.page-home .home-post.swiper-slide p {
	position: static;
	background: transparent;
	color: #47aa42;
	text-align: left;
	padding: 0;
	margin: 0;
	position: relative;
	top: 0;
	left: 0;
	padding-top: 6px;
	padding-left: 20px;
}
.page-home .home-post.swiper-slide p::before {
	content: '\f02b';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #47aa42;
	font-size: 14px;
	width: 15px;
	height: 15px;
	display: block;
	position: absolute;
	left: 0;
}

/*.page-downloads h3 {
	font-weight: normal;
}
.page-downloads h4 {
	font-weight: bold;
	font-size: 20px;
}
.page-downloads li a {
	color: #47aa42;
	text-decoration: none;
}
.page-downloads li a:hover {
	text-decoration: underline;
}*/
/* ---------------------------
	Colors
--------------------------- */

/* PLANNING & SHOPPING */
	body.term-148 h3.category,
	body.term-148 aside li a,
	body.term-148 .resource-listing h3,
	body.term-148 .resource-listing span,
	body.term-148 .more .btn {
		background-color: #EC6B53;
	}
	body.term-148 .term-name {
		color: #EC6B53;
	}
	body.term-148 article p a,
	body.term-148 article li a  {
		color: #EC6B53;
		text-decoration: none;
	}
	body.term-148 article p a:hover,
	body.term-148 article li a:hover {
		opacity: .61;
	}


/* STORAGE & COOKING */
	body.term-4 h3.category,
	body.term-4 aside li a,
	body.term-4 .resource-listing h3,
	body.term-4 .resource-listing span,
	body.term-4 .more .btn {
		background-color: #39AFDD;
	}
	body.term-4 .term-name {
		color: #39AFDD;
	}
	body.term-4 article p a,
	body.term-4 article li a {
		color: #39AFDD;
		text-decoration: none;
	}
	body.term-4 article p a:hover,
	body.term-4 article li a:hover {
		opacity: .61;
	}

/* COMPOSING */
	body.term-11 h3.category,
	body.term-11 aside li a,
	body.term-11 .resource-listing h3,
	body.term-11 .resource-listing span,
	body.term-11 .more .btn {
		background-color: #F69E1C;
	}
	body.term-11 .term-name {
		color: #F69E1C;
	}
	body.term-11 article p a,
	body.term-11 article li a {
		color: #F69E1C;
		text-decoration: none;
	}
	body.term-11 article p a:hover,
	body.term-11 article li a:hover {
		opacity: .61;
	}

.more .btn:focus {
	color: #fff;
	text-decoration: none;
}
.term-post_tag aside {
	margin-top: 40px;
}
.tags {
	padding: 30px;
	background: #fff;
	color: #9b9b9b;
}
.tags h5 {
	color: #42495c;
	font-weight: bold;
	text-transform: uppercase;
}
.tags a {
	color: #9b9b9b;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	line-height: 2;
}
.tags a:hover {
	color: #47aa42;
}
.single-post article .tags {
	margin: 30px 0;
}
.single-post section {
	margin: 60px 0;
}
.single-post section header {
	margin-bottom: 40px;
	text-transform: uppercase;
}
.single-post section .container {
	padding-right: 0;
	padding-left: 0;
}

.btn,
.wpcf7 .wpcf7-submit {
	padding: 15px;
	background: #47aa42;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}
.btn-small {
	padding: 7px 15px;
	font-size: 16px;
}
.btn:hover,
.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-submit:focus {
	opacity: .8;
	color: #fff;
	text-decoration: none;
}


.pagination {
	text-align: center;
	font-size: 0;
	padding: 30px 0;
}
.pagination li {
	margin-right: 5px;
	list-style: none;
	display: inline-block;
}
.pagination a,
.pagination li span {
	display: block;
	width: 34px;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	line-height: 34px;
	background: #ccc;
	color: #fff;
	border: 0;
	margin-bottom: 5px;
}
.pagination .controls a {
	padding: 0 10px;
	width: auto;
}
.pagination a:hover,
.pagination .active a,
.pagination li span {
	background: #47aa42;
	color: #fff;
}

.breadcrumbs {
	padding-top: 15px;
}
.breadcrumbs,
.breadcrumbs a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
}
.breadcrumbs a:hover {
	color: #eee;
}
.breadcrumbs .breadcrumb_last {
	font-weight: 700;
}

.page-header {
	padding: 60px 0;
	background: #ccc;
}
.page-header h1,
.page-header .h1 {
	margin: 0;
	color: #fff;
}

.post-header {
	margin-bottom: 30px;
}
.post-header small {
	display: block;
}


.post-listing {
	margin-bottom: 0;
	padding: 0;
}
.post-listing article {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}
.post-listing .box article {
	padding: 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: #fff;
}
.post-listing .thumb {
	display: block;
	height: 200px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
}
.post-listing .box .thumb {
	margin: -15px;
	margin-bottom: 15px;
	border: 0;
	border-bottom: 1px solid #ccc;
}
.post-listing time {
	display: block;
}


.partner-listing {
	margin-top: 60px;
	text-align: center;
	color: #999;
}
.partner-listing .thumb {
	display: block;
	height: 200px;
	width: 200px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 15px;
	border-radius: 100%;
	background-color: #ddd;
}


.sitemap-listing li {
	list-style: none;
	display: block;
}
.sitemap-listing a {
	display: block;
	margin-bottom: 15px;
	padding: 15px;
	border-left: 5px solid #ccc;
}

.cta-section {
	margin-bottom: 30px;
	padding: 60px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	text-align: center;
}
.cta-section .btn {
	background: #ccc;
	color: #fff;
	margin: 0;
}
.cta-section .btn:hover {
	background: none;
	color: #ccc;
}
.page-our-story p > img {
	width: 100%;
	height: auto;
}


.nav-accordion dt,
.nav-accordion dd {
	margin-bottom: 10px;
}
.nav-accordion dd {
	display: none;
	padding: 30px 45px;
	padding-top: 0;
	background: #fff;
}
.nav-accordion dt.active + dd {
	display: block;
	margin-top: -10px;
}
.nav-accordion ul,
.nav-accordion li,
.nav-accordion li a {
	display: block;
	padding: 0;
	margin: 0;
}
.nav-accordion li a {
	padding: 5px;
	background: none;
	color: #9b9b9b;
	font-size: 14px;
	line-height: 1;
	opacity: 1;
}
.nav-accordion li a:hover,
.nav-accordion li.active a,
.nav-accordion dt.active > a,
.nav-accordion dt.active span {
	color: #47aa42;
}

.nav-accordion dt.active > a,
.nav-accordion dt.active span {
	background-color: #fff;
	opacity: 1;
}



/* ---------------------------
	Grid
--------------------------- */
@media (min-width: 1200px) {
	.container {
		width: 1200px
	}
}

.container-narrow {
	max-width: 800px;
}

ul.row {
	padding: 0;
	margin-bottom: 0;
}

.row .col-lg-5inrow {
	max-width: 20%;
}

#main div.gallery {
	display: flex;
	margin: 0 -15px;
	margin-bottom: 15px;
}
#main .gallery-item {
	display: inline-block;
	width: 20%;
	padding: 15px;
}
#main .gallery-icon {
	height: 100%;
	border: 1px solid #ccc;
}
#main .gallery-icon a {
	display: block;
	height: 100%;
}
#main .gallery-icon img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}
#main .gallery-icon a:hover img {
	opacity: 0.8;
}

#main .gallery-columns-1 .gallery-item {
	width: 100%;
}
#main .gallery-columns-2 .gallery-item {
	width: 50%;
}
#main .gallery-columns-3 .gallery-item {
	width: 33.33%;
}
#main .gallery-columns-4 .gallery-item {
	width: 25%;
}
#main .gallery-columns-6 .gallery-item {
	width: 16.66%;
}
#main .gallery-columns-7 .gallery-item {
	width: 14.28%;
}
#main .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
#main .gallery-columns-9 .gallery-item {
	width: 11.11%;
}



/* ---------------------------
	Plugins
--------------------------- */
/* contact form 7 */
.wpcf7 {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
	padding: 30px;
	background: #fff;
}
.wpcf7 p {
	margin-bottom: 25px;
}
.wpcf7 input,
.wpcf7 input:focus,
.wpcf7 textarea,
.wpcf7 textarea:focus {
	border: 1px solid #ddd;
	box-shadow: none;
	outline: 0;
	margin-top: 5px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	border-color: #7CC779;
}
.wpcf7 label {
	display: block;
	position: relative;
}
.wpcf7 label + br {
	display: none;
}
.wpcf7 strong {
	color: #d00;
}
.wpcf7-display-none {
	display: none;
}
.wpcf7 .screen-reader-response {
	display: none;
}
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.wpcf7 .wpcf7-submit {
	display: inline-block;
	width: auto;
	padding: 10px 15px;
	border: 0;
}
.wpcf7 .ajax-loader {
	margin: 0 auto;
	display: block;
	float: right;
}
.wpcf7-mail-sent-ok {
	background: #398f14;
	color: #fff;
	border-radius: 5px;
}
.wpcf7-response-output {
	width: 100%;
	margin-bottom: 30px;
	padding: 15px;
	text-align: center;
	border-radius: 5px;
}
.wpcf7-validation-errors {
	background: #d00;
	color: #fff;
	border-radius: 4px;
}
.wpcf7-not-valid-tip {
	opacity: 1;
	display: block;
	padding: 0;
	margin: 0;
	width: auto;
	top: 5px;
	right: 0;
	z-index: 1000;
	font-size: 12px;
	line-height: 45px;
	border: 0;
	color: #d00;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}
.wpcf7-not-valid-tip:hover,
.wpcf7 input.wpcf7-not-valid:hover + .wpcf7-not-valid-tip,
.wpcf7 input.wpcf7-not-valid:focus + .wpcf7-not-valid-tip {
	opacity: 0;
}
.wpcf7-not-valid-tip-no-ajax {
	color: #d00;
	display: block;
}


/**
 * Swiper 3.4.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: October 16, 2016
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
	background: transparent;
	width: 100%;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  position: relative;
	height: 270px;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007033'%2F%3E%3C%2Fsvg%3E");
  left: 15px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");*/
	/*background-image: url('assets/images/left.png');*/
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007033'%2F%3E%3C%2Fsvg%3E");
  right: 15px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");*/
	/*background-image: url('assets/images/right.png');*/
}

.swiper-button-white {
	display: block;
	width: 40px;
	height: 40px;
	background: #47aa42;
	color: #fff;
	text-align: center;
	padding-top: 4px;
	font-size: 25px;
	transition: ease-in-out 0.2s;
}

.swiper-button-white:hover {
	opacity: 0.8;
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 0.5;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fc1b32;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #fc1b32;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}


/* ---------------------------
	Media query
--------------------------- */

@media(max-width: 1210px) {
	#nav a {
		padding: 10px 14px;
		font-size: 10px;
	}
	#nav ul {
		justify-content: center;
	}
}

@media(max-width: 1200px) {
	#header .finder input {
		width: 230px;
	}
	#header .logo img {
		max-width: 370px;
		padding-top: 4px;
	}
/*	.page-home .home-post-new.green h4 {
		bottom: -251px !important;
	}*/
}

@media(min-width: 992px) {

	.nav-visible #nav div div ul {
		position: absolute;
		top: 100%;
		right: 0;
		z-index: 9999;
		display: block;
		width: 300px;
		padding: 15px;
		background: #7CC779;
	}

	.nav-visible #nav div div li {
		display: block;
	}
}

@media(max-width: 991px) {
	#header {
		padding: 10px 0 10px;
	}

	#header .logo img {
		height: 70px;
	}

	#header .colfinder, #header .colsocial {
		display: none;
	}

	#nav {
		display: none;
	}

	#nav a {
		font-size: 14px;
		padding: 14px 20px;
	}

	#nav .container {
		display: block;
	}

	#nav .nav-trigger {
		display: none;
	}

	#nav .container > a {
		display: block;
		width: 100%;
	}

	.nav-visible #nav {
		padding: 15px;
	}

	.nav-visible #nav, .nav-visible #nav ul , .nav-visible #nav ul li {
		display: block;
	}

	.nav-visible #nav ul li a {
		width: 100%;
		text-align: center;
	}

	.nav-trigger,
	#header .nav-trigger {
		display: block;
	}
	.newsletter p {
		padding-left: 0;
		text-align: center;
		display: block;
		margin-left: 0;
	}

	.newsletter-form {
		max-width: 290px;
		margin: 0 auto;
		/* padding-top: 30px; */
	}
	.social {
		justify-content: center;
	}
	#footer .logo img {
		max-height: 50px;
	}
	#footer,
	#footer .alignright {
		text-align: center !important;
	}
	#footer ul#menu-footer {
		padding-left: 0;
	}
	#main {
		padding-bottom: 35px;
		padding-top: 15px;
	}
	#main > section {
		padding-top: 20px;
	}
	.home-post h4 {
		width: 80%;
		font-size: 20px;
	}
	.home-post-new h4 {
		font-size: 18px;
	}
	.home-post-new p a,
	.home-post p {
		font-size: 10px;
	}
	.page-home .home-post h4 a,
	.home-post h4 span {
		font-size: 12px;
	}
	.term-resource_category .intro,
	.intro {
		padding-bottom: 15px;
	}
	.term-resource_category .intro h1 {
		font-size: 32px;
	}
	.term-resource_category .bg-white,
	.post-listing h3 {
		font-size: 16px;
	}
	.resource-listing span,
	.post-listing span {
		font-size: 12px;
	}
	.term-0 .bg-white .p1,
	.bg-white .p2 {
		font-size: 18px;
	}
	h3 {
		font-size: 20px;
	}
	.event-nav ul {
		padding-left: 0;
	}
	.title-date h4 {
		font-size: 20px;
	}
	.inner .details .location {
		margin-left: 35px;
	}
	.inner .details .location:before {
		left: -24px;
	}
	.event .inner {
		padding: 0 30px;
	}
	.term-resource_category .post-listing + .aligncenter,
	.post-listing + .aligncenter {
		padding-top: 10px;
	}
	.single-post aside {
		padding-top: 10px;
	}
	.single-post section {
		margin: 40px 0 10px 0;
	}
	.single-resource.single-post aside {
		padding-top: 60px;
	}
	.single-term aside {
		padding-top: 60px;
	}

}

@media(max-width: 768px) {

/*	.page-home .home-post-new.green h4 {
		bottom: -307px !important;
	}*/
	#header .logo img {
		height: 50px;
	}

}

@media(max-width: 568px) {
/*	.page-home .home-post-new.green h4 {
		bottom: -279px !important;
	}*/
}


/* K A-Z Foods 12 jan 2018 */
.single-food #nav,
.page-home #nav {
	margin-bottom: 0;
}
#food-categories {
	display: flex;
	margin-left: -5px;
	margin-right: -5px;
}
.food-cat {
	display: block;
	background-color:  #39afdd;
	background-image: url('assets/images/lines.png');
	color: #ffffff;
	font-size:  10px;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	text-align: center;
	padding: 10px 5px 0;
	text-decoration: none;
	width:  22%;
	margin:  0 5px;
	box-sizing: border-box;
	line-height: 32px;
	transition: ease-in-out .3s;
}
.food-cat:hover {
	text-decoration: none;
	opacity: .8;
	color:  #fff;
}
.food-cat .icon {
	display: block;
	width:  100%;
	height: 35px;
	background-position: center;
	background-size:  contain;
	background-repeat: no-repeat;
}
.btn-blue-az {
	background-color:  #39afdd;
	background-image: url('assets/images/lines.png');
	font-size: 14px;
	padding:  10px 30px;
}
.food-box {
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 280px;
	position: relative;
	margin-bottom: 30px;
}
.food-box h3 {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:  #39afdd;
	background-image: url('assets/images/lines.png');
	padding:  13px 25px;
	color:  #fff;
	font-size:  20px;
	color:  #fff;
	margin-bottom:  0;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 28px;
}
.food-box .term {
	display: flex;
	background-color:  #39afdd;
	/* background-image: url('assets/images/lines.png'); */
	color:  #fff;
	font-size: 12px;
	padding: 7px;
	position: absolute;
	left: 0;
	top: 0;
	text-transform: uppercase;
	font-weight: bold;
	padding-right: 15px;
	align-items: center;
}
.food-box:hover {
	cursor: pointer;
}
.food-box .term .icon {
	display: inline-block;
	width:  24px;
	height: 24px;
	background-position: center;
	background-size:  contain;
	background-repeat: no-repeat;
	margin-left: 2px;
}
.food-box .term span:last-of-type {
	padding-left: 8px;
	padding-top: 2px;
}
.btn-az-center {
	display: block;
	max-width: 175px;
	margin:  10px auto 0;
	text-align: center;
}
.food-box-big {
	min-height: 420px;
	background-size: cover;
}
#food-filters {
	background: #39afdd;
	padding:  20px;
	padding-left: 25px;
	margin: 35px 0 30px;
	display: flex;
	align-items: center;
}
#food-filters p {
	display: block;
	color:  #fff;
	font-size: 18px;
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	margin-bottom: 0;
	margin-right: 35px;
	widows: 15%;
}
#food-filters .filters {
	width:  85%;
	display: flex;
}
.food-filter {
	background-color: rgba(255,255,255,0.6);
	/* background-image: url('assets/images/lines-dark.png'); */
	/* background-blend-mode: lighten; */
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 10px;
	text-align: center;
	width: 25%;
	margin-left: 9px;
	transition: ease-in-out .3s;
}
.food-filter:hover,
.food-filter.active {
	background:  #fff;
	text-decoration: none;
}
.food-filter span:last-of-type {
	color:  #39afdd;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
}
.food-filter .icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	filter: invert() invert(27%) sepia(18%) saturate(621%) hue-rotate(186deg) brightness(91%) contrast(89%);
	margin-right: 10px;
	position: relative;
	overflow: hidden;
}

.no-results {
	text-align: center;
	color:  #39afdd;
	font-size: 22px;
}
.single-food article {
	max-width: 970px;
	position: relative;
	margin-left:  auto;
	margin-right: auto;
	margin-top: -60px;
	margin-bottom: 140px;
}
.single-food article .term {
	display: flex;
	align-items: center;
	background: #39afdd;
	padding:  15px;
	padding-top: 10px;
	padding-bottom: 6px;
	color:  #fff;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	position: absolute;
	left: 0;
	top: -48px;
	max-width: 275px;
}
.single-food article .term .icon {
	display: block;
	width: 32px;
	height: 32px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 15px;
}
.single-food article .term span:last-of-type {
	margin-top: -5px;
}
.single-food .food-back {
	display: block;
	background: #42495c;
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	color:  #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding:  6px;
	padding-left: 45px;
	position: absolute;
	right: 0;
	top: -36px;
	padding-right: 14px;
	text-decoration: none;
}
.single-food .food-back:before {
	display: block;
	content: '';
	width:  12px;
	height: 12px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	left: 20px;
	transition: ease-in-out .3s;
}
.single-food .food-back:hover:before {
	left: 15px;
}
.single-food .food-back.food-back-bottom {
	top: auto;
	left: auto;
	right: 0;
	bottom: -35px;
}
#similar-foods > h3 {
	color: #39afdd;
	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 30px;
	padding-bottom: 0;
}
#similar-foods #foodlisting  {
	margin-top: 0;
}
.food-see-all {
	background: #39afdd;
	color: #fff;
	display: block;
	max-width: 275px;
	font-size: 14px;
	letter-spacing: 1.4px;
	font-weight: 700;
	padding: 10px 18px;
	padding-left: 40px;
	text-transform: uppercase;
	text-decoration: none;
	margin:  0 auto 90px;
	position: relative;
	transition: ease-in-out .3s;
}
.food-see-all:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #fff;
	position: absolute;
	transform: translateY(-50%);
	top:  50%;
	left: 16px;
	transition: ease-in-out .3s;
}
.food-see-all:hover {
	color:  #fff;
	text-decoration: none;
	opacity: .8;
}
.food-see-all:hover:before {
	left: 20px;
}
.single-food h1 {
	font-size: 36px;
	color:  #42495c;
	margin-bottom: 15px;
}
.single-food article > div.bg-white {
	padding:  40px 45px;
}
.single-food article > div.bg-white h1 {
	font-weight: 400;
	font-size:  36px;
	margin-bottom: 15px;
}
.single-food article > div.bg-white {
	color:  #4d4d4d;
	font-size: 16px;
	line-height: 24px;
}
.single-food article > div.bg-white p {
	margin-bottom: 15px;
	color:  #4d4d4d;
	font-size: 16px;
	line-height: 24px;
}
.single-food article > div.bg-white h2,
.single-food article > div.bg-white h3,
.single-food article > div.bg-white h4,
.single-food article > div.bg-white h5,
.single-food article > div.bg-white h6 {
	color:  #39afdd;
	margin-bottom: 5px;
	padding-top: 5px;
}
.single-food article > div.bg-white h3 {
	font-size: 18px;
	line-height: 24px;
}
.single-food article > div.bg-white blockquote p {
	color:  #39afdd;
	font-size: 30px;
	line-height: 36px;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
}
.single-food article > div.bg-white blockquote {
	padding:  29px 45px 35px;
	border-top: 1px solid #39afdd;
	border-bottom: 1px solid #39afdd;
	color:  #39afdd;
	font-size: 30px;
	line-height: 36px;
	font-weight: 300;
	font-style: italic;
	max-width: 85%;
	margin:  0 auto 40px;
}
.single-food article > div.bg-white img {
	position: absolute;
	right: 0;
	left: 0;
	margin-bottom: 20px;
}
@media(max-width: 1200px) {
	#food-categories {
		flex-wrap: wrap;
	}
	#food-categories a {
		width: 48%;
		margin-bottom: 10px;
		margin-right: 0;
	}
}
@media(max-width: 991px) {
	#food-filters {
		flex-wrap: wrap;
	}
	#food-filters p {
		width: 100%;
		margin-bottom: 15px;
	}
	#food-filters .filters {
		width:  100%;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#food-filters .food-filter:first-of-type {
		margin-left: 0;
	}
	#food-filters .food-filter {
		width: 48%;
		margin-bottom: 15px;
		margin-left: 0;
	}
	.remove-padding-left.wpb_column .vc_column-inner {
		padding-left: 15px !important;
	}
	.mobile-switch-order {
		display: flex;
		flex-wrap: wrap;
	}
	.mobile-switch-order .order1 {
		order: 1;
	}
	.mobile-switch-order .order2 {
		order: 2;
	}
}
@media(max-width: 768px) {
	.single-food article > div.bg-white blockquote {
		padding:  29px 0 35px;
	}
	.single-food article > div.bg-white blockquote p {
		font-size: 22px;
	}
	#food-filters .food-filter {
		width: 100%;
	}
	.food-filter {
		justify-content: flex-start;
	}
	.single-food .food-back,
	.single-food article .term {
		left: auto;
		right: auto;
		top: auto;
		position: relative;
	}
}
@media(max-width: 568px) {
	#food-categories a {
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
		margin-left: 0;
	}
}
.vc_custom_1505377313915 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

/* -----------------
	Downloads
----------------- */
body.term-downloads_category #breadcrumbs,
body.page-downloads #breadcrumbs {
	display: none;
}
.downloads-intro {
	position: relative;
	padding-top: 60px;
	padding-bottom: 30px;
	color: #fff;
	background: #24b2a6;
	margin-bottom: 60px;
}
.downloads-intro .row > div > * {
	position: relative;
	z-index: 200;
}
.downloads-intro:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: url(assets/images/lines-dark.png);
	opacity: .1;
}
.downloads-intro h1 {
	margin: 0;
	font-weight: normal;
	font-size: 30px;
}
.downloads-intro i {
	font-size: 90px;
}
.downloads-listing > div {
	margin-bottom: 30px;
}
.downloads-listing a {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 20px;
	padding-bottom: 40px;
	background: #24b2a6;
	text-decoration: none;
	color: #fff;

}
.downloads-listing a > * {
	position: relative;
	z-index: 200;
}
.downloads-listing a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: url(assets/images/lines-dark.png);
	opacity: .1;
}
.downloads-listing a div {
	height: 250px;
	margin: -20px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: center center;
}
.downloads-listing a h2 {
	margin: 0;
	font-size: 20px;
	font-weight: normal;
}
.downloads-listing a span {
	position: absolute;
	right: 15px;
	bottom: 15px;
	transition: .2s all;
}
.downloads-listing a:hover span {
	bottom: 10px;
}

.downloads-sidebar {
	background: #fff;
	padding: 20px;
}

.downloads-sidebar h5 {
	position: relative;
	margin: -20px;
	margin-bottom: 20px;
	padding: 20px;
	padding-right: 50px;
	background: #24b2a6;
	color: #fff;
	text-transform: uppercase;
}
.downloads-sidebar h5 i {
	position: absolute;
	right: 20px;
	top: 50%;
	z-index: 100;
	margin-top: -10px;
	font-size: 20px;
}
.downloads-sidebar ul,
.downloads-sidebar li {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}
.downloads-sidebar > ul > li {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dadbdf;
}
.downloads-sidebar > ul > li:last-child {
	padding: 0;
	margin: 0;
	border: 0;
}
.downloads-sidebar ul ul {
	position: relative;
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px dashed #dadbdf;
}
.downloads-sidebar ul ul:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: -1px;
	width: 1px;
	height: 21px;
	background: #fff;
	z-index: 100;
}
.downloads-sidebar a {
	position: relative;
	display: block;
	color: #969aa4 !important;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px;
	transition: .2s all;
}
.downloads-sidebar a:hover,
.downloads-sidebar .active > a {
	color: #24b2a6 !important;
	text-decoration: none !important;
}
.downloads-sidebar ul ul a:before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: -20px;
	border-bottom: 1px dashed #dadbdf;
}

@media(max-width: 992px) {
	.downloads-listing {
		margin-bottom: 60px;
	}
}

@media(max-width: 768px) {
	.downloads-intro .col-lg-2 {
		display: none;
	}
}

.page-events .col-lg-8 > .alert {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 30px;
}

#nav .secondary ul {
	right: 15px !important;
}

/** map */
.sfw-map-wrapper {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0,0,0, .2);
	background: #fff;
}
.sfw-map-wrapper ul {
	display: flex;
	align-items: center;
	align-content: center;
	width: 100%;
	padding: 15px;
	margin: 0;
}
.sfw-map-wrapper li {
	list-style: none;
	display: block;
	color: #555;
	line-height: 30px;
	margin-right: 30px;
	font-size: 14px;
}
.sfw-map-wrapper li span {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background: #fdf775;
	float: left;
}
.sfw-map-wrapper li:first-child span {
	background: #01e95c;
}
.sfw-map-wrapper li:last-child span {
	background: #dc4536;
}

.sfw-map-wrapper #sfw-map {
	height: 600px;
}
@media (max-width: 767px) {
	.sfw-map-wrapper ul {
		display: block;
	}
	.sfw-map-wrapper li {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.sfw-map-wrapper li:last-child {
		margin: 0;
	}
}


#exitpopup-modal .exitpopup-modal-window {
	width: 100% !important;
	height: auto !important;
	top: auto !important;
}


.team-listing > div {
	padding-top: 25px;
	padding-bottom: 25px;
	font-size: 16px;
	line-height: 1.5;
}
.team-listing img {
	display: block;
	margin-bottom: 20px;
	border-radius: 100%;
	border: 2px solid #47ac4b;
}
.team-listing h2 {
	color: #47ac4b;
	margin: 0;
	font-size: 18px;
	line-height: 1.33;
}
.team-listing strong {
	font-size: 14px;
	ine-height: 1.71;
}
.team-listing p {
	margin-bottom: 10px;
}
.team-listing .lin {
	display: inline-block;
	color: #47ac4b;
	font-weight: bold;
	padding-left: 25px;
	font-size: 14px;
	line-height: 1.71;
	background: url(assets/images/icon-li.png) left center no-repeat;
	transition: .2s all;
	text-decoration: none;
}
.team-listing .lin:hover {
	opacity: .8;
	padding-left: 28px;
}

.vc_row.narrowframe {
	max-width: 970px;
	margin: -90px auto !important;
	margin-bottom: 0 !important;
	position: relative;
	z-index: 2000;
}
@media ( max-width: 768px ) {
	.vc_row.narrowframe {
		margin-top: 0 !important;
	}
}

.search-listing .downloads-listing a div {
	height: 208px;
}
.search-listing .downloads-listing {
	margin-bottom: 30px;
}


.filters {
	display: flex;
	justify-content: center;
/*	padding-bottom: 30px;*/
/*	flex-wrap: wrap;*/
}
.dropdown {
	position: relative;
	margin: 10px;
	margin-top: 0;
}
.dropdown span,
.dropdown a {
	display: block;
	padding: 12px 25px;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: bold;
}
.dropdown span:hover,
.dropdown a:hover {
	 cursor: pointer;
	 text-decoration: none;
}
.dropdown a {
	background-color: #fff;
	text-decoration: none;
	color: #969aa3;
}

.dropdown span {
	border-radius: 1px;
	padding-right: 60px;
	position: relative;
	border: solid 1px #23b1a5;
	background: #23b1a5;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
}
.dropdown span:after {
	 content: '';
	 width: 8px;
	 height: 8px;
	 position: absolute;
	 top: 50%;
	 right: 16px;
	 transform: rotate(135deg);
	 border-top: 2px solid #fff;
	 border-right: 2px solid #fff;
	 margin-top: -6px;
}
.dropdown a:hover {
	background: #23b1a5;
	color: #fff;
}
.dropdown ul {
	width: 100%;
	height: 0;
	padding: 0;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2000;
	opacity: 0;
	border-left: 1px solid #23b1a5;
	border-right: 1px solid #23b1a5;
}
.dropdown li {
	list-style: none;
	display: block;
	border-bottom: 1px solid #23b1a5;
}
.dropdown.active ul {
	height: auto;
	opacity: 1;
}
.dropdown ul {
	border-top: 1px solid #23b1a5;
}
.dropdown.hierarhical ul ul {
	overflow:visible;
	position: static;
	display: block;
	height: auto;
	border: 0;
	padding-left: 25px;
	margin-left: 5px;
	border-left: 1px dashed #dadbdf;
}
.dropdown.hierarhical li {
	border: 0;
	padding: 5px 25px;
	background: #fff;
}
.dropdown.hierarhical a {
	padding: 0;
	border: 0;
	padding-bottom: 15px;
}
.dropdown.hierarhical a:hover {
	background: none;
	color: #23b1a5;
}
.dropdown.hierarhical ul ul li {
	padding: 0;
}
.dropdown.hierarhical > ul {
	border-bottom: 1px solid #23b1a5;
}
.dropdown.hierarhical > ul > li:first-child {
	padding-top: 20px;
}

.dropdown.hierarhical ul ul a {
	position: relative;
}
.dropdown.hierarhical ul ul a:before {
	content: '';
	display: block;
	width: 15px;
	height: 0;
	border-bottom: 1px dashed #dadbdf;
	position: absolute;
	top: 6px;
	left: -25px;
}
.dropdown.hierarhical ul ul li:last-child a:after {
	content: '';
	display: block;
	width: 1px;
	height: 22px;
	background: #fff;
	position: absolute;
	top: 7px;
	left: -26px;
}

.selected-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 10px;
}

.selected-filters a {
	display: block;
	border: 1px solid #23b1a5;
	color: #23b1a5;
	background: #fff;
	padding: 5px 20px;
	line-height: 30px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 10px;
	margin-top: 0;
	font-weight: bold;
	font-size: 14px;
}
.selected-filters a span {
	font-size: 30px;
	float: right;
	line-height: 1;
	padding-left: 10px;
}

.form-week-foodwaste form > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.form-week-foodwaste input.email {
	background: #fff; 
	border-radius: 6px;
	border: solid 1px #ea862c;
	padding: 10px 20px;
	height: 48px;
	line-height: 48px;
}
.form-week-foodwaste input.button {
	background: #ea862c;
	margin-left: 10px;
	height: 48px;
	line-height: 48px;
	font-size: 24px;	
	color: #fff;
	font-weight: bold;
	border-radius: 6px;
	border: solid 1px #ea862c;
}
@media(max-width: 991px) {
	.form-week-foodwaste form > div {
		display: block;
	}
	.form-week-foodwaste input.button {
		margin: 10px auto;
		display: block;
	}
	.page-go-a-week-without-food-waste .vc_column-gap-30 .wpb_single_image {
		text-align: center !important;
	}
	.page-go-a-week-without-food-waste .vc_column-gap-30 .vc_single_image-img {
		max-width: 150px;
		margin: 0 auto;
		display: block;
	}
}



#cmplz-document {
	max-width: 100%;
}
#cmplz-document table {
	width: 100%;
	margin-bottom: 30px;
}
#cmplz-document td,
#cmplz-document th {
	padding: 5px 10px;
	border: 1px solid #ddd;
}