*{
  margin:0px;
  padding:0px;
  box-sizing: border-box;
  
}

nav{
  display: flex;
  justify-content:space-around;
  align-items: center;
  min-height: 8vh;
  font-family: "Poppins";
  background-color: #134611;
}

.logo{
  color: #96F072;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 20px;
}
.nav-links{
  display: flex;
  justify-content: space-around;
  width: 30%;
}
.nav-links li{
  list-style: none;
}
.nav-links li>a:hover {
  box-shadow: 0 0 40px black;
  color:#96F072;
  text-decoration: none;
}
.nav-links a{
  color: #FEFCFB;
  text-decoration: none ;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 14px;
}
.burger{
  display: none;
  cursor: pointer ;
}
.burger div{
  width: 25px;
  height: 3px;
  background-color:#FEFCFB;
  margin: 5px;
  transition: all 0.3s ease;

}

@media screen and (max-width:1024px){
  .nav-links{
    width: 60%;
  }

}


@media screen and (max-width:768px){
  body{
    overflow-x: hidden;
  }
  .nav-links{
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: #134611;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  /* .nav-links li{
    opacity: 0;

  } */
  .burger{
    display: block;
  }
 
}
.nav-active{
  transform: translateX(0%);
}


@keyframes navlinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);

}
.toggle .line2{
  opacity: 0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
}

p{
  color: white ;
  line-height: 25px;
}
h2,h3{
   color: #fff;
}
h2{
  font-size: 18px;
}
.footer-top{
  background: #134611;
  padding: 80px 0;
}
.segment-one h3 {
  font-family: courgette;
  color:#96E072;
  letter-spacing: 3px;
  margin: 10px 0;
}
.segment-one p{
  color: grey;
}

.segment-two h2{
  color: white;
  font-family: "Poppins";
  text-transform: uppercase;
}
.segment-two h2:before{
  content: '|';
  color: #96e072;
  padding-right: 10px;
}
.segment-two ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.segment-two ul li{
border-bottom: 1px solid rgba(255, 255, 255,0.3);
line-height: 40px;
}
.segment-two ul li a{
  color: #999;
  text-decoration: none;
}
.segment-three h2{
  color: #fff;
  font-family: "Poppins";
  text-transform: uppercase;
}
.segment-three h2:before{
  content: '|';
  color: #96e072;
  padding-right: 10px;
}
.segment-three a{
  background: #494848;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
}
.segment-three a i{
  font-size: 20px;
  color: #fff;
  padding: 10px 12px;

}
.segment-four h2{
  color: #fff;
  font-family: "Poppins";
  text-transform: uppercase;
}
.segment-four h2:before{
  content: '|';
  color: #96e072;
  padding-right: 10px;
}
.segment-four form input[type=submit]{
  background: #3DA35D;
  border: none;
  padding: 3px 15px;
  color: #fff;
  text-transform: uppercase;
}
.footer-bottom-text{
  text-align: center;
  background: #134611;
  line-height: 75px;
}

@media only screen and (min-width:768px) and (max-width: 991px){
  .md-mb-30{
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px){
  .sm-mb-30{
    margin-bottom: 30px;
  }
  .footer-top{
    padding: 50px 0;
  }
}

.container{
  width: 90%;
  margin: auto;
  overflow: hidden;
}
.contact-us{
  color: #FEFCFB;
  text-align: center;
  text-decoration: underline;
  text-underline-position: below;
  /* color: rgba(238,235,235); */
  letter-spacing: 2px;
}
#contact-section{
  background-image: url(../images/panorama-of-garden-pathway-2339180.jpg);
  background-size: cover;
  background-position: center;
  height: 80%;
  width: 100%;
  padding-bottom: 2%;
  color: #FEFCFB;
}
#contact-section .container p{
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3%;
  letter-spacing: 3px;
  color: #FEFCFB;
}
.icon-styles #marker, #envelope, #phone{
  font-size: 22px;
  padding: 3%;
  background-color: none;
  margin: 2%;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 80%;
  color: #FEFCFB;
}
.icon-styles #marker, #envelope, #phone:hover{
  cursor: pointer;
  border: 2px solid #fff;
  color: #fff;
  text-align: left;
}
.form-info{
  font-size: 16px;
  font-style: italic;
  color: #fff;
  letter-spacing: 2px;
}
input{
  padding: 10px;
  margin: 10px;
  width: 70%;
  background-color: rgba(136,133,133,0.5);
  color: #fff;
  border: none;
  outline: none;
}

input::placeholder{
  color: #fff;
}
textarea{
  padding: 10px;
  margin: 10px;
  width: 70%;
  background-color: rgba(136,133,133,0.5);
  color: #fff;
  border: none;
  outline: none;
}
textarea::placeholder{
  color: #fff;
}
.submit{
  width: 40%;
  background: none;
  padding: 4px;
  outline: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  height: 33px;
  text-align: center;
  cursor: pointer;
  margin-left: 3%;
  border: 2px solid rgba(190,190,190);
  color: rgba(190,190,190);
}