@charset "utf-8";
/* CSS Document */

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

* {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    scrollbar-width: thin;
}
body { margin: 0; padding: 0; overflow-x: hidden; font-family: "Poppins", serif; }
body.scroll { overflow: hidden; }
h1, h2, h3,h4, h5, h6, ol, ul, li, img, a { text-decoration:none; margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,button { font-family: "Poppins", serif; }
a:hover { text-decoration: none; }
blockquote, figure { padding:0; margin:0; border-left: 0; }
*:focus { outline: none !important; }
img { max-width: 100%; }
main, header, section, footer { width: 100%; float: left; }
a,[type=button],[type=submit] { transition:All 0.3s ease; -webkit-transition:All 0.3s ease; -moz-transition:All 0.3s ease; -o-transition:All 0.3s ease; }
p, li { font-size:15px; font-weight: 400; }
@media only screen and (max-width: 1199px) { p, li { font-size:14px; } }
@media only screen and (max-width: 991px) { p, li { font-size:13px; } }
p { margin-bottom: 15px; }
p:last-of-type { margin-bottom: 0; }

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { appearance:none; -webkit-appearance:none; -moz-appearance:none; margin:0; }
input[type=number] { -moz-appearance:textfield; }
select { background:url("../images/select-arrow.svg") 97% center no-repeat; -webkit-appearance: none; -moz-appearance: none; appearance: none;  background-size:15px; }

/*Common Padding*/
.commonPY {
	padding-top: 80px;
	padding-bottom: 80px;
}
.commonPT {
	padding-top: 80px;
}
.commonPB {
	padding-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
	/*Common Padding*/
	.commonPY {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.commonPT {
		padding-top: 60px;
	}
	.commonPB {
		padding-bottom: 60px;
	}
}
@media only screen and (max-width: 991px) {
	/*Common Padding*/
	.commonPY {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.commonPT {
		padding-top: 50px;
	}
	.commonPB {
		padding-bottom: 50px;
	}
}


/*Common Button*/
.buttonOuter {
	margin-top: 40px;
}
.commonButton {
	background-color: #000;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	text-transform: uppercase;
	border: 1px solid #000;
	border-radius: 50px;
}
.commonButton:hover {
	background-color: transparent;
	color: #000;
}

/*Common Flex*/
.common-flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
}
@media only screen and (max-width: 767px) {
	.common-flex {
		justify-content: center;
	}
}
@media only screen and (max-width: 575px) {
	.common-flex {
		gap: 10px 32px;
	}
}


/*Social media and contact info*/
.social-media li {
	font-size: 18px;
}
.top-contact-info li a,
.social-media li a {
	color: #fff;
}
.top-contact-info li a:hover,
.social-media li a:hover {
	color: #51b848;
}

/*Header*/
.header {
	background-color: #fff;
}
.top-info {
	background-color: #000;
}
.header-inner,
.top-info-inner {
	justify-content: space-between;
	padding: 20px 0;
}
.top-info-inner {
	padding: 10px 0;
}
.header-inner {
	padding: 20px 0;
}
.logo a {
	display: block;
}
.logo img {
	width: 100%;
	max-height: 80px;
	max-width: 140px;
}

/*Mobile menu style*/
.menuIcon {
	position: relative;
	width: 30px;
	height: 25px;
	display: none;
	cursor: pointer;
	margin-left: auto;
}
.menuIcon.active {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 101;
}
.menuIcon span {
	position: relative;
	background-color: #000;
	width: 100%;
	height: 2px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 2px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.menuIcon span:nth-child(2) {
	width: 80%;
	margin: 8px 0;
	margin-left: auto;
}
.menuIcon.active span:nth-child(1) {
	-moz-transform: rotate(45deg) translate(8px, 7px);
	-o-transform: rotate(45deg) translate(8px, 7px);
	-ms-transform: rotate(45deg) translate(8px, 7px);
	-webkit-transform: rotate(45deg) translate(8px, 7px);
	transform: rotate(45deg) translate(8px, 7px);
}
.menuIcon.active span:nth-child(2) {
	opacity: 0;
}
.menuIcon.active span:nth-child(3) {
	-moz-transform: rotate(-45deg) translate(7px, -7px);
	-o-transform: rotate(-45deg) translate(7px, -7px);
	-ms-transform: rotate(-45deg) translate(7px, -7px);
	-webkit-transform: rotate(-45deg) translate(7px, -7px);
	transform: rotate(-45deg) translate(7px, -7px);
}

/*Navbar*/
/* Customize the active anchor tag */
.active {
    color: red; /* Change this to your desired active color */
     
}

.navbar li a {
	position: relative;
	display: block;
	color: #000;
	padding: 5px 8px;
	border-bottom: 2px solid transparent;
}
.navbar li a::before {
	content: "";
	background-color: transparent;
	width: 0;
	height: 2px;
	position: absolute;
	top: 100%;
	left: 0;
	transition: all 0.3s ease-in-out;
}
.navbar li a:hover,
.navbar li a.active {
	color: #51b848;
}
.navbar li a.active:before,
.navbar li a:hover:before {
	background-color: #51b848;
	width: 100%;
}
@media only screen and (max-width: 991px) {
	/*Logo*/
	.logo img {
		max-height: 80px;
		max-width: 150px;
	}
	.header-inner {
		padding: 10px 0;
	}
	.top-info-inner {
		flex-direction: row;
	}
	.top-info-inner {
		gap: 10px;
	}
}
@media only screen and (max-width: 767px) {

	/*Header*/
	.header .container {
		max-width: 100%;
	}
	.logo img {
		max-height: 70px;
		max-width: 100px;
	}

	/*Mobile menu style*/
	.menuIcon {
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
	.navbar {
		background: #fff;
		position: fixed;
		top: 0;
		right: 0;
		width: 250px;
		height: 100vh;
		align-items: flex-start;
		flex-direction: column;
		padding: 70px 15px 20px;
		overflow-y: auto;
		pointer-events: none;
		opacity: 0;
		z-index: 100;
		-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		-moz-transform: translate(100%, 0);
		-o-transform: translate(100%, 0);
		-ms-transform: translate(100%, 0);
		-webkit-transform: translate(100%, 0);
		transform: translate(100%, 0);
		-webkit-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.navbar.toggle {
		-moz-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1;
		pointer-events: all;
	}
	.navbar .common-flex {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.navbar ul li {
		width: 100%;
	}

}

/*Banner*/
.banner {
	background-color: #eaeaea;
	text-align: center;
}
.banner h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.2em;
}
.banner h6 {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
	.banner h1 {
		font-size: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.banner h1 {
		font-size: 70px;
	}
}
@media only screen and (max-width: 767px) {
	.banner h1 {
		font-size: 60px;
	}
}
@media only screen and (max-width: 575px) {
	.banner h1 {
		font-size: 50px;
	}
	.banner h6 {
		font-size: 14px;
		margin-top: 20px;
	}
}
@media only screen and (max-width: 479px) {
	.banner h1 {
		font-size: 40px;
	}
}


/*Blog Article*/
.blog-grid {
	margin-bottom: 50px;
}
.blog-article {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.blog-article-img {
	position: relative;
	overflow: hidden;
}
.blog-article-img a {
	display: block;
}
.blog-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-article-img img,
.blog-article h4 {
	transition: all 0.3s ease-in-out;
}
.blog-article h4 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	line-height: 1.3em;
}
.blog-article h6 {
	font-size: 15px;
	font-weight: 400;
	color: #000;
}
.blog-article:hover .blog-article-img img {
	transform: scale(1.1);
}
.blog-article:hover h4  {
	color: #51b848;
}
@media only screen and (max-width: 1299px) {
	.blog-article h4 {
		font-size: 35px;
	}
}
@media only screen and (max-width: 991px) {
	.blog-grid:last-child {
		margin-bottom: 0;
	}
	.blog-article h4 {
		font-size: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.blog-article h4 {
		font-size: 26px;
	}
}

/*Blog Detail*/
.blog-detail li {
	position: relative;
	padding-left: 20px;
}
.blog-detail li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	background-color: #000;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.blog-detail li + li {
	margin-top: 10px;
}
.blog-detail li a {
	color: #000;
}
.blog-detail-content > img {
	width: 100%;
	margin-top: 40px;
}
.blog-detail-content > img:first-of-type {
	margin-top: 0;
}
.blog-detail-content h2 {
	font-size: 40px;
	font-weight: 700;
	margin-top: 30px;
	color: #000;
}
@media only screen and (max-width: 991px) {
	.blog-detail-content h2 {
		font-size: 35px;
		margin-top: 20px;
	}
}
.blog-detail-content p {
	margin-top: 30px;
	margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
	.blog-detail-content p {
		margin-top: 20px;
	}
}

.blog-detail-post h4 {
	font-size: 25px;
	font-weight: 700;
	color: #000;
	margin-top: 30px;
	margin-bottom: 15px;
}
.blog-detail-post h4:first-of-type {
	margin-top: 0;
}
@media only screen and (max-width: 991px) {
	.blog-detail-post {
		margin-top: 50px;
	}	
}


/*Footer*/
.footer {
	text-align: center;
}
.footer-inner {
	justify-content: space-between;
	padding: 30px 0;
}
.footer-social-media ul {
	gap: 12px;
}
.footer-social-media a {
	background-color: rgba(0,0,0,0.05);
	width: 45px;
	height: 45px;
	display: inline-block;
	font-size: 17px;
	color: #000;
	text-align: center;
	line-height: 45px;
	border-radius: 50%;
}
.footer-social-media a:hover {
	background-color: #000;
	color: #fff;
}
.footer-links a {
	display: inline-block;
	color: #000;
	font-weight: 500;
}
.footer-links a:hover {
	color: #51b848;
}
.copyright {
	font-size: 15px;
	padding: 20px 0;
	border-top: 1px solid rgba(0,0,0,0.1);
}
@media only screen and (max-width: 991px) {
	.footer-inner {
		flex-direction: column;
	}
}
@media only screen and (max-width: 575px) {
	.footer-links {
		margin-top: 20px;
	}
	.copyright {
		font-size: 14px;
	}
}


/* banner slick slider css */
/* banner slick slider css */
 .banner-inner img {
    width: 100%;
} 

.banner-inner .slick-dots button {
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #D6D6D6;
    text-indent: -9999px;
    border: 2px solid transparent;
    cursor: pointer;
}

.banner-inner .slick-dots li.slick-active button,
.banner-inner .slick-dots li.slick-active button:hover {
    background-color: #9E8425;
    background: -o-radial-gradient(circle, rgba(158, 132, 37, 1) 49%, rgba(158, 132, 37, 0) 49%);
    background: radial-gradient(circle, rgba(158, 132, 37, 1) 49%, rgba(158, 132, 37, 0) 49%);
    border-color: #9E8425;
}

.banner-inner ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%); 
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.banner-inner ul.slick-dots li {
    margin: 0 5px;
}


.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto; /* Remove fixed width */
    height: auto; /* Remove fixed height */
    background: none; /* Remove background */
    border: none; /* Remove border */
    cursor: pointer;
    color: #fff; /* White arrow color */
}

.slick-prev::before,
.slick-next::before {
    content: ''; 
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Customize the arrow shapes */
.slick-prev::before {
    border-width: 10px 12px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.slick-next::before {
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #fff;
}

.slick-prev {
    left: 10px; /* Position for the previous arrow */
}

.slick-next {
    right: 10px; /* Position for the next arrow */
}

.slick-prev:hover,
.slick-next:hover {
    color: #ccc; /* Optional: Lighter arrow color on hover */
}


/*Contact Form*/
.contact-form label {
	width: 100%;
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
}
.contact-form .wpcf7-form-control-wrap {
	width: 100%;
	display: block;
}
.contact-form .wpcf7-form-control {
	width: 100%;
	display: inline-block;
	font-size: 14px;
	height: 45px;
	border: 1px solid #ccc;
	padding: 5px 15px;
}
.contact-form .wpcf7-form-control.wpcf7-textarea {
	height: 120px;
	padding-top: 15px;
	resize: none;
}
.contact-form .wpcf7-not-valid-tip {
	font-size: 12px;
}
.contact-form .wpcf7-form-control.wpcf7-submit {
	width: auto;
	min-width: 120px;
	background-color: #000;
	color: #fff;
	border-color: #000;	
}
.contact-form .wpcf7-form-control.wpcf7-submit:hover {
	background-color: #51b848;
	color: #fff;
	border-color: #51b848;
}
/*Map*/
.contact-location-map {
	width: 100%;
	height: 365px;
}
.contact-location-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: inline-block;
	vertical-align: middle;
}



/*About*/
.about-image img {
	width: 100%;
}
.about h3 {
	font-size: 25px;
	margin-bottom: 5px;
}

@media only screen and (max-width: 991px) {
	.contact-grid + .contact-grid,
	.about-grid + .about-grid {
		margin-top: 30px;
	}
}

section.blog-detail.commonPY table td, table th {
    border: 1px solid #ccc;
    padding: 10px;
}

section.blog-detail.commonPY h1, section.blog-detail.commonPY h2, section.blog-detail.commonPY h3, section.blog-detail.commonPY h4, section.blog-detail.commonPY h5, section.blog-detail.commonPY h6 {
     margin: 20px 0;
}