*
{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
.menu-bar
{
	min-height: 8%;
	background: #55A849;
}
.menu-bar img
{
	width: 65px;	
}
.nav-link
{
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	
}
.nav-link:hover
{
	color: #333;
}
.active
{
	color: #333 !important;
}
.navbar-toggler .fa
{
	color: #fff;	
}
.navbar-toggler .fa
{
	outline: none !important;	
}
/*FOOTER*/
footer{
	position: relative;
	width: 100%;
	height: auto;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #55A849;
	box-sizing: border-box;
}
footer .container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
}
footer .container .sec{
	margin-right: 30px;
}
footer .container .sec.about{
	width: 40%;
}
footer .container h3{
	position: relative;
	color: #000;
	font-weight: 500;
	margin-bottom: 35px;
}
footer .container h3:before{
	content:' ';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #DFDED3;
}
footer p{
	color: #DFDED3;
}
.icon{
	margin-top: 20px;
	display: flex;
}
.icon li{
	list-style: none;
}
.icon li a{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: rgb(39, 160, 23);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 6px;
}
.icon li a:hover{
	background: rgb(76, 99, 73);
}
.icon li a .fa{
	color: #fff;
	font-size: 20px;
}
.shortlink{
	position: relative;
	width: 25%;
}
.shortlink ul li{
	list-style: none;
}
.shortlink ul li a
{
	color: #DFDED3;
	text-decoration: none;
	margin-bottom: 5px;
	display: inline-block;
}
.shortlink ul li a:hover{
	color: #555;
}
.contact{
	width: calc(30% - 60px);
	margin-right: 0 !important;
}
.contact .reach{
	position: relative;
}
.contact .reach li{
	display: flex;
	margin-bottom: 15px;
}
.contact .reach li span:nth-child(1){
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
}
.contact .reach li span{
	color: #DFDED3;
}
.contact .reach li a{
	color: #DFDED3;
	text-decoration: none;
}
.contact .reach li a:hover{
	color: #555;
}
.copyright{
	width: 100%;
	background: #55A849;
	color: rgb(231, 221, 221);
	padding: 1px;
}
.copyright p{
	text-align: center;
	margin: 5px 0;
}
@media (max-width: 1000px){
	footer{
		padding: 40px;
	}
	footer .container{
		flex-direction: column;
	}
	footer .container .sec{
		margin-right: 0;
		margin-bottom: 40px;
	}
	footer .container .sec.about{
		width: 100%;
	}
	footer .container .sec.contact{
		width: 100%;
	}
	footer .container .sec.shortlink{
		width: 100%;
	}
	.copyright{
		padding: 8px 20px;
	}
}
/*PROJECT TEAM*/
.team{
    margin: 0px;
}
h2{
	margin-top: 50px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
    padding-bottom: 10px;
}
.profile{
    margin-top: 25px;
}
.profile .img-box{
    opacity: 1;
    display: block;
    position: relative;
}
.profile h3{
    font-size: 19px;
    font-weight: bold;
    margin-top: 5px;
}
.profile h4{
    font-size: 15px;
    margin-bottom: 10px;
    color: #555;
}
.img-box:after{
    content:'';
    opacity: 0;
    background-color: rgba (0,0,0,0.7);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.img-box ul{
    margin: 0;
    padding: 5px 0;
    position: relative;
    z-index: 1;
    bottom: 0;
    display: block;
    text-align: center;
    opacity: 0;
}
.img-box li{
    width: 30px;
    height: 30px;
    display: inline-block;
}
.img-box a{
    color: black;
}
.img-box:hover:after{
    opacity: 1;
}
.img-box:hover ul{
    opacity: 1;
}
.img-box a:hover li{
    color: #fff;
    border: 1px solid #fff;
}
.img-box:after, .img-box ul, .img-box ul li{
    transition: all 0.5s ease-in-out 0s;
}

/*about us styles*/
#about .heading h1{
	margin-top: -30px;
	margin-bottom: -30px;
	font-size:60px;
	font-weight: bold;
	text-shadow: 1px 1px 5px #111;
}

#about .content p{
	font-size: 15px;
	color:black;
}

#about .content{
	margin:5rem auto;
}

#about .image-fluid img{
		width:100%;
		
}

#about  .container{
	  margin-top: 50px;
	 
}
#about .card{
	background: #55A849;
}

#owners .owners-item{
	position: relative;
	overflow:hidden;
	margin-bottom:25px;
	padding:0;
	vertical-align:middle;
	text-align:center;
}

#owners .owners-item .owners-overlay{
	position:absolute;
	width: 100%;
	height:100%;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	background:(0,0,0,0.5);
	opacity:0.5;
	transition : all ease-in-out 0.4s;

}

#owners .owners-item:hover .owners-overlay{
	opacity: 1;
}

.owners-item img{
	transition: all ease-in-out 0.4s;
	border-radius: 5%;
	
}

.owners-item:hover img{
	transform: scale(1.1);
}

/*history*/
.history{
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}	

.history .content{
	margin-top: 30px;
	padding:20px;
	
}
	

.history .image-fluid img{
	width: 100%;
	animation: float 3s linear infinite;
	float:left;
	padding: 2.5rem 0;
	
}


 @keyframes float {
	0%, 100%{
		transform: translateY(0rem);
	}
	50%{
		 transform: translateY(-3.5rem);
	}
 }

.history .content h3 span, .history .content h3 {
	color: black;
	text-transform: uppercase;
	font-size:60px;
	text-shadow: 1px 1px 5px #111;
	margin: 10px;
}

.history .content .col-md-6 p{
	font-size: 15px;
	color: black;
	padding: 5px 0;
	margin-top: -280px;
}	
	
	
/*VISION MISSION*/
 .section-1 , .section-2{
  padding: 20vmin 0vmin;
}
.mission .vision img{
	box-shadow: 10px 10px 5px #111;
}
.section-1 .row .col-md-6 .vision img, .section-2 .row .col-md-6 .mission img {
  opacity: 0.8;
  width: 80%;
  border-radius: 0.2em;
}

 .section-1 .row .container .col-md-6:last-child , .section-2 .row .container .col-md-6:first-child {
  position: relative;
}

.section-1 .row .col-md-6  .panel {
  position: absolute;
  top: 7vmin;
  left: -18vmin;
  background: #55A849;
  border-radius: 3px;
  text-align: left;
  padding: 12vmin 5vmin 17vmin 10vmin;
  box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section-2 .row .col-md-6  .panel{
  position: absolute;
  top: 7vmin;
  right: -18vmin;
  background: #55A849;
  border-radius: 3px;
  text-align: left;
  padding: 12vmin 5vmin 17vmin 10vmin;
  box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section-1 .row .col-md-6 .panel h1, .section-2 .row .col-md-6 .panel h1 {

  padding: 0.4em 0;
  font-size: 2em;
  color: white;
}

.section-1 .row .col-md-6  .panel p , .section-2 .row .col-md-6  .panel p {
  font-size: 14px;
  color: black;
  font-weight:bold;
}

/*FEATURED ABOUT*/
.jumbotron{
	height: 60%;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-image: linear-gradient(rgba(0, 0, 0, 0.627),rgba(0, 0, 0, 0.6)),  url("sheesh.png");
}
.jumbotron p{
	color: #fff;
	text-shadow: 1px 1px 4px #fff;
	text-align: center;
	margin-top: -15px;
	margin-bottom: 60px;
	text-indent: 50px;
}
.jumbotron h1{
	color: #fff;
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 4px #fff;
	margin-top: 40px;
}
.jumbotron  a{
	border: 1px solid #fff;
	background: transparent;
	outline: none;
	padding: 8px 18px;
	color: #fff;
	border-radius: 30px;
	margin-top: -12px;
	cursor: pointer;
	font-size: 12px;
	float: right;
}
.jumbotron a:hover{
	background: #55A849;
	border: 1px solid #55A849;
	display: inline-block;
	transition: 0.5s;
	color: #fff;
}
/*top button*/
.top{
	position: fixed;
	width: 30px;
	height: 30px;
	background: #3FA329;
	bottom: 30px;
	right: 30px;
	text-decoration: none;
	text-align: center;
	color: white;
	font-size: 25px;
}
.top:hover{
	color:rgb(47, 119, 33);
}