@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");


:root {
  --colorYellowBackGround: #f7f2e4;
  --colorDarkBackGround: #666;
  --colorGrayBackGround: #f1f1f1;
  --colorBrightBackGround: #fff;
  --colorPrimary: #7db208;

  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --accent-color: #e84545;
  --accent-color-rgb: 232, 69, 69;
  --heading-color: #32353a;
  --heading-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;

  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-title: 3rem;
  --heading-margin-top: 1.5rem;
  --heading-margin-bottom: 1rem;
  --line-height: 1.3;


  scroll-behavior: smooth;
}


/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #e84545;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #d83535;
}

@media print {
  @page {
    margin: 0;
  }

  body {
    margin: 0;
    padding: 0;
  }
}

html {
  overflow-x: hidden;
}


body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

a {
  color: var(--colorPrimaryDark);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}


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

a {
  color: var(--colorPrimary);
}

a:hover {
  color: var(--colorPrimary);
}

footer {
  font-size: 15px;
}


.text-primary {
  color: var(--primary) !important;
  text-decoration: underline;
}

.text-primary:hover {
  cursor: pointer;
}

/* -----button bootstraps----- */
.btn-link {
  color: var(--colorPrimaryDark) !important;
}

.btn-link:hover {
  color: var(--colorPrimary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border: 1px solid var(--primary);
  min-width: 80px;
}

.btn-primary:hover {
  background-color: var(--colorPrimaryDark) !important;
  color: white !important;
}

.btn-outline-primary {
  background-color: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  min-width: 80px;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
}


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


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--colorPrimary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--colorPrimaryDark);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}


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

.top-nav {
  z-index: 999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  background: var(--colorBrightBackGround) !important;
}

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

.top-nav .navbar-nav .nav-link {
  color: var(--colorPrimaryDark) !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav .in-active .nav-link:hover {
  border: none !important;
  background-color: var(--colorPrimary);
}

.top-nav .in-active .nav-link:hover>span {
  color: white;
}

.top-nav .active .nav-link {
  border: 1px solid var(--colorPrimaryDark);
  border-radius: 20px;
}

.navbar-expand-md .navbar-nav .nav-link {
  color: white;
  padding: 0 10px;
  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-lg .navbar-nav .nav-link {
  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;
}

.top-nav .navbar-nav .nav-link:hover {
  color: #7db208 !important;
  border-radius: 20px;
}

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

.indigo {
  background: transparent;
}

.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: var(--colorPrimary);
}

.navbar .nav-link.active {
  color: #fff !important;
  background: var(--colorPrimary);
}

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

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

.slicknav_btn {
  background-color: var(--colorPrimaryDark);
}

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

.slicknav_menu .slicknav_icon-bar {
  background: #d4f58d;
}

.slicknav_menu ul {
  background: var(--colorBrightBackGround);
}

.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;
}

.navbar {
  padding: 0 !important;
  min-height: 60px;
}


@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }

  .navbar-brand {
    position: absolute;
    padding: 5px;
    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;
  }
}

.navbar-margin {
  height: 100px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}
.footer a{
  text-decoration: none;
}


.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #272a15;
  font-size: 16px;
  color:  #272a15;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--colorPrimaryDark);
  border-color: var(--colorPrimaryDark);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 17px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--colorPrimaryDark);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(var(--default-color-rgb), 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


.footer-bottom {
  background: rgba(var(--default-color-rgb), 0.05);
}



.footer-bottom-links {
  line-height: 30px;
}

.footer-bottom-links li {
  float: left;

}

.footer-bottom-links li a {
  color: var(--colorDark);
  margin-right: 15px;

}

.footer-bottom-links li a:hover {
  color: var(--colorPrimaryDark);
}

.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;
}

.dark-bgr {
  background-color: var(--colorDarkBackGround);
}

.inline-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 600px;
  margin: 20px auto;
}

.tag-box {
  border: 1px solid var(--colorGray);
  margin: 0px 5px 5px 0px;
  border-radius: 5px;
  display: inline-block;
}

.tag-count {
  color: var(--colorAccent);
  position: relative;
  padding: 2px;
}

.tag-name {
  color: var(--colorDark);
  position: relative;
  padding: 2px;
}

.bg-bar {
  background-color: var(--colorHero);
}

.content-wrap {
  min-height: 650px;
}

img.tiny {
  height: 40px;
}

img.logo {
  width: 90px;
}

img.logo-small {
  width: 50px;
}

img.logo-big {
  width: 120px;
}

img.logo-bbig {
  width: 190px;
}

img.logo-xsmall {
  width: 20px;
}

@media (max-width: 719px) {
  img.logo-big {
    width: 80px;
  }
  img.logo-bbig {
    width: 130px;
  }
}

/* ==========================================================================
   2.0 NavBar
   ========================================================================== */
/* General styling for navbar items */
.nav-item-custom {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

/* Wrapper to center the icon */
.nav-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* Adjust font size and vertically center text */
.nav-text {
  font-size: 13px;
  font-weight: 400;
  color: #37993c;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

  .clear {
    clear: both;
  }

  #main{
  padding-top: 80px;
  }


@media (max-width: 992px) {
  
  .padding {
    height: 70px;
  }
  
}


  
/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
/* Blog Section - Blog Page
------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--colorPrimary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 0;
}

.blog .pagination {
  margin-top: 30px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .pagination li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .pagination li.active,
.blog .pagination li:hover {
  background: var(--colorPrimaryDark);
  color: var(--contrast-color);
}

.blog .pagination li.active a,
.blog .pagination li:hover a {
  color: var(--contrast-color);
}
