/* Colors
 *
 * green:        #007934
 * green light   #D9EFE2
 * yellow:       #FFC700
 * yellow light: #FFF3CE
 * black:        #383838
 * grey:         #ddd
 *
 */
 
html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-size: 1rem !important;
	font-weight: 400 !important;
	font-family: 'Open Sans', sans-serif;
	color: #383838 !important;
	
	background: rgba(40,157,91,1);
	background: -moz-linear-gradient(top, rgba(40,157,91,1) 0%, rgba(0,121,52,1) 50%, rgba(40,157,91,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(40,157,91,1)), color-stop(50%, rgba(0,121,52,1)), color-stop(100%, rgba(40,157,91,1)));
	background: -webkit-linear-gradient(top, rgba(40,157,91,1) 0%, rgba(0,121,52,1) 50%, rgba(40,157,91,1) 100%);
	background: -o-linear-gradient(top, rgba(40,157,91,1) 0%, rgba(0,121,52,1) 50%, rgba(40,157,91,1) 100%);
	background: -ms-linear-gradient(top, rgba(40,157,91,1) 0%, rgba(0,121,52,1) 50%, rgba(40,157,91,1) 100%);
	background: linear-gradient(to bottom, rgba(40,157,91,1) 0%, rgba(0,121,52,1) 50%, rgba(40,157,91,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#289d5b', endColorstr='#289d5b', GradientType=0 );
	background-attachment: fixed;
}


/* Common Tags */
h1 {
	font-size: 1.5rem !important;
	font-weight: 900 !important;
	line-height: 2.5rem !important;
}

h2 {
	font-size: 1.25rem !important;
	line-height: 2rem !important;
	font-weight: 600 !important;
}

h3 {
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
	font-weight: 600 !important;
}

h4 {
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
	font-weight: 400 !important;
}

@media (min-width: 768px) {
	h1 {
		font-size: 2rem !important;
		line-height: 3rem !important;
	}
	h2 {
		font-size: 1.5rem !important;
		line-height: 2.5rem !important;
	}
	h3, 
	h4 {
		font-size: 1.25rem !important;
		line-height: 2rem !important;
	}
}

@media (min-width: 992px) {
	h1 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
	}
	h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}
	h3, 
	h4 {
		font-size: 1.375rem !important;
		line-height: 1.75rem !important;
	}
}

@media (min-width: 1200px) {
	h1 {
		font-size: 2.5rem !important;
		line-height: 3rem !important;
	}
	h2 {
		font-size: 1.75rem !important;
		line-height: 2.25rem !important;
	}
	h3, 
	h4 {
		font-size: 1.375rem !important;
		line-height: 1.75rem !important;
	}
}

a {
	color: #007934 !important;
	text-decoration: none !important;
}

a:hover {
	color: #007934 !important;
	text-decoration: none !important;
}

a.file::before {
	content: "\f15c";
	font-family: 'Font Awesome 5 Pro';
	font-size: 1.125rem;
	font-style: normal;
	margin-right: .25rem;
	margin-left: .25rem;
	color: #FFC700;
}

a.more::before {
	content: "\f054";
	font-family: 'Font Awesome 5 Pro';
	font-size: 1.125rem;
	font-style: normal;
	margin-right: .5rem;
	color: #FFC700;
}

.text-green {
	color: #007934;
}

.text-small {
	font-size: .875rem;
}

.text-big {
	font-size: 1.125rem;
}

.text-upper {
	text-transform: uppercase;
}

@media (min-width: 992px) {
	.text-big {
		font-size: 1.25rem;
	}
}

/* @media (min-width: 1300px) {
	.container {
		max-width: 1240px !important;
	}
} */

/*
 * Container
 */
.frame-container-green {
	background: #007934;
	color: #fff;
	padding: 1rem;
}

.frame-container-green h2,
.frame-container-green h3,
.frame-container-green h4 {
	color: #FFC700;
}


/*
 * Wrapper
 */
#wrapper {
	background: #fff;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}


/* Header */
#header {
	padding-bottom: 68px;
	background: url(../Images/header_bg.png) no-repeat left bottom;
}

#header .row-top {
	font-size: .875rem;
}

#header .row-top a.nav-link,
#header .row-top a.nav-link:hover {
	color: #383838 !important;
}

#header .row-top img {
	width: 120px;
}

#header .navbar-brand {
	font-weight: 600;
	font-size: 1.75rem;
	padding-top: .25rem !important;
	padding-bottom: .5rem !important;
}

#header nav a.nav-link {
	background: #FFC700 !important;
	color: #007934 !important;
	font-weight: 500;
	font-size: .9375rem;
	padding: .5rem 1rem;
}

@media (min-width: 992px) {
	#header nav .nav-item {
		margin-right: .25rem;
	}
	#header nav a.nav-link {	
		border-radius: .25rem .25rem 0 0;
	}
}

#header nav a.nav-link:hover,
#header nav a.nav-link.active {
	background: #007934 !important;
	color: #FFC700 !important;
}

#header nav .dropdown:hover > .dropdown-menu {
	display: block;
}

#header nav .dropdown-menu {
	border: none;
	background: #FFC700 !important;
	border-radius: 0;
	padding: 0 1rem;
}

@media (min-width: 992px) {
	#header nav .dropdown-menu {
		border-top: 7px solid #007934;
		box-shadow: 0 4px 4px 0 rgba(0, 40, 87, 0.1);
		margin: 0;
		padding: 0 1rem;
	}		
}

#header nav .dropdown-menu .dropdown-item {
	padding: .75rem 0rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-transform: none;
}


#header nav .dropdown-menu .dropdown-item:last-child {
	border-bottom: none;
}

#header nav .dropdown-menu .dropdown-item:hover,
#header nav .dropdown-menu .dropdown-item:active {
	background: none;
}

#header .navbar button.navbar-toggler {
	width: 28px;
	height: 26px;
	-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;
	border: none;
	margin: 5px 15px 0 0;
	position: relative;
	z-index: 1000;
	outline: none;
}

#header .navbar button.navbar-toggler span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #383838;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#header .navbar button.navbar-toggler span:nth-child(1) {
	top: 0px;
}

#header .navbar button.navbar-toggler span:nth-child(2) {
	top: 8px;
}

#header .navbar button.navbar-toggler span:nth-child(3) {
	top: 8px;
}

#header .navbar button.navbar-toggler span:nth-child(4) {
	top: 16px;
}

#header .navbar button.navbar-toggler.open span:nth-child(1) {
	top: 14px;
	width: 0%;
	left: 50%;
}

#header .navbar button.navbar-toggler.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #383838;
}

#header .navbar button.navbar-toggler.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #383838;
}

#header .navbar button.navbar-toggler.open span:nth-child(4) {
	top: 14px;
	width: 0%;
	left: 50%;
}

/* Main */
main {
	flex: 1;
}

.breadcrumb {
	background-color: transparent !important;
	border-radius: 0 !important;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0 !important;
	font-size: .875rem;
}

.container-fluid {
	padding: 0 !important;
}

.container-grey {
	background-color: #f7f7f7;
	padding: 2rem 0;
}


/* Frames */
.frame-layout-green {
	background-color: #007934;
	color: #fff;
	padding: 1.5rem;
}


/* Slider */
.carousel {
	background-color: #0087E5;
	color: #fff;
	height: 400px;
}

.carousel-item-text {
	background-image: url(../Images/slider_pattern.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

.carousel a {
	color: #fff !important;
}


/* Banner */

/* FAQs */
.ce-faq .card {
	background: none;
	border: none;
	border-radius: 0;
}

.ce-faq .card-header {
	padding: .5rem 0;
	font-size: 1.125rem;
	font-weight: 600;
	background: none;
	border: none;
}

.ce-faq .card-header i {
	width: 20px;
}

.ce-faq .card-header a:hover {
	text-decoration: none;
}

.ce-faq .card-body {
	padding: .5rem 0;
}


/* Buttons */
.btn {
	padding: .25rem 1.5rem !important;
}

@media (min-width: 992px) {
	.btn {
		font-size: 1.125rem !important;
	}
}

.btn-green {
	background: #007934 !important;
	color: #FFC700 !important;
	border: none !important;
	border-radius: .25rem !important;
}

.btn-green:hover {
	background: #007934 !important;
	color: #FFC700 !important;
}

.btn-yellow {
	background: #FFC700 !important;
	color: #007934 !important;
	border: none !important;
	border-radius: .25rem !important;
}

.btn-yellow:hover {
	background: #FFC700 !important;
	color: #007934 !important;
}	

.btn-search {
	padding: .125rem .75rem !important;
	background: #007934 !important;
	color: #FFC700 !important;
	border-color: #007934 !important;
}

@media (min-width: 992px) {
	.btn-search {
		font-size: 1 !important;
	}
}	

.btn-search:hover {
	background: #007934 !important;
	border-color: #007934 !important;
	color: #FFC700 !important;
}


/*
 * Uploads
 */
.ce-uploads span { 
	display: inline-block;
}

.ce-uploads a i.far {
	color: #FFC700;
}


/*
 * Forms
 */
#header .form-control {
	padding: .125rem .5rem !important;
	height: auto !important;
	line-height: 1rem !important;
}

/*
 * Header
 */
.ce-headline-border {
	padding-bottom: .75rem;
	border-bottom: 1px solid #FFC700;
}


/*
 * Tables
 */
.table {
	width: auto !important;
}


/*
 * Video
 */
video {
	margin-top: 1rem;
	border: 1px solid #ddd;
}

/* Footer */
footer {
	margin-top: 2rem;
	border-top: 1px solid #ddd;
	font-size: .875rem;
}


/*
 * Database
 */
.tx-gold-database h3 {
	margin: 10px 0;
}

.tx-gold-database .form-group > label {
	font-weight: 600;
}

.tx-gold-database textarea.form-control {
	height: 9em;
}

.tx-gold-database .dl-horizontal dt,
.tx-gold-database .dl-horizontal dd {
	padding: 5px 0;
}


ul.f3-widget-paginator {
	list-style-type: none;
	text-align: right;
	margin: 1rem 0;
	padding: .25rem 0 0 0;
}

ul.f3-widget-paginator li {
	display: inline-block;
	margin: 0 .25rem;
}

ul.f3-widget-paginator li.previous,
ul.f3-widget-paginator li.next {
	font-size: 1em;
}


/*
 * Indexed Search
 */
ul.tx-indexedsearch-browsebox {
	list-style-type: none;
	text-align: center;
	margin: 1rem 0;
	padding: .25rem 0 0 0;
}

ul.tx-indexedsearch-browsebox li {
	display: inline-block;
	margin: 0 .25rem;
}
