@charset "UTF-8";

/* Body */

body, html {
	margin: 0;
	padding: 0;
	font-family: "brother-1816", sans-serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.3;
	color: var(--grey);
}


/* Screen size */

@media only screen and (min-width: 768px) {
	.mobile-only {
		display: none !important;
	}
}


/* Colours */

:root {
--white: #FFFFFF;
--black: #000000;
--grey: #413843;
--light-grey: #EEEEEE;
--primary: #69bd2b /*#4d1955*/;
--secondary: #37992f /*#782462*/;
--tertiary: #d70d0d /*#005C89*/;
}


/* Typography */

h1 {
	font-size: 2.4em;
	margin-bottom: 30px;
}
h2 {
	font-size: 2em;
	margin-bottom: 15px;
}
h3 {
	font-size: 1.7em;
	margin-bottom: 10px;
}
h4 {
	font-size: 1.4em;
	margin-bottom: 7.5px;
}
h1, h2, h3, h4 {
	font-weight: 700; 
	font-style: normal;
	line-height: 1.2;
	color: inherit;
}

.content a {
	color: inherit;
	text-decoration: underline; 
	font-weight: 500;
}
a {
	color: inherit;
}
a:hover {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

hr {
	display: block; 
	margin-top: 1.5em; 
	margin-bottom: 1.5em; 
	margin-left: auto; 
	margin-right: auto; 
	border-style: solid; 
	border-width: 5px; 
	border-color: var(--light-grey);
}

.center {
	text-align: center !important;
}

li {
	margin-bottom: 0.25em;
}


/* Buttons */

.link-button-container {
	display: flex;
	padding: 15px 0;
}
.link-button {
	padding: 20px 30px;
	border-radius: 30px;
	background: var(--tertiary);
	cursor: pointer;
	margin: 0;
	box-shadow: none;
	transition: ease all 0.25s;
}
.link-button:hover {
	background-color: var(--secondary);
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.1);
}
.link-button-text {
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
}
a.link-button {
	text-decoration: none;
}


/* Images */

.alignleft {
	float: left;	
	margin: 15px 15px 15px 0;
}
.alignright {
	float: right; 
	margin: 15px 0 15px 15px;
}
.alignnone {}
.aligncenter {
	text-align: center;
	margin: 0 auto 0;
}

img {
	max-width: 100%;
	height: auto;
}


/* Structure */

.clear {
	content: "";
	clear: both;
	display: block;
}
.spacer {
	content: "";
	clear: both;
	display: block;
	padding: 15px;
}

* {box-sizing: border-box;}

.block {
	padding: 30px 0;
	position: relative;
}
.block:first-of-type {
	padding-top: 0;
}
.block > :first-child {
	margin-top: 0;
}
.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.small-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.row:after, .wrapper:after, .smallwrapper:after {
	content: "";
	clear: both;
	display: block;
}
.content-wrap {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}


[class*="col-"] {
	display: block;
	padding: 15px;
	width: 100%;
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}


/* Tables */

thead, th {
	background-color: var(--grey);
	color: var(--white);
	text-align: left;
	font-weight: 700;
}
th, td, tr {
	padding: 5px 10px; 
	font-size: 0.95em;
	border: solid 0.5px var(--grey);
}
td {
	width: auto;
}
tr {
	
}
tr:nth-of-type(even) {
	background-color: var(--light-grey);
}


/* Header */

.header {
	position: relative;
}
.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: solid 15px var(--primary);
	padding: 30px 15px;
}


/* Logo */

.logo {
	width: 30%;
}
.logo img {
	max-width: 300px;
}


/* Search */

.search {
	padding: 0 30px;
	border: none;
}
.header-search-form {
	height: 50px;
	display: flex;
	align-items: center;
	border-radius: 30px;
	border: 3px solid var(--white);
	background-color: var(--white);
	transition: ease all 0.5s;
}
.header-search-form:hover, .header-search-form:focus, .header-search-input:focus {
	border: 3px solid var(--primary);
}
.header-search-input {
	border-radius: 28px 0 0 30px;
	border: none !important;
	height: 100%;
	width: 75%;
	padding: 15px 30px;
	font-size: 1em;
	color: var(--grey);
	font-family: "brother-1816", sans-serif;
	font-weight: 300;
}
.header-search-input::placeholder {
	font-size: 1em;
	color: var(--grey);
}
.header-search-button {
	cursor: pointer;
	height: 100%;
	width: 25%; 
	border: none;  
	background-color: var(--white); 
	border-radius: 0 30px 30px 0; 
	-webkit-appearance: none;
	transition: ease all 0.5s;
}
.header-search-button:hover {
	background-color: var(--primary);
}


/* Navigation */

nav {
	margin: 0;
}
nav ul {
	padding: 0; 
	margin: 0; 
	list-style: none; 
	position: relative;
}
nav ul li {
	padding: 0; 
	margin: 0 -7px 0 0; 
	display:inline-block;
}
nav a {
	display: block;
	font-weight: 700;
	padding: 15px 20px;  
	text-decoration: none;
	color: var(--grey);
	transition: ease all 0.25s;
}
nav a:hover {
	background-color: var(--primary);
	color: var(--white);
	text-decoration:none;
}
nav ul ul {
	display: none; 
	position: absolute; 
	top: 100%;
}
nav ul li:hover > ul {
	display: inherit;
}
nav ul ul li {
	z-index: 9999; 
	min-width: 170px; 
	display: list-item; 
	position: relative; 
	background-color: var(--secondary);
	color: var(--white);
	border-bottom: 1px solid #FFFFFF; 
	font-size: 0.9em;
}
nav ul ul li a {
	color: var(--white);
}
nav ul ul li a:hover {
	background-color: var(--tertiary);
}
nav ul ul ul {
	position: absolute; 
	top: 0; left: 100%;
}
nav li > a:after {
	content:  " +"; 
	font-size: 0.8em;
}
nav li > a:only-child:after {
	content: '';
}
ul#menu-main-menu.menu, ul#menu-main-menu-1.menu {
	list-style-type: none; 
	list-style-image: none; 
	margin: 0; 
	padding: 0;
}
ul#menu-mobile-menu.menu {
	list-style-type: none; 
	list-style-image: none;
}
@media only screen and (min-width: 768px) {
	.topnav {
		display: none;
	}
}


/* Breadcrumbs */

.breadcrumb-wrap {
	background-color: var(--secondary);
	padding: 15px;
	color: var(--white);
	margin-bottom: 30px;
}
#breadcrumbs { 
	font-size: 0.85em; 
	font-weight: 500;
}
#breadcrumbs a {
	font-weight: 300; 
	text-decoration: none; 
	color: var(--white);
}
#breadcrumbs a:hover {
	text-decoration: underline;
}


/* Content */

.content {
	width: calc(66.66% - 30px);
	margin: 15px;
}
h1.page-title {
	color: var(--primary);
	margin-top: 0;
	margin-bottom: 15px;
}
.content h2, .content h3, .content h4 {
	color: var(--secondary);
}
.content img {
	border-radius: 45px;
}
.full-width {
	width: calc(100% - 30px) !important;
}


/* Sidebar */

.sidebar {
	width: calc(33.33% - 30px);
	background-color: var(--tertiary); 
	color: var(--white);
	margin: 15px;
	padding: 30px;
	border-radius: 45px;
}
.sidebar ul, .sidebar li {
	list-style: none; 
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0; 
	-webkit-padding-start: 0;
}
.sidebar h2 {
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0.83em;
}

.sidebar-news h3 {
	margin-top: 0;
}
.sidebar-article {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	margin: 15px 0;
}
.sidebar-article img {
	width: 100px;
	aspect-ratio: 1/1;
	border-radius: 15px;
	object-fit: cover;
	overflow: hidden;
}
.sidebar-article-content {
	width: calc(100% - 115px);
	margin-left: 15px;
}
.sidebar-article-content h4 {
	margin-top: 0;
}


/* FAQs */

.collapsible {
	background-color: var(--secondary);
	color: var(--white);
	cursor: pointer; 
	padding: 18px; 
	width: 100%; 
	border: none; 
	border-radius: 30px;
	text-align: left; 
	outline: none; 
	margin-bottom: 5px !important;
}
.faqactive, .collapsible:hover {
	background-color: var(--primary); 
	color: var(--white);
}
.collapsible:after {
	content: '\002B'; 
	font-weight: bold; 
	float: right; 
	margin-left: 5px;
}
.faqactive:after {
	content: "\2212";
}
.collapse-content {
	background-color: var(--white); 
	padding: 0; 
	max-height: 0; 
	overflow: hidden; 
	transition: max-height 0.2s ease-out;
}
.collapse-content .answer {
	padding: 15px;
}
.collapse-content .answer > :first-child {
	margin-top: 0;
}


/* Text Block */



/* Text and Image Block */

.text-image {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.text-image::before, .text-image::after {
	display: block;
	content: "";
	width: 100%;
	padding: 15px;
}
.text-image:nth-child(even) {
	flex-direction: row-reverse;
}
.text-image-text {
	width: 60%;
	padding: 0 30px;
}
.text-image-text > :first-child {
	margin-top: 0;
}
.text-image-image {
	width: 40%;
}
.text-image-image img {
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 45px;
}


/* Image Block */

.image-block-image {
	width: 100%;
}
.image-block-image img {
	aspect-ratio: 3/1;
	object-fit: cover;
	border-radius: 45px;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.05);
}


/* Info Box Block */

.info-box {
	display: flex;
	align-items: flex-start;
	border-radius: 60px;
	background-image: linear-gradient(to top, var(--primary), var(--secondary));
	color: var(--white);
	padding: 60px;
	margin-bottom: 30px;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.05);
}
.info-box .intro h2 {
	color: var(--white);
}
.info-box-content ul {
	column-count: 3;
	column-gap: 60px;
	margin-bottom: 30px;
}
.info-box-content ul li {
	display: inline-block;
	width: 100%;
}
.info-box-content ul li::before {
	font-family: 'Font Awesome Kit';
	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	content: '\f013';
	color: var(--tertiary);
	margin-left: -38px;
	padding-right: 20px;
}
.info-box .link-button-container {
	width: 100%;
	justify-content: center;
}


/* Meetings Block */

.meeting-block-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border-radius: 45px;
	background-color: var(--primary);
	color: var(--white);
	padding: 30px;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.05);
	position: relative;
}
.meeting-block-wrap i {
	position: absolute;
	top: 30px;
	right: 30px;
	font-family: 'Font Awesome Kit';
	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	font-size: 2em;
}
.meeting-block-top {
	width: calc(100% - 50px);
	margin-bottom: 30px;
}
.meeting-block-top h2 {
	color: var(--white);
}
.meeting-block-top > :first-child {
	margin-top: 0;
}
.meeting-block-content {
	width: 50%;
}
.meeting-block-content h3 {
	color: var(--white);
	margin-top: 0;
}
.meeting-title a {
	font-weight: 500;
	font-size: 1.2em;
	text-decoration: none;
}
.meeting-title a:hover {
	text-decoration: underline;
}
.meeting-venue {
	font-size: 0.9em;
}


/* Post Feed Block */

.post-feed-block {

}
.post-feed-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 30px; 
	align-items: stretch;
}
.post-feed-article {
	width: calc(33.33% - 20px);
	background-color: var(--light-grey);
	border-radius: 30px;
}
.post-feed-article img {
	width: 100%;
	aspect-ratio: 3/2;
	border-radius: 28px 28px 0 0;
	object-fit: cover;
}
.post-feed-article {
	padding-bottom: 90px;
	position: relative;
}
.post-feed-article-content {
	padding: 15px 30px 0;
}
.post-feed-article-content > :first-child {
	margin-top: 0;
}
.post-feed-article h4 a {
	font-weight: 700;
}
.post-feed-article .link-button-container {
	position: absolute;
	bottom: 15px;
	left: 30px;
}


/* Gallery Block */

.gallery-block {
	
}
.gallery-block-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 30px 0;
}
.gallery-thumb {
	width: calc(20% - 10px);
	aspect-ratio: 1/1;
	margin: 5px;
	overflow: hidden;
	grow: 1;
}
.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}


/* Single Post */

.single-date { 
	font-size: 0.85em;
	margin-bottom: 15px;
}


/* Meetings Archive */

.archive-meeting {
	display: block; 
	background-color: var(--light-grey);
	padding: 15px;
	margin-bottom: 5px;
}
.archive-meeting::after {
	content: ""; 
	clear: both; 
	display: block;
}
.files {
	display: block;
	padding-top: 15px;
}
.files span {
	display: inline-block;
	padding-right: 15px;
}


/* Social Share */

.social {
	display: inline-flex;
	background-color: var(--tertiary);
	color: var(--white);
	padding: 15px;
	border-radius: 30px;
	margin: 15px 0;
}
.social span {
	font-size: 0.85em;
	margin-right: 5px;
}
.social i {
	font-size: 1.2em;
	transition: ease all 0.25s;
}
.social i:hover {
	opacity: 0.6;
}
.social a {
	margin-right: 5px;
}
.social a:last-child {
	margin-right: 0;
}


/* Contact Form */

.contact-form-block {
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 120px;
	margin-bottom: -75px;
}
.contact-form-block-container {
	background-color: var(--white);
	border-radius: 30px;
	padding: 30px 60px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
}
.small-container .gfield .ginput_container,
.small-container .gfield .gfield_description,
.small-container div.ginput_complex label,
.small-container input:not([type='radio']):not([type='checkbox']):not([type='submit']), 
.small-container select, 
.small-container textarea,
.small-container .gform-field-label {
	margin-left: 0 !important;
}
.small-container .top_label .gfield .gfield_label {
	display: block !important;
	margin-left: 0 !important;
}
.small-container .gform_footer,
.small-container .gform_page_footer {
	display: block !important;
 }

.form-contact {
	padding: 30px 0 60px;
}
.form-card {
	background-color: var(--secondary);
	padding: 30px;
	border-radius: 60px;
}


/* Gravity Forms */

.gform-field-label {
	color: var(--grey) !important;
	font-weight: 700 !important;
	margin-left: 15px !important;
}
.gfield_consent_label {
	font-weight: 500 !important;
}
.ginput_container_consent {
	margin-left: 15px !important;
}
.gfield_consent_description {
	font-size: 0.75em !important;
	border: none !important;
	padding: 0 15px !important;
}
.gfield input[type=text], .gfield input[type=email] {
	border-radius: 30px !important;
	border: solid 1px var(--grey) !important;
	padding: 10px 15px !important;
}
.gfield input[type=checkbox] {
	border-radius: 50% !important;
	border: solid 1px var(--grey) !important;
}
input[type=submit] {
	color: var(--white) !important;
	font-weight: 700 !important;
	font-size: 1em !important;
	font-family: "montserrat", sans-serif;
	text-decoration: none !important;
	padding: 20px 30px !important;
	border-radius: 30px !important;
	border: none !important;
	background: var(--tertiary) !important;
	cursor: pointer !important;
	transition: ease all 0.5s !important;
}
input[type=submit]:hover {
	transform: scale(0.95) !important;
}





/* Footer */

.footer {
	background-color: var(--secondary);
	color: var(--white);
	position: relative;
}
.footer-top {
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--tertiary);
	font-size: 1.7em;
	padding: 15px;
}
.footer-top .social-links-wrap {
	border-right: 3px solid var(--white);
	height: 40px;
	padding: 0 15px;
}
.footer-top .social-links-wrap:last-of-type {
	border-right: none;
}
.footer-top a {
	font-weight: 400;
	text-decoration: none;
}
.footer-box {
	padding-top: 30px;
	text-align: center;
}
.footer-box .widget-title, .footer-box h3:first-of-type {
	margin-top: 0;
}
.footer-box ul, .footer-box li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-box li {
	padding-bottom: 5px;
}
.footer-box img {
	max-height: 120px;
}
.copyright {
	font-size: 0.75em;
	text-align: center;
}
.copyright a {
	color: var(--white);
}
