.w-85{width:85%!important}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 85vh;

  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;

  
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size:2em;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #77b022;
}

#hero .btn-get-started {

  

  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #77b022;
}

#hero .btn-get-started:hover {
  background: #df3740;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 25px 0;
  background: #f8f9fa;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h3 {

  
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;

}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  font-family:'FontAwesome';
  content: "\f105";
}
.breadcrumbs ol li span{
  color: #77b022;
  font-weight:600;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h3 {
    margin-bottom: 10px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video {
	position: relative;
    display: inline-block;
    overflow: hidden;
}
.video .video-play {
    width: 60px;
    height: 60px;
    font-size: 23px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    display: inline-block;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    -webkit-animation: pulse 2s infinite cubic-bezier(.66, 0, 0, 1);
    animation: pulse 2s infinite cubic-bezier(.66, 0, 0, 1);
}

.video .video-play:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.42;
    border-radius: 50%;
    background: #FFFFFF;
    transform: scale(1.3);
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    -webkit-animation: pulse 1.75s infinite cubic-bezier(.66, 0, 0, 1);
    animation: pulse 1.75s infinite cubic-bezier(.66, 0, 0, 1);
}

.video .video-play i {
    margin-left: 5px;
    position: relative;
    z-index: 5;
}
/*video play button animation*/
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px transparent
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px transparent
    }
}


.video-a {

}










/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/


.team-b {

}


.team-list {
	margin-top:4.5em;
}

.team-list .item {
	display: inline-block;
	width:100%;
	background:#f8f9fa;
	color:#77b022;
}
@media (max-width: 576px) {
.team-list .item {
	margin-bottom:4.5em;
}
}
.team-list .item:hover {
	background:#77b022;
	color:#fff;
	box-shadow: 0px 0px 40px rgba(0,0,0,.1);
}

.team-list .item .image-container {
	width:50%;
	margin-top:-4.5em;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1em;
}

.team-list .item .image-container img {
	width: 100%;
	border-radius: 50%;
	border:solid 5px #eaeaea;
}

.team-list .item p {
	
}




/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/




.features-3 {

}
.f3-items {
  margin-top: -160px;
  z-index: 10;
  position: relative;
}
.f3-item  {
  text-align:center;
}
.f3-item  img{
  border:solid 6px #fff;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.f3-item h5 {
  position: relative;
  margin-top:15px;
}
.f3-item h5 a {
  color: #333;
}
.f3-item h5:hover a {
  color: #77b022;
}
.f3-item h5:before {
  content: "";
  background: #77b022;
  width: 40px;
  height: 2px;
  margin-left: -20px;
  position: absolute;
  bottom: -15px;
  left: 50%;
}
.f3-item h5:hover:before {
  background: #77b022;
}
.f3-item p {

}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	text-align:center;
}

.contact .info i.fa {
  font-size: 3em;
  color: #77b022;
  width:120px;
  height:120px;
  line-height:120px;
  text-align:center;
  background: #edeff1;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;

}

.contact .info h4 {
  color: #666666;
}



.contact .info .email, .contact .info .address, .contact .info .phone {
   
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #77b022;
  color: #fff;
}





/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background: url(../images/bg-testimonials.jpg) no-repeat;
  background-size: cover;
  position: relative;
  color:#fff;
}
.testimonials::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index:1;
}


.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {

  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #77b022;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {

  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}
.testimonials .owl-dot:focus{
	outline: none;
}
.testimonials .owl-dot.active {
  background-color: #77b022 !important;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*======= News One =========*/
.news-one {

}

/*======= News Two =========*/
.news-one {

}


.news-two {

}

.product-1 {

}
.product-1 .p1-item {
	

}
.product-1 .p1-item .image {
	
}
.product-1 .p1-item .content {
	position:relative;
	z-index:1;
	padding-top:60px;

}
.product-1 .p1-item .content h5 {

}
.product-1 .p1-item .content .icon {
	position:absolute;
	left:50%;
	margin-left:-40px;
	top:-40px;
	width:80px;
	height:80px;
	line-height:80px;
	border-radius:50px;
	background-color:#ffffff;
	box-shadow:0 1px 3px 0 rgba(0,0,0,0.15);
}
.product-1 .p1-item:focus .content h5,.product-1 .p1-item:hover .content h5 {
	color:#77b122;
}
.product-1 .p1-item:focus .content .icon,.product-1 .p1-item:hover .content .icon {
	box-shadow:0 4px 30px 0 rgba(0,0,0,0.15);
}
