*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	right: 0;
	font-size: 16px;
	font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
p{
	color:#646464 ;
	font-size: 15px;
	line-height: 2;
}

button{
	padding: 5px 10px;
	font-size: 18px;
	border-radius: 10px;
	color: white;
	background:#ffffff ;
	cursor: pointer;
	outline: 0px;
	border: none;
}

/*Top Header */
#top-header {
    margin:0;
    margin-bottom: 0px;
    width: 100%;
	display: inline-table;
	background-color: #0e3600;
	padding: 5px 30px;
}

   .top-contact{
    width: 80%;
    float: left;
  }
  .top-contact {
    display: flex; 
    gap: 20px;    
    align-items: center; 
    font-size: 16px;
}

.top-contact span {
    display: flex;
    align-items: center;
	color: #fff;
	margin-top: 5px;
}

.top-contact i {
    margin-right: 8px; 
}

.top-contact h6{
    margin: 0; 
    font-size: 16px; 
	font-weight: 300;
}
.top-contact a{
	color: #fff;
	font-size: 16px;
}

  .top-social{
    float: right;
    margin-right: 30px;
  }
  .top-social a i{
    text-align: left;
	margin-right: 20px;
	line-height: 2;
    font-size: 19px;
    color: #fff;
  }
  .top-social a i:hover,.top-contact a i:hover{
    color: #BB853D;
  }


header{
	position: relative;
	z-index: 200;
	width: 100%;
}

/*

/*Top Header */
.navigation {
	height: 90px;
	margin-top: -10px;
	padding: 10px 48px;
	background: #ffff;
}

.brand {
	width: 10%;
	position: absolute;
	float: left;
	margin: 0;
	padding: 10px;
	border-radius: 10px;
	z-index: 200;
	background: #fff;

}

.brand img {
	width: 100%;
}

.brand a, .brand a:visited {
	color: #0e3600;
	text-decoration: none;
}

.nav-container {
	max-width: 100%;
	margin: 0 auto;
}
/* Existing styles */

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}



nav ul li {
    float: left;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 5px 10px;
}

nav ul li a, nav ul li a:visited, nav ul li h5 {
    display: block;
    padding: 18px 10px;
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
    color: #175800;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav ul li a {
    background: transparent;
    color: #175800;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav ul li a:hover {
    border-bottom: 3px #BB853D solid;
    cursor: pointer;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

nav ul li a:hover, nav ul li a:visited:hover, nav ul li h5:hover {
    color: #BB853D;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
}

nav ul span {
    background: #000;
    color: #fff;
}

ul .navbar-dropdown {
    background: #f3f3f3;
    padding: 5px;
    margin-top: 10px;
    margin-left: -20px;
}

nav ul li h5:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
    font-size: 20px;
    float: right;
}

nav ul li ul li {
    min-width: 300px;
}

nav ul li ul li a {
    padding: 15px;
    text-transform: capitalize;
    line-height: 20px;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navbar-dropdown {
    position: absolute;
    display: none;
    padding-top: 50px;
    z-index: 1;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}

.navbar-dropdown li a {
    padding: 10px 10px;
	text-transform: capitalize;
}

.navbar-dropdown li a:hover {
    border-bottom: none;
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}

#navbar-toggle {
    position: absolute;
    left: 18px;
    top: 15px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

#navbar-toggle .active {
    background: #fff;
}

#navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: #00310b;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
}

#navbar-toggle span:before {
    top: -10px;
}

#navbar-toggle span:after {
    bottom: -10px;
}

#navbar-toggle.active span {
    background-color: transparent;
}

#navbar-toggle.active span:before, #navbar-toggle.active span:after {
    top: 0;
}

#navbar-toggle.active span:before {
    transform: rotate(45deg);
}

#navbar-toggle.active span:after {
    transform: rotate(-45deg);
}

header {
    position: absolute;
    z-index: 20000;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0;
}

header .head {
    background: #002;
}

nav ul li a.current {
    border-bottom: 3px #BB853D solid;
    color: #BB853D;
}

/* Sticky */
.sticky {
    position: fixed;
    top: 0;
    background-color: #000;
	height: 67px;
    left: 0;
    width: 100%;
    z-index: 250;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
.sticky nav ul li{
	padding: 0px 10px;
}

/* End Header */

/* End Logo Header */

header nav {
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 300;
    width: 100%;
    margin: 0;
    height: 60px;
    z-index: 100;
}

.menu-icon {
    float: right;
    padding: 15px 20px;
    text-align: right;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
    display: none;
}

.menu-icon p a {
    font-size: 30px;
    color: #fff;
}

/* New styles for the 'Join Our Glub' link */
.join-link {
    display: inline-block; 
    padding: 10px 20px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: 500;
	margin-top: 10px;
	color: #fff;
	background-color: #175800;
    transition: background-color 0.3s ease; 
	-webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
nav ul li a.join-link{
	color: #fff;
	background-color: #175800;
}


.join-link:hover {
    background-color: #00310b; 
	color: #fff; 

}
ul li a.join-link:hover{
	border: none;
}


/*==================
 breadcrumb
====================*/
#mu-page-breadcrumb {
	height: 500px;
	position: relative;
	width: 100%;
	background-image: url("../images/slider/slider2.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position:center;
	top: 0; 
	margin-top: 0px;
	margin-bottom: 20px;
	position: relative;
	padding: 20px;
	z-index: 9;
	float: left;
}
#mu-page-breadcrumb:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .6;
	width: 100%;
    z-index: -10;
}
.mu-page-breadcrumb-area {
    position: relative;
    top: 30%;
}

.mu-page-breadcrumb-area h1{
	margin-top: 100px;
	  color:#fff;
	font-size: 50px;
	font-weight: 500;
	text-align: center;
}


.mu-page-breadcrumb-area .breadcrumb span{
	margin-left: 20px;
}
.mu-page-breadcrumb-area .breadcrumb li {
	font-size: 20px;
	list-style: none;
	margin-left: 10px;
	color: #fff;
	display: inline-grid;
}

.mu-page-breadcrumb-area .breadcrumb li a {
  color:  #fff;
	font-weight: bold;
}

.mu-page-breadcrumb-area li a:hover{
  color:#aad2fa;
	border-bottom: 1px yellow solid;
}


/*==================
 breadcrumb  END
====================*/

/* start home */

/*FlexSlider */


/*FlexSlider */
#FlexSlider {
	margin: 0;
	padding: 0;
	top: 0;
  }
  .slider1{
	float: left;
	width: 100%;
	position: relative;
	z-index: 5000;
  }
  .slider1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.3;
	z-index: -10;
  }
  .slider1 .flex-caption {
	width: 100%;
	float: left;
	margin-top: -35%;
	text-align: center;
	padding: 0 150px;
  }
  .slider1 .flex-caption h2 {
	color: #f3f3f3f3;
	font-size: 50px;
	font-weight: 700;
	margin-top: -20px;
	margin-bottom: 0px;
	line-height: 1;
	text-transform: capitalize;
  }
  .slider1 .flex-caption h3 {
	color: #f3f3f3f3;
	font-size: 50px;
	font-weight: 600;
	margin-top: 100px;
	margin-bottom: -22px;
	position: relative;
  }
  .slider1 .flex-caption h5 {
	color: #f3f3f3f3;
	font-size: 30px;
	font-weight: 600;
	margin: 2;
  }
  .slider1 .flex-caption p {
	color: #f3f3f3f3;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	margin: 24px;
  }
  .slider1 .flex-caption .btn{
	background: none;
	display: inline;
	width: auto;
	margin-top: 26px;
	position: relative;
  }
  .slider1 .flex-caption .btn a.donation-link{
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: none;
	border-radius: 20px;
	padding: 10px 30px;
	margin: 20px 5px;
	color: white;
	border: 2px white solid;
  }
  .slider1 .flex-caption .btn a.donation-link2{
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: #175800;
	border-radius: 20px;
	padding: 10px 30px;
	margin: 20px 5px;
	color: white;
	border: 2px white solid;
  }
  .slider1 .flex-caption .btn a.donation-link:hover{
	background: #175800;
	color: #fff;
  }
  .slider1 .flex-caption .btn a.donation-link2:hover{
	background: none;
	color: #fff;
  }

/*==================
 breadcrumb  END
====================*/
#home-banner{
	width: 100%;
	float: left;
	padding:0px 50px;
	background-color: darkgoldenrod;
	  }

.hb_section h3{  
	float: left;
	width: 70%;
	color: #fff;
	font-weight: 400;
	font-size: 30px;
}
.hb_btn a{
    padding: 10px 50px; 
    background: none;
    color: #ffffff; 
    text-decoration: none; 
	border: 2px #fff solid;
    border-radius: 20px; 
    font-weight: 500;
	float: right;
	font-size: 25px;
	margin-top: 30px;
    transition: background-color 0.3s ease; 
	-webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.hb_btn a:hover {
    background-color: #ffff; 
	color: darkgoldenrod; 

}
.hb_btn:hover{
	border: none;
}

/*Home About*/
#ho_about{
	width: 100%;
	float: left;
	padding: 50px 100px;
	background: #00310b;
}

  
  .hb-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
  }
  
  .hb-grid {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hb-grid:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .hb-icon-title {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
  }
  
  .hb-grid .hb-icon-title i{
	font-size: 24px;
	color: #00310b;
	margin-right: 10px;
  }
  
  .hb-icon-title h3 {
	margin: 0;
	font-size: 20px;
  }
  
  .hb-grid p {
	margin: 0;
  }
  
  .hb-grid ul {
	padding-left: 20px;
	margin: 0;
  }
  
  .hb-grid li {
	margin-bottom: 8px;
	list-style: decimal;
  }
  
  .hb-grid li:last-child {
	margin-bottom: 0;
  }
  
/*Homepage Banner */
#head-about{
	background-image: url("../images/slider/banner2.jpg");
	width: 100%;
	float: left;
}
#head-about .image{
	width: 50%;
	float: left;
}
#head-about .image img{
	width: 100%;
}

#head-about .content{
	margin-top: 150px;
	float: right;
	width: 50%;
	padding: 20px;
}
#head-about .content h1{
	font-size: 40px;
	font-weight: 500;
}

/*End Homepage Banner */
/*Match Slider*/
.testimonials{
	width: 100%;
	float: left;
	padding: 80px 120px;
	background: #f3f3f3;
	text-align: center;
}

#customers-testimonials {
	float: left;
	width: 100%;
	padding: 20px;
	margin-bottom: 10px;
	margin-top: -100px;
}
#customers-testimonials  .owl-item .item{
	width: 100%;
}
.owl-item{
-webkit-transition: all 300ms;
-moz-transition: all 300ms;
transition: all 300ms;

}
/*Item Caption*/
#customers-testimonials {
	position: relative;
  }
  
  .item {
	position: relative;
	overflow: hidden;
  }
  
  .shadow-effect {
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .shadow-effect img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
  }
  
  .item-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000a2;
	padding: 20px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	height: 100%;
  }
  
  .item:hover .item-caption {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }
  
  .item-caption h4 {
	margin: 0;
	top: 50%;
	position: relative;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
  }
  
  .item-caption p {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	top: 50%;
	position: relative;
  }
  
  .item-caption2 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	padding: 40px 20px;
	text-align: center;
	opacity: 1;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  
  .item-back:hover .item-caption2 {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }
  
  .item-caption2 h4 {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
  }
  
  .item-caption2 span {
	display: block;
	font-size: 18px;
	margin-top: 5px;
  }
  
/*Item Caption*/

.owl-item:hover{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
	padding: 0;
		box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	}
	.shadow-effect {
		height: 210px;
	  }
	
	.owl-theme .owl-controls .owl-nav .disabled{ 
		opacity: 0.5; 
		cursor: default; 
	}
	#testimonial2 .owl-carousel .owl-item{
		background: none;
	}
	  
	.item .item-back{
		background-image: url("../images/slider/slider2.jpg");
		background-size: cover;
		background-position: center;
		height: 250px;
		background-repeat: no-repeat;
		background-position: center;
		background-attachment: fixed;
		position: relative;
		z-index: 9;
	  }
	  .item .item-back:after{
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background:#000;
		opacity: .6;
		z-index: -10;
	  }
	 #upcoming-events .item .item-back .item-caption{
		background: none;
	  }
	
	
	.owl-carousel .owl-item .figure img {
		display: block;
		width: 100%; 
		height: 250px;
		-webkit-transition: all 300ms;
		-moz-transition: all 300ms;
		transition: all 300ms;
	  }
	
	  .owl-carousel .owl-item  .figure:hover img {
		-webkit-transform: scale(1.4);
		-moz-transform: scale(1.4);
		transform: scale(1.4);
	}
	.owl-carousel .figure{
		height: 250px;
		overflow: hidden;
		position: relative;
		width: 100%;
	  margin-left: 0px;
	}
	 /*figure*/

	 /*Navbar*/
	.owl-prev,
	.owl-next {
	  bottom: -10%;
	  margin-left: 30px;
	  margin-top: 10px;
	}
	
	
	.owl-nav {
		margin-top: 20px;
		font-size: 40px;
		left: -44%;
		padding: 0px;
		text-align: right;
		position: relative;
		z-index: -100;
	  }
	
	button.owl-next {
		float: none;
	}
	
	.owl-item{
		background: none;
	  }
	
	button.owl-prev {
		float: none;
		margin-left: -20px;
		width: 20px;
	}
	
	/*Figure*/
	
/* Owl TWO */
.testimonial{
	width: 100%;
	padding: 20px 60px;
	margin-top: 60px;
	float: left;
}

#customers-testimonial {
	width: 100%;
	float: left;
  }
  .testimonial h3{
	float: left;
	color: #001d69;
	width: auto;
	font-weight: 600;
	margin: 0;
	font-size: 30px;
  }
  .testimonial h3 span i{
	margin-left: 20px;
  }
  /*End Owl 2*/
  #counter-section {
	padding: 60px 150px;
	background-image: url("../images/slider/slider5.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position:center;
	position: relative;
	z-index: 9;
	width: 100%;
	float: left;
}
#counter-section:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .6;
    z-index: -10;
}
  
  .counter-container {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .counter-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	width: 100%;
  }
  
  .counter-item {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
  }
  
  .counter-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .counter-icon {
	font-size: 40px;
	color: #BB853D;
	margin-bottom: 10px;
  }
  
  .counter-number {
	font-size: 36px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
  }
  
  .counter-item h3 {
	margin: 0;
	font-size: 18px;
	color: #666;
  }
  
  #volunteer-banner {
	background: #ffd52e;
	padding: 60px 20px;
	text-align: center;
	width: 100%;
	float: left;
  }
  
  .volunteer-container {
	max-width: 800px;
	margin: 0 auto;
  }
  
  #volunteer-banner h2 {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: bold;
  }
  
  #volunteer-banner p {
	font-size: 18px;
	margin-bottom: 30px;
	color: #000;
  }
  
  .volunteer-btn {
	display: inline-block;
	background-color: #175800;
	color: #fff;
	padding: 15px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 18px;
	transition: background-color 0.3s ease;
  }
  
  .volunteer-btn:hover {
	background-color: #00310b;
  }
  

  /*Program*/
  #program {
	padding: 60px 100px;
	background-color: #f9f9f9;
	width: 100%;
	float: left;
	margin-top: 30px;
  }
  
  .pro_container h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
  }
  
  .pro-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
  }
  
  .pro {
	background-color: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
  }
  
  .pro img {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	margin-bottom: 15px;
  }
  
  .pro h3 {
	font-size: 20px;
	margin-bottom: 10px;
	text-align: left;
  }
  
  .pro p {
	margin-bottom: 15px;
	font-size: 16px;
	color: #666;
	text-align: left;
  }
  
  .pro a {
	display: inline-block;
	padding: 10px 20px;
	background-color: #00310b;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
  }
  
  .pro a:hover {
	background: none;
	border: 1px #00310b solid;
	color: #00310b;
  }
  
  .pro:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  /* The Modal (background) */
.modal {
	display: none; 
	position: fixed; 
	z-index: 1; 
	padding-top: 130px; 
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5); 
  }
  
  /* Modal Content */
  .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 70%;
	border-radius: 10px;
	text-align: center;
  }
  a#modal-link {
    background:#ffd52e;
    color: #000;
    padding: 10px 30px;
    font-size: 20px;
}
a#modal-link:hover{
	background: #fff;
	border: 2px #000 solid;
}
  p#modal-body {
    font-size: 18px;
    line-height: 2;
    width: 100%;
	text-align: left;
    padding: 20px;
}
  /* Close button */
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
  }
  
  /*Program-all*/
  #program-full{
	width: 100%;
	float: left;
	padding: 50px 100px;
  }
  #program-full .program-img img{
	width: 100%;
  }


.timeline-section {
	padding: 50px 20px;
  }
  
  .timeline {
	position: relative;
	max-width: 90%;
	margin: 0 auto;
  }
  
  .timeline:before {
	content: '';
	position: absolute;
	width: 4px;
	background-color: #00310b;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
  }
  
  .timeline-item {
	padding: 20px 40px;
	position: relative;
	width: 50%;
  }
  
  .timeline-item:nth-child(odd) {
	left: 0;
  }
  
  .timeline-item:nth-child(even) {
	left: 50%;
  }
  
  .timeline-item:before {
	content: attr(data-year);
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: #00310b;
	color: white;
	text-align: center;
	border-radius: 50%;
	top: 15px;
	left: -30px;
	line-height: 60px;
  }
  
  .timeline-item:nth-child(even):before {
	left: auto;
	right: -30px;
  }
  
  .timeline-content {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-content h3 {
	margin: 0 0 10px;
  }
  
  .timeline-content p {
	margin: 0;
	color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.timeline:before {
	  left: 20px;
	}
	
	.timeline-item {
	  width: 100%;
	  padding-left: 40px;
	  padding-right: 25px;
	}
  
	.timeline-item:before {
	  left: 0;
	}
  
	.timeline-item:nth-child(even) {
	  left: 0;
	}
  
	.timeline-item:nth-child(even):before {
	  right: 0;
	}
  }
  
/*About*/
#about{
	width: 100%;
	float: left;
	padding: 80px;
	margin: 0px;
	background: #f9f9f9;
  }

#about .who{
	width: 100%;
	text-align: center;
	padding: 0px;
	margin-top: 30px;
}
#about .who .about-us{
	width: 45%;
	float:left;
	padding:20px;
}
#about .who .about-us img{
	width: 100%;
}

#about .who .about-us-right{
	padding: 10px;
	text-align: left;
	margin-top: 8=0px;
	width: auto;
	color: #333;
}
#about .who .about-us-right h2{
	font-size: 50px;
	color: #00310b;
	font-weight: 500;
	margin: 2px;
}
#about .who .about-us-right p{
	color: #333;
}

  #practice{
	width: 100%;
	float: left;
	background-color: #fff;
  }
  .practice_sec,.practice_sec2{
	width: 100%;
	float: left;
	padding: 50px 100px;
  }
.practice_sec2{
	background: #f1f1f1;
  }
  .practice_sec .pra_cont h3,.practice_sec2 .pra_cont h3{
	font-size: 50px;
	font-weight: 600;
	margin: 0;
	left: 0px;
	position: relative;
 }
 .practice_sec .pra_img{
	width: 50%;
	float: right;
 }
 .practice_sec .pra_img img{
	width: 100%;
	float: right;
	margin-top: 30px;
 }
 .practice_sec .pra_cont{
	width: 50%;
	padding: 20px;
 }
 .practice_sec .pra_cont li,.practice_sec2 .pra_cont li {
	list-style: decimal;
	font-size: 30px;
 }

 .practice_sec2 .pra_img{
	width: 50%;
	float: left;
	padding: 20px;
	margin-top: 30px;
 }
 .practice_sec2 .pra_img img{
	width: 100%;
 }
 .practice_sec2 .pra_cont{
	width: 50%;
	float: right;
	padding: 20px;
 }

 .practice_sec .pra_cont .btn a, .practice_sec2 .pra_cont .btn a{
	background: #00310b;
	color: #fff;
	padding: 10px 20px;
 }
 .practice_sec .pra_cont .btn a:hover, .practice_sec2 .pra_cont .btn a:hover{
	border: 1px #00310b solid;
	background: none;
	color: #00310b;
 }
 /*Impact*/
 .impact table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
.impact h2{
	text-align: center;
	font-size: 40px;
	font-weight: 600;
}
.impact th, .impact td {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: left;
}
.impact th {
	background-color: #f2f2f2;
}
.impact caption {
	font-weight: bold;
	margin: 10px 0;
	font-size: 1.2em;
}
.impact .subtitle {
	font-weight: bold;
	font-size: 1.1em;
}

 /* Upcoming Events Section Styles */
#upcoming-events {
	margin-top: 50px;
	padding: 60px;
	text-align: center;
	background-color: #f9f9f9;
	width: 100%;
	float: left;
  }
  
  #upcoming-events .cap-la h4 {
	font-size: 32px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 600;
  }
  
  #upcoming-events .cap-la p {
	color: #667;
	width: 100%;
	line-height: 1.5;
	margin-bottom: 10px;
  }
  .cap-la{
	width: 100%;
	margin-bottom: -80px;
  }
  
  #upcoming-events h6 {
	font-size: 15px;
	margin: 0;
	color: #000;
  }
  
  #upcoming-events h5{
	font-size: 31px;
  margin: 0;
  top: 34%;
  position: absolute;
  color: #fff;
  text-align: center;
  width: -moz-available;
  font-weight: 500;
  line-height: 1.2;
  }
  .events-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 0 20px;
  }
  
  .event-grid {
	overflow: hidden;
	border-radius: 10px;
	transition: transform 0.3s ease;
	background-color: #fff;
  }
  
  .event-grid img {
	width: 100%;
	height: 240px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	margin-top: -47px;
  }
  
  .event-date-overlay {
	position: relative;
	top: 10px;
	left: 10px;
	padding: 5px 10px;
	background-color: #fff;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	border-radius: 0px;
	width: fit-content;
	z-index: 200;
  }
  
  .event-grid:hover img {
	transform: scale(1.05);
	opacity: 0.8;
  }
  
  .event-details {
	padding: 15px;
	text-align: left;
  }
  
  .event-details h3 {
	font-size: 20px;
	font-weight: 500;
	margin: 10px 0 5px;
	color: #000;
  }
  
  .event-details p {
	font-size: 16px;
	margin: 0px;
	color: #666;
  }
  /*Sponsors*/
  #sponsors {
	padding: 20px 220px;
	width: 100%;
	text-align: center;
	float: left;
	background: #fff8ef;
}

  #sponsors  .event-grid h4 {
font-size: 25px;
font-weight: 600;
  }
  #sponsors .cap-la h4{
	font-size: 35px;
	font-weight: 600;
	color: #000;
  }
  #sponsors .owl-item {
	border-radius: 41px;
  }
	/*Figure*/
/*Standings*/

/*Event FUll Details*/
/*About*/
#event-full{
	width: 100%;
	float: left;
	padding: 80px;
	margin: 0px;
	background: #f9f9f9;
  }

#event-full .evt-page{
	width: 100%;
	text-align: center;
	padding: 0px;
	margin-top: 30px;
}
#event-full .evt-page .evnt{
	width: 40%;
	float:right;
	padding:20px;
}
#event-full .evt-page .evnt img{
	width: 100%;
}

#event-full .evt-page .event-right{
	padding: 10px;
	text-align: left;
	margin-top: 80px;
	width: auto;
	color: #333;
}
#event-full .evt-page .event-right h2{
	font-size: 50px;
	color: #00310b;
	font-weight: 500;
	margin: 2px;
}
#event-full .evt-page .event-right p{
	color: #333;
}
#event-full .evt-page .event-right ul li{
	list-style:decimal;
	line-height: 2;
}

/*Volunteer*/
#volunteer-form {
	background-color: #f9f9f9;
	padding: 40px 90px;
	margin-top: 100px;
	width: 100%;
	float: left;
  }
  .volunteer-img{
	width: 45%;
	float: left;
	margin-top: 60px;
  }
  .volunteer-img img{
	width: 100%;
  }
  .form-container {
	width: 50%;
	float: right;
	margin: 0 auto;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  .form-container h2 {
	text-align: center;
	margin-bottom: 20px;
  }
  
  .form-container label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
  }
  
  .form-container input[type="text"],
  .form-container input[type="email"],
  .form-container input[type="tel"],
  .form-container textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
  }
  
  .form-container textarea {
	resize: none;
	height: 100px;
  }
  
  .form-container .btn {
	width: 100%;
	padding: 12px;
	background-color: #00310b;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
  }
  
  .form-container .btn:hover {
	background-color: #22c35e;
  }
  
/*Portifiolo*/
#gallery{
	width: 100%;
	float: left;
	padding: 50px;
	text-align: center;
  }
  #gallery hr{
	width: 50%;
  }
  
  #gallery h4{
	font-size: 30px;
	margin: 0px;
  }
  
  #gallery .photo .photo-grid{
	margin-bottom: 20px;
	overflow: hidden;
  }
  
  #gallery .photo img:not(:last-child) {
	margin-bottom: 1rem;
  }
  
  #gallery .photo img {
	cursor: pointer;
	transition: opacity 400ms;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
  }
  
  #gallery .photo img:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
  }
  
  
  #gallery .photo img {
	animation: rise 400ms ease-out backwards;
	animation-play-state: paused;
	animation-delay: 300ms;
  }
  
  /* MEDIA QUERIES */
  /* Tablets */
  @media screen and (min-width: 480px) {
	.photo {
	  padding: 2rem 10% 10%;
  
	}
  }
  
  /* Small Screens, laptops */
  @media screen and (min-width: 768px) {
	/* HEADER */
   
	
	/*  SECTION */
	.photo {
	  columns: 2;
	  column-gap: 1rem;
	  padding: 2rem 10% 10%;
	}
  }
  
  /* Desktop, large screens */
  @media screen and (min-width: 1024px) {
	.photo {
	  columns: 3;
	  column-gap: 1rem;
	  padding: 2rem 5% 0%;
	}
  }

  /* WhatsApp icon */
#chat .whatsapp-float {
	position: fixed;
	top: 50%;
	right:1%;
	left: 10;
	transform: translateY(-50%);
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	z-index: 5000;
	align-items: center;
	transition: background-color 0.3s ease;
  }

  
  #chat  .whatsapp-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 18px;
  }
  
  #chat  .whatsapp-icon i {
	font-size: 24px;
	margin-bottom: 5px;
	background-color: #25D366;
	border-radius: 50px;
	padding: 10px;
  }

  #chat  .whatsapp-icon i:hover {
	background-color: #22c35e;
  }
  
  #chat  .whatsapp-icon span {
	font-size: 12px;
	background: #fff;
	padding: 5px 10px;
	color: #000;
	border-radius: 50px;
  }
  
  /* Pop-up form */
  #chat  .form-popup {
	display: none;
	position: fixed;
	bottom: 20%;
	right: 20px;
	border: 1px solid #f1f1f1;
	z-index: 1001;
	background-color: white;
	width: 300px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	padding: 0px;
	border-radius: 10px;
  }
  
  #chat  .form-container {
	display: flex;
	flex-direction: column;
  }
  
  #chat  .form-container h2 {
	margin-bottom: 15px;
  }
  
  #chat  .form-container textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
	font-size: 14px;
  }
  
  #chat .form-container .btn {
	padding: 10px;
	border: none;
	background-color: #25D366;
	color: white;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	margin-bottom: 10px;
	transition: background-color 0.3s ease;
  }
  
  #chat .form-container .btn:hover {
	background-color: #22c35e;
  }
  
  #chat .form-container .cancel {
	background-color: #ccc;
  }
  
  #chat .form-container .cancel:hover {
	background-color: #aaa;
  }
  

/*scrollToTop*/
.scrollToTop{
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	background-color: #BB853D;
	color: #ffffff;
	z-index: 60000;
	display: none;
}



/* Marquee*/
.marslide{
position: fixed;
z-index: 1000;
bottom: 0%;
padding: 0px;
margin: 0px;
width: 100%;
height: 30px;
float: left;
animation: marquee 5s linear infinite;
background: #fff;
}
.marslide  .marsliderup{
  width: auto;
  float:left;
  margin-top: 0px;
  text-transform: uppercase;
  padding-left: 10px;
}
.marslide  .marsliderup p{
  font-weight: bold;
	font-size: 18px;
	margin-top: 0px;
  color: red;
}
.marslide marquee{
  width: 90%;
	margin-top: 0px;
	float: right;
}
.marslide marquee span{
	font-size: 19px;
	text-transform: uppercase;
	color: #000;
	padding-left: 130px;
}
.marslide marquee span b{
	font-weight:bold;
	color: #fff;
	padding: 10px;
	background: #417004;
	font-style: italic;
}
.marslide marquee  a{
	color:#417700;
	font-size: 18px;

}
.marslide marquee span a:hover{
	color: red;
}
 /*Footer*/

  html, body {
    height: 100%
  }

  ul {
    list-style: none
  }
  a {
    text-decoration: none
  }
  .flex-rw {
    display: flex;
    flex-flow: row wrap;
  }

  footer {
    background:#0e3600 ;
    width: 100%;
	padding: 20px 10px;
  }
  footer ul{
	padding: 0px;
  }
  .footer-list-top {
    margin: 10px;
    margin-left:30px;
    width: 20%;
  }
  .footer-list-top:nth-child(1){
	width: 25%;
  }
  .footer-list-top:nth-child(2){
	width: 15%;
  }
.footer-list-top .img_foot{
width: 100%;float: left;
}
.footer-list-top .img_foot img{
	width: 60%;
	float: left;
	background-color: #fff;
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 20px;
	}

  .footer-list-top h4,.footer-list-top h3, .news-let h4{
      font-size: 20px;
      text-transform: uppercase;
      font-weight: 600;
      padding-bottom: 10px;
      margin: 0px;
      color:#fff ;
      margin-left: -10px;
      margin-top: 30px;

  }
 
  .footer-list-top p,.footer-list-top li a{
    font-size: 16px;
    color: #fff;
    width: 100%;
	text-align: left;
    line-height: 30px;
  }

  .footer-list-top p i{
    margin-right: 10px;
    color:#fff ;
  }
    .footer-list-top p i a, .footer-list-top p,.footer-list-top p a{
      font-size: 16px;
		color: #fff;
    }

		.footer-list-top  a i{
		  letter-spacing: 10px;
		  font-size: 20px;
			color: #fff;
		}
		.footer-list-top  a i:hover,.footer-list-top li a:hover{
		  color: #BB853D;
		}
		
		.news-let{
			margin: 0px;
		   }		
			   .news-let form{
			   width: 100%;
			   padding: 0;
			   margin-bottom: 20px;
		   }
			   .news-let input[type="email"]{
			 padding: 15px;
			   font-size: 15px;
			 height: 40px;
			   margin-top: -50px;
			   width: 100%;
			   border-radius: 20px;
			   border: none;
			   background: #fff;
			   color: #595959;
			   outline: none;
		   }
		   .news-let button {
			background: #BB853D;
			color: #fff;
			font-size: 14px;
			margin-top: 10px;
			width: 100%;
			padding: 13px 20px;
			border: 2px #BB853D solid;
			border-radius: 50px;
		  }
		   .news-let button:hover{
		   border: 2px #BB853D solid;
		   color: #fff;
		   background: none;
		   }

.social{
   margin: 2px;
   float: left;
}
.social h6{
  font-weight: 700;
  font-size: 20px;
  color: white ;
  text-transform: uppercase;
  margin-left: 40px;
  margin-bottom: 20px;
}

	.footer2{
		text-align: center;
		padding: 5px;
		margin-bottom: 0px;
		color: #fff;
		background:#00310b;
	}
	.footer2 p{
		color: #023882;
		font-size: 14px;
		margin-bottom: 10px;
	}
	.footer2 a{
		margin-left: 10px;
		color: #BB853D;
	}
	.footer2 a:hover{
		text-decoration: underline;
	}

