@charset "utf-8";
/* CSS Document */
.index-page .header .container-fluid .navmenu ul li:first-child a{
	color: var(--accent-color) !important;
	font-weight: bold;
}
.index-page .footer .footer-links .footer-nav-list-01 li:first-child a{
	color: var(--accent-color) !important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 0;
  text-align: center;
}
.bg-green {
  background-color: var(--background-green);
  padding: 130px 0 0 0;
}
.hero h1 {
  margin: 0 0 0.5em 0;
  font-size: clamp(28px, 24.36px + 0.91vw, 36px);
  font-weight: 400;
  font-family: "Kiwi Maru", serif;
  font-style: normal;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 640px) {
  .hero h1 {
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-img img {
  width: 100%;
}
@media (max-width: 991px) {
  .hero-img img {
    width: 75%;
  }
}
/*--------------------------------------------------------------
# Our-works Section
--------------------------------------------------------------*/
#our-works {
  z-index: 2;
}
@media (max-width: 991px) {
  .our-works .steps-image {
    height: auto;
  }
}