* {
	outline: none !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding: 0px;
	margin: 0px;
}

ul li,
ol li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
}

a,
a:hover,
a:focus,
a:active {
	outline: none !important;
	text-decoration: none;
	color: var(--primary-color);
}

body {
	font-size: 14px;
	font-family: Arial,  sans-serif;
}

img {
	max-width: 100%;
	display: block;
}

/* Common css */

.container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.content-main {
	float: left;
	width: 100%;
}

.page-dark-btn {
    padding: 9px 20px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 10px;
    background-color: #548C2F;
    border: 1px solid #548C2F;
    transition: all .5s;
    color: #fff;
}
.page-dark-btn:hover {
	background-color: #222222;
	transition: all .5s;
	color: #fff;
}

.fw-medium {
	font-weight: 500;
}
/* keyframe */
/* Border hover */
@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

/* Header fixed */
@-webkit-keyframes slide-in {
	from {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slide-in {
	from {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* Header startv */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.header .header-inner {
	padding: 14px 0;
	position: relative;
}

.header .header-inner:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #295F461A;
	backdrop-filter: blur(40px);
	z-index: -1;
	display: none;
}
.header-mobile-number {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
}

.header-mobile-number:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #295F461A;
    backdrop-filter: blur(40px);
    z-index: -1;
}
.header.fixed-top .header-inner:after {
	display: block;
}
.header.fixed-top .header-inner {
	background: rgba(0,0,0,0.2);
	padding: 10px 0;
	-webkit-animation: slide-in 400ms ease-out;
	animation: slide-in 400ms ease-out;
}

.header-shap {
	position: relative;
}

.header-bg-image {
	min-height: 80px;
  width: 100%;
}

.header-btn-bg {
	position: relative;
}

.header-btn-bg-image {
	position: absolute;
	width: 100%;
	min-height: 60px;
	left: 50%;
	top: 50%;
	background-color: transparent;
	transform: translate(-50%, -50%);
	border: 0;
}
.header-btn-bg-image:hover {
	background-color: transparent;
}
.header-shap-nav {
	max-width: 1170px;
	margin: -70px auto 0;
	padding-left: 20px;
}
.header.fixed-top .header-bg-image{
	display: none !important;
	min-height: unset;
}

.header.fixed-top .header-shap-nav {
	margin: 0;
	padding: 0;
}
.header-shap .logo {
	max-width: 117px;
}

.navbar-nav .nav-item {
	padding: 20px  8px!important;
}
.nav-item .nav-link {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	position: relative;
	color: #fff;
}

.nav-item .nav-link:after {
	content: "";
	height: 2px;
	width: 0;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	transition: all ease-in-out 300ms;
	background: #548C2F;
	margin: auto;
}

.nav-item:hover .nav-link {
	color: #548C2F;
}

.nav-item:hover .nav-link:after {
	width: 100%;
	-webkit-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	transition: all ease-in-out 300ms;
}

.header-mobile-number {
	background: rgba(0,0,0,0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: 10px 20px;
}

.header-mobile-number a {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}

.mobile-bottom-btn {
	position: fixed;
	width: 100%;
	bottom: 0;
}
.mobile-btn-left {
	background-color: #222;
}
.mobile-btn-right {
	background-color: #548C2F;
}
.mobile-btn {
	padding: 16px;
	font-size: 16px;
	width: 50%;
	display: block;
	color: #fff;
	font-weight: 700;
	border-top: 1px solid #fff;
}

.header-mobile-number {
	padding: 8px 20px;
}

.header-mobile-number a {
	font-size: 25px;
	font-weight: 800;
	color: #fff;
}
.mobile-btn-right:hover {
	color: black;
}
@media (max-width: 991px) {
	.navbar {
	  display: flex !important;
	  justify-content: space-between !important;
	  width: 100% !important;
	}
	
	.navbar > * {
	  flex: 0 1 auto;
	}
  }

  .mobile-bottom-btn {
	overflow-x: hidden;
  }
/* Home Page */
/* Hero section */

/* Saved for navbar */
.dropdown-menu>li>a {
	padding: 12px;
}
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: #fff;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
    }

    .dropdown-menu.show {
        display: block;
    }
}
header.header.fixed-top .header-btn-bg img:not([alt="Call Now!"]) {
    display: none;
}

header.header.fixed-top .header-btn-bg-image {
    position: static;
    background-color: #548C2F;
    border: 1px solid #548C2F;
    background-image: none;
    transform: inherit;
    min-height: inherit;
}
.fw-medium {
    font-weight: 500;
}
.hero-section {
	height: 100vh;
	background-image: url(../images/home-banner.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 70px 0;
}
.hero-section:after {
	content: '';
	background: linear-gradient(360deg, rgba(34, 34, 34, 0.6) 26.67%, rgba(34, 34, 34, 0.2) 56%, rgba(34, 34, 34, 0) 100%);
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	position: absolute;
}

.hero-inner {
	max-width: 666px;
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
}
.hero-inner strong {
	color: #fff;
	font-weight: 700;
	line-height: 56px;
	padding-bottom: 26px;
	font-size: 48px;
}

.hero-inner p {
	font-size: 22px;
	color: #fff;
	font-weight: 500;
	line-height: 26px;
	padding-bottom: 32px;
	margin-top: 8px;
}

.hero-inner a {
	color: #fff;
	padding: 19px 52px;
	background-color: var(--primary-color);
	border-radius: 10px;
	text-align: center;
	font-weight: 700;
	font-size: 28px;
	transition: all .5s;
}
.hero-inner a:hover {
	background-color: #fff;
	color: var(--primary-color);
	transition: all .5s;
}

/* contact-section */
.contact-section {
	padding: 80px 0;
	background-color: #fff;
}
.contact-us {
	background: var(--accent-color);
	border-radius: 40px;
	padding: 10px;
}
.contact-us-left {
	padding: 70px;
	width: 48%;
}
.contact-us-left h2 {
	color: #222222;
	font-weight: 700;
	line-height: 82px;
	padding-bottom: 38px;
	font-size: 52px;
}
.contact-us-left p {
	font-weight: 500;
	font-size: 20px;
	line-height: 26px;
	color: rgba(34, 34, 34, 0.6);
}
.contact-us-right {
	background-color: #fff;
	border-radius: 30px;
	padding: 42px;
	width: 52%;
}
.text-red {
	color: rgba(235, 31, 31, 1);
}
.page-field .form-control{
	font-size: 15px;
	font-weight: 500;
	color: rgba(34, 34, 34, 1);
	padding: 16px;
	line-height: 22px;
	background-color: rgba(245, 245, 245, 1);
	border-radius: 10px;
}

.page-field .iti__selected-flag {
	border-radius: 10px 0 0 10px;
	padding: 0 14px;
	background-color: transparent;
}
.page-field .intl-tel-input,
.page-field .iti{
  width: 100%;
}

.form_button {
	min-width: 150px;
	height: 60px;
}

.parsley-required, .parsley-type {
	color: red;
	font-weight: 500;
}
/* Footer Start */
.footer {
	background: var(--primary-color);
	padding: 60px 0;
}
.footer-description {
	color: #fff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
}
.footer-list a {
	flex-wrap: wrap;
  }
  .footer-description {
	word-break: break-word;
	white-space: normal;
  }
.footer-list ul li a:hover,
.footer-contact-detail a:hover {
	color: #E5ECF3;
}

.footer-list ul {
	gap: 50px;
}
.copyright-text {
	padding: 20px 0;
}
/* Footer End */
/* Header end */
.dropdown-container {
    position: relative; /* Ensure the dropdown menu is positioned relative to the container */
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
	border-radius: 8px !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
	opacity: 0; 
	pointer-events: none;
	
}
.footer-list h3 {
	color: #fff;

}
.footer-list ul li {
	padding: 4px;
    margin-top: 8px;
}
@media (min-width: 992px) {
	.dropdown-container:hover .dropdown-menu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		top: 47px;
		opacity: 1;
		pointer-events: auto;
	}

}


@media(max-width:991px) {
	
	/* Header */
	.logo-close-sidebar-top {
    padding: 20px;
	}

	.navbar-nav .nav-item {
    padding: 10px 20px !important;
	}

	.navbar-toggler-icon.close {
			background-image: none;
	}
	.header-mobile-number {
		display: none !important;
	}
	.header.fixed-top .header-mobile-number {
		display: block !important;
	}

	/* sidebar */
	.header .header-inner .navbar-collapse {
		display: block !important;
		position: fixed;
		top: 0;
		bottom: 0;
		left: -350px;
		background-color: #fff;
		width: 100%;
		max-width: fit-content;
		z-index: 33;
		height: auto !important;
		overflow-y: auto;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}

	.header .header-inner .navbar-collapse.show {
		left: 0;
	}

	.sidebar-overlay {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-filter: blur(1px);
		filter: blur(1px);
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-webkit-animation: fadeIn ease .3s;
		animation: fadeIn ease .3s;
		z-index: 3;
	}

	/* sidebar end */
	/* Home */
	.contact-us-left {
    padding: 27px;
    width: 100%;
	}
	.contact-us-right {
    padding: 32px;
    width: 100%;
}
	/* Footer */

	/* Footer end */
}
@media(max-width:767px) {
	/* Footer */
	.footer {
		padding-top: 50px;
        padding-bottom: 20px;
	}
	.footer-logo-text {
    padding-bottom: 20px;
	}
	.footer-logo-text a {
    padding-bottom: 38px;
	}
	.footer-list {
		padding: 20px 0;
	}
	.footer-list ul {
    gap: 0;
	}

	.footer-contact-detail {
		padding: 16px;
	}
}
@media(max-width:576px) {
	/* Hero */
	.hero-section {
		padding: 44px 0;
	}
	.hero-section:after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.28%, rgba(0, 0, 0, 0.7) 79.24%);
	}
	.hero-inner h1 {
    line-height: 43px;
    padding-bottom: 24px;
    font-size: 36px;
	}
	.hero-inner p {
    font-size: 18px;
    line-height: 21px;
	}
	.hero-inner a {
    padding: 9px 22px;
    font-size: 20px;
	}
	/* Home */
	.contact-section {
		padding: 50px 0;
	}
	.contact-us {
		border-radius: 24px;
		padding: 5px;
	}
	.contact-us-left h2 {
		font-size: 42px;
		line-height: 48px;
		padding-bottom: 24px;
	}
	.contact-us-left p {
    font-size: 16px;
    line-height: 20px;
	}
	.contact-us-right {
		padding: 16px;
		border-radius: 20px;
	}
	.form_button {
		height: 58px;
	}
}

#mobileMenu .dropdown-menu {
    position: static;
    width: 100%;
}
#mobileMenu .mobile-services-menu {
    display: none;

}

#mobileMenu .mobile-services-menu.show {
    display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	opacity: 1;
	border: 0;
	box-shadow: none;
	pointer-events: all;
}
.quote-banner {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    text-align: center;
}

.quote-banner-title {
  display: block;
  color: #073A70;
  font-size: 31px !important;
  letter-spacing: -0.03em;
  margin-bottom: 5px !important;
  border-bottom:  0!important;
}
.quote-banner-title::after {
    display: none;
}

.quote-banner-button {
    background: #4CAF50;
    color: white !important;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    min-width: 250px;
}
.quote-banner-button:hover {
    transform: translate3d(0px, -4px, 0.01px) !important;
    background-color: white !important;
    color: #000 !important;
}
.quote-banner-button:hover .quote-banner-title {
    color: #000 !important;
}
.initial-phone {
	display: none;
}


@media(max-width:991px) {
	
.initial-phone {
	display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 87%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
	width: 70%;
}
.scrolled .initial-phone {
    opacity: 0;
    pointer-events: none;
}
.initial-phone svg {
	min-width: 28px !important;
	min-height: 28px !important;
}
	
	/* Header */
	.header-shap-nav {
    max-width: 1170px;
    margin: -66px auto 0;
    padding-left: 20px;
    padding-right: 20px;
	}
	.nav-item .nav-link {
		color: #fff;
	}
	.logo-close-sidebar-top {
    padding: 20px;
	}

	.navbar-nav .nav-item {
    padding: 10px 20px !important;
	}

	.navbar-toggler-icon.close, .navbar-toggler-icon {
			background-image: none;
	}
	.header-mobile-number {
		display: none !important;
	}
	.header.fixed-top .header-mobile-number {
		display: block !important;
	}

	.mobile-bottom-btn {
		display: none !important;
	}
	.header.fixed-top .mobile-bottom-btn {
		display: flex !important;
	}
	/* sidebar */
	.header .header-inner .navbar-collapse {
		display: block !important;
		position: fixed;
		top: 0;
		bottom: 0;
		left: -350px;
		background-color: #000;
		width: 100%;
		/* max-width: 350px; */
		z-index: 33;
		height: auto !important;
		overflow-y: auto;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}

	.header .header-inner .navbar-collapse.show {
		left: 0;
	}

	.sidebar-overlay {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-filter: blur(1px);
		filter: blur(1px);
		filter: invert(100%);
		-webkit-filter: invert(100%);
		-webkit-animation: fadeIn ease .3s;
		animation: fadeIn ease .3s;
		z-index: 3;
	}

	/* sidebar end */
	/* Home */
	.contact-us-left {
    padding: 27px;
    width: 100%;
	}
	.contact-us-right {
    padding: 32px;
    width: 100%;
}
	/* Footer */
	.copyright-text {
		margin-top: 20px;
		text-align: center;
	}
	.footer {
		margin-bottom: 50px;
	}
	/* Footer end */
}
@media(max-width:767px) {
	/* Footer */
	.footer-logo-text {
		padding-bottom: 20px;
	}
	.footer-list {
    padding: 20px 0;
	}
	.footer-list ul li {
    flex-basis: 50%;
		padding: 24px 0 0 0 ;
	}
	.copyright-text {
		text-align: left;
		padding-bottom: 72px;
	}
}
@media(max-width:576px) {
	/* Hero */
	.hero-section {
		padding: 44px 0;
	}
	#mobileMenu .mobile-services-menu.show {
		grid-template-columns: 1fr;
		max-height: 300px;
        overflow-y: scroll;
	}
	.hero-section:after {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.28%, rgba(0, 0, 0, 0.7) 79.24%);
	}
	.hero-inner h1 {
    line-height: 43px;
    padding-bottom: 24px;
    font-size: 36px;
	}
	.hero-inner p {
    font-size: 18px;
    line-height: 21px;
	}
	.hero-inner a {
		padding: 9px 15px;
		font-size: 19px;
}
	/* Home */
	.contact-section {
		padding: 50px 0;
	}
	.contact-us {
		border-radius: 24px;
		padding: 5px;
	}
	.contact-us-left h2 {
		font-size: 42px;
		line-height: 48px;
		padding-bottom: 24px;
	}
	.contact-us-left p {
    font-size: 16px;
    line-height: 20px;
	}
	.contact-us-right {
		padding: 16px;
		border-radius: 20px;
	}
	.form_button {
		height: 58px;
	}
}
@media (max-width:409px) {
	.footer-contact-detail .footer-description span {
		word-break: break-word;
		font-size: 14px;
		white-space: normal;
		display: inline-block;
		max-width: 200px;
	}
	.header-inner nav {
		flex-wrap: nowrap;
		min-height: 52px;
		align-items: center;
	}
	.services-wrapper {
		grid-template-columns: 1fr;
		
	}

	.services-item-wrapper {
		flex-direction: column;
	}
}

	/* FAQ Section Styles */

#faqAccordion {
	margin-top: 12px;
	margin-bottom: 30px;
	padding: 20px;
  }
  .accordion-item {
	background-color: #ffffff;
	border: 1px solid var(--secondary-color) !important;
	border-radius: 8px !important;
	margin-bottom: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
  }
  .accordion-item:first-of-type {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
  }
  .accordion-item:last-of-type {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	margin-bottom: 0;
  }
  .accordion-header {
	margin-bottom: 0 !important;
	padding: 0 !important;
	&::after {
	  display: none;
	}
	border: 0 !important;
  }
  .accordion-button {
	font-weight: 600;
	color: var(--secondary-color);
	background-color: #ffffff;
	padding: 1.25rem 1.5rem;
	box-shadow: none !important;
	border-radius: 0;
	transition: background-color 0.15s ease-in-out;
  }
  /* Style when open */
  .accordion-button:not(.collapsed) {
	color: var(--secondary-color);
	background-color: var(--main-bg-color);
  }
  /* Remove default focus outline/shadow */
  .accordion-button:focus {
	z-index: 3;
	border-color: transparent;
	outline: 0;
	box-shadow: none !important;
  }
  /* Hover effect */
  .accordion-button:hover {
	background-color: var(--main-bg-color);
	z-index: 2;
  }
  
  /* Remove the default Bootstrap arrow */
  .accordion-button::after {
	display: none !important;
  }
  
  .accordion-button {
	position: relative;
	padding-right: 3rem !important;
  }
  
  .accordion-button::before {
	content: "";
	position: absolute;
	right: 1.25rem;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 3px solid var(--secondary-color); /* Thickness */
	border-bottom: 3px solid var(--secondary-color); /* Thickness */
	border-bottom-right-radius: 3px;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: -2px;
  }
  
  .accordion-button:not(.collapsed)::before {
	transform: translateY(-30%) rotate(-135deg);
  }
  
  .accordion-body {
	padding: 1rem 1.5rem 1.5rem;
	background-color: #ffffff;
	line-height: 1.6;
	color: #666;
  }
  
  /* Add the separator line above the answer text */
  .accordion-body::before {
	content: "";
	display: block;
	height: 1px;
	background-color: #e0e0e0;
	margin-bottom: 1rem;
  }
  