@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary: #3b7c22;
    --secondry: #3b7c22;
    --gray-dark: #1C1C1C;
    --gray: #2A2A2A;
    --white: #fff;
    --black: #000;
    --border: #CACACA;
    --bg-light: #F6F6F6;
    --green: #388e3c;
    --font-family: "Open Sans", sans-serif;

}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-size: 1rem;
    line-height: 120%;
    color: var(--gray);
    font-weight: 400;
    font-family: var(--font-family);
}

* {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
}

h1,
.h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2,
.h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 1.1rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    line-height: 160%;
}

p,
label,
input,
textarea,
button,
li {
    font-family: var(--font-family);
    font-size: 1rem;

}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

a,
a:hover {
    text-decoration: none;
    font-family: var(--font-family);
    color: var(--white);
}

img,
a img {
    border: none;
    outline: none;
    max-width: 100%;
    display: block;
    height: auto;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

.white {
    color: var(--white);
}

.blue {
    color: var(--primary);
}

.gray {
    color: var(--gray);
}

.red {
    color: var(--red);
}

.green {
    color: var(--green);
}

.bg-transparent {
    background-color: transparent;
}

.custom-button {
    background: var(--secondry);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    line-height: 160%;
}
.custom-button:hover {
    background-color: var(--gray);
    color: var(--white);
}
.navbar-custom ul.navbar-nav li.appointment-button a{
    background: var(--secondry);
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.navbar-custom ul.navbar-nav li.appointment-button a:hover {
    background-color: var(--gray);
    color: var(--white);
}
.sectionPadding {
    padding: 60px 0px;
}

.sectionPaddingTop {
    padding-top: 60px;
}

.sectionPaddingBottom {
    padding-bottom: 60px;
}

/*--header--*/
 .navbar-brand img {
    height: 90px;
    width: auto;
}
.navbar-custom {
    background-color: var(--white);
    padding: 10px 0px;
}

.header-right a {
    color: var(--gray);
    font-size: 1.25rem;
    font-weight: 700;
}

.header-right li {
    margin-right: 15px;
}

.header-right li:last-child {
    margin: 0px;
}

.header-right a:hover {
    color: var(--secondry)
}
.navbar-custom ul.navbar-nav li{
	padding:0px 20px
}
.navbar-custom ul.navbar-nav li a {
    font-size: 19px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
}

.navbar-custom ul.navbar-nav li a:hover,
.navbar-custom ul.navbar-nav li.active a {
    color: var(--primary);
}

/*Hero Section*/
.hero-section h4.h4 {
    margin-bottom: 15px;
}

.hero-section h1.h1 {
    line-height: 120%;
/*     font-size: 4.5rem; */
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 0px 12px rgba(0, 0, 0, 0.5);
    margin: 0px;
}
.hero-section p {
    font-weight: 400;
    font-size: 1.35rem;
    margin: 0px;
}
.hero-section .carousel-caption {
    text-align: left;
}
.hero-section figure {
    position: relative;
    margin: 0px;
}
.hero-section figure::before {
    position: absolute;
    top:0px;
	left:0px;
	content:"";
	height:100%;
	width:100%;
	background:rgba(0,0,0,0.5);
	z-index:9;
}
.carousel-caption{
	z-index:99
}
.aboutSection .flex-direction-reverse {
    flex-direction: row-reverse;
}
/*services-section*/
.services-section h2{
	line-height: 120%;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px;
	color:var(--secondry);
	letter-spacing:2px;
}
.service-wrapper {
    align-items: start;
	margin-bottom:30px;
	background:#fff
}
.service-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.service-content p {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 1rem;
	color:#747474;
	line-height:190%
}
.services-section {
    background: #f5f5f5;
}
.button-learn-more {
    color: var(--primary);
    display: inline-flex;
    border: 2px solid var(--primary);
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 1.5rem;
    line-height: 170%;
}
.service-content {
    padding: 15px;
}
.button-learn-more:hover{
	background:var(--primary);
	color:var(--white)
}
.service-wrapper img {
    margin-right: 0px;
    width:100%;
}
/*testimonial-section*/
.testimonial-section{
    background: url(../../uploads/2026/03/testmonials.jpg) no-repeat center top;
    background-size: cover;
}
.testimonial-section .slick-slider{
	
}
.testimonial-inner .user-content ul img {
    width: 20px;
}
.testimonial-section h2.h2 {
	line-height: 120%;
    font-size: 3rem;
    font-weight: 700;
    margin: 0px;
	color:var(--white);
	letter-spacing:1px;
}

.testimonial-section p{
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 1rem;
    color:var(--white);
    line-height: 180%;
}
.testimonial-section .testimonial-item  p{
	 color:var(--black);
}
.testimonial-inner {
    background: var(--white);
    border-radius: 15px;
    padding: 26px;
    display: flex;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
	margin:20px 0px ;
	min-height:350px
}
.slick-dots li button {
    width: 12px;
    height: 12px;
    background: var(--secondry);
    border-radius: 100%;
    opacity: 0.5;
}
.slick-dots li.slick-active  button {
    background: var(--white);
    opacity:1;
}
.testimonial-inner ul {
    margin-bottom: 20px;
    gap: 3px;
}
.user-image img {
    width: 100px;
}
/*footer*/
.footer {
    background-color: #192639;
	padding:40px 0px
}
.footer p {
    color: var(--white);
    margin: 0px;
    font-size: 1.1rem;
}

.footer h5 {
    color: var(--white);
    margin: 0px 0px 30px;
    font-size: 1.75rem;
}
.footer ul{
    display:flex;
	gap:10px
}
/*contact*/
section.main-banner {
    position: relative;
}
.banner-Title {
    position: absolute;
    top: 0px;
    z-index: 99;
    color: var(--white);
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-banner .h1 {
    text-align:center;
    color: var(--white);
}
.contact-reverse {
    flex-direction: row-reverse;
}
.main-banner figure::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.contact-form .input-group p{
	width:100%;
	margin-bottom:0px
}
.contact-form .input-group span.wpcf7-form-control-wrap{
	width:100%;
}
.contact-form .input-group input, .contact-form .input-group textarea, .contact-form .input-group select{
	border:1px solid #D3D3D3;
	height:54px;
	border-radius:4px;
	width:100%;
	padding:0px 15px;
	
}
.contact-form .input-group textarea{
	height:120px
}
.contact-form .input-group.submit input {
    width: auto;
    min-width: 150px;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}
.contact-form .input-group.submit{
	display:flex;
	justify-content:space-between
}
.contact-form .input-group.submit input:hover{
	background:var(--gray)
}
.popular-products .item-inner {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
}
.input-one-row {
    display: flex;
    justify-content: space-between;
}
.input-group{
	margin-bottom:25px;
}
.input-group.tow-column {
    max-width: 49%;
}
.aboutSection h6 {
    line-height: 180%;
}
.featured_img {
    min-height: 450px;
    max-height: 450px;
    overflow: hidden;
}
.featured_img img {
    width: 100%;
    object-fit: cover;
}
.blogSingle a {
    color: var(--primary);
}
.blogSingle b {
    font-weight:500
}

.blogSingle ul li{
	padding:4px 0px;
}
.single_post  span {
    line-height: 180%;
    font-size: 15px;
    padding: 10px 0px !important;
    display: block;
}
.email-address {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 30px;
    text-align: center;
    height: 100%;
}
.email-address h3 {
    text-align: center;
    line-height: 160%;
    width: 100%;
    font-size: 1.5rem;
}
.email-address p{
    text-align: center;
    line-height: 160%;
    width: 100%;
    font-size: 1rem;
	color:#000
}
.email-address a{
    text-align: center;
    line-height: 160%;
    width: 100%;
    font-size: 1rem;
	color:#000;
}
.email-address a:hover{
	color:var(--primary)
}
.email-address figure img {
    height: 40px;
}
.main-banner.contact h1{
	color:#000;
}
.form-services .form-wrapper {
    border: 1px solid #e7e7e7;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.form-services .form-wrapper figure {
    justify-content: center;
    display: flex;
}
.form-services .form-wrapper figure img {
    width:100px
}
.form-wrapper h3 {
    padding: 10px 0px;
    line-height: 180%;
    font-size: 1.25rem;
    text-align: center;
}
.form-services .form-wrapper .download-btn {
    width: 100%;
    background: var(--primary);
    display: inline-flex;
    justify-content: center;
    text-align: center;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
}
.form-services .form-wrapper .download-btn:hover {
    width: 100%;
    background: #000;
}

.services-home .service-wrapper img {
    margin-right: 0px;
    width: 50px;
}
.services-home .service-wrapper {
   padding:20px
}
.services-home .service-content {
    padding: 0px;
}
@media only screen and (max-width:1366px){
	
} 
@media only screen and (max-width:1199px){
	.navbar-custom ul.navbar-nav li {
		padding: 0px 10px;
	}
	.navbar-brand img {
		height: 60px;
		width: auto;
	}
	
	.services-section h2 {
		line-height: 120%;
		font-size: 2rem;
		letter-spacing: 1px;
	}
	.service-content h3 {
		font-size: 1.25rem;
	}
	
	.testimonial-section h2.h2 {
		font-size: 2.5rem;
		letter-spacing: 0px;
	}
} 
@media only screen and (max-width:991px){
	h1,
.h1 {
    font-size: 2rem;
    font-weight: 600;
}

h2,
.h2 {
    font-size: 1.7rem;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 1.1rem;
    font-weight: 600;
}
.main-banner figure img {
    height: 350px;
    object-fit: cover;
}
.input-one-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.input-group.tow-column {
    max-width: 100%;
}
	.featured_img {
    min-height: auto;
    max-height: 100%;
    overflow: hidden;
}
	.hero-section h1.h1 {
		line-height: 120%;
		font-size: 2rem;
	}
	.footer-address {
		margin-bottom: 20px;
	}
} 
@media only screen and (max-width:768px){
	
} 
@media only screen and (max-width:767px){
.slick-prev {
    left: 0px;
    z-index: 99;
}
.slick-next {
    right: 0px;
    z-index: 99;
}
	.image-activities img {
    width: 100%;
}
.slider-image {
    height: 400px;
    object-fit: cover;
}
		h1,
.h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

h2,
.h2 {
    font-size: 1.35rem;
    font-weight: 600;
}
ul.navbar-nav {
    padding: 15px 0px;
}
    .navbar-custom ul.navbar-nav li {
        padding: 10px 10px;
		display:flex;
    }
	.main-banner figure img {
    height: 200px;
    object-fit: cover;
}
} 
@media only screen and (max-width:576px){
	
} 
@media only screen and (max-width:480px){
.slider-image {
    height: 350px;
    object-fit: cover;
}	
.footer-bottom p {
    font-size: 12px;
}
.hero-section h1.h1 {
    font-size: 1.25rem;
}
.hero-section p {
    font-weight: 400;
    font-size: 1rem;
    margin: 0px;
}
.custom-button {
    padding: 8px 20px;
    font-size: 1rem;
}
.button-learn-more {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
}
.testimonial-section h2.h2 {
    line-height: 120%;
    font-size: 1.5rem;
    letter-spacing: 0px;
}
.testimonial-item.px-4 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}	
	.testimonial-inner {
    padding: 15px;
}
} 