/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");
/* ==========================================================================
   2. GENERAL
   ========================================================================== */


html {
  overflow-x: hidden;
}

p {
  font-size: 14px;
  line-height: 26px;
}

a {
  color: green;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #7db208;
}

a.cla-link{
  color: green;
}

a.cla-link:hover{
  color: #7db208;
}
/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 50px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 45px;
  text-align: center;
}

.section-header .section-title {
  font-size: 30px;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  position: relative;
}

.section-header .section-title span {
  color: #7db208;
}

.section-header .section-subtitle {
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #7db208;
  margin-top: 15px;
}

@media (max-width: 500px) {
  .section {
    padding: 30px;
  }  
}

/* ==========================================================================
	 2.4  Pre Loader
	 ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #7db208;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #7db208;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}



/* ==========================================================================
   4. Navbar Style
   ========================================================================== */
.navbar-brand {
  position: relative;
  padding: 0px;
}

.top-nav-collapse {
  background: #fff;
  z-index: 999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: #fff !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link,
.top-nav-collapse .nav-item .btn {
  color: #333 !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #7db208 !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: #fff !important;
}

.indigo {
  background: transparent;
}

.navbar-expand-md .navbar-nav .nav-link,
.navbar-expand-md .navbar-nav .btn {
  color: #fff;
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



.navbar-expand-md .navbar-nav li a:hover,
.navbar-expand-md .navbar-nav li .active > a,
.navbar-expand-md .navbar-nav li a:focus {
  color: #7db208;
}



.navbar .nav-link.active {
  color: #fff !important;
  background: #7db208;
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_nav {
	color: #fff;
	font-size: 0.875em;
	list-style: outside none none;
	margin: 0;
	max-height: 350px;
	padding: 0;
	width: 100%;
}

.slicknav_btn {
  border-color: #7db208;
  border: 1px solid;
  border-radius: 0;
  color: #7db208;
  cursor: pointer;
  float: right;
  height: 35px;
  width: 44px;
  line-height: 50px;
  position: relative;
  margin: 16px 15px;
  background: none;
  vertical-align: middle;
  text-align: center;

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  padding: 0px;
  background: none;
}

.slicknav_menu .slicknav_icon-bar {
  background: #7db208;
}

.slicknav_menu ul {
	background: #fff;
}
.slicknav_nav a {
	padding: 5px 15px;
	margin: 2px 5px;
	text-decoration: none;
	color: #666;
}
/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}


#languages {
  background: #292f35;
  padding: 0px;
  margin: 0px;
  height: 1em;
}

.language-links {
  line-height: 48px;
}

.language-links li {
  float: left;
}

.language-links li a {
  color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.language-links li a:hover {
  color: #7db208;
}
.navbar{
  padding: 0;
}
@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 70%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: #7db208;
    color: #fff;
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: #7db208;
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #7db208;
  }

}
@media screen and (max-width: 400px) {
  #languages {  
    height: 3em;
  }
}


/* ==========================================================================
15. Footer Style
 ========================================================================== */
footer {
  background: #292f35;
  padding: 20px 0;
}



.footer-links {
  line-height: 48px;
}

.footer-links li {
  float: left;
}

.footer-links li a {
  color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: #7db208;
}

.copyright {
  margin-top: 10px;
  float: right;
  color: #fff;
}

.mobi-padding{
  height: 50px;
}

@media (max-width: 400px) {
  footer {      
      padding: 5px 0;
    }

  .footer-links {
      line-height: 20px;
    }
  .copyright {
      margin-top: 5px;
      margin-bottom: 5px;
      float: right;
    }
}


/* ==========================================================================
  Icons Section
   ========================================================================== */
   .img-icon {
    display: inline-block;
    width: 70%;
    height: 70%;
    margin-top: 8px;
  }
  
  /* ==========================================================================
    Download Section
     ========================================================================== */
  
  img.store-download{
    width: 150px;
    margin-top: 10px;
    margin-left: 5px;
  }

  img.logo{
    width: 90px;
  }
  
  
  .notice{
    text-align: center;
    font-size: xx-small;
  }
  
  /* ==========================================================================
    Privacy page
     ========================================================================== */
  #privacy h3{
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  #privacy p{
    padding-bottom: 6px;
  }
  #privacy li{
    padding-bottom: 4px;
  }
  
  /* ==========================================================================
    Drop down menu
     ========================================================================== */
  .dropbtn {
    background: none;
    color: white;
    padding: 16px; 
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #7db208;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown i{
    font-size: x-large;
    vertical-align: middle;
  }
  
  .dropdown-content div{
    color: white;
    margin: 3px;
    padding: 6px;
  }
  /* Links inside the dropdown */
  .dropdown-content a {
    color:white;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #f1f1f1}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }
  
  div.menu-title{
    color:grey;
    margin: 6px;
    padding: 6px;
  }

  .nav-button{
      color: #666;
      padding: 0 22px;
      margin-top: 20px;
      margin-bottom: 20px;
      line-height: 40px;
      border-radius: 30px;
      background: transparent;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }
  .nav-button:hover{    
      color: #7db208 !important;
      cursor: pointer;
  }

  .nav-button-mobi{
    color:white;
    padding: 0 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 40px;
    border-radius: 30px;
    background: transparent;
  }

/* Customized color for form control */
input::-webkit-input-placeholder {
    color: #bfbfbf;
}

input:-moz-placeholder {
    color: #bfbfbf;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:#bfbfbf;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bfbfbf;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #bfbfbf;
}