/* main styles */

/* colours
green = #4aae48
blue = #0976a9
red = #eb3524
*/


/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://use.typekit.net/gvw4qwv.css");



/* weights */
.light { font-weight: 300; /* light */ }
.regular { font-weight: 400; /* regular */ }
.medium { font-weight: 500; /* medium */ }
.bold { font-weight: 700; /* bold */ }



/* heading/button fonts */
.pm {
	font-family: proxima-nova, sans-serif;
}
.pm-medium {
	font-family: proxima-nova, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.pm-bold {
	font-family: proxima-nova, sans-serif;
	font-weight: 700;
	font-style: normal;
}



/* colours */
.text-green { color: #4aae48; }
.text-blue { color: #0976a9; }
.text-red { color: #eb3524; }
.text-gray { color: #e2e2e2; }
.text-black { color: black; }
.bg-gray-lt { background-color: #f3f3f3; }
.bg-gray { background-color: #ebe7eb; }
.bg-green { background-color: #4aae48; }
.bg-blue { background-color: #0976a9; }
.bg-red { background-color: #eb3524; }
.bg-alternating {
	background-color: white;
}
.bg-alternating:nth-child(odd) {
	background: #ebe7eb;
}
.bg-white-grad {
	background: rgb(2,0,36);
	background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(230,230,230,1) 0%, rgba(238,238,238,1) 4%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 100%);
}
.bg-white-grad-rev {
	background: rgb(2,0,36);
	background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(230,230,230,1) 0%, rgba(238,238,238,1) 4%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 100%);
}
.bg-green-grad {
	background: rgb(2,0,36);
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(53,122,51,1) 0%, rgba(74,174,72,1) 100%);
}
.bg-red-grad {
	background: rgb(2,0,36);
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(176,42,29,1) 0%, rgba(235,53,36,1) 100%);
}
.bg-blue-grad {
	background: rgb(2,0,36);
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(7,97,139,1) 0%, rgba(9,118,169,1) 100%);
}



/* main styles */
*,
*:after,
*::before {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a:hover {
	color: inherit;
	text-decoration: none;
}
a {
	cursor: pointer;
	outline: none !important;
}
html, body {
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
h3 ,h4 ,h5 ,h6 {
	font-family: proxima-nova, sans-serif;
}
p {
	line-height: 1.65;
}
button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus,
.custom-select:focus {
	outline: 0 !important;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
::selection {
	color: #ffffff;
	background-color: #0976a9;
}
a {
	text-decoration: none;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
a:hover,
a:focus,
a:active {
}
.top-mar { margin-top: 232px; }
.block-pad {
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.block-pad-top {
	padding-top: 5rem;
}
.block-pad-bot {
	padding-bottom: 5rem;
}
.title-shadow {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}



/* buttons */
.btn-green, .btn-contact {
	font-weight: 500;
    text-transform: uppercase;
    font-size: 1.15rem;
	font-family: proxima-nova, sans-serif;
	color: white;
	background-color: #4aae48;
	border: 2px solid #4aae48;
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
	border-radius: 0;
}
.btn-green:hover, .btn-green:focus, .btn-green:active, .btn-contact:hover, .btn-contact:focus, .btn-contact:active {
	color: #4aae48;
	background-color: white;
	border: 2px solid #4aae48;
}
.btn-table {
	font-weight: 500;
    text-transform: uppercase;
    font-size: .75rem;
	padding: .05rem .55rem;
	font-family: proxima-nova, sans-serif;
	color: white;
	background-color: #4aae48;
	border: 2px solid #4aae48;
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
	border-radius: 0;
}
.btn-table:hover, .btn-table:focus, .btn-table:active {
	color: #4aae48;
	background-color: white;
	border: 2px solid #4aae48;
}
.btn-green-alt {}
.btn-white {
	font-weight: 500;
    text-transform: uppercase;
    font-size: 1.15rem;
	font-family: proxima-nova, sans-serif;
	color: white;
	background-color: transparent;
	border: 2px solid white;
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
	border-radius: 0;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
	color: white;
	background-color: #4aae48;
	border: 2px solid #4aae48;
}



/* contact */
.contact-page form {
	font-family: proxima-nova, sans-serif;
}
.form-control {
	background-color: transparent;
}
.input-group .form-control {
		-webkit-box-shadow: none;
	border-bottom: 2px;
	border-style: none none solid none;
	border-radius:0; 
	border-color: #0976a9;
}
.input-group .form-control:focus {
	box-shadow: none;
	border-width: 0 0 3px 0;
	border-color: #0976a9;
  
}
.large-textarea {
	resize: none;
	height: 7rem !important;
}



/* hamburger */
.third-button:active, .third-button:focus {
	outline: none !important;
	box-shadow: none !important;
}
.third-button:active .animated-icon3 span, .third-button:focus .animated-icon3 span {
	opacity: .9;
}
.animated-icon3 {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	transform: rotate(0deg);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.animated-icon3 span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	transform: rotate(0deg);
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
}
.animated-icon3 span {
	background: white;
}
.animated-icon3 span:nth-child(1) {
	top: 0px;
		-webkit-transform-origin: left center;
		-moz-transform-origin: left center;
		-o-transform-origin: left center;
	transform-origin: left center;
}
.animated-icon3 span:nth-child(2) {
	top: 10px;
		-webkit-transform-origin: left center;
		-moz-transform-origin: left center;
		-o-transform-origin: left center;
	transform-origin: left center;
}
.animated-icon3 span:nth-child(3) {
	top: 20px;
		-webkit-transform-origin: left center;
		-moz-transform-origin: left center;
		-o-transform-origin: left center;
	transform-origin: left center;
}
.animated-icon3.open span:nth-child(1) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0px;
	left: 3px;
}
.animated-icon3.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}
.animated-icon3.open span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 21px;
	left: 3px;
}



/* navbar */
.navbar {
	padding: 0rem 1rem;
	min-height: 4.5rem;
}
.navbar-dark .navbar-toggler {
	color: transparent;
	border-color: transparent;
}
.navbar-expand-lg .navbar-nav .nav-link {
	font-family: proxima-nova, sans-serif;
	text-transform: uppercase;
}
.shrink {
	height: 100px;
	width: auto;
	transition: 0.4s; /* Adds a transition effect when the size is decreased */
}
.fixed-wrapper {
	position: fixed;
	top: 0;
	width: 100%;
	display: block;
	background-color: white;
	z-index: 99;
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
	color: rgba(255,255,255,.8);
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}
.member-login {
	font-family: proxima-nova, sans-serif;
	text-transform: uppercase;
	color: white;
	font-weight: 500;
	background-color: #4aae48;
	height: 4.5rem;
	padding: 0 2rem;
}
.member-login:hover, .member-login:active, .member-login:focus {
	color: white;
	background-color: #429C40;
}
.list-inline-item:hover {
	cursor: pointer;
}
.nav-socials .fa-stack .fa-circle {
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
}
.nav-socials .fa-stack:hover .fa-circle {
	color: #4aae48 !important;
}
.nav-socials .fa-stack:hover .fa-search {
	color: white;
}
.fa-stack {
    height: 2em;
    width: 2.1em;
}



/* search modal */
.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 0px solid rgba(0,0,0,.2);
	border-radius: 0rem;
	outline: 0;
}
.search-input {
    width: 80%;
    height: 3rem;
    padding: 1rem;
    border: 2px solid #e2e2e2;
}
.input-group-append {
	width: 20%;
}
.input-group-append button {
	padding: .5rem 2rem;
	border: 0 solid white;
	background: #4aae48;
	padding: .5rem 2rem;
		-webkit-transition: .21s ease-in-out;
		-moz-transition: .21s ease-in-out;
		-o-transition: .21s ease-in-out;
	transition: .21s ease-in-out;
}
.input-group-append button:hover, .input-group-append button:focus, .input-group-append button:active {
	color: white;
	background-color: #429C40;
}


/* carousel */
.carousel-heading h1 {
	font-size: 3.5rem;
	font-weight: 400;
}
.carousel-heading h2 {
	font-size: 2rem;
	font-weight: 300;
}
.carousel-heading {
	position: absolute;
	top: -15rem;
	z-index: 9;
	color: white;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.carousel-heading:after {
	content: "";
	width: 82px;
	height: 8px;
	left: 0;
	position: relative;
	display: block;
	top: 15px;
	content: '';
	background-color: #4aae48;
}



/* home sections */
.home-about img {
	max-width: 75px;
}
.become-member h4:after {
	content: "";
	width: 82px;
	height: 8px;
	left: 0;
	position: relative;
	display: block;
	top: 20px;
	content: '';
	background-color: #eb3524;
}
.homepage-callout, .homepage-callout .row {
	position: relative;
}
.homepage-callout .row {
	z-index: 5;
}
.homepage-callout:after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
	background: rgba(0,0,0,.25);
	z-index: 1;
}
.important-news .holder {
    height: 17rem;
    width: 100%;
}



/* default page template */
.header-pad {
	padding-top: 12rem;
	padding-bottom: 4rem;
	position: relative;
}
.header-pad .container {
	z-index: 9;
	position: relative;
}
.header-pad:after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
	background: rgb(2,0,36);
	background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0,0,0,0.38279061624649857) 0%, rgba(255,255,255,0) 100%);
	z-index: 1;
}
.header-pad h1 {
	font-family: proxima-nova, sans-serif;
	font-weight: 700;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.header-pad h1:after {
	content: "";
	width: 82px;
	height: 8px;
	left: 0;
	position: relative;
	display: block;
	top: 15px;
	content: '';
	background-color: #4aae48;
}
.default-page-body a, a.tag, a.media-content {
	color: #0976a9;
	font-weight: 700;
	text-decoration: none;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
.default-page-body a:hover,
.default-page-body a:focus,
.default-page-body a:active,
a.media-content:hover,
a.media-content:focus,
a.media-content:active,
a.tag:hover,
a.tag:focus,
a.tag:active {
	color: #4aae48;
}
.default-page-body hr {
	background-color: #4aae48;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}
.default-page-body .nav-tabs, .default-page-body .nav-tabs .nav-link {
	border: 0px solid white;
}
.nav-tabs .nav-item.show .nav-link:after, .nav-tabs .nav-link.active:after {
	content: "";
	width: 100%;
	height: 6px;
	left: 0;
	position: relative;
	display: block;
	top: 8px;
	content: '';
	background-color: #0976a9;
}
.table tr.pm-bold th {
	font-weight: 700;
}
.table td, .table th {
	border-top: 0px solid #dee2e6;
	font-weight: 400;
}



/* noticeboard */
.opp-slider span {
		-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.opp-slider span h5 {
	padding-top: 1rem;
}
.opp-slider .holder {
	height: 13rem;
	width: 100%;
}
.opp-slider
.opp-slider .slide {
	position: relative;
}
.slick-slide {
	padding: 1.5rem;
	outline: none !important;
}
.slick-prev:before, .slick-next:before {
	font-family: "Font Awesome 5 Pro";
	font-size: 2rem;
	color: #0976a9;
	line-height: 1;
	opacity: .75;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
}
.slick-next:before {
	content: '\f105';
}
.slick-prev:before {
    content: '\f104';
}
.count-indicator {
    position: relative;
    font-size: 60%;
    color: #4aae48;
    line-height: 0;
    vertical-align: baseline;
    top: -.75em;
    text-align: center;
}



/* call to action cta */
.cta-cover, .cta-cover .row {
	position: relative;
}
.cta-cover .row {
	z-index: 5;
}
.cta-cover:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.55);
	z-index: 1;
}
.cta-cover .text-white h2, .cta-cover .text-white p {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.cta-cover p {
	font-weight: 500; 
}
.cta-cover h2:after, .no-cta-cover h2:after  {
	content: "";
	width: 82px;
	height: 8px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: block;
	top: 25px;
	content: '';
	background-color: #0976a9;
}
.border-thin {
	position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100px;
    border-radius: 100%;
    border: 3px solid white; 
    background-color: transparent;
    color: red;
}
/* image block cta */
.lily-placeholder {
	height: 15rem;
}
.cta-grid figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 100px);
	width: calc(100% + 100px);
	opacity: 1;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
		-webkit-transform: translate3d(-80px,0, 0);
	transform: translate3d(-80px,0,0);
}
.cta-grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 1em;
	list-style: none;
	text-align: center;
}
/* Common style */
.cta-grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 527px;
	max-height: 360px;
	width: 31%;
	background: #0976a9;
	text-align: center;
	cursor: pointer;
}
.cta-grid figure img {
	position: relative;
	display: block;
	opacity: 1;
}
.cta-grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cta-grid figure figcaption::before,
.cta-grid figure figcaption::after {
	pointer-events: none;
}
.cta-grid figure figcaption,
.cta-grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.cta-grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: .75;
	background: #00000073;
	z-index: 4;
}
.cta-grid h3 {
	padding: 1rem 2rem;
	text-transform: capitalize;
	position: absolute;
	top: -10rem;
	left: 1rem;
}
.cta-grid figure h2 {
	word-spacing: -0.10em;
	font-weight: 300;
}
.cta-grid figure h2 span {
	font-weight: 800;
}
.cta-grid figure h2 {
	margin: 0;
}
.cta-grid figure p {
	margin: 5px 0 0 0;
	letter-spacing: 1px;
	font-size: 68.5%;
}




/* report links */
.link-list {
	background-color: #f3f3f3;
	padding: 3rem;
}
ul.report-links li {
	font-size: 1.15rem;
	font-weight: 400;
	padding-top: .75rem;
}
ul.report-links li i {
	color: #737373;
	margin-right: .75rem;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
ul.report-links li:hover i {
	color: black;
}



/* share class to escape report links */
.share-buttons li i {
    margin-right: 0rem !important;
	    -webkit-transition: all .21s ease-in-out;
	    -moz-transition: all .21s ease-in-out;
	    -o-transition: all .21s ease-in-out;
    transition: all .21s ease-in-out;
}
.share-buttons li {
    padding-top: 0rem !important;
}



/* events lily hover effect */
figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 100px);
	width: calc(100% + 100px);
	opacity: 0.7;
		-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
		-webkit-transform: translate3d(-80px,0, 0);
	transform: translate3d(-80px,0,0);
}
figure.effect-lily figcaption {
	text-align: left;
}
figure.effect-lily figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 50%;
	z-index: 5;
}
figure.effect-lily h2 {
	font-size: 1.55rem;
		-webkit-transform: translate3d(0,34px,0);
	transform: translate3d(0,34px,0);
}
figure.effect-lily p {
		-webkit-transform: translate3d(0,80px,0);
	transform: translate3d(0,80px,0);
}
figure.effect-lily h2 {
	text-transform: capitalize;
		-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}
figure.effect-lily p {
	color: white;
	opacity: 0;
		-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}
figure.effect-lily:hover img {
		-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}
figure.effect-lily:hover h2 {
		-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-lily:hover p {
		-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-lily:hover p {
		-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
		-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}
a.no-style {
	color: white !important;
}
.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	list-style: none;
	text-align: center;
}
/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
    min-width: 320px;
    max-width: 530px;
	max-height: 360px;
	width: 48%;
	background: #0976a9;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	opacity: 0.8;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: .9;
	background: #00000073;
	z-index: 4;
}
.grid h3 {
	padding: 1rem 2rem;
	text-transform: capitalize;
	position: absolute;
	top: -10rem;
	left: 1rem;
}
.grid figure h2 {
	word-spacing: -0.10em;
	font-weight: 300;
}
.grid figure h2 span {
	font-weight: 800;
}
.grid figure h2 {
	margin: 0;
}
.grid figure p {
	margin: 5px 0 0 0;
	letter-spacing: 1px;
	font-size: 68.5%;
}



/* individual event */
.bg-overlay:after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
	background-color: rgba(12, 12, 12, .5);
}
.datetime {
	font-family: proxima-nova, sans-serif;
	font-size: 1.35rem;
}
.datetime span {
	font-weight: 700;
	margin-right: .5rem;
}
.full-event-info h2, .full-event-info h3 {
	font-family: proxima-nova, sans-serif;
	font-weight: 500;
	font-size: 2rem;
}
.full-event-info h2:after, .full-event-info h3:after {
	content: "";
	width: 82px;
	height: 8px;
	left: 0;
	position: relative;
	display: block;
	top: 10px;
	content: '';
	background-color: #0976a9;
}
#map {
	height: 100%;
	min-height: 400px;
}
.share-buttons i {
	color: #0976a9 !important;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
.share-buttons i:hover, .share-buttons i:focus, .share-buttons i:active {
	color: #4aae48 !important;
}



/* publications modal */
.modal-dialog-scrollable .modal-content .modal-header {
	display: -ms-flexbox;
	display: flex;
		-ms-flex-align: start;
	align-items: flex-start;
		-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.modal-dialog-scrollable .modal-content .modal-title {
	margin-left: 2rem;
}



/* listings */
.bg-listing {
	background-color: #f3f3f3;
	min-height: 32rem;
	padding: 1rem;
}




/* footer */
.divider {
	border-top: 2px solid #b9b9b9;
}
.footer-link-title {
	color: #4aae48;
	text-decoration: none;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
.footer-link-title:hover,
.footer-link-title:focus,
.footer-link-title:active {
	color: black;
}
.footer-link {
	color: black;
	text-decoration: none;
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
.footer-link:hover,
.footer-link:focus,
.footer-link:active {
	color: #4aae48;
}



/* search and 404 */
.error-height, .minheight {
	min-height: 60vh;
}



/* our science topics */
.list-group i.fa {
	margin-right: 10px;
}
.list-group .alt-highlight {
	border-top: 1px solid #7e9ba5;
}
.list-group .alt-background a.list-group-item {
	background: #f5f5f5;
}
.list-group .alt-background .list-group-submenu a.list-group-item {
	background: #fff;
}
.list-group a {
	color: #333;
}
.list-group .list-group-submenu {
	margin-left: 20px;
	font-size: 15px;
}
.list-group.no-seperator > .list-group-item {
	border-bottom: none;
}
.list-group .collapsing {
		-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
.list-group .list-group-item:first-child,
.list-group .list-group-item:last-child {
	border-radius: 0;
}
.list-group > .list-group-submenu a {
	border-left: 4px solid #eee;
}
.list-group > .list-group-submenu .list-group-submenu a .list-group-item {
	background: #f5f5f5;
}
.list-group > .list-group-submenu .list-group-submenu a.selected.themed-bg {
	background: #7e9ba5;
}
.list-group > .list-group-submenu.alt-background a.list-group-item {
	background: #f5f5f5;
}
.list-group .list-group-item {
	border: none;
	border-bottom: 0px dashed #eee;
	margin-top: 2px;
	margin-bottom: 2px;
}
.list-group .list-group-item.active {
	background: white;
	color: #333;
	border-color: #eee;
}
.list-group .list-group-item.active.highlight {
	border-color: #29434e;
}
.list-group .list-group-item.selected {
	border-left: 4px solid #29434e !important;
	font-weight: bold;
}
.list-group.indicator-plus a[data-toggle="collapse"]:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f067";
	float: right;
	top: calc(50% - 7px);
	right: 20px;
	position: absolute;
	font-size: 12px;
	color: #333;
}
.list-group.indicator-plus a[data-toggle="collapse"][aria-expanded="true"] {
	font-weight: bold;
}
.list-group.indicator-plus a[data-toggle="collapse"][aria-expanded="true"]:after {
	content: "\f068";
}
.bordered-subnav {
	border: 0px solid #e6e6e6;
}
.bordered-subnav .list-group-item {
	padding: .75rem 2rem .75rem 1.25rem;
}
.our-science-link a {
	color: black;
}
.our-science-link a h5, .our-science-link a p, .our-science-link a:hover p {
	color: black;
}
.our-science-link a:hover h5 {
	color: #4aae48;
}
.our-science-link a h5, .our-science-link .card-img-top {
		-webkit-transition: all .21s ease-in-out;
		-moz-transition: all .21s ease-in-out;
		-o-transition: all .21s ease-in-out;
	transition: all .21s ease-in-out;
}
.our-science-link a:hover .card-img-top {
	opacity: .9;
}
.card-footer {
	padding: .75rem 1.25rem;
	background-color: rgba(0,0,0,.03);
	border-top: 0px solid rgba(0,0,0,.125);
}




/* queries */
@media screen and (min-width: 1200px) {
	.navbar-nav .nav-link {
		padding-right: .75rem !important;
		padding-left: .75rem !important;
	}
}
@media (min-width: 992px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: .60rem;
		padding-left: .60rem;
		text-transform: uppercase;
	}
}
@media screen and (max-width: 1200px) {
	.grid figure {
		min-width: 100%;
		max-width: 632px;
		max-height: 360px;
	}
	.cta-grid figure {
		min-width: 31%;
		max-width: 100%;
		width: 31%;
	}
}
@media screen and (max-width: 992px) {
	.navbar {
		padding: 2rem 1rem;
		min-height: 4.5rem;
	}
	.bg-listing {
		background-color: #f3f3f3;
		min-height: auto;
	}
}
@media screen and (max-width: 769px) {
	.carousel-heading {
		top: -15.5rem;
	}
	.carousel-heading h1 {
		font-size: 2.5rem;
		font-weight: 500;
	}
	.carousel-heading h2 {
		font-size: 1.75rem;
		font-weight: 300;
	}
	.shrink {
		height: 100px !important;
		display: inline-block;
	}
	.top-mar {
		margin-top: 182px;
	}
	.cta-grid figure {
		min-width: 99%;
		max-width: 100%;
		width: 99%;
	}
}
@media screen and (max-width: 569px) {
	.carousel-heading {
		top: -12.5rem;
	}
	.nav-tabs > li {
		width:100%;
	}
	.nav-tabs .nav-item {
		margin-bottom: 5px;
	}
	ul.report-links li {
		font-size: .95rem;
	}
	.link-list {
		padding: 3rem 1rem;
	}
	figure.effect-lily figcaption > div {
		padding: 1em;
	}
	.grid h3 {
		padding: 3rem 1rem;
	}
	.navbar {
		padding: 1rem 1rem;
		min-height: 3.5rem;
	}
	.top-mar {
		margin-top: 172px;
	}
	.carousel-heading h1 {
		font-size: 2.25rem;
		font-weight: 500;
	}
	.carousel-heading h2 {
		font-size: 1.25rem;
		font-weight: 400;
	}
	.slick-next {
		right: -5px;
	}
	.slick-prev {
		left: -5px;
	}
}
