@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
* {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}

/* back to top button */
#myBtn {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: 1px solid black; 
  background-color: rgb(6, 247, 46); 
  color: white; 
  cursor: pointer;
  padding: 7px; 
  font-size: 18px; 
}
#myBtn:hover {
  background-color: #484c7b; 
}
/* end button css */
/* navigation */
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
  /* background-color: #15891b8e; */
}

.header-main {
    margin-top: 5px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-radius: 4px;

}

.header .logo {
  padding: -12px 15px;
}

.header .logo a {
  font-size: 25px;
  text-transform: capitalize;
  color: #000000;
  font-weight: 600;
}

.header .nav-menu {
  padding: -11px 20px;
  border-radius: 0px 0px 0px 0px;
  background-color: transparent;

}

.header .menu>.menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}

.header .menu>.menu-item>a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
  background-color: #15891A;
}

.header .menu>.menu-item>a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
  color: #15891A;
}

.header .menu>.menu-item>.sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 280px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #15891A;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item-has-children:hover>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}

.header .open-nav-menu span:after {
  top: 7px;
}

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu img {
  width: 16px;
}

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

#app_button{  
  font-size: 10px;
  background: #a2a0a075;
  border-radius:5px;
  color: #f1f1f1;
  padding: 0.5rem 1rem;
  outline: 1px solid #30d725;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2s ease;
  margin: 0.5rem; /* Add margin for better spacing */
  text-align: center;  
  
}
#app_button:hover{
  outline: 1px solid #78e52a;
  background: #000000b5;
  color: #4ffb00;
  cursor: pointer;
  box-shadow: 1px 2px 8px 2px #1a0404;
  
}
/* responsive */
@media(max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
 }
 .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 48%;
    top: 0;
    overflow-y: auto;
    background: linear-gradient(18deg, rgba(65, 98, 4, 0.95) 0%, rgba(117, 188, 128, 0.88) 100%), url(img/footer_img.png)no-repeat;
    background-position: 56% 128%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }
  .header .menu>.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
   }
  .header .menu>.menu-item>a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid #333333;
  }
  .header .menu>.menu-item>a .plus:before,
  .header .menu>.menu-item>a .plus:after {
    background-color: #ffffff;
  }
  .header .menu>.menu-item-has-children.active>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu>.menu-item>.sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
  .header .logo a {
    font-size: 15px;
  }
  .header{
    position: absolute;
    top: -24px;
  }
}
/* nav end */


footer.site-footer.fixed-footer {
	position: relative;
  bottom: 0;
  width: 100%;
  }
  .bottom-footer{
	background: #15891A;
  border-top: 2px solid black;
  }
  .rowfoot{
	  display: flex;
	  justify-content: center;	  
	}
.col-md-4-col-sm-6-col-xs-12{
	width: 30%;
}

  footer.site-footer .main-footer {
	padding-top: 95px;
	padding-bottom: 60px;
	background: #3ba040cb;
  border-top: 3px solid black;

  }
  footer.site-footer .footer-widget h3, footer.site-footer .footer-widget p, footer.site-footer .footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  footer.site-footer .footer-widget .title {
	margin-bottom: 25px;
  }
  footer.site-footer .footer-widget .title h3 {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	font-family: 'Poppins';
  }
  footer.site-footer .footer-widget .title h3:after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 38px;
  height: 2px;
  background: rgb(14, 2, 2);
  margin-left: 15px;
  margin-top: 12px;
  }
  footer.site-footer .footer-widget p {
	font-size: 15px;
	color:#130909;
	line-height: 25px;
  }
  footer.site-footer .footer-widget ul.links-list li {
	display: block;
	line-height: 1em;
  }
  footer.site-footer .footer-widget ul.links-list li + li {
	margin-top: 10px;
  }
  footer.site-footer .footer-widget ul.links-list li a {
	color: #0e0b0b;
	font-size: 15px;
	display: inline-block;
	line-height: 1em;
	font-weight: 400;
	border-bottom: 2px solid transparent;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
  }
  footer.site-footer .footer-widget ul.links-list li a:hover {
	border-color: #D0D0D0;
  }
  footer.site-footer .footer-widget.about-widget {
	position: relative;
  
  }
  footer.site-footer .footer-widget.about-widget h3 {
	font-size: 18px;
	font-weight: 600;
	font-family: 'Poppins';
	margin-top: 45px;
	margin-bottom: 20px;
	color: #FFF;
  }
  footer.site-footer .footer-widget.subscribe-widget {
	padding: 35px 40px;
	background: #f6f6f6;
  }
  footer.site-footer .footer-widget.subscribe-widget h3 {
	font-size: 18px;
	font-weight: 600;
	color: rgb(11, 167, 245);
	font-family: 'Poppins';
	line-height: 1em;
	margin-bottom: 15px;
  }
  footer.site-footer .footer-widget.subscribe-widget p {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: #100e0e;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form {
	position: relative;
	margin-top: 30px;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input, footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button {
	border: none;
	outline: none;
	display: block;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input {
	width: 100%;
	height: 51px;
	border: 1px solid #e6e5e5;
	padding-left: 20px;
	font-size: 14px;
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input::-moz-placeholder {
	/* Firefox 19+ */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input:-ms-input-placeholder {
	/* IE 10+ */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input:-moz-placeholder {
	/* Firefox 18- */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 98px;
	height: 51px;
	background: rgb(11, 167, 245);
	color: #fff;
	font-size: 14px;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button:before {
	background: #252525;
  }
  footer.site-footer .bottom-footer .container {
	border-top: 1px solid #e1e1e1;
	padding-top: 28.5px;
	padding-bottom: 28.5px;
  }
  footer.site-footer .bottom-footer p {
	margin: 0;
	color: #f2f2f2;
	font-size: 15px;
  }
  .right-text a{
	color: rgb(11, 167, 245);
	text-decoration: none;
  }
  .map-widget iframe{
	width:100%;
	height:180px;
  }
  .list-style-three li {
	  position: relative;
	  color: #070606;
	  font-size: 16px;
	  padding-left:62px;
	  font-weight: 400;
	  margin-bottom: 30px;
  }
  .list-style-three li .icon {
	  position: absolute;
	  left: 0px;
	  top: 0px;
	  width: 42px;
	  height: 42px;
	  color: rgb(9, 43, 14);
	  font-size: 20px;
	  line-height: 40px;
	  font-weight: 300;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid rgb(222, 225, 227);
  }
  .list-style-three li strong {
	  position: relative;
	  color: #FFF;
	  font-size: 17px;
	  font-weight: 700;
	  display: block;
  }
  @media(max-width:905px){
	.rowfoot {
		display: grid;
		justify-content: center;
	}
	.col-md-4-col-sm-6-col-xs-12 {
		width: 100%;
	}
  }
  @media(max-width:550px){
	.container {
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
  }