@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
html {
scroll-behavior: smooth;
}
body, html {
/* overflow-x: hidden; */
font-family: "Lora", serif;
font-optical-sizing: auto;
scroll-behavior: smooth;
}

ul, li{
list-style-type: none;
display: inline-block;
margin: 0;
padding: 0;
}

a{
text-decoration: none;
}

.btn-check:focus+.btn,
.btn:focus, .form-control:focus, .form-select:focus, .btn-close:focus {
box-shadow: unset;
}

form input:focus,
textarea:focus{
border: 2px solid #219C3A !important;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}

:root{
--white-color:#fff;
--black-color:#314136;
--dark-green-color:#24462E;
--light-green-color:#13A93A;
--yellow-color:#E7CB0F;
--border-color:#275634;
}

h1, h2, h3, h4, h5, h6{
/*color: var(--white-color); */
font-family: Lora;
font-size: 36px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin: 0;
}

p{
color: var(--black-color);
font-family: "Roboto Flex";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal; 
letter-spacing: 0.16px;
margin: 0;
}

a{
/*color: var(--white-color);*/
font-family: "Roboto Flex";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.32px;
text-decoration-line: underline;
transition: all 0.5s ease;
}

.comonBtn{
display: flex;
align-items: center;
justify-content: center;
max-width: 170px;
height: 48px;
width: 100%;
border-radius: 3px;
border: 1.2px solid #75A927;
background: #83B735;
position: relative;
cursor: pointer;
overflow: hidden;
transition: color 0.3s ease-in-out;
z-index: 1;
}

.comonBtn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: #fff;
transition: left 0.5s ease-in-out;
z-index: -1;
}

.comonBtn:hover::before {
left: 0;
}
.comonBtn:hover {
color: #000;
}

.comonImg{
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.5s ease;
}

.comonImg-con{
position: relative;
overflow: hidden;
border-radius: 15px;
display: inline-block;
}

.comonImg-con::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease-in-out;
z-index: 3;
}

.comonImg-con:hover::before {
left: 100%;
}

.comonImg-con:hover .comonImg {
transform: translateY(-10px) scale(1.05);
}

.bgImg::after, .bgImg::before{
position: absolute;
left: 0;
right: 0;
content: '';
}

.bgImg{
position: relative;
overflow: hidden;
background: url(../images/background01.png) no-repeat;
background-size: cover !important;
background-position: center !important;
padding: 80px 0;
width: 100%;
height: 100%;
}

.mx-1310{
max-width: 1310px;
width: 100%;
margin: auto;
}

.d-align{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 15px;
}
a.Btntitle {
    color: #fff;
}
#backToTop {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
background-color: transparent;
border: none;
cursor: pointer;
z-index: 999;
animation: pulseAnimation 1.5s infinite ease-in-out;
}

@keyframes pulseAnimation {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}

#backToTop svg {
transition: transform 0.3s ease;
}

.menubar {
position: sticky;
top: 0px;
z-index: 1000;
padding: 14px 70px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.04);
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
border-top: 3px solid #3C6B49;
background: #FFF;
}

/* <!--google-ads--> */

.google-ads-sec{
background: #FFF;
width: 100%;
max-width: 1318px;
margin: auto;
text-align: center;
padding: 35px 0;
}

.header{
transition: all 2s ease !important;
}

.header.sticky-shadow{
box-shadow: 0 8px 4px -6px rgba(0, 0, 0, 0.5);
}

.submenu {
list-style: none;
padding: 0;
margin: 0;
position: absolute;
top: 50px;  
right: 0;
opacity: 0;  
visibility: hidden;  
background: #83B735;
box-shadow: 2px 15px 14px 0px rgba(0, 0, 0, 0.14);
border-radius: 0 0 10px 10px;
z-index: 10001;
min-width: 100% !important;
overflow: hidden;
transition: opacity 0.3s, visibility 0.3s;  
}

.has-submenu:hover .submenu {
opacity: 1;  
visibility: visible;  
top: 50px; 
}

.menu-unstyled .has-submenu{
position: relative;
}

.submenu li {
transition: all 0.5s ease;
width: 100%;
box-shadow: 0px 1px 0px 0px #A0C864;
padding: 12px 15px;
cursor: pointer;
}

.submenu li:last-child{
box-shadow:none;
}

.submenu li:hover{
background: #447A53;
}

.submenu a {
/* padding: 10px 15px; */
color: #fff;
white-space: nowrap;
transition: all 0.5s ease;
display: block;
}

.submenu a:hover{
color: #fff !important;
}


/* Submenu links */
.menu-unstyled .submenu li {
padding: 5px 0;
}

.menu-unstyled .submenu li a {
color: #fff;
text-decoration: none;
display: block;
padding: 5px 15px;
font-size: 15px;
}

.offcanvas-body .menu-unstyled .toggle-dropdown{
width: 100px;
margin-left: auto;
text-align: end;
height: 100%;
}

.offcanvas-body .menu-unstyled .dropdown-active {
display: none;
width: 100%;
background: #83B735;
border-top: 1px solid rgb(0, 0, 0);
}

.offcanvas-body .menu-unstyled .dropdown-active li a{
color: #fff;
}
.offcanvas-body .menu-unstyled .dropdown-active li{
padding: 8px;
}


.menu-unstyled li:last-child{
padding-right: 0;
}

.menu-unstyled li a,
.moreBtn a, .offcanvas-body .menu-unstyled li a{
color: #FFF;
font-family: Lora;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
position: relative;
transition: color 0.3s ease-in-out;
}

.logo-con a, .socail-links{
display: flex;
gap: 8px;
align-items: center;
color: #FFF;
font-family: Lora;
font-size: 22px;
font-style: italic;
font-weight: 600;
line-height: normal;
}

.socail-links a {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 50%;
}

.socail-links a:hover {
transform: scale(1.1); 
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
border-radius: 50%;
}

.socail-links img {
transition: transform 0.3s ease; 
}

.socail-links a:hover img {
transform: rotate(360deg); 
}


.logo-con a span{
color: #83B735;
}

.menu-unstyled li{
padding-right: 30px;
}

.menu-unstyled li a.active{
color: #83B735;
}

.menu-unstyled li a, .moreBtn a{
color: #24462E;
font-family: Lora;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.17px;
text-transform: capitalize;
text-decoration: none;
}

.menu-unstyled li a::after, .footerNav-con ul li a::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background-color:#83B735;
transition: width 0.3s ease-in-out;
}

.menu-unstyled li a:hover {
color:#83B735;
}

.footerNav-con ul li a:hover::after {
width: 100%;
}

.moreBtn {
position: relative;
display: flex !important;
align-items: center;
}

.moreBtn .dropdown-menu {
display: none;
position: absolute;
top: 190%;
right: 0;
background: #343434;
border-radius: 0px;
list-style: none;
margin: 5px 0 0;
padding: 10px 0;
width: auto;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 10;
}

.moreBtn .dropdown-menu li {
padding: 0;
width: 100%;
white-space: nowrap;
}

.moreBtn .dropdown-menu li a {
display: block;
padding: 8px 15px;
text-decoration: none;
color: #fff;
}

.moreBtn .dropdown-menu li a:hover {
background-color: #f0f0f0;
color: #343434;
}

.menu-unstyled li.moreBtn a::after{
display: none;
}

.menu-unstyled li {
transition: all 0.3s ease;
}

.moreBtn .dropdown-menu {
transition: all 0.3s ease;
}

.menu-list{
display: flex;
align-items: center;
gap: 20px;
flex-wrap: nowrap;
justify-content: space-between;
position: relative;
}

.menu-unstyled .dropdown-menu {
display: none;
position: absolute;
top: 100%;
right: 0;
background-color: #202020;
border: 1px solid #ccc;
padding: 10px;
z-index: 10;
}

.moreBtn .dropdown-toggle::after{
display: none;
}

.search-field {
display: none;
position: absolute;
top: 215%;
right: 0;
background: #fff;
padding: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
animation: slideDown 0.3s ease-in-out;
border-radius: 0 0 10px 10px;
width: 500px;
}

.search-field form {
    width: 100%;
}
.search-field input {
width: calc(100% - 50px);
padding: 5px 10px;
border: 1px solid #ddd;
border-radius: 4px;
height: 50px;
margin: 15px;
}

.search-field .close-btn {
background: transparent;
border: none;
color: #333;
font-size: 16px;
cursor: pointer;
position: absolute;
right: 3px;
top: 0px;
font-size: 20px;
}

.socail-links.socail-links1{
display: none;
}

.search-field .close-btn path{
fill: #000;
}

@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ====header-moile==== */

.logo-con{
background: #343434;
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.04);
display: flex;
justify-content: center;
}

.topnavCon{
background: #83B735;
width: 100%;
display: flex;
justify-content: space-between;
padding: 10px 20px;
align-items: center;
position: relative;
gap: 20px;
}

.mobileList{
display: flex;
gap: 20px;
}

.offcanvas-body .menu-unstyled, .topnavCon .top-unstyled{
padding: 0;
width: 100%;
}

.offcanvas-body .menu-unstyled li{
display: block;
padding: 12px 0;
width: 100%;
transition: all 0.3s ease;
border-bottom: 1px solid #83b73547;
}

.offcanvas-body .menu-unstyled li .dropdown-active li{
border-bottom: 1px solid #f1f1f147;
}

.offcanvas-body .menu-unstyled li:last-child,
.offcanvas-body .menu-unstyled li .dropdown-active li:last-child{
border-bottom: 0;
}


.offcanvas-body .menu-unstyled li a{
color: #343434;
padding: 5px 8px;
display: block;
}

.offcanvas-body .menu-unstyled .submenu li a{
color: #fff;
}

.offcanvas-body{
border-top: 1px solid #000;
}

.btn-close:focus{
box-shadow: unset;
}

.mobileList .search-field{
top: 100%;
}

.header-mobile{
display: none;
}













/* 
=============
<!--footer-sec-->
========================= */

.footer-sec.bgImg{
padding: 100px 0 50px;
background: url(../images/background08.png) no-repeat;
border-top: 1px solid #BED2C4;
background-position: right !important;
}

.footerLogo-con{
max-width: 317px;
width: 100%;
}

.footerLogo-con h3{
color: #343434;
font-family: Lora;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.48px;
margin-bottom: 21px;
}

.footerLogo-con h3 span{
color: #FFF;
font-weight: 400;
}

.footerLogo-con p{
color: rgba(36, 70, 46, 0.85);
font-size: 15px;
font-weight: 300;
line-height: 23px;
margin: 30px 0px 50px;
}

.footerLogo-con p a{
color: #4A8359;
font-weight: 600;
font-size: 14px;
text-decoration-line: underline;
}

.footerLogo-con p .p1{
font-weight: 500;
}

.footerLogo-con p .p2{
font-style: italic;
font-weight: 500;
}

.footerNav-con{
width: 100%;
}

.footerNav-con h5{
color: #24462E;
font-size: 20px;
font-weight: 600;
margin-bottom: 21px;
}

.footerNav-con ul.footerList{
padding-left: 0;
}

.footerNav-con ul li{
display: block;
margin-top: 8px; 
}

.footerNav{
display: flex;
justify-content: stretch;
gap: 20px;
}

.footerNav-con ul li a{
color: #314136;
font-family: "Roboto Flex";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; 
letter-spacing: 0.16px;
position: relative;
word-break: break-all;
text-decoration: none;
}

.footerNav-con ul li a::after{
background-color: #314136 !important;
}

.copyRight-con{
display: flex;
justify-content: center;
background: #24462E;
padding: 8px;
}

.copyRight-con p{
color: rgba(255, 255, 255, 0.80);
text-align: center;
font-family: "Roboto Flex";
font-size: 13px;
font-style: italic;
font-weight: 400;
line-height: normal;
letter-spacing: 0.28px;
text-transform: capitalize;
}

.copyRight-con p a{
font-weight: 600;
color: rgba(255, 255, 255, 0.80);

}



