/*------------------------------------
		COLORS
------------------------------------*/
/*
	Green Sea (Main): 		#16a085
	Turquoise (Accent):		#1abc9c
	Background:				#fafaf8
	Logo color:				#3b3d4c

*/


/*------------------------------------
		GENERAL
------------------------------------*/
html,
body {
	height: auto;
	width: auto;
	overflow-x: hidden;
}

html {
	position: relative;
	min-height: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-weight: 300;
}

body {
	background-color: #fafaf8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'IBM Plex Sans', sans-serif;
	color: #3b3d4c;
}

p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #595959;
}

/*------------------------------------
		BUTTONS
------------------------------------*/

.btn-sles {
	color: #ffffff;
	background-color: #16A085;
	border-color: #16A085;
}

.benefits .btn-sles {
	color: #ffffff;
	background-color: #16A085;
	border-color: #16A085;
}

.btn-sles:hover,
.btn-sles:focus,
.btn-sles:active,
.btn-sles.active,
.open .dropdown-toggle.btn-sles {
	color: #ffffff;
	background-color: #1abc9c;
	border-color: #16A085;
}

.benefits .btn-sles:hover,
.benefits .btn-sles:focus,
.benefits .btn-sles:active,
.benefits .btn-sles.active,
.benefits .open .dropdown-toggle.btn-sles {
	color: #ffffff;
	background-color: #1abc9c;
	border-color: #16A085;
}

.btn-sles:active,
.btn-sles.active,
.open .dropdown-toggle.btn-sles {
	background-image: none;
}

.btn-sles.disabled,
.btn-sles[disabled],
fieldset[disabled] .btn-sles,
.btn-sles.disabled:hover,
.btn-sles[disabled]:hover,
fieldset[disabled] .btn-sles:hover,
.btn-sles.disabled:focus,
.btn-sles[disabled]:focus,
fieldset[disabled] .btn-sles:focus,
.btn-sles.disabled:active,
.btn-sles[disabled]:active,
fieldset[disabled] .btn-sles:active,
.btn-sles.disabled.active,
.btn-sles[disabled].active,
fieldset[disabled] .btn-sles.active {
	background-color: #16A085;
	border-color: #16A085;
}

.btn-sles .badge {
	color: #16A085;
	background-color: #ffffff;
}

/*------------------------------------
		HEADER
------------------------------------*/
header {
	margin: 15px 0 0 0;
}

header img {
	width: 325px;
	height: auto;
	padding: 20px 0 5px 0px;
	margin: 0px auto;
}

@media screen and (max-width: 991px) {
	header {
		display: none;
	}
}

/*------------------------------------
		NAV
------------------------------------*/
.navbar {
	background-color: #fafaf8;
}

.navbar-light .navbar-toggler {
	border-color: rgba(0, 0, 0, .0);
}

.nav-link {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: .85em;
	text-transform: uppercase;
	font-weight: 500;
}

@media screen and (max-width: 1200px) {
	.nav-link {
		font-size: .75em;
	}
}

.navbar-light .navbar-nav .nav-link {
	color: #3b3d4c;
}

.navbar-light .nav-item.active .nav-link,
.navbar-light .nav-item:focus .nav-link,
.navbar-light .nav-item:hover .nav-link {
	color: #16a085;
}

.navbar-nav i {
	padding: 0px 5px 0px 0px;
	color: #16a085;
}

.navbar .nav-item:not(:last-child) {
	margin-right: 5px;
}

.dropdown-menu {
	margin-top: 0;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: .85em;
	text-transform: uppercase;
	font-weight: 500;
}

.dropdown-item {
	color: #3b3d4c;
}

@media (max-width: 992px) {
	/*.dropdown-toggle {
		display: none;
	}*/

	.dropdown-menu {
		display: block;
		position: relative;
		border-width: 0;
		padding: 0;
		margin: 0;
	}

	.dropdown-item {
		font-family: 'IBM Plex Sans', sans-serif;
		font-size: .85em;
		text-transform: uppercase;
		font-weight: 500;
		padding: .5rem 0rem;
		color: #3b3d4c;
		margin-left: 8px;
	}


	.dropdown-toggle::after {
		display: none;
	}
}


@media (min-width: 768px) {
	.nav-item a:after {
		display: block;
		content: '';
		border-bottom: solid 0px #16a085;
		transform: scaleX(0);
		transition: transform 150ms ease-in-out;
	}

	.nav-item a:hover:after {
		transform: scaleX(0);
	}
}

/*------------------------------------
		BANNER & TAGLINE
------------------------------------*/
.banner-section {
	background: url(../img/sl_hero_v3.jpg) no-repeat left center;
	background-size: cover;
	border-bottom: 15px solid #16a085;
}

.fullscreen {
	height: 550px;
}

@media (max-width: 767.98px) {
	.fullscreen {
		height: 500px !important;
	}
}

@media (max-width: 768px) {
	.fullscreen {
		height: 400px !important;
	}
}

.banner-tagline h1 {
	color: #fff;
	font-size: 4rem;
	font-weight: 600;
	line-height: 77px !important;
	margin-bottom: 20px;
}

@media only screen and (max-width : 1200px) {
	.banner-tagline h1 {
		font-size: 3.25rem;
	}
}

@media only screen and (max-width : 768px) {
	.banner-section {
		height:90vh;
	}
	.banner-tagline h1 {
		Margin-top:-175px;
		line-height: 50px !important;
		font-size: 3rem;
	}

	/* Turns off animate.css on mobile */
	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}
}

@media (max-width: 414px) {
	.banner-tagline h1 {
		font-size: 2.5rem;
	}
}

/*------------------------------------
		INTRODUCTION
------------------------------------*/
.introduction {
	padding: 100px 0px 50px 0px;
}

.introduction h3 {
	margin: 0 0 25px 0;
}

.introduction h5 {
	margin: 25px 0 0 0;
	padding: 0px 30px;
	line-height: 1.4em;
}

.introduction p {
	padding: 0px 20px;
}

.introduction a {
	color: #16a085;
}

.introduction a:hover {
	color: #1abc9c;
	text-decoration: none;
}

/*------------------------------------
		HOW IT WORKS
------------------------------------*/
.howitworks {
	padding: 60px 0px 50px 0px;
}

.howitworks h3 {
	margin: 0 0 25px 0;
}

.howitworks h5 {
	margin: 25px 0 0 0;
	padding: 0px 30px;
	line-height: 1.4em;
}

.howitworks p {
	padding: 0px 20px;
}

@media (max-width: 991px) {
	.howitworks {
		margin-bottom: -80px;
	}
}

/*------------------------------------
		REGION
------------------------------------*/
.region {
	padding: 70px 0px 50px 0px;
}

.region h4 {
	margin: 0 0 40px 0;
}

.text-sles {
	color: #16a085;
}

.region span {
	margin: 0 0 15px 0;
}

.region p {
	font-size: .96em;
	padding: 0px 0px;
}


/*------------------------------------
		BLOCKS
------------------------------------*/
.blocks {
	padding: 50px 0px 100px 0px;
}

.card {
	border: none;
	-ms-box-shadow: 0 0 20px rgba(46, 50, 51, .1);
	-o-box-shadow: 0 0 20px rgba(46, 50, 51, .1);
	box-shadow: 0 0 20px rgba(46, 50, 51, .1);
}

.card-text {
	font-size: .96em;
	margin: 5px 0 25px 0;
}

@media (max-width: 768px) {
	.card-deck {
		padding: 0px 10px;
	}
}

/*------------------------------------
		SIGN UP
------------------------------------*/
.signup-section {
	background:
		/* top, transparent red, faked with gradient */
		linear-gradient(rgba(22, 160, 133, .82),
			rgba(22, 160, 133, .82)),
		/* bottom, image */
		url(../img/signup_banner.jpg) no-repeat center;
	background-size: cover;
}

.signup-section .fullscreen {
	height: 500px;
}

@media (max-width: 767.98px) {
	.fullscreen {
		height: 550px !important;
	}
}

@media (max-width: 768px) {
	.fullscreen {
		height: 550px !important;
	}
}

@media (max-width: 766px) {
	.fullscreen {
		height: 800px !important;
	}
}

.signup-section .card {
	background-color:
		rgba(255, 255, 255, 0.8);
}

.signup-section h3 {
	margin: 0 0 10px 0;
}

.signup-section p {
	margin: 0 0 10px 0;
}

.signup-section input::placeholder {
	color: #3b3d4c;
	opacity: .5;
}

.signup-section .form-control {
	margin: 5px 0px;
}

.signup-section .btn {
	margin-top: 5px;
}

@media (max-width: 768px) {
	.signup-section .form-control {
		margin: 5px 0px;
	}

	.signup-section .btn {
		margin-top: 5px;
	}
}

/*------------------------------------
		LOWER NAV
------------------------------------*/
.lowernav {
	padding: 80px 0px 40px 0px;
	background-color: #20313b;
}

.lowlogo {
	width: 90%;
}

.lowernav p {
	color: #8c8c8c;
	margin: 8px 0 0 0;
	font-size: .9em;
	line-height: 1.2em;
}

.lowernav h5 {
	color: #fafaf8;
	margin: 10px 0 0 0;
	font-size: 1em;
}

.lowernav ul {
	padding: 5px 0 0 0;
}

.lowernav li {
	font-size: .9em;
	padding: 3px 0 0 8px;
}

.lowernav h5 a {
	color: #fafaf8;
	margin: 10px 0 0 0;
	font-size: 1em;
}

.lowernav h5 a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.lowernav li a {
	color: #16a085;
}

.lowernav li a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.lowernav .indent {
	margin: -2px 0 0 8px;
}

@media (max-width: 812px) {
	.lowlogo {
		width: 100%;
		padding: 0px 10px;
	}

	.lowernav li {
		font-size: .8em;
	}

	.lowernav p {
		margin: 8px 0 15px 0;
		padding: 0 10px;
	}

	.lowernav {
		padding: 50px 0px 50px 0px;
	}
}


/*------------------------------------
		FOOTER
------------------------------------*/
footer {
	height: 65px;
	background-color: #20313b;
}

footer p {
	color: #8c8c8c;
}

.cip {
	line-height: 17px;
	margin-top: 5px;
}

footer a {
	color: #8c8c8c;
	text-decoration: none;
}

footer a:hover {
	color: #1abc9c;
	text-decoration: none;
}

/*------------------------------------
		COLOR BANNER
------------------------------------*/
.color-banner {
	height: 60px;
	background-color: #16a085;
}

.color-banner h5 {
	color: #fafaf8;
	margin: 18px 8px;
}

@media (max-width: 812px) {
	.color-banner h5 {
		text-align: center;
		margin: 18px 0px;
	}
}

.breadcrumb {
	background: rgba(245, 245, 245, 0);
	float: right;
	margin: 0px -8px;
}

.breadcrumb li {
	font-size: .75em;
}

.breadcrumb a {
	color: #fafaf8;
}

.breadcrumb a:hover {
	color: #3b3d4c;
	text-decoration: none;
}

.breadcrumb>.active {
	color: #fafaf8;
}

.breadcrumb>li+li:before {
	content: "\002F\00a0";
}

.breadcrumb-item+.breadcrumb-item::before {
	color: #fafaf8;
}

/*------------------------------------
		PAGE CONTENT
------------------------------------*/
.page-content section {
	padding: 50px 10px 50px 10px;
}

.page-content h3 {
	margin: 0px 0px 15px 0px;
}

.page-content p {
	font-size: 1em;
	padding: 0 5px 0 0;
}

.page-content img {
	padding: 0;
}

.content-sidebar {
	margin: 50px 0px 25px 0px;
}

.content-sidebar hr {
	border: none;
	height: 2px;
	width: 75%;
	color: #16a085;
	/* old IE */
	background-color: #16a085;
}

.content-sidebar input {
	margin: 0 0 10px 0;
}

.content-sidebar button {
	margin-top: 0px;
}

.content-sidebar .input-group ul {
	text-align: center;
}

.content-sidebar .input-group label {
	font-size: .8em;
	margin: 0px 0 0px 0;
}

@media (max-width: 768px) {
	.content-sidebar .form-control {
		margin: 5px 0px;
	}

	.content-sidebar button {
		margin-top: 5px;
	}

	.content-sidebar {
		margin: 0px 0px 25px 0px;
	}
}

/*------------------------------------
		PROJECT
------------------------------------*/
.project-timeline h3 {
	margin: 0 0 25px 0;
	color: #16a085;
}

.project-timeline h4 {
	font-size: 1em;
	margin: 10px 5px;
}

.project-timeline h6 {
	font-size: .9em;
	margin: 10px 5px;
	text-transform: uppercase;
	color: #16a085;
}

.project-location a {
	color: #16a085;
	font-weight: 700;
}

.project-location a:hover {
	color: #1abc9c;
	text-decoration: none;
}

@media (min-width: 1200px) {
	.timeline-heading {
		padding: 10px 0 0 0;
	}
}

@media (min-width: 992px) {
	.timeline-panel {
		padding: 0 0 0 0 !important;
	}

	.timeline-panel .subheading {
		font-size: .9em;
	}
}

@media (min-width: 769px) {
	.timeline-panel .subheading {
		font-size: .9em;
	}
}

/*------------------------------------
		PROJECT MAP
------------------------------------*/

.embed-container {
	position: relative;
	padding-bottom: 80%;
	height: 0;
	max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-new h4 {
  font-size: 24px;
  font-weight: 600;
  color: #16a085;
  padding:0;
  margin:0px 0px 5px 0px;
}
.timeline-new p {
  color: #666;
  font-weight: 600;
  font-size: 18px;
}
ul.timeline-new {
	list-style-type: none;
	position: relative;
}
ul.timeline-new:before {
	content: ' ';
	background: #16a085;
	display: inline-block;
	position: absolute;
	left: 29px;
	width: 2px;
	height: 100%;
	z-index: 400;
}
ul.timeline-new > li {
	margin: 60px 0;
	padding-left: 20px;
}
ul.timeline-new > li:before {
	content: ' ';
	background: white;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: 3px solid #16a085;
	left: 20px;
	width: 20px;
	height: 20px;
	z-index: 400;
}


/*------------------------------------
		BENEFITS
------------------------------------*/
.benefits .intro {
	margin: 20px 0 35px 0;
}

.benefits h3{
	font-size: 25px;
}

.benefits span {
	color: #3b3d4c;
	font-weight: 700;
	line-height: inherit;
}

.benefits .card-hide a {
	color: #16a085;
	font-weight: 700;
}

.benefits .card-hide a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.benefits h5 {
	color: #16a085;
	margin: 0 0 10px 0;
}

.benefits h6 {
	padding: 0px 0px 10px 0;
}

.benefits .card-hide h6 {
	padding: 0px 0px 0px 0;
}

.benefits img {
	margin: 0 0 8px 0;
}

.benefits a {
	color: #16a085;
	font-weight: 600;
}

.benefits a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.benefits hr {
	border: none;
	height: 2px;
	width: 75%;
	color: #16a085;
	/* old IE */
	background-color: #16a085;
}

.benefits .card {
	margin: 0 0 25px 0;
	border: none;
}

.benefits .card-hide {
	padding: 25px 25px 10px 25px;
	background-color: #fafaf8;
}

@media (min-width: 764px) {
	.benefits .card .btn {
		width: 125px;
		margin-left: 18px;
	}

	.benefits .card-hide {
		padding: 10px 45px;
	}

	.benefits h6 {
		padding: 0px 10px 10px 20px;
	}
}

@media (max-width: 991px) {
	#climate-change p, #environment p, #community p, #safety p {
		padding: 0px 15px;
	}
}

/*------------------------------------
		LANDOWNERS
------------------------------------*/
.landowners a {
	color: #16a085;
	font-weight: 700;
}

.landowners a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.landowners hr {
	margin: 25px auto 15px;
}

.landowners figure {
	margin: 15px 0 0 0;
}

figcaption {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

/*------------------------------------
		ENVIRONMENT
------------------------------------*/
.environment a {
	color: #16a085;
	font-weight: 700;
}

.environment a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.environment span {
	color: #3b3d4c;
	font-weight: 700;
	line-height: inherit;
}

.environment .hr {
	border: none;
	height: 2px;
	width: 75%;
	color: #16a085;
	/* old IE */
	background-color: #16a085;
	margin-bottom: 20px;
	margin-top: 25px;
}

/*------------------------------------
		SAFETY
------------------------------------*/

.safety hr {
	border: none;
	height: 2px;
	width: 75%;
	color: #16a085;
	/* old IE */
	background-color: #16a085;
	margin-bottom: 20px;
}

.safety h6 {
	margin: 0 0 15px 0;
}


/*------------------------------------
		FAQ
------------------------------------*/
.faqaccordion {
	margin: 25px auto;
}

.faqaccordion .card {
	margin: 25px auto;
}

.faq a {
	color: #16a085;
	font-weight: 700;
}

.faq a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.faqaccordion .card,
.faqaccordion .card-header {
	border: none;
}

.faqaccordion .card,
.faqaccordion .card:last-child .card-header {
	border: none;
}

.faqaccordion .card-header {
	background: #fff;
}

.faqaccordion .card-hide {
	padding: 25px 25px 10px 25px;
	background-color: #fafaf8;
	;
}

.faqaccordion button .title {
	text-align: left;
	font-size: 14px;
	width: 245px;
	line-height: normal;
}

.faqaccordion button span {
	margin-left: 15px;
}

@media (min-width: 764px) {
	.faqaccordion .card-hide {
		padding: 25px 45px 10px;
	}

	.faqaccordion button .title {
		text-align: left;
		font-size: 16px;
		width: 600px;
	}
}

.faqaccordion .hightlight {
	color: #3b3d4c;
	font-weight: 700;
	line-height: inherit;
}

.faqaccordion .fa-stack {
	font-size: 15px;
}

.faqaccordion .btn {
	width: 100%;
	font-weight: bold;
	color: #16a085;
	padding: 0;
}

.faqaccordion .btn-link:hover,
.faqaccordion .btn-link:focus {
	color: #1abc9c;
	text-decoration: none;
}

.faqaccordion li+li {
	margin-top: 10px;
}

/*------------------------------------
		NEWS
------------------------------------*/
.newsarticle {
	margin: 25px auto;
}

.newsarticle .card {
	margin: 25px auto;
}

.faq a {
	color: #16a085;
	font-weight: 700;
}

.faq a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.newsarticle .card,
.newsarticle .card-header {
	border: none;
}

.newsarticle .card,
.newsarticle .card:last-child .card-header {
	border: none;
}

.newsarticle .card-header {
	background: #fff;
}

.newsarticle .card-hide {
	padding: 25px 25px 10px 25px;
	background-color: #fafaf8;
	;
}

.newsarticle .title {
	text-align: left;
	font-size: 14px;
	width: 100%;
	font-weight: bold;
	color: #16a085;
	padding: 0;
}

.newsarticle button span {
	margin-left: 15px;
}

@media (min-width: 764px) {
	.newsarticle .card-hide {
		padding: 25px 45px 10px;
	}

	.newsarticle .title {
		text-align: left;
		font-size: 16px;
		width: 100%;
		font-weight: bold;
		color: #16a085;
		padding: 0;
	}
}

.newsarticle .hightlight {
	color: #3b3d4c;
	font-weight: 700;
	line-height: inherit;
}

.newsarticle .fa-stack {
	font-size: 15px;
}

.newsarticle .btn {
	width: 100%;

}

.newsarticle .btn-link:hover,
.newsarticle .btn-link:focus {
	color: #1abc9c;
	text-decoration: none;
}

.newsarticle li+li {
	margin-top: 10px;
}

/*------------------------------------
		JOIN US
------------------------------------*/
.content-sidebar input::placeholder {
	color: #3b3d4c;
	opacity: .4;
}

.joinus input::placeholder {
	color: #3b3d4c;
	opacity: .5;
}

.joinus h4 {
	margin: 50px 0 0 0;
}

.joinus h5,
.joinus hr {
	margin: 0 0 50px 0;
}

.joinus a {
	color: #16a085;
	font-weight: 700;
}

.joinus a:hover {
	color: #1abc9c;
	text-decoration: none;
}

.joinus .card {
	margin: 30px 0 0 0;
}

.joinus .form-control {
	margin: 5px 0px;
}

.joinus .btn {
	margin-top: 5px;
}

.input-group ul {
	list-style: none;
	text-align: left;
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
}

.input-group label {
	color: #3b3d4c;
	opacity: .6;
	font-size: .95em;
	margin: 5px 0 0 10px;
}

@media (max-width: 768px) {
	.joinus .form-control {
		margin: 5px 0px;
	}

	.joinus .btn {
		margin-top: 5px;
	}

	.input-group ul {
		text-align: center;
	}

	.input-group label {
		font-size: .85em;
		margin: 5px 0 5px 0;
	}
}

.contact-flourish {
	display: flex;
	margin: 0 0 20px 0;
}

.hr-line {
	width: 100%;
	position: relative;
	margin: 15px;
	border-bottom: 1px solid #16a085;
}

.hr-icon {
	position: relative;
	top: 7px;
	color: #16a085;
}

.content-sidebar .contact-flourish {
	margin: 0 0 10px 0;
}

.content-sidebar .hr-icon {
	top: 3px;
}


/*------------------------------------
		RESOURCES
------------------------------------*/
.downloads .tile {
	padding: 35px 0 0 0;
}

.downloads .title {
	font-size: 1.35em;
}

@media (max-width: 768px) {
	.downloads .tile {
		padding-bottom: 0px;
	}

	.project-location h6 {
		margin-top: 15px;
	}
}


/* Testimonials Style
-----------------------*/
.testimonials {
	position: relative;
	width: 100%;
	text-align: center;
}

.testimonials ul {
	margin: 0 auto;
	padding: 50px 0;
	transition: transform .6s;
}

.testimonials ul::after {
	content: '';
	display: table;
	clear: both;
}

.testimonials li {
	list-style: none;
	cursor: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
	transform: scale(0.9);
	transition: transform .6s;
}

.testimonials li img {
	width: 13rem;
	border-radius: 50%;
	margin-top: -5rem;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
}

.testimonials li blockquote {
	width: 80%;
	margin: 0 auto;
	padding: 4rem 0 2rem 0;
}

.testimonials .quote {
	font-family: 'Roboto', sans-serif;
	position: relative;
	z-index: 1;
	font-size: 1.25rem;
	line-height: 2rem;
	color: #595959;
}

.quote::before {
	content: '\201c';
	font-size: 8rem;
	color: #16a085;
	opacity: .2;
	font-family: serif;
	font-weight: bold;
	position: absolute;
	top: -18px;
	left: -2rem;
	z-index: -1;
	pointer-events: none;
}

.testimonials .testimonial-footer {
	max-height: 200px;
	border-top: 1px solid #D6D3D2;
	padding: 1rem 0;
}

.author {
	display: block;
	font-size: 1.75rem;
	color: #585D6D;
	margin-bottom: .5rem;
}

.testimonials .info {
	font-size: 1.1rem;
	color: #B1B4BD;
	width: 60%;
	margin: 0 auto;
	line-height: 1.5rem;
}

.testimonials li.current_slide {
	transform: scale(1);
	cursor: inherit;
	cursor: initial;
}
/*
@media screen and (max-width: 950px) {
	.testimonials li {
		max-width: 580px;
	}
}

@media screen and (max-width: 750px) {
	.testimonials li {
		max-width: 400px;
	}
}

@media screen and (max-width: 500px) {
	.testimonials li {
		max-width: 300px;
	}
}

@media screen and (max-width: 400px) {
	.testimonials li {
		max-width: 100%;
	}
}
*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 40px;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
	color: #fafaf8;
}

.region {
	background-image: url("../img/region_image.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

@media (max-width: 991px) {
	.region {
		height: 400px;
		width: 100%;
		margin: 0 auto;
	}

	.section-title p {
		margin: 0;
		margin: 0;
		font-size: 30px;
		font-weight: 700;
		line-height: 40px;
		text-transform: uppercase;
		font-family: "Roboto", sans-serif;
		color: #fafaf8;
	}
}

.services .icon-box {
	padding: 25px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
	/*box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.09);*/
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
	background-color: #20313b;
}

/*.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 18px 0 rgba(68, 88, 144, 0.2);
}*/

.services .section-title p {
	padding-top: 10px;
	line-height: 1.1em;
}

.services .text-box {
	padding: 30px 0px 10px;
	width: 100%;
	height: 100%;
	background-color: #20313b;
}

.services a {
	color: #1abc9c;
	text-decoration: none;
}

.services a:hover {
	color: #16A085;
	text-decoration: none;
}

.capacity-image {
	background-image: url("../img/climate.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

.agreement-image {
	background-image: url("../img/agreement.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}
@media (max-width: 991px) {
	.agreement-image {
		height: 250px;
		width: 100%;
		margin: 0 auto;
		background-position: left;
	}
}

.clean-image {
	background-image: url("../img/clean_energy.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

@media (max-width: 991px) {
	.clean-image {
		height: 250px;
		width: 100%;
		margin: 0 auto;
		background-position: left;
	}
}

.economy-image {
	background-image: url("../img/economy.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

@media (max-width: 991px) {
	.economy-image {
		height: 250px;
		width: 100%;
		margin: 0 auto;
		background-position: left;
	}
}

.greenhouse-image {
	background-image: url("../img/klamath_area.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}
@media (max-width: 991px) {
	.greenhouse-image {
		height: 250px;
		width: 100%;
		margin: 0 auto;
		background-position: left;
	}
}

.environment-image {
	background-image: url("../img/environment_image.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

.community-image {
	background-image: url("../img/safety_image.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: right center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}

.local-image {
	background-image: url("../img/local_image.jpg");
	/* The image used */
	height: auto;
	/* You must set a specified height */
	background-position: top center;
	/* Center the image */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-size: cover;
	/* Resize the background image to cover the entire container */
}


.services .icon {
	position: absolute;
	left: 0px;
	top: calc(50% - 35px);
	color: #fafaf8;
}

.services .icon2 {
	position: absolute;
	left: 0px;
	top:30px;
	color: #fafaf8;
}

.services .icon i {
	font-size: 64px;
	line-height: 1;
	transition: 0.5s;
	padding: 0 10px;
}

.services .icon2 i {
	font-size: 64px;
	line-height: 1;
	transition: 0.5s;
	padding: 0 10px;
}

.services .title {
	color: #fafaf8;
	margin-left: 70px;
	font-weight: 600;
	font-size: 18px;
	top: calc(50% - 30px);
}

.services .subtitle {
	color: #fafaf8;
	margin-left: 70px;
	font-weight: 600;
	font-size: 18px;
	top: calc(50% - 30px);
}

.services .subtext {
	color: #fafaf8;
	margin:-10px 0px 0px 70px;
	font-weight: 20000;
	font-size: 16px;
	font-style: italic;
	top: calc(50% - 30px);
}

.services .subtext a{
	color: #fafaf8;
}

.services .subtext a:hover{
	color: #16A085;
}

.services .title-bold {
	color: #16A085;
	font-weight: 600;
	font-size: 18px;
	top: calc(50% - 30px);
}

.services .title-bold2 {
	color: #16A085;
	font-weight: 600;
	font-size: 24px;
	margin-left:70px;
	top: calc(50% - 30px);
}

.climate {
	color: #fafaf8;
	margin-left: 70px;
	font-weight: 400;
	font-size: 18px;
}

.services .title2 {
	color: #fafaf8;
	margin-left: 70px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25em;
	top: calc(50% - 30px);
}

.services .title a {
	color: #2a2c39;
	transition: ease-in-out 0.3s;
}

.services .title a:hover {
	color: #53789E;
}

.services .description {
	font-size: 14px;
	margin-left: 40px;
	line-height: 24px;
	margin-bottom: 0;
}

.services .btn-overview {
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	align: bottom;
	text-align: center;
	display: block;
	width: 150px;
	padding: 12px 32px;
	margin: 15px 0;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	color: #fafaf8;
	background-color: #53789E;
	text-transform: uppercase;
	/*border: 2px solid #53789E;*/
}

.services .btn-overview:hover {
	background: #97aec4;
	color: #fafaf8;
	text-decoration: none;
}

.services .icon-box2 {
	padding: 10px 25px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #fafaf8;
	/*box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.09);*/
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
	background-color: #2a2c39;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
#newsletter {
	background: #20313b;
	padding: 15px 0px 20px 20px;
}

.newsletter h3 {
	color: #f8f8ff;
	margin: 5px 0 0 0;
	font-size: 24px;
	font-weight: 700;
}

.newsletter p {
	color: #f8f8ff;
	font-weight: 100;
}

.newsletter .newsletter-btn {
	margin-right: 15px;
	transition: 0.5s;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	color: #ffffff;
	background-color: #16A085;
	border-color: #16A085;
}

.newsletter .newsletter-btn:hover {
	background-color: #1abc9c;
	border-color: #16A085;
	text-decoration: none;
}

@media (min-width: 1024px) {
	.newsletter {
		background-attachment: scroll;
	}

	#newsletter {
		padding: 15px 0px 2px 20px;
	}
}

@media (min-width: 769px) {
	.newsletter .newsletter-btn-container {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	#newsletter {
		margin-bottom: 35px;
	}
}

.section-padding {
	padding: 50px 0px;
}


.update-logo {
	margin: 0px 0px 20px 0px;
	width: 200px;
}

.embed-youtube {
	position: relative;
	padding-bottom: 56.25%; /* - 16:9 aspect ratio (most common) */
	/* padding-bottom: 62.5%; - 16:10 aspect ratio */
	/* padding-bottom: 75%; - 4:3 aspect ratio */
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.embed-youtube iframe,
.embed-youtube object,
.embed-youtube embed {
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
}
.social-links a:hover {
  background-color: #16A085;;
}
