/*

*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:400 16px/1.8 'Manrope', -apple-system,BlinkMacSystemFont,segoe ui,helvetica neue,sans-serif;
	background-color: #fff;
	letter-spacing: .5px;
	color: #262626;
	width: 100%;
	position: relative;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
a {
	color: #407e00;
	text-decoration:none;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}
a:hover {
	color: #262626;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

strong {
	font-weight: 400;
}
h1, h2, h3 {font-weight: 400; color: #407e00; line-height: 1.2;}
h4, h5, h6 {font-weight: 400; color: #000; line-height: 1.2;}
h1 {font-size: 50px;}
h2 {font-size: 40px;}
h3 {font-size: 30px;}
h4 {font-size: 24px;}
h5 {font-size: 18px;}
h6 {font-size: 12px;}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}

/* header */
.header {
	width: 100%;
	margin: 0 auto;
    position: fixed;
	top: 0;
	z-index: 9;
	height: 120px;
	background-color: transparent;
	border-bottom: 1px solid #ffffff30;
	z-index: 99;
}
.header .container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	height: 120px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.header .container .logo {
    padding: 0;
    width: 220px;
    position: relative;
    line-height: 0;
    top: 0;
    margin-left: 20px;
}
.header .container .logo a {
	line-height: 0;
}
.header .container .logo img {
	width: 100%;
	height: auto;
	display: none;
}
.header .container .logo img.white {
	display: block;
}
.header .container .topright {
	position: relative;
}
.header .container .topright ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.header .container .topright ul li {
	margin: 0;
	padding: 0;
	display: inline-block;
	border-left: 1px solid #ffffff30;
}
.header .container .topright ul li a {
    font-weight: 400;
	font-size: 24px;
    color: #fff;
    display: block;
    line-height: 120px;
    padding: 0 20px;
}
.header .container .topright ul li a:hover {
	color: #fff;
	line-height: 120px;
	background-color: rgba(255,255,255, .1);
	transition: .2s ease-in-out;
}

.nav {
	z-index: 999;
	position: relative;
}
.nav ul {
	-webkit-font-smoothing:antialiased;
	padding: 0;
	margin: 0;
	list-style: none;
}
.nav ul li {
	display: inline-block;
	margin: 0;
	position: relative;
}
.nav ul li a {
	display: block;
    font-size: 18px;
    padding: 0 30px;
    line-height: 116px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border-bottom: 0;
	transition: .2s ease-in-out;
}
.nav ul li a:hover {
	color: #fff;
	border-bottom: 4px solid #fff;
	background-color: rgba(255,255,255, .1);
	transition: .2s ease-in-out;
}
.nav ul li a i {
	padding-left: 7px;
}
.nav ul li.current_page_item {
	position: relative;
}
.nav ul li.current_page_item a {
	color: #fff;
	border-bottom: 4px solid #407e00;
	background-color: rgba(255,255,255, .1);
}
.nav ul li.current_page_item a:hover {
	color: #fff;
	border-bottom: 4px solid #407e00;
	background-color: rgba(255,255,255, .1);
}
.nav ul li.current_page_item:hover a {
	color: #fff;
	background-color: #fff;
	border-bottom: 4px solid #407e00;
	background-color: rgba(255,255,255, .1);
}
.nav ul li.menu-item-has-children:hover a {
	color: #407e00;
	background-color: #fff;
}
.nav ul li.menu-item-has-children:hover a:hover {
	border-bottom: 0;
}
.nav ul li ul.sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}
.nav ul li:hover ul.sub-menu {
	visibility: visible;
	opacity: 1;
	left: 0;
	padding-top: 0;
	z-index: 999;
	width: 300px;
	background-color: #407e00;
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    box-shadow: 0 3px 5px rgba(0,0,0, .1);
    -moz-box-shadow: 0 3px 5px rgba(0,0,0, .1);
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0, .1);
}
.nav ul li ul.sub-menu li {
	display: block;
	margin: 0;
	border-bottom: 0;
	width: 300px;
	background-color: #fff;
}
.nav ul li ul.sub-menu li a {
	display: block;
	color: #407e00;
	font-size: 16px;
	padding: 15px 20px !important;
	line-height: normal;
	border-top: 0;
	line-height: 1;
	text-align: left;
	position: relative;
	transition: none;
    -webkit-transition: none;
    border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-bottom: 0;
}
.nav ul li ul.sub-menu li a:hover {
	background-color: #407e00;
	color: #fff !important;
	border-bottom: 0;
}

.header.scrolled {
	position: fixed;
	width: 100%;
	top: 0;
	height: 80px;
	background-color: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0, .1);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0, .1);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0, .1);
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-120px);
	}
	100% {
		transform: translateY(0px);
	}
}
.header.scrolled .container {
	padding: 0;
	height: 80px;
}
.header.scrolled .container .logo {
	width: 220px;
}
.header.scrolled .container .logo img.white {
	display: none;
}
.header.scrolled .container .logo img {
	display: block;
	-webkit-animation: smoothshow .4s;
}
.header.scrolled .container .nav {
	position: relative;
}
.header.scrolled .container .nav ul li a {
	line-height: 80px;
	color: #000;
	border-bottom: 0;
}
.header.scrolled .container .nav ul li a:hover {
	color: #407e00;
	background-color: #407e0015;
}
.header.scrolled .container .nav ul li.current_page_item {
	position: relative;
}
.header.scrolled .container .nav ul li.current_page_item a {
	color: #000;
	background-color: #407e0015;
	border-bottom: 0;
}
.header.scrolled .container .nav ul li.current_page_item a:hover {
	color: #000;
	background-color: #407e0015;
	border-bottom: 0;
}
.header.scrolled .container .nav ul li.current_page_item:hover a {
	color: #000;
	background-color: #407e0015;
	border-bottom: 0;
}
.header.scrolled .container .nav ul li.menu-item-has-children:hover a {
	background-color: #407e0015;
}
.header.scrolled .container .nav ul li ul.sub-menu {
	background-color: #407e0015;
}
.header.scrolled .container .nav ul li ul.sub-menu li a {
	line-height: 1;
	padding: 15px 20px !important;
}
.header.scrolled .container .nav ul li ul.sub-menu li a:hover {
	background-color: #407e00;
}
.header.scrolled .container .topright ul li {
	border-left: 1px solid #ddd;
}
.header.scrolled .container .topright ul li a {
	color: #000;
	line-height: 80px;
	border-bottom: 0;
}
.header.scrolled .container .topright ul li a:hover {
	color: #407e00;
	background-color: #407e0015;
	border-bottom: 0;
	line-height: 80px;
}

.header.white {
	width: 100%;
	margin: 0 auto;
    position: relative;
	top: 0;
	z-index: 9999;
	height: 120px;
	border-bottom: 0;
	background-color: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0, .1);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0, .1);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0, .1);
}
.header.white .container .nav ul li a {
	color: #407e00;
	line-height: 120px;
	border-bottom: 0;
}
.header.white .container .nav ul li a:hover {
	color: #407e00;
	background-color: #407e0015;
/*	border-bottom: 4px solid #b98b3f;*/
}
.header.white .container .nav ul li.current-menu-item a {
	color: #407e00;
	background-color: #407e0015;
}
.header.white .container .nav ul li ul.sub-menu li a {
	color: #407e00 !important;
	background-color: #407e0015;
	line-height: 1;
}
.header.white .container .nav ul li ul.sub-menu li a:hover {
	background-color: #407e00;
	color: #fff !important;
}
.header.white .container .nav ul li.menu-item-has-children:hover a {
	color: #407e00;
	background-color: #407e0015;
}
.header.white .container .logo img {
	width: 100%;
	height: auto;
	display: block;
}
.header.white .container .logo img.white {
	display: none;
}
.header.white.scrolled {
	position: fixed;
	height: 80px;
	z-index: 9999;
	background-color: #fff;
}
.header.white.scrolled .container .nav ul li a {
	line-height: 80px;
	color: #262626;
	border-bottom: 0;
}
.header.white.scrolled .container .nav ul li a:hover {
	background-color: #407e0015;
}
.header.white.scrolled .container .nav ul li.current-menu-item a {
	color: #407e00;
}
.header.white.scrolled .container .logo img {
	width: 100%;
	height: auto;
	display: block;
}
.header.white.scrolled .container .logo img.white {
	display: none;
}
.header.white .container .topright ul li {
	border-left: 1px solid #ddd;
}
.header.white .container .topright ul li a {
	color: #000;
	line-height: 116px;
}
.header.white .container .topright ul li a:hover {
	background-color: #407e0015;
}
.header.white.scrolled .container .topright ul li a {
	line-height: 80px;
}

.main-btn {position: relative;}
	.main-btn .elementor-button {width: 100% !important; max-width: 200px;}

.process {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.process .elementor-tab-desktop-title {
	font-size: 20px;
	letter-spacing: .2px;
	padding: 20px 20px !important;
	border-top: 4px solid transparent !important;
}
.process .elementor-tab-desktop-title span {
	font-weight: 400;
	margin-right: 6px;
}
.process .elementor-tab-desktop-title.elementor-active {
	border-top: 4px solid #377b59 !important;
}
.process .elementor-tab-content {
	box-shadow: 0 20px 20px rgb(0 0 0 / 8%);
}

.awards {
	position: relative;
}
.awards .elementor-image-carousel .swiper-slide-image {
	height: 100px;
	width: auto;
}
.awards .elementor-image-carousel-caption {
	font-size: 13px;
	line-height: 1.4;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
}

.why {
	position: relative;
}
.why .material-symbols-outlined {
	color: #377b59;
	margin: 0 auto;
	font-size: 60px;
	display: block;
	text-align: center;
}

.featured-news {
	position: relative;
	margin: 0 auto;
	background-color: #fff;
}
.featured-news .inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 100px 20px;
	overflow: hidden;
	position: relative;
}
.featured-news .inner h3 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 70px;
	font-size: 55px;
}
.featured-news .inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
.featured-news .inner ul li {
	position: relative;
	padding-bottom: 0;
	overflow: hidden;
}
.featured-news .inner ul li a {
	display: block;
	position: relative;
}
.featured-news .inner ul li .thumb {
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 250px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f6f6f6;
}
.featured-news .inner ul li .thumb a {
	display: block;
}
.featured-news .inner ul li .thumb a img {
	width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    transform: scale(1);
    transition: transform .5s;
}
.featured-news .inner ul li .thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
.featured-news .inner ul li a h4 {
	margin: 25px 0 0 0;
    line-height: 1.3;
    font-size: 21px;
    font-weight: 400;
}
.featured-news .inner ul li a:hover h4 {
	text-decoration: underline;
}
.featured-news .inner ul li p {
	line-height: 1.4;
	margin-left:0;
	font-size: 15px;
}
.featured-news .inner ul li a.view-article {
	display: inline-block;
	padding: 0;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 10px;
}
.featured-news .inner ul li a.view-article:hover {
	text-decoration: underline;
}
.featured-news .inner ul li .thumb .metadata {
	width: 70px;
    font-weight: 700;
    line-height: 1;
    float: left;
    position: absolute;
    text-align: center;
    background-color: #407e00d7;
    border-bottom: 0;
    padding: 10px 0;
    display: block;
    top: 10px;
    z-index: 9;
    left: 10px;
    margin-top: 0;
}
.featured-news .inner ul li .thumb .metadata .day {
	display: block;
	font-size: 34px;
	color: #fff;
}
.featured-news .inner ul li .thumb .metadata .month {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
}
.featured-news .inner ul li .thumb .metadata .year {
	display: block;
	font-size: 16px;
	color: #fff;
}

.is-form-style {
	margin: 0 auto;
	max-width: 768px;
	height: 44px !important;
	border-radius: 0 !important;
    overflow: hidden;
	background-color: #fff !important;
	border: 2px solid #407e00 !important;
}
.is-form-style input.is-search-input {
	font-family: 'Manrope' !important;
	padding: 0 17px !important;
	line-height: 40px !important;
	border-radius: 0 !important;
	border: 0 !important;
	height: 40px;
}
.is-form-style button.is-search-submit {
	width: 40px !important;
	border: 0 !important;
	border-radius: 70px !important;
}
.is-form-style.is-form-style-3 label {
	width: calc(100% - 40px)!important;
}
.is-form-style input.is-search-submit, .is-search-icon {
	background: #fff !important;
	border: 0 !important;
	padding-top: 8px !important;
}
.is-form-style input.is-search-submit:hover {
	background-color: #407e00 !important;
	color: #fff !important;
}
.is-search-icon:hover {
	background-color: #407e00 !important;
	color: #fff !important;
}
.is-form-style .is-search-submit:hover path {
	color: #fff !important;
	fill: #fff !important;
}

.list-style-1 {
	position: relative;
}
.list-style-1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.list-style-1 ul li {
	border-bottom: 2px solid #e7e7e7;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 10px;
	font-size: 21px;
	font-weight: 500;
	margin-left: 0;
	line-height: 1.4;
	position: relative;
}
.list-style-1 ul li:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 1px;
    border-radius: 30px;
    padding-top: 0;
    text-align: center;
    color: #407e00;
    background-color: #407e00;
    content: counter(li-counter);
    counter-increment: li-counter;
}
.list-style-1 ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.list-style-2 {
	position: relative;
}
.list-style-2 ul {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
}
.list-style-2 ul li {
	border-bottom: 2px solid #ffffff30;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-bottom: 10px;
	font-size: 21px;
	font-weight: 500;
	margin-left: 0;
	line-height: 1.4;
	position: relative;
}
.list-style-2 ul li:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 1px;
    border-radius: 30px;
    padding-top: 0;
    text-align: center;
    color: #407e00;
    background-color: #407e00;
    content: counter(li-counter);
    counter-increment: li-counter;
}
.list-style-2 ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.list-style-3 {
	position: relative;
}
.list-style-3 ul {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
}
.list-style-3 ul li {
	border-bottom: 0;
	padding-bottom: 5px;
	padding-left: 0;
	margin-bottom: 5px;
	font-size: 21px;
	font-weight: 500;
	margin-left: 0;
	line-height: 1.4;
	position: relative;
}

.our-team .elementor-image-carousel-caption h3 {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 20px;
}
.our-team .elementor-image-carousel-caption h4 {
	font-size: 15px;
	margin: 10px 0 0 0;
}

.logo-clients img {
	padding: 10px;
	background-color: #fff;
}

#foot {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: #000;
}
#foot .container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 70px 20px;
	font-size: 15px;
	overflow: hidden;
	position: relative;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255,255,255, .5);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#foot .container h6 {
	margin: 0;
	font-size: 13px;
	color: #fff;
	line-height: 1.4;
}
#foot .container a {
	color: rgba(255,255,255, .5);
}
#foot .container > div {
	width: 25%;
	text-align: left;
}
#foot .container h3 {
	margin: 0 0 35px 0;
    color: #407e00;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
}
#foot .container > div img {
	border-radius: 0 !important;
	padding: 0;
}
#foot .container ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
#foot .container ul li {
	position: relative;
	padding: 0 0 10px 0;
}
#foot .container ul li a {
	display: block;
	color: rgba(255,255,255, .5);
	line-height: 1.6;
	font-size: 15px;
}
#foot .container ul li a:hover {
	color: #fff;
}
#foot .container ul li a i {
	width: 16px;
	margin-right: 7px;
}
#foot .container ul li i {
	margin-right: 7px;
}
#foot .container div.wpcf7 .wpcf7-form p label {
	margin-bottom: 10px;
}
#foot .container div.wpcf7 .wpcf7-form input {
	border: 0;
	background-color: rgba(255,255,255, .9);
	padding: 7px 10px !important;
	font-size: 14px;
	color: #000;
}
#foot .container div.wpcf7 .wpcf7-form textarea {
	display: none;
	visibility: hidden;
}
#foot .container div.wpcf7 .wpcf7-form input[type="submit"] {
	margin: -10px 0 0 0;
	background-color: #407e00;
	color: #fff;
	width: auto;
	padding: 10px 25px !important;
	display: inline-block;
}
.copyright {
	width: 100%;
	float: left;
	text-align: center;
	font-size: 14px;
	padding: 25px 20px;
	line-height: 1.2;
	background-color: #232323;
	color: rgba(255,255,255, .5);
	font-weight: 300;
}

#foot.top {
	border-bottom: 1px solid rgba(255,255,255, .2) !important;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	display: none;
}
#foot.top .container {
	padding: 40px 20px;
	border: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.socmed {
	position: relative;
	margin-top: 30px;
}
.socmed ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.socmed ul li {
    float: left;
    margin-right: 20px;
    padding-bottom: 0 !important;
}
.socmed ul li a {
    display: block;
    color: #fff;
    padding: 0;
    text-align: center;
}
.socmed ul li a i {
    font-size: 21px;
    margin-right: 0;
}
.socmed ul li a:hover {
	color: #60b88c;
}
.socmed ul li p {
    display: block;
    line-height: 1.6;
    color: #c1bcb7;
}
#foot.bottom {
	border-top: 1px solid rgba(255,255,255, .2) !important;
	width: 100%;
}
#foot.bottom .container {
	padding: 80px 20px;
	border: 0;
}

#big-title {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background: url(https://www.christiestudio.id/wp-content/uploads/2025/08/20250807_1337_Background-Tanpa-Teks_remix_01k21kw7mree9v0v6k6hhfcejk.png) no-repeat center center;
	background-color: #cecece;
	background-size: cover;
	overflow: hidden;
}
#big-title:after {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #49494999;
}
#big-title .container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 320px 20px;
	overflow: hidden;
	position: relative;
	font-weight: 500;
	color: rgba(255,255,255,.7);
	line-height: 1.6;
	color: #fff;
	z-index: 2;
	text-align: center;
}
#big-title .container h1 {
	color: #fff;
    margin: 0;
    line-height: 1.2;
    display: block;
    font-size: 55px;
    padding: 30px 0;
    position: relative;
}
#big-title img {
	position: absolute;
	bottom: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	top: 0;
	height: 100%;
}
#big-title.nobanner {
	padding: 0;
}
#big-title.nobanner .container {
	padding: 70px 20px;
}

.project-spec {
	width: 100%;
	margin: 0 auto;
	margin-top: -80px;
	z-index: 9;
	position: relative;
}
.project-spec .container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.project-spec .container table {
	display: table;
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin-top: 0;
	background-color: #fff;
	box-shadow: 0 20px 20px rgb(0 0 0 / 8%);
}
.project-spec .container table tbody {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.project-spec .container table tr {
	position: relative;
	width: 25%;
	text-align: center;
	padding: 20px 0;
	border-right: 1px solid rgba(0,0,0, .2);
}
.project-spec .container table tr:last-child {
	border-right: 0;
}
.project-spec .container table tr td {
	position: relative;
	font-size: 20px;
	display: block;
}
.project-spec .container table tr td span {
	display: block;
	color: #407e00;
	font-size: 40px;
}
.project-spec .container table tr td:first-child {
	display: block;
	font-size: 14px;
}
.project-spec .container table tr td:last-child {
	font-weight: 700;
}

#main-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#main-wrapper .container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 80px 20px;
	position: relative;
}
#main-wrapper .container.small {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 80px 20px;
	position: relative;
}
#main-wrapper .container .metadata {
	font-size: 16px;
	margin-bottom: 40px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin-top: -130px;
	z-index: 9;
	padding: 20px 30px;
	background-color: #fff;
	box-shadow: 0 20px 20px rgb(0 0 0 / 8%);
}
#main-wrapper .container .metadata .share {
	position: relative;
}
.a2a_svg {
	border-radius: 40px !important;
	padding: 5px !important;
}
#main-wrapper .container .metadata .infoauthor {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
}
#main-wrapper .container .metadata .infoauthor .author-img {
    display: inline-block;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 7px;
    width: 50px;
    height: 50px;
}
#main-wrapper .container .metadata .infoauthor .author-img img {
    width: 100%;
}
#main-wrapper .container .metadata .infoauthor .author-name {
	display: block;
}
#main-wrapper .container .metadata .infoauthor .author-name h6 {
	margin: 0 0 5px 0;
	font-size: 12px;
	color: #999;
}
#main-wrapper .container .metadata .infodate {
    display: block;
    font-weight: 600;
}
#main-wrapper .container .metadata .infodate h6 {
	margin: 0 0 5px 0;
	font-size: 12px;
	color: #999;
}
#main-wrapper .container article h1 {
	margin: -25px 0 30px 0;
	line-height: 1.2;
	font-size: 40px;
	color: #111;
}
#main-wrapper .container .body-content article.full {
	width: 100%;
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	padding: 0;
	overflow: hidden;
	float: none;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
#main-wrapper .container .body-content article.full h1 {
	margin: 20px 0 30px 0;
	line-height: 1.2;
	font-size: 40px;
	color: #111;
}
#main-wrapper .container .body-content article.full h2 {
	font-size: 32px;
	color: #111;
}
#main-wrapper .container .body-content article.full h3 {
	font-size: 27px;
	line-height: 1.4;
	color: #111;
}
#main-wrapper .container .body-content article.full p.cat-tag a {
	font-size: 14px;
	margin: 3px 0;
	border: 1px solid #407e00;
	border-radius: 70px;
	padding: 2px 10px;
	display: inline-block;
	margin-left: 7px;
}
#main-wrapper .container .body-content article.full p.cat-tag a:hover {
	background-color: #407e00;
	color: #fff;
}
#main-wrapper .container .body-content article.full p {
	font-size: 17px;
}
/*#main-wrapper .container .body-content article.full p:first-child::first-letter {
	font-size: 360% !important;
	font-weight: 500 !important;
	line-height: 100% !important;
	font-style: italic !important;
	font-family: 'Georgia';
	float: left !important;
	margin-right: 5px !important;
}*/

#main-wrapper .container .body-content article.full ul li {
	line-height: 1.6;
	font-size: 17px;
}
#main-wrapper .container .body-content article.full ol li {
	line-height: 1.6;
	font-size: 17px;
}

#main-wrapper .container.blog-grid {
	margin: 0 auto;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
#main-wrapper .container.blog-grid article {
	overflow: hidden;
	padding-bottom: 0;
}
#main-wrapper .container.blog-grid article .thumb {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 250px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f6f6f6;
}
#main-wrapper .container.blog-grid article .thumb a {
	display: block;
}
#main-wrapper .container.blog-grid article .thumb a img {
	width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    transform: scale(1);
    transition: transform .5s;
}
#main-wrapper .container.blog-grid article .thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
#main-wrapper .container.blog-grid article .thumb .metadata {
	width: 70px;
    font-weight: 700;
    line-height: 1;
    float: left;
    position: absolute;
    text-align: center;
    background-color: #407e00d7;
    border-bottom: 0;
    padding: 10px 0;
    display: block;
    top: 10px;
    z-index: 9;
    left: 10px;
    margin-top: 0;
}
#main-wrapper .container.blog-grid article .thumb .metadata .day {
	display: block;
	font-size: 34px;
	color: #fff;
}
#main-wrapper .container.blog-grid article .thumb .metadata .month {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
}
#main-wrapper .container.blog-grid article .thumb .metadata .year {
	display: block;
	font-size: 16px;
	color: #fff;
}
#main-wrapper .container.blog-grid article .loop-content {
	position: relative;
}
#main-wrapper .container.blog-grid article .loop-content h2 {
	margin: 25px 0 0 0;
	line-height: 1.3;
	font-size: 24px;
	font-weight: 400;
}
#main-wrapper .container.blog-grid article .loop-content h2 a {
	color: #262626;
}
#main-wrapper .container.blog-grid article .loop-content h2 a:hover {
	text-decoration: underline;
}
#main-wrapper .container.blog-grid article .loop-content p {
	line-height: 1.4;
	margin-left:0;
	font-size: 15px;
}
#main-wrapper .container.blog-grid article .loop-content a.view-article {
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	text-transform: uppercase;
}
#main-wrapper .container.blog-grid article .loop-content a.view-article:hover {
	text-decoration: underline;
}

#main-wrapper .container .listing {
	position: relative;
	margin: 0 auto;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
#main-wrapper .container .listing article {
	position: relative;
}
#main-wrapper .container .listing article .thumb {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 250px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f6f6f6;
}
#main-wrapper .container .listing article .thumb a {
	display: block;
}
#main-wrapper .container .listing article .thumb a img {
	width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    transform: scale(1);
    transition: transform .5s;
}
#main-wrapper .container .listing article .thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
#main-wrapper .container .listing article a h4 {
	margin: 25px 0 0 0;
    line-height: 1.3;
    font-size: 21px;
    font-weight: 700;
}
#main-wrapper .container .listing article a h4:hover {
	text-decoration: underline;
}
#main-wrapper .container .listing article a h4:after {
	content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #fff transparent;
    border-style: solid;
}
#main-wrapper .container .listing article p {
	font-size: 15px;
	line-height: 1.4;
	margin: 15px 0 10px 0;
	max-width: 100%;
    max-height: 100%;
    word-break: keep-all;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#main-wrapper .container .listing .view-all {
	text-align: center;
	margin-top: 50px;
	display: block;
}
#main-wrapper .container .listing .view-all a {
	font-size: 18px;
    font-weight: 500;
    fill: #fff;
    color: #fff;
    background-color: #407e00;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #407e00;
    border-radius: 0px 0px 0px 0px;
    padding: 16px 40px 16px 40px;
    display: inline-block;
}
#main-wrapper .container .listing .view-all a:hover {
    fill: #407e00;
    color: #407e00;
    border: 2px solid #407e00;
    background-color: #fff;
}

body.single-project #big-title:after,
body.single-post #big-title:after {
	opacity: .4;
}

.prev-next-posts {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}
.prev-posts-link {
	text-align: center;
	display: inline-block;
}
.prev-posts-link a {
	margin: 0 10px;
	border: 2px solid #407e00;
	padding: 5px 10px;
	border-radius: 4px;
}
.prev-posts-link a:hover {
	background-color: #407e00;
	border: 2px solid #407e00;
	color: #fff;
}
.next-posts-link {
	text-align: center;
}
.next-posts-link a {
	margin: 0 10px;
	border: 2px solid #407e00;
	padding: 5px 10px;
	border-radius: 4px;
}
.next-posts-link a:hover {
	background-color: #407e00;
	border: 2px solid #407e00;
	color: #fff;
}

.pagination {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 70px;
}
.pagination span.page-numbers.current {
    background: #000;
    color: #fff;
    padding: 7px 12px 8px 12px;
}
.pagination a.page-numbers {
    padding: 7px 12px 8px 12px;
    color: #000;
}
.pagination a.page-numbers:hover {
    background: #000;
    color: #fff;
}

.contact table {
	display: table;
	width: 100%;
	border: 0;
}
.contact table tr {
	position: relative;
	padding:  0 0 20px 0;
	vertical-align: top;
}
.contact table tr td {
	position: relative;
}
.contact table tr td:first-child {
	width: 120px;
}

#related {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: #f0f0f0;
}
#related .container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}
#related .container h3 {
	text-align: center;
	margin: 0 0 50px 0;
}
#related .container ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#related .container ul li {
	width: 31%;
	background-color: #fff;
	padding-bottom: 20px;
}
#related .container ul li table {
	display: none;
}
#related .container ul li .the-thumb {
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 250px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}
#related .container ul li .the-thumb a img {
	width: auto;
	height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
	margin: 0;
	transform: scale(1);
    transition: transform .5s;
}
#related .container ul li .the-thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
#related .container ul li .the-thumb .metadata {
	width: 70px;
    font-weight: 700;
    line-height: 1;
    float: left;
    position: absolute;
    text-align: center;
    background-color: #407e00d7;
    border-bottom: 0;
    padding: 10px 0;
    display: block;
    top: 10px;
    z-index: 9;
    left: 10px;
    margin-top: 0;
}
#related .container ul li .the-thumb .metadata .day {
	display: block;
	font-size: 34px;
	color: #fff;
}
#related .container ul li .the-thumb .metadata .month {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
}
#related .container ul li .the-thumb .metadata .year {
	display: block;
	font-size: 16px;
	color: #fff;
}
#related .container ul li a h4 {
	color: #262626;
    margin: 25px 0 0 0;
    line-height: 1.3;
    font-size: 21px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
}
#related .container ul li a h4:hover {
	text-decoration: underline;
}
#related .container ul li a h4:after {
	content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #f0f0f0 transparent;
    border-style: solid;
}
#related .container ul li p {
	font-size: 15px;
    line-height: 1.4;
    margin: 15px 20px 0 20px;
    max-width: 100%;
    max-height: 100%;
    word-break: keep-all;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#related .container ul li p a {
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	text-transform: uppercase;
}
#related .container ul li p a:hover {
	text-decoration: underline;
}

div.wpcf7 {position: relative;}
span.wpcf7-list-item {margin: 0; padding: 2px 5px;}
div.wpcf7 h3 {margin: 0; font-size: 16px;}
div.wpcf7 .wpcf7-form {position: relative; display: block;}
div.wpcf7 .wpcf7-form br {display: none; height: 0;}
div.wpcf7 .wpcf7-form p label {
	margin-bottom: 20px;
	display: block;
	overflow: hidden;
}
div.wpcf7 .wpcf7-form input {
	width: 100%;
	float: left;
	outline: 0;
	border: 2px solid #ccc;
	padding: 11px 20px;
	margin: 0;
	font-size: 16px;
	border-radius: 0;
	color: #000;
	background-color: #fff;
	display: block;
}
div.wpcf7 .wpcf7-form input:hover,
div.wpcf7 .wpcf7-form input:focus {
	border: 2px solid #222;
}
div.wpcf7 .wpcf7-form select,
div.wpcf7 .wpcf7-form textarea {
	width: 100%;
	float: left;
	outline: 0;
	font-size: 16px;
	padding: 11px 20px;
	margin: 0;
	color: #222;
	border: 2px solid #ccc;
	background-color: #fff;
	display: block;
	border-radius: 0;
	height: 100px;
}
div.wpcf7 .wpcf7-form input[type="date"] {
	color: #222;
}
div.wpcf7 .wpcf7-form select {
	height: auto;
}
select option {
  background: #000;
  color: #fff;
}
div.wpcf7 .wpcf7-form select:focus,
div.wpcf7 .wpcf7-form select:hover,
div.wpcf7 .wpcf7-form textarea:focus,
div.wpcf7 .wpcf7-form textarea:hover {
	border: 1px solid #222;
}
div.wpcf7 .wpcf7-form input[type="submit"] {
	width: 100%;
	outline: 0;
	border: 0;
	background-color: #407e00;
    color: #fff;
    font-weight: 700;
    padding: 16px 100px;
    font-size: 18px;
    margin: 0;
    display: inline-block;
    border: 0;
}
div.wpcf7 .wpcf7-form input[type="submit"]:hover {
	background-color: #377b59;
	outline: 0;
	border: 0;
	color: #fff;
}
span.wpcf7-form-control.wpcf7-checkbox {
	display: inline-block;
    overflow: hidden;
    font-size: 12px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin: 10px 10px 0 0;
}
div.wpcf7 .wpcf7-form input[type="checkbox"] {
	width: auto;
	float: left;
	margin: 5px 7px 0 0;
}
.wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    width: 100% !important;
    float: left !important;
    font-size: 14px;
    line-height: 1.2;
    background-color: transparent !important;
}
div.wpcf7 img.ajax-loader {position: absolute;}
img.ajax-loader {width: auto;}
.wpcf7-spinner {position: absolute; top: 45%; left: 45%;}
.wpcf7-not-valid-tip {font-size: 12px;}


.header #megamenu {
  position: fixed;
  font-size: 16px;
  line-height: 40px;
  text-transform: uppercase;
  z-index: 9999;
  float: right;
  cursor: pointer;
  top: 0;
  right: 20px;
  display: none;
}
.header #megamenu i {
  font-size: 24px;
}
#nav-toggle { position: absolute; left: 50%; top: 50%; }

#nav-toggle { cursor: pointer; padding: 10px 35px 16px 0px; }
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 30px;
  background:#fff;
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  top: -6px; 
}
#nav-toggle span:after {
  bottom: -6px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 500ms ease-in-out;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  background: #fff;
}
.menu-dropdown {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 80px;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0,0,0, .2);
}
.menu-dropdown .nav {
  position: relative;
  padding: 0;
  display: block;
  width: 100% !important;
  margin: 20px 0;
}
.menu-dropdown .nav ul {
  -webkit-font-smoothing:antialiased;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.menu-dropdown .nav ul li {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  border-bottom: 1px solid #eee;
}
.menu-dropdown .nav ul li a {
  display: block;
  font-size: 18px;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
  color: #222;
  line-height: normal;
}
.menu-dropdown .nav ul li a:hover {
  color: #222;
  border: 0;
}
.menu-dropdown .nav ul li.current_page_item a {
  color: #000;
}

blockquote {
	background-color: #f7f7f7;
    color: #262626;
    padding: 30px 40px;
    margin: 30px 0;
    display: block;
	font-style: italic;
	border-left: 4px solid #377b59;
}
blockquote p {
	margin: 0;
	font-size: 21px !important;
	font-family: 'Georgia';
	line-height: 1.3 !important;
	font-weight: 500 !important;
}

#slickbox {
	display: none;
	position: absolute;
	top: 35px;
	right: 130px;
	z-index: 99999;
	width: 250px;
	padding: 0;
}
.header.scrolled #slickbox {
	top: 18px;
}
#slickbox2 {
	display: none;
	position: fixed;
	top: 120px;
	right: 0;
	z-index: 9;
	width: 300px;
	padding: 30px;
	background-color: #377b59;
	color: rgba(255,255,255, .6);
	font-size: 14px;
	line-height: 1.4;
}
#slickbox2 h3 {
	color: #fff;
	margin: 0;
	font-size: 24px;
}
#slickbox2 img {
	margin-bottom: 20px;
}
#slickbox2 .socmed {
	margin-top: 30px;
}
#slickbox2 .socmed ul li {
	float: left !important;
	margin: 0 20px 0 0 !important;
}
.header.scrolled #slickbox2 {
	top: 80px;
}

.chaty-svg svg g circle {
	fill: #377b59 !important;
}
.gallery-item { margin: 0 !important; padding: 15px !important; line-height: 0 !important;}
.gallery-item img { border: 0 !important; height: 160px !important;}
.gallery-item .gallery-caption {margin: 0 !important; padding: 10px !important; background-color: #377b59; color: #fff;}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1500px) {
	#big-titlw .container,
	#main-wrapper .container,
	.post-headline .container,
	#foot .container {padding-left: 20px; padding-right: 20px;}
}
@media only screen and (max-width:1240px) {
	.nav ul li a {padding: 0 10px;}
	#big-title .container {padding-top: 250px; padding-bottom: 200px;}
}
@media only screen and (max-width:1024px) {
	html {padding-top: 0 !important;}
	.header {display: block; z-index: 99; top: 0; height: 90px; overflow: visible;}
	.header.white {height: 90px; position: relative; background-color: #fff;}
	.header .container {position: relative; background-color: transparent; padding: 0; height: 90px; overflow: hidden;}
	.header .container .logo {width: 170px; padding: 0; background: transparent;}
	.nav {display: none;}
	.header.scrolled {box-shadow: 0 1px 3px rgba(0,0,0, .3); transition: none; height: 90px;}
	.header.scrolled .container {padding: 0; height: 90px;}
	.header.scrolled .container .logo {width: 170px;}
	.header.scrolled.white {background-color: #fff; height: 90px;}
	.header.scrolled .container .topright ul li a {line-height: 90px;}
	.header .container .topright {position: fixed; right: 60px; top: 0; display: none;}
  	.header.scrolled .container .topright {position: fixed; right: 60px; top: 0;}
  	.header .container .topright ul li a {line-height: 90px; border-bottom: 0;}
  	.header.white .container .topright ul li a {line-height: 90px; border-bottom: 0;}
  	.header.white.scrolled .container .topright ul li a {line-height: 90px; border-bottom: 0;}
	
	.header #megamenu {display: block !important; top: 35px; z-index: 99999; right: 54px;}
	.header.scrolled #megamenu {display: block !important; top: 35px; z-index: 99999;}
	.header.scrolled #megamenu #nav-toggle span {background-color: #000;}
	.header.scrolled #megamenu #nav-toggle span:before, .header.scrolled #megamenu #nav-toggle span:after {background-color: #000;}
  	.header.scrolled #megamenu #nav-toggle.active span {background-color: transparent;}
  	
  	.header .menu-dropdown {display: block; top: 90px; background-color: #fff; padding: 20px !important;}
	.header .menu-dropdown .textwidget h3 {margin: 0 0 5px 0;}
  	.header.scrolled .menu-dropdown {display: block; top: 90px;}
  	.header .menu-dropdown .socmed ul li {margin: 0 10px 0 0;}
  	.header .menu-dropdown .socmed ul li a {background-color: #407E00; border-radius: 70px; width: 40px;height: 40px;line-height: 43px;}

  	.header.white #megamenu #nav-toggle span, .header.white #megamenu #nav-toggle span:before, .header.white #megamenu #nav-toggle span:after {background: #000;}
  	.header.white #megamenu #nav-toggle.active span {background: transparent;}
  	.header.white.scrolled #megamenu #nav-toggle span, .header.white.scrolled #megamenu #nav-toggle span:before, .header.white.scrolled #megamenu #nav-toggle span:after {background: #262626;}
  	.header.white.scrolled #megamenu #nav-toggle.active span {background: transparent;}

  	#slickbox {top: 25px; right: 166px;}
  	.header.scrolled #slickbox {top: 0;}
	.header #slickbox2 {top: 90px; width: 100%; right: 0; left: 0;}
	.header #slickbox2 img {width: 150px;}

  	#related .container ul li {width: 50%;}
  	#related .container ul li table {display: none;}
}

@media only screen and (max-width:768px) {
	html {padding-top: 0 !important;}
	body {font-size: 15px;}
	body h4 {font-size: 18px; line-height: 1.6;}
	.main-btn {position: relative;}
	.main-btn .elementor-button {width: 100% !important; max-width: 200px;}

	.process {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
	.process .elementor-tab-mobile-title {
		font-size: 20px;
		font-weight: 400 !important;
		letter-spacing: .2px;
		padding: 10px 20px 0 20px !important;
		border-top: 4px solid transparent !important;
	}
	.process .elementor-tab-mobile-title span {
		font-weight: 400;
		margin-right: 6px;
	}
	.process .elementor-tab-mobile-title.elementor-active {
		border-top: 4px solid #377b59 !important;
	}
	.process .elementor-tab-content {
		padding: 10px 25px !important;
	}

	.featured-news .inner {padding: 50px 20px;}
	.featured-news .inner h3 {font-size: 35px; line-height: 1.2; margin-bottom: 30px;}
	.featured-news .inner ul {display: block;}
	.featured-news .inner ul li {width: 100%; margin-bottom: 25px;}
	.featured-news .inner ul li .thumb {height: 200px;}
	.featured-news .inner ul li:first-child {width: 100%;}
	.featured-news .inner ul li:first-child a h4 {font-size: 20px;}

	.featured-logo .elementor-inner-column {width: 50%;}
	.featured-logo {padding: 70px 10px !important;}

	#main-wrapper .container .listing {display: block;}
	#main-wrapper .container .listing article {width: 100%}
	#main-wrapper .container .listing article .thumb {height: 200px;}

	#main-wrapper .container .listing {width: 100%; display: block;}
	#main-wrapper .container .listing article {width: 100%; padding: 0; margin-bottom: 25px;}
	#related .container {padding: 50px 20px;}
	#related .container h3 {margin-bottom: 30px;}
	#related .container ul {width: 100%; display: block;}
	#related .container ul li {width: 100%; margin-bottom: 30px;}
	#related .container ul li .the-thumb {height: 200px;}

	.list-style-1 ul li {font-size: 18px;}
	.list-style-2 ul li {font-size: 18px;}

	#big-title .container {padding-top: 170px; padding-bottom: 50px;}
	#big-title .container h1 {font-size: 32px; line-height: 1.2; position: relative;}
	#big-title:before {border-width: 0 0 50px 50px;}
	
	#main-wrapper {margin-top: 0;}
	#main-wrapper .container {padding: 50px 20px;}
	#main-wrapper .container .blog-title {display: block;}
	#main-wrapper .container .blog-title h1 {font-size: 36px; margin: 0 0 20px 0;}
	#main-wrapper .container.blog-grid {display: block;}
	#main-wrapper .container.blog-grid article {width: 100%; margin: 0 0 25px 0;}
	#main-wrapper .container.blog-grid article .thumb {height: 200px;}
	#main-wrapper .container.blog-grid article .loop-content h2 {font-size: 21px;}
	#main-wrapper .container .metadata {margin-bottom: 20px; padding: 20px;}
	#main-wrapper .container .share {width: 100%; float: none; margin-top: 30px; text-align: center;}
	#main-wrapper .container article h1 {font-size: 30px; margin-top: -10px;}
	#main-wrapper .container .body-content article.full {margin-top: 10px;}
	#main-wrapper .container .body-content article.full h1 {font-size: 30px;}
	#main-wrapper .container .body-content article.full h1 {font-size: 30px;}
	#main-wrapper .container .body-content article.full h2 {font-size: 24px; line-height: 1.2}
	#main-wrapper .container .body-content article.full h3 {font-size: 20px; line-height: 1.3;}
	#main-wrapper .container .body-content article.full p {font-size: 16px;}
	#main-wrapper .container .body-content article.full ul li {font-size: 16px;}
	#main-wrapper .container .body-content article.full ol li {font-size: 16px;}
	.pagination {margin-bottom: 50px;}

	.project-spec {margin-top: -40px;}
	.project-spec .container table tr {width: 50%; border-bottom: 1px solid #ddd;}
	.project-spec .container table tr:nth-child(2) {border-right: 0;}
	.project-spec .container table tr:nth-child(3),
	.project-spec .container table tr:last-child {border-bottom: 0;}
	.project-spec .container table tr td {font-size: 17px;}

	.left-sidebar-menu ul li {margin-bottom: 0;}

	div.wpcf7 .col > div {width: 100%;}
	div.wpcf7 .wpcf7-form input {margin: 5px 0;}
	div.wpcf7 .wpcf7-form select {margin: 5px 0;}
	div.wpcf7 .col-2 > div {width: 100%;}
	div.wpcf7 .wpcf7-form input[type="submit"] {
		width: 100%;
		display: block;
	}

	#foot.top {border-bottom: 0 !important;}
	#foot.top .container {padding: 30px 20px 0 20px;}

	#foot {border-radius: 0;}
	#foot .container {padding: 30px 20px 30px 20px; font-size: 14px;}
	#foot .container > div {width: 100%; text-align: center;}
	#foot .container > div img {width: 200px;}
	#foot .container > div > h3 {margin-top: 30px; border-top: 1px solid #ffffff30; padding-top: 30px; margin-bottom: 15px;}
	#foot .container ul li a {font-size: 14px;}
	#foot .container div.wpcf7 .wpcf7-form p label {margin-bottom: 0;}
	#foot .container div.wpcf7 .wpcf7-form input[type="submit"] {margin: 5px auto; display: block; width: 100%;}
	.copyright {padding-bottom: 100px;}
	.socmed {
		position: relative;
		display: block;
		margin: 30px 0 0 0;
	}
	.socmed ul {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	}
	.socmed ul li {text-align: center; float: none; display: inline-block; margin: 0 10px;}
	.socmed ul li a i {font-size: 18px;}
}
@media only screen and (max-width:640px) {
/* 	.gallery-item:nth-child(2n+1) {clear:left;} */
	#big-title img {height: 100%;}
	.gallery-item { margin: 0 0 15px 0 !important; padding: 0 !important; line-height: 0 !important; width: 100% !important;}
	.gallery-item img { border: 0 !important; height: 160px !important;}
	.gallery-item .gallery-caption {margin: 0 !important; padding: 10px !important; background-color: #377b59; color: #fff;}
	#main-wrapper .container .metadata {font-size: 14px;}
}
@media only screen and (max-width:480px) {
	#big-title {background-size: auto;}
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::-webkit-input-placeholder { /* Edge */
  color: #222;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #222;
}

::placeholder {
  color: #222;
}

::selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #ddd;
	max-width:100%;
	padding: 0;
	font-size: 16px;
	font-style: italic;
	text-align:center;
}
.wp-caption.alignnone {
	margin:0 0 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 16px;
	line-height: 1.3;
	margin:0;
	padding: 20px;
	text-align: left;
}
p.wp-caption-text {
	font-size: 16px !important;
	font-style: italic;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}
.sticky {

}
.bypostauthor {

}
.addtoany_content {
	margin: 60px 0 0 0 !important;
	text-align: center;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #377b59;
}
