/**
* Template Name: Bootslander - v4.3.0
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: "Manrope";
  src: url("manrope-medium.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: Manrope;
  color: #00240e;
}
a {
  color: #0aae91;
  text-decoration: none;
}

a:hover {
  color: #34e5a6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: Manrope;
  font-weight: unset;
}

/** 
* Custom Container 
*/

/* For desktop: */
@media only screen and (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1190px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0aae91;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: white;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #0aae91;
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  width: 92%;
  /* width: 40%; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.logo {
  width: 70%;
}
.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;

  padding: 10px 0 10px 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: #00240e;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #0aae91;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #0aae91;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #00240e;
}

.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: #0aae91;
}

.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: #0aae91;
  font-size: 29px;
  cursor: pointer;
  display: none;
  padding: 6px 6px;
  line-height: 0;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #98a0a1;
  width: 43px;
  height: 43px;
}

@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;
  transition: 0.3s;
  z-index: 999;
  height: 390px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 70px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #00240e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #0aae91;
}

.navbar-mobile .getstarted {
  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: #0aae91;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #0aae91;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0aae91;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fafafa;
  margin-top: 50px;
  color: #00240e;
  font-size: 14px;
}

#footer .footer-img-leaf {
  width: 25%;
  margin-left: 20px;
  padding-bottom: 55px;
}

#footer .footer-bottom {
  background: #0aae91;
  color: #00240e;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
}

#footer .footer-bottom .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background: #ffffff40;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 48px;
  height: 48px;
  transition: 0.3s;
}

#footer .footer-bottom .social-links a:hover {
  background: #1acc8d;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #00240e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  /* margin-left: 40px; */
  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: #0aae91;
  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: #00240e;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #4be8b0;
}
#footer .footer-top .footer-links ul li p {
  margin-left: 25px;
  margin-top: 15px;
}
#footer .footer-top .footer-links h4 {
  color: #0aae91;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  /* margin-left: 50px; */
}

#footer .footer-top .footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-info ul i {
  padding-right: 2px;
  color: #0aae91;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-info ul li {
  padding: 1px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-info ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-info ul a {
  color: #00240e;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-info ul a:hover {
  color: #4be8b0;
}
#footer .footer-top .footer-info ul li p {
  margin-left: 25px;
  margin-top: 10px;
}
#footer .footer-top .footer-info h4 {
  color: #0aae91;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #00240e;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0aae91;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #149f6e;
}

#footer .copyright {
  margin-left: 90px;
  margin-top: 20px;
  color: #ffffff;
  float: left;
}

#footer .credits {
  text-align: right;
  font-size: 13px;
  color: #fff;
  margin-right: 100px;
}

@media (min-width: 0px) and (max-width: 600px) {
  #header {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .footer-top {
    background-image: url(../img/template/footer-leaf.png);
    height: auto;
    background-repeat: no-repeat;
    background-position: 117% 0%;
    background-size: 40%;
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .footer-top p {
    font-size: 14px !important;
  }
  .footer-top h4 {
    font-size: 20px !important;
  }
  .footer-row {
    width: 100%;
  }
  .footer-top .footer-links ul {
    columns: 2;
  }
  #footer .footer-top .footer-links ul li {
    padding: 0 !important;
    margin-bottom: 18px;
  }
  #footer .footer-top .footer-info {
    margin-top: 0px !important;
    margin-left: 10px;
  }
  #footer .footer-top .footer-links {
    margin-left: 10px;
  }
  #footer .footer-top .footer-links ul {
    margin-left: 5px;
  }
  #footer .footer-top .footer-links li a {
    font-size: 16px !important;
    text-decoration: underline;
  }
  .footer-img {
    margin-top: 10px !important;
  }
  .footer-img-leaf {
    display: none;
  }
  .footer-info {
    position: relative;
  }
  .footer-info ul li .fa-map-marker-alt {
    position: absolute;
    top: 58px;
  }
  .text-footer-info {
    margin-left: 44px !important;
  }
  #footer .footer-bottom {
    display: flex;
    flex-direction: column;
  }
  #footer .copyright {
    margin: auto;
    order: 2;
    margin-top: 10px;
  }
  #footer .footer-bottom .credits {
    margin: auto;
    order: 1;
  }
}
#es-header .table-inline {
  display: none !important;
}
.icon-footer{
  height: 21px;
  width: 21px;
  background-size: cover;
}
.icon-footer-label{
  min-width: 80px;
}
.icon-today {
  background-image: url('../img/icon/today.svg');
}
.icon-week{
  background-image: url('../img/icon/week.svg');
}
.icon-month{
  background-image: url('../img/icon/month.svg');
}
.icon-views{
  background-image: url('../img/icon/views.svg');
}
.icon-{
  background-image: url('../img/icon/views.svg');
}