*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color: #222222;
    font-family: 'Josefin Sans', sans-serif;
}

.but{
    background-color: rgb(73, 205, 50);
    padding: 15px 39px;
    margin-left: 20px;
    position: relative;
    border-radius:6px ;
    -webkit-border-radius:6px ;
    -moz-border-radius:6px ;
    -ms-border-radius:6px ;
    -o-border-radius:6px ;
}
.but a{
    color:#fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.but a i{
    margin-right: 8px;
}
.but::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #186b0d;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

.but:hover::before{
    width:100%;

}

.heading h2{
    font-weight:700 ;
   color: #234821;
   font-size: 50px;

}

/* ================start Nav=================== */
.navbar{
    background-color: #fff;
    padding: 20px 50px;
    box-shadow: 0 10px 15px rgba(25,25,25, 0.1);
}
.navbar .navbar-nav .nav-item{
    margin-right: 30px;

}

.navbar .navbar-nav .nav-item .nav-link{
    padding:15px ; 
    font-size: 18px;
    color:#234821;
    position: relative;

}

.navbar .navbar-nav .nav-item .nav-link:hover{
    color:#329924;

}

.navbar .navbar-nav .nav-item .nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 0;
    bottom: -20px;
    background-color: #329d23;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

.navbar .navbar-nav .nav-item .nav-link :hover::before{
    width: 100%;
}
.navbar .dropdown-menu{
    top: 135%;

}

@media(max-width:1024px){
    .but {
    padding: 15px 21px;
    }
    .navbar .navbar-nav .nav-item {
    margin-right: 15px;
    }
}

@media(max-width:991px){
    .navbar{
        padding: 20px 25px
    }
    .navbar-toggler:focus,.navbar-toggler:hover{
        border: 0;
        box-shadow: none;
        outline: 0;
    }
    .navbar-toggler i{
        font-size: 25px;
        color: #329D23;
    }
    .navbar .navbar-nav .nav-item .nav-link:hover::before{
        width:0%;
    } 
    .but {
        padding: 15px 21px;
    }
}
/* ================end Nav=================== */

/* ================carousel================ */
.header .carousel-item img{
    filter: brightness(0.7);
    -webkit-filter: brightness(0.7);
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
  }
  .header .carousel-item .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    -webkit-transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
    text-align: center;
    color: #fff;
    width: 72%;
  }
  
  
  .header .carousel-item .info h1{
    font-size: 80px;
    margin-bottom: 44px;
  }
  
  
  
  .header .carousel-item .info p{
    font-size: 35px;
    margin-bottom: 20px;
  }
  
  .header .carousel-item .info .btn{
    border: 1px solid #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    padding: 15px 42px;
    color: #fff;
    font-size: 19px;
  }
  .header .carousel-item .info .btn i{
    margin-left: 5px;
    font-size: 13px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
  }
  .header .carousel-item .info .btn:hover i{
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
  } 
  
  .header .carousel-control-prev-icon i , .header .carousel-control-next-icon i{
    font-size: 20px;
  }
  .header .carousel-control-prev-icon:hover , .header .carousel-control-next-icon:hover {
    background: rgba(255,255,255,01);
    color: #222222;
  }
  .header .carousel-control-prev-icon {
    background-image: none;
    position: absolute;
    left: 0px;
    background: rgba(255,255,255,0.2);
    width: 44px;
    height: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .carousel-control-next-icon{
    position: absolute;
    right: 0;
    background-image: none;
    background: rgba(255,255,255,0.2);
    width: 44px;
    height: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media(max-width:767px){
    .header .carousel-item .info h1{
      font-size: 28px;
      margin-bottom: 22px;
    }
  
    .header .carousel-item .info p{
      font-size: 20px;
    }
    
    .header .carousel-item .info .btn{
      padding: 10px 21px;
      color: #fff;
      font-size: 16px;
  }
  }
  
  
/* ================End carousel================ */


/* ================Start years================ */
.years {
    margin-top:80px ;
}
.years .years-info{
    padding: 16px 50px;
}
.years .years-info h3{
 color: #145a0b;
 font-size: 50px;
 font-weight: 600;
 line-height:68px ;
 margin-bottom: 20px;
}

.years .years-info p{
    color: #285d25;
    font-size: 18px;
    margin-bottom: 27px;
}

.years .years-info .but{
    margin-left: 0;
}

@media(max-width:991px){
    .years .years-info{
        padding: 16px 0;
    }
}

@media(max-width:767px){
    .years {
        margin-top:50px ;
    }
    .years .years-info{
        padding: 16px 0;
    }
}
/* ================End years================ */


/* =================Start services================ */

.services{
    padding: 0 19px;

}
.services .services-img img{
 width: 100%;
 height: 460px;

}


.services .services-info{
    background-color: #F3FFF2;
    padding: 60px 31px ;
    height: 460px;

}

.services .services-info h6{
    font-size: 16px;
    color: #234821;
    margin-bottom: 30px;
}

.services .services-info h4{
    
    color: #234821;
    margin-top: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}

.services .services-info p{
    font-size: 18px;
    line-height: 1.5;
    color: #285D25;
    margin-bottom: 30px;
}

.services .services-info .but{
    margin-left: 0;
    padding: 7px 24px;

}
@media(max-width:1024px){
    .services .services-info p{
        line-height: 24px;
    }
    
    .services .services-info .but{
       
        padding: 7px 10px;
    }
}

/* ===============end services================  */

/* ===============start counter================  */
.counter{
    margin-top: 75px;
}


.counter .counter-info{
 margin-bottom: 60px;
}
.counter .counter-info h2{
    color: #234821;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase
}

.counter .counter-info p{
    color: #10285d;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

/* ===============end counter================  */

/* ===============Start choose us================  */
.choose-us{
    margin: 75px ;
}

.choose-us .choose-us-info{
    margin-bottom: 40px;
}

.choose-us .choose-us-info h2{
    color: #234821;
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 21px;
    font-size: 54px;
}

.choose-us .choose-us-info p{
    color:#285D25;
    margin-bottom: 20px;
    line-height: 30px;
}

.choose-us .choose-us-info ul{
    list-style: none;
    color:#285D25;
    margin-bottom: 40px;
    
}


.choose-us .choose-us-info ul li{
    margin: 10px 0;
    color:#285D25;
    display: flex;
    justify-content: center;
    align-items:flex-start;
}

.choose-us .choose-us-info ul li i{
    margin: 10px 20px 0 0;
    
}

.choose-us .choose-us-info .but{
    margin-left: 0;
}

.choose-us .choose-us-img {
    position: relative;

}

.choose-us .choose-us-img img{
    width: 100%;
}
.choose-us .choose-us-img .icon{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items:center;
}
.choose-us .choose-us-img .icon .icon-Plants{
    background-color:#285D25 ;
}

.choose-us .choose-us-img .icon .icon-Wining{
    background-color:#329D23;
}

.choose-us .choose-us-img .icon .icon-Plants ,
.choose-us .choose-us-img .icon .icon-Wining {
    color: #fff;
   padding: 30px;
    text-align: center;
}

.choose-us .choose-us-img .icon .icon-Plants i ,
.choose-us .choose-us-img .icon .icon-Wining i{
    font-size: 30px;
    margin-bottom: 10px;
}

@media(max-width:767px){
    .choose-us .choose-us-img .icon .icon-Plants ,
.choose-us .choose-us-img .icon .icon-Wining {
    color: #fff;
    padding: 15px 10px;
    text-align: center;
}
}
/* ===============end choose us================  */

/* ===============Start  video ===================== */
.video{
    background-image: url("../imges/video-bg.png");
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .video .but-video{
    background-color: #329D23;
    padding: 40px;
    border-radius: 50%;
    color: #fff;
    position: relative;
  }
  .video .but-video::before{
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    background-color: #319d232b;
    top: -70%;
    left: -86%;
    border-radius: 50%;
  }
  
  
  
  .video .but-video i{
    font-size: 20px;
  }
  .video .but-video:focus , .modal-header .close:focus{
    box-shadow: none;
    border: 0;
    outline: 0;
  }
  
  .video .modal-dialog {
    max-width: 900px;
  }
  
  .video .modal-content {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-radius: .0;
    outline: 0;
    -webkit-border-radius: .0;
    -moz-border-radius: .0;
    -ms-border-radius: .0;
    -o-border-radius: .0;
  }
  .video .modal-header {
    border: 0;
  }
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    color: #fff;
    font-size: 40px;
  }
  .video .modal-body iframe{
    width: 100%;
    height:400px;
  }

/*  ===============Start tips ===================== */
.tips{
    margin-bottom: 40px;
}

.tips .tips-info{
    background-color: #F3FFF2;
    padding: 20px;
}

.tips .tips-info .media-body{
    padding: 23px 40px;
}

.tips .tips-info  .media-body h3 a{
    color: #234821;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-decoration: none;
}

.tips .tips-info  .media-body h3 a:hover{
    color: #329D23;
    text-decoration: none;
}

.tips .tips-info  .media-body p{
    font-size: 18px;
    line-height: 1.5;
    color: #285D25;
    margin-bottom: 30px;
}

.tips .tips-info  .media-body > a{
    color: #329D23;
    text-decoration: underline;
    font-size: 16px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

.tips .tips-info  .media-body > a:hover{
    letter-spacing: 1.4px;
}
 .tips .but{
    background-color:transparent;
    border: 1px solid #329d23;
} 

.tips .but a{
    color:#329D23;
    position: relative;
    z-index: 1;
    transition: all.3s ease-in;
    -webkit-transition: all.3s ease-in;
    -moz-transition: all.3s ease-in;
    -ms-transition: all.3s ease-in;
    -o-transition: all.3s ease-in;
}

.tips .but::before{
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
} 

.tips .but:hover::before{ 
    height: 100%;
    background-color: #329D23;
    }
.tips .but:hover a{
    color: #fff;
    }

@media(max-width:991px){
    .tips .tips-info .media-body {
    padding: 23px 7px;
    }
    .tips .tips-info .media-body h3 a{
    font-size: 25px
    }
    }
    @media(max-width:767px){
    .tips .media{
    display: block;
    }
    .tips .media img{
    width: 100%;
    }
    .tips .Tips-info .media-body {
    padding: 23px 2px;
    }
}
/* ========== */
.help{
    margin-top: 80px;
    /* padding: 0 17px; */
    overflow: hidden;
}
.help .help-info{
    padding: 76px 86px;
}

.help .help-info h2{
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 21px;
    color: #234821;
    margin-top: 0px;
    font-style: normal;
}

.help .help-info p{
    color: #285D25;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.help .help-info ul{
    list-style: none;
}

.help .help-info ul li{
    margin-top: 30px;
    color: #234821;
    font-size: 18px;
}

.help .help-info ul li i{
    margin-right: 20px;
}
.help .but{
    background-color: transparent;
    border: 1px solid #329D23;
    margin-left: 0;
    padding: 15px 74px;
}
.help .but a{
    color: #329D23;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

.help .but::before{ 
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.help .but:hover::before{ 
    height: 100%;
    background-color: #329D23;
}

.help .but:hover a{
    color: #fff;
}

.help .help-img img{
    width: 100%;
    height: 700px;
}





/* ==============footer====================== */
footer{
    background-color: #F3FFF2;
    padding-top: 120px;
    padding-bottom: 13px;

}
footer .container> p{
    color: #285D25;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 12px;
    text-align: center !important;
    margin-top: 3rem!important;
}

footer .footer-logo img{
    margin-bottom: 30px;
}

footer .footer-logo p{
    color: #285D25;
    padding-right: 52px;
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
}

footer .footer-logo .footer-icon a{
    background: rgba(50,157,35,0.06);
    color: #329D23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 44px;
    display: inline-block;
    text-align: center;
    margin-right: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

footer .footer-logo .footer-icon a:hover{
    background-color: #329D23;
    color:#FFFFFF ;
}

footer .footer-list h4{
    color: #234821;
    font-size: 22px;
    margin-bottom: 29px;
    font-weight: 600;
}

footer .footer-list ul{
    list-style: none;
}

footer .footer-logo , footer .footer-list{
margin-bottom: 40px;
}
footer .footer-list ul li {
    margin-bottom: 10px;

}

footer .footer-list ul li a{
    color: #285D25;
    font-weight: 400;
    font-size: 16px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}
