body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background:#fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}


a:not([href]):not([tabindex]) {
    color: #fff;
  }
  
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
color: #7db208;
}


/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
   .btn {
    font-size: 14px;
    border-radius: 8px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: inline-block;
  }
  
  .btn:focus,
  .btn:active {
    box-shadow: none;
    outline: none;
    color: #fff;
  }
  
  
  button:focus {
    outline: none !important;
  }
  
  .clear {
    clear: both;
  }

/* ==========================================================================
   3. Hero Area
   ========================================================================== */
   #hero-area {
    background-color: #24753f;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    position: relative;
  }
  
  #hero-area .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #7db208;
    opacity: 0.9;
  }
  
  #hero-area .contents {
    padding: 150px 0 0;
    max-height: 620px;
  }
  
  #hero-area .contents h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  #hero-area .contents p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
  }
  
  #hero-area .banner_bottom_btn {
    margin-top: 40px;
  }
  
  #hero-area .banner_bottom_btn i {
    color: #fff;
    font-size: 48px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  #hero-area .banner_bottom_btn i:hover {
    color: #7db208;
  }
  
  #hero-area a.langPicker{
    margin-left: 10px;
    margin-bottom: 5px;
    display: inline-block;
    white-space: nowrap;
    color: #3a5a01;  
  }
  
  #hero-area a.langPicker:hover{
    color:white;    
  }
  
  #hero-area span.langPicker{
    margin-left: 10px;
    margin-bottom: 5px;
    display: inline-block;
    white-space: nowrap;
    color: white;
  }

  @media (min-width:992px) {
    #hero-area .contents {
      padding: 170px 0 0;      
    }
  }
/*SHAKER*/
@keyframes wiggle {
  2% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  4% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  6% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  8% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  10% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  12% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  14% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  16% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  18% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.wiggle {
  display: inline-block;
  animation: wiggle 2.7s infinite;
  animation-delay: 3s;
}

.wiggle:hover {
  animation: none;
}

/* Bounce effect*/

.bounce-3 .lnr{
  font-size: x-large;
}

.bounce-3 a{
  color: white;
  align-self: flex-end;
  animation-duration: 2s;
  animation-iteration-count: infinite;   
  transform-origin: bottom;
}

.bounce-3 a:focus{
  color: white;
}

.bounce-3 a:hover{
  color: #7db208
}
.bounce-3:hover {
  animation: normal;
}

.bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
  align-self: flex-end;
  animation-delay: 3s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  margin: 0 auto 0 auto;
  transform-origin: bottom;
  width: 200px;
}
@keyframes bounce-3 {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-20px); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}


/* ==========================================================================
  5. Icon section
   ========================================================================== */
.item-boxes {
    text-align: center;
    padding: 0px 15px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  
  .item-boxes .icon {
    width: 60px;
    height: 60px;
    text-align: center;
    border: 1px solid #7db208;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .item-boxes .icon i {
    font-size: 26px;
    line-height: 60px;
    color: #7db208;
  }
  
  .item-boxes h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .link-download{
    margin-top: 70px;
  }
  /* ==========================================================================
    6. Features Section Style
     ========================================================================== */
  #features {
    background-color:#f8f9fa; 
    background-attachment: fixed;
    background-size: cover;
    color: #343a40;
    overflow: hidden;
    position: relative;
  }
  
  #features .section-title {
    color: #343a40;
  }
  
  #features .section-subtitle {
    color: #343a40;
  }
  
  #features .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  #features .box-item {
    padding: 15px 0;
  }
  
  #features .box-item .icon {
    border: 1px solid #7db208;
    text-align: center;
    float: left;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  #features .box-item .icon i {
    color: #7db208;
    font-size: 24px;
    line-height: 60px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  #features .box-item .text {
    padding-left: 80px;
  }
  
  #features .box-item .text h4 {
    color: #7db208;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 22px;
  }
  
  #features .box-item .text p {
    font-size: 14px;
    line-height: 26px;
  }
  
  #features .show-box img {
    position: absolute;
    bottom: -120px;
  }
  section#features .media i.fa {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding: 20px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    width: 2.6em;
    text-align: center;
  }
  section#features .media .media-heading {
    padding-top: 10px;
    font-weight: 300;
  }
  section#features .media .media-body {
    color: #999999;
  }
  section#features .media.feature {
    margin-top: 25px;
  }
  section#features .media.feature:first-child {
    margin-top: 0;
  }
  section#features img {
    margin: 0 auto 20px;
  }


  .pricing-table {
    padding: 0px 0px 40px 0px;
    margin: 0 auto;
    margin-bottom: 0px;
    margin-bottom: 5px;
    border: transparent;
    text-align: center;
    background-color:  #FFFFFF;
    border: 1px solid  #f1f1f1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.pricing-table .pricing-details h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: #f1f1f1;
  padding: 30px 0;
}

.pricing-table .pricing-details span {
  display: inline-block;
  font-size: 30px;
  font-weight: 300;
  color: #7db208;
  margin-bottom: 20px;
}

.pricing-table .pricing-details ul li {
  padding: 10px;
  font-size: 15px;  
}