@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;
}

#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: 9px 70px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.04);
display: flex;
justify-content: space-between;
align-items: center;
gap: 80px;
border-top: 3px solid #A58C28;
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: #BCA81B;
}

.menu-unstyled li a, .moreBtn a{
color: #24462E;
font-family: "Roboto Flex";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.18px;
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:#BCA81B;
transition: width 0.3s ease-in-out;
}

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

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

.moreBtn {
display: flex !important;
align-items: center;
gap: 30px;
}

.searchBox{
position: relative;
}

.moreBtn .comonBtn{
width: 124px;
height: 44px;
border-radius: 5px;
border: 1.2px solid #E7CB0F;
background: #EDD10C;
color: #24462E;
font-family: "Roboto Flex";
font-size: 16px;
gap: 10px;
text-transform: uppercase;
}

.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;
flex: 1;
}

.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: 100%;
right: 140px;
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 input {
width: 100%;
padding: 10px 40px 10px 15px; /* Adjust padding to make space for the icon */
border: 1px solid #ddd;
border-radius: 4px;
height: 50px;
margin: 0;
font-size: 16px;
}

.search-field .search-icon {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
cursor: pointer;
padding: 0;
}

.search-field .search-icon svg {
width: 20px;
height: 20px;
}

.search-field input:focus-visible{
outline-offset: unset !important;
}

.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);
}
}

.close-icon {
    display: none; /* Hide close icon initially */
    }
    
    .search-btn.active .search-icon {
    display: none; /* Hide search icon when active */
    }
    
    .search-btn.active .close-icon {
    display: inline-block; /* Show close icon when active */
    }

/* ====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:#fff;
width: 100%;
display: flex;
justify-content: space-between;
padding: 10px 20px;
align-items: center;
position: relative;
gap: 20px;
}

.mobileList{
display: flex;
gap: 20px;
align-items: center;
}

.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{
padding: 75px 0;
background: #E8DD96;
position: relative;
overflow: hidden;
z-index: 3;
}

.footer-sec::after, .footer-sec::before{
content: '';
position: absolute;
top: 0;
left: 0;
z-index: -1;
}

.footer-sec::before{
background: url('../images/watermark05.png') no-repeat;
width: 561px;
height: 707px;
top: unset;
left: -453px;
z-index: -1;
bottom: 0;
}

.footer-sec::after{
background: url('../images/watermark04.png') no-repeat;
width: 394px;
height: 475px;
right: -220px;
left: unset;
top: -55px;
}

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

.footer-sec .socail-links a:hover{
box-shadow: unset;
}

.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: #24462E;
font-size: 17px;
font-weight: 500;
line-height: 26px; 
margin: 10px 0 20px;
}

.footerLogo-con p a{
color: #13A93A;
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 ul.footerList{
padding-left: 0;
display: flex;
gap: 5px 35px;
margin-top: 48px;
justify-content: end;
flex-wrap: wrap;
}

.footerNav-con .footerList li a.active{
color: #13A93A;
}

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


.footerNav-con ul li{
display: block;
margin-top: 8px; 
position: relative;
}
.footerNav-con ul li::after{
content: '/';
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -22px;
color: #B8AB7A;
}

.footerNav-con ul li:last-child:after{
display: none;
}

.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: 700;
line-height: 30px;
letter-spacing: 0.32px;
position: relative;
word-break: break-all;
text-decoration: none;
}

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

.footerNav-con ul li a:hover{
color: #13A93A;
}

.e-mail-box{
max-width: 562px;
margin-left: auto;
width: 100%;
text-align: center;
}

.e-mail-box label{
color: #24462E;
text-align: center;
font-family: "Roboto Flex";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 26px; 
margin-bottom: 16px;
}

.e-mail-box .form-control{
border-radius: 3px;
border: 1.5px solid #24462E;
background: rgba(255, 255, 255, 0.80);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15) inset;
height: 48px;
color: #24462E;
font-family: "Roboto Condensed";
font-size: 16px;
font-style: normal;
font-weight: 600;
letter-spacing: 0.16px;
}

.e-mail-box .form-control::placeholder{
color: rgba(36, 70, 46, 0.50);
font-family: "Roboto Flex";
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.15px;
column-rule-color: #24462E;
padding: 0;
margin-bottom: 0;
}

.e-mail-box button{
border-radius: 0px 4px 4px 0px;
background: #24462E;
min-width: 142px;
color: #FFF;
text-align: center;
font-family: "Roboto Condensed";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.16px;
border: 1px solid #24462E;
border-left: 0;
}

.e-mail-box button:hover{
background: #EDD10C;
color: #393737;
}


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

.copyRight-con p{
color: #BDC9C1;
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);

}



