h1, h1 a, h1 a:hover,
h2, h2 a, h2 a:hover,
h3, h3 a, h3 a:hover,
h4, h4 a, h4 a:hover,
h5, h5 a, h5 a:hover {
	color: #000000;
}

a {
	color: #238636;
}

a:hover {
	color: #1a6b2b;
}

::selection {
	background-color: #1e7e34;
}

html {
	background-color: #fcfcfc;
}

.site-wrapper,
main {
	background-color: #ffffff;
}

.site-header {
	position: relative;
	overflow: visible;
}

.action-bar {
	background-color: #2c2c2c;
	line-height: 21px;
}

.action-bar .contact-details {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	padding: 12px 0;
	max-width: 1220px;
	margin: 0 auto;
	color: #b5b5b5;
}

.action-bar .contact-details li {
	display: inline-flex;
	align-items: center;
}

.action-bar .contact-details li > i {
	margin-right: 4px;
}

.action-bar .contact-details a {
	color: #58b5f8;
	transition: color 0.3s ease;
}

.action-bar .contact-details a:hover {
	color: #8ed0fc;
	text-decoration: none;
}

.top-bar {
	background-color: #fff;
	z-index: 30;
}

.top-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.top-bar .logo {
	display: flex;
	align-items: center;
	height: 90px;
	padding: 0;
	flex-shrink: 0;
	box-sizing: border-box;
}

.top-bar .logo:hover {
	text-decoration: none;
}

.top-bar .logo img {
	max-height: 70px;
	width: auto;
	transition: max-height 0.3s ease;
}

.top-bar .menu-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 90px;
}

.top-bar .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar .menu > li {
	position: relative;
}

.top-bar .menu > li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 50px;
	width: 1px;
	background-color: rgba(0, 0, 0, 0.08);
}

.top-bar .menu > li > a {
	display: block;
	padding: 0 18px;
	line-height: 90px;
	color: #595959;
	white-space: nowrap;
	position: relative;
	transition: color 0.3s ease;
}

.top-bar .menu > li > a:hover {
	text-decoration: none;
	color: #238636;
}

.top-bar .menu > li.current-menu-item > a {
	color: #238636;
}

.top-bar .menu > li > a::after {
	content: "";
	position: absolute;
	bottom: 25px;
	left: 10%;
	width: 80%;
	height: 2px;
	background: #1e7e34;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.top-bar .menu > li > a:hover::after,
.top-bar .menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.top-bar .responsive-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	color: #238636;
	z-index: 200;
}

.top-bar .responsive-menu-toggle i {
	font-size: 24px;
	line-height: 1;
}

@media only screen and (min-width: 1240px) {
	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		z-index: 701;
		background: #fff;
		opacity: 0.97;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
		animation: slideDown 0.3s ease;
	}

	@keyframes slideDown {
		from {
			transform: translateY(-100%);
		}
		to {
			transform: translateY(0);
		}
	}

	.top-bar.is-sticky .logo {
		height: 60px;
		padding: 5px 0;
	}

	.top-bar.is-sticky .logo img {
		max-height: 45px;
	}

	.top-bar.is-sticky .menu > li > a {
		line-height: 60px;
	}

	.top-bar.is-sticky .menu > li > a::after {
		bottom: 10px;
	}

	.top-bar.is-sticky .menu > li:not(:last-child)::after {
		height: 30px;
	}

	.top-bar.is-sticky .menu-nav {
		align-items: center;
		height: 60px;
	}
}

@media only screen and (min-width: 1240px) {
	.top-bar.loading {
		visibility: hidden;
	}

	.top-bar:not(.loading) {
		visibility: visible;
	}

	.top-bar .menu-nav {
		display: flex !important;
	}
}

@media only screen and (max-width: 1239px) {
	.top-bar .container {
		flex-wrap: wrap;
		position: relative;
	}

	.top-bar .logo {
		height: 70px;
	}

	.top-bar .responsive-menu-toggle {
		display: block;
	}

	.top-bar .menu-nav {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		width: 300px;
		background: #fff;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		z-index: 205;
	}

	.top-bar .menu {
		flex-direction: column;
		width: 100%;
		background: #fff;
	}

	.top-bar .menu > li > a {
		line-height: 50px;
		padding: 0 25px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		color: #333;
		background: #fff;
	}

	.top-bar .menu > li > a::after {
		display: none;
	}

	.top-bar .menu > li:not(:last-child)::after {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1239px) {
	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 701;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.top-bar.is-sticky .logo {
		height: 60px;
	}

	.top-bar.is-sticky .logo img {
		max-height: 50px;
	}

	.top-bar .responsive-menu-toggle {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media only screen and (max-width: 767px) {
	.action-bar .contact-details {
		flex-direction: column;
		align-items: center;
		gap: 5px;
		padding: 10px 0;
		max-width: none;
		color: #fff;
	}

	.top-bar .logo {
		height: 60px;
		margin: 0 auto;
		padding-right: 50px;
	}

	.top-bar .logo img {
		max-height: 45px;
	}

	.top-bar .responsive-menu-toggle {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}

	.top-bar .menu-nav {
		width: 100%;
		left: 0;
		right: 0;
		background: #fff;
	}

	.top-bar .menu,
	.top-bar .menu > li > a {
		background: #fff;
	}

	.top-bar.is-sticky {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 701;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.top-bar.is-sticky .logo {
		height: 50px;
	}

	.top-bar.is-sticky .logo img {
		max-height: 40px;
	}
}

.site-footer {
	background-color: #434647;
	color: #b5b5b5;
	padding: 30px 20px;
	text-align: center;
}

.site-footer .copyright {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.site-footer a {
	color: #c5d4dc;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #e0eaf0;
}

@media (max-width: 767px) {
	.site-footer {
		padding: 25px 15px;
	}

	.site-footer .copyright {
		font-size: 15px;
	}
}

.dark {
	color: #fff !important;
}

.dark h1,
.dark h1 a,
.dark h1 a:hover,
.dark h2,
.dark h2 a,
.dark h2 a:hover,
.dark h3,
.dark h3 a,
.dark h3 a:hover,
.dark h4,
.dark h4 a,
.dark h4 a:hover,
.dark h5,
.dark h5 a,
.dark h5 a:hover {
	color: #fff;
}

.section-single-column {
	width: 100%;
	padding: 40px 20px 30px;
	text-align: center;
	box-sizing: border-box;
}

.section-single-column .service-intro {
	max-width: 1100px;
	margin: 0 auto 40px;
}

.section-single-column .service-intro p {
	font-size: 18px;
	font-weight: 300;
	color: #ffffff;
	font-family: var(--font-primary, "Open Sans", sans-serif);
	line-height: 1.6;
	margin-bottom: 1.5em;
}

.section-single-column .service-intro p:last-child {
	margin-bottom: 0;
}

.section-gallery {
	width: 100%;
	padding: 0 20px 30px;
	box-sizing: border-box;
}

.section-single-column .section-subtitle {
	max-width: 1100px;
	margin: 5px auto 0;
	font-size: 14px;
	font-weight: 400;
	color: #767676;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-single-column.section-light {
	padding: 60px 20px 40px;
}

@media (max-width: 959px) {
	.section-single-column {
		padding: 30px 15px 20px;
	}

	.section-single-column .service-intro p {
		font-size: 17px;
	}

	.section-single-column .section-subtitle {
		font-size: 13px;
	}

	.section-single-column.section-light {
		padding: 40px 15px 30px;
	}
}

.section-contact {
	padding: 60px 20px 30px;
	text-align: center;
	box-sizing: border-box;
}

.section-contact .section-header {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 30px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.contact-info {
	padding: 20px;
}

.contact-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-item {
	position: relative;
	padding: 13px 0 13px 50px;
	color: #fff;
}

.contact-item p {
	margin: 0;
	line-height: 1.7;
}

.contact-item a {
	color: #fff;
}

.contact-icon {
	position: absolute;
	left: 0;
	top: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 23px;
	text-align: center;
	color: #fff;
}

.contact-map {
	padding: 10px;
}

@media (max-width: 767px) {
	.section-contact {
		padding: 40px 15px 30px;
	}

	.section-contact .section-header {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-info {
		padding: 10px;
	}

	.contact-map {
		padding: 0;
	}
}

.section-documents {
	padding: 40px 20px 50px;
	text-align: center;
}

.section-documents .section-header {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.documents-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.documents-list a {
	color: #fff;
	text-decoration: underline;
	font-size: 18px;
	transition: opacity 0.3s ease;
}

.documents-list a:hover {
	opacity: 0.8;
}

@media (max-width: 767px) {
	.section-documents {
		padding: 30px 15px 40px;
	}

	.section-documents .section-header {
		font-size: 26px;
	}

	.documents-list a {
		font-size: 17px;
	}
}
