

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #555555;
}

a {
  color: #3ab0db;
  transition: all .5s ease;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #80c792;
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #000;
}

p{text-align: justify;font-size: 16px !important;padding-top: 0px;}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5cb874;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}
#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: #5cb874;
}
#topbar .contact-info i {
  color: #5cb874;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #5cb874;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  /*box-shadow: 1px 2px 15px  rgba(100, 100, 100, 0.3);*/
  box-shadow: 0px 15px 10px -15px rgba(100, 100, 100, 0.3); 
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a {
  color: #5cb874;
}
#header .logo img {
  max-height: 65px;
}

@media only screen and (max-width: 768px) {
  #header .logo img {
    max-height: 51px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  color:#000;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/*.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #5cb874;
}*/
.navbar .getstarted, .navbar .getstarted:focus {
  color: #5cb874;
  padding: 0px 29px 0px 0px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #5cb874;
  transition: 0.3s;
  font-size: 14px;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #5cb874;
color:#fff!important;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5cb874;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5cb874;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5cb874;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/*section {
  padding: 40px 0;
}*/

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color:#5cb874;
  padding:30px 0px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}


.what-we-do-one .icon-box {
        text-align: center;
        padding: 30px 20px;
        transition: all ease-in-out 0.3s;
      }

      .what-we-do-one .icon-box .icon {
        margin: 0 auto;
        width: 200px;
        height: 64px;
        background: #eaf4fb;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
      }

      .what-we-do-one .icon-box .icon i {
        color: #3498db;
        font-size: 28px;
      }

      .what-we-do-one .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
        margin-top:60px !important;

      }

      .what-we-do-one .icon-box h4 a {
        color:#000;
        transition: ease-in-out 0.3s;

      }

      .what-we-do-one .icon-box p {
        line-height: 24px;
        font-size: 15px!important;
        margin-bottom: 0;
      }



      .what-we-do {background-color:#EEEFF1;}
      .what-we-do .icon-box {
        text-align: center;
        padding: 30px 20px;
        transition: all ease-in-out 0.3s;
      }

       @media only screen and (max-width: 600px) {
        .what-we-do .icon-box {
          padding: 30px 20px 60px 20px;
        }
      }

      .what-we-do .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #eaf4fb;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
      }

      .what-we-do .icon-box .icon i {
        color: #3498db;
        font-size: 28px;
      }

      .what-we-do .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
        margin-top:50px !important;

      }

      .what-we-do .icon-box h4 a {
        color:#000;
        transition: ease-in-out 0.3s;

      }

      .what-we-do .icon-box p {
        font-size: 14px;
        margin-bottom: 0;
        text-align: justify;
      }


       @media only screen and (max-width:768px) {
      .section-title h2 {
        font-size:30px !important;
      }
    }

    @media only screen and (max-width: 600px) {
      #what-we-do-one img {
        width:220px !important;
      }
    }

     @media only screen and (max-width: 600px) {
      #what-we-do-one .icon-box{
        margin-top: 20px;
      }
    }

    @media only screen and (max-width: 600px) {
      #what-we-do .section-title h2{
        font-size:30px !important;
      }
    }

    @media only screen and (max-width: 600px) {
      .what-we-do .icon-box h4 a{
        font-size:20px !important;
      }
    }


    .single-team-item {
    color: #6e6e6e;
    display: block;
    margin-top: 50px;
}
.single-team-item h3 {
    color: #222222;
    font-weight:700 !important;
    font-size:21px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.single-team-item h4 {
    color: #6e6e6e;
    font-weight: 300;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.single-team-item i.fa, .about-us-section i.fa {
    font-size: 25px;
    color: #333333;
}
.single-team-item i.fa:hover, .about-us-section i.fa:hover {
    opacity: 0.8;
}
.single-team-item img {
    -moz-transition: all 0.9s;
    -webkit-transition: all 0.9s;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #f8f8f8;
    box-shadow: -2px 0 9px -2px #2EFF27;
    transition: all 0.9s;
    width: 200px;
    height:205px;
}

.single-team-item p {
    color: #6e6e6e;
    margin:15px 0 20px;
    font-size:14px!important;
    /*padding: 2px;*/
    /*text-align: justify;*/
    word-spacing:0px;
    text-align:center;

}

.single-team-item:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.single-team-item button{background-color: transparent;border:1px solid #444;border-radius:0px;margin-top:10px;}



    

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
    }
  }

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5FC700;
}




 





.clients .swiper-slide img {
  /*opacity: 0.5;*/
  transition: 0.3s;
}
.clients .swiper-slide img:hover {
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}





.subscribe_para{background:  url("../../assets/img/sub1.jpg")left center;padding:80px 0;background-repeat: no-repeat;}
.subscribe_para h3{color:#fff;font-size:28px;font-weight:700}

.newsletter form {margin-top: 30px;background: #fff;padding: 15px 10px;position: relative;border-radius: 4px;border: none;}

.newsletter form input[type="email"] {border: none;padding: 4px;width: 100%;}

.newsletter form input[type=submit]{position:absolute;top:0;right:-2px;bottom:0;border:0;background:0 0;font-size:16px;padding:0 20px 2px 20px;background:#156601;color:#fff;transition:.3s;border-radius:0 4px 4px 0}

.newsletter form input[type="submit"]:hover {background: #5cb874;}



#footer {
  background: #282025;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
 
}
#footer .footer-top .social-links a:hover {
  color: #80c792;
 
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
}
#footer .footer-top .footer-links ul a:hover {
  color: #5cb874;
}

#footer .copyright {
  border-top: 1px solid #fff;
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


.navbar-brand img{width: 250px;}

@media only screen and (max-width: 600px) {
  .navbar-brand img {
    width: 150px;
  }
}