html{
  scroll-behavior: smooth;
}
header {
  background-color: #3b5d50;
}
.nav-pages li {
  margin-left: 5px;
}
.nav-pages li a {
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}
.nav-pages li a::after {
  content: "";
  width: 0%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: gold;
  transition: all 0.3s;
}
.nav-pages li a:hover {
  color: #fff;
}
.nav-pages li a:hover::after {
  width: 100%;
}
.nav-pages li a.active::before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: gold;
}
@media (max-width: 767px) {
  .nav-pages li a.active::before {
    width: 0%;
  }
  .nav-pages li a:hover::after {
    width: 0;
  }
  .nav-cta li {
    width: 20px;
  }
}
.hero .custom-btn-1 {
  background-color: gold;
  margin-right: 10px;
}
.hero .custom-btn-1:hover {
  background-color: goldenrod;
}
.hero .img-wrapper {
  background: url(../images/dots-light.svg) top right no-repeat;
}
.product-section {
  background-color: #eff2f1;
  padding: 7rem 0;
}
.product-item {
  position: relative;
  margin-bottom: 20px;
}
.product-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #dce5e4;
  transition: all 0.25s;
  border-radius: 15px;
}
.product-item:hover::after {
  height: 70%;
}
.product-item span {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.25s;
}
.product-item:hover span {
  opacity: 1;
  transform: translateY(18px);
}
.product-item h3 {
  position: relative;
  z-index: 2;
}
.product-item strong {
  position: relative;
  z-index: 2;
}
.product-item .product-img {
  position: relative;
  z-index: 2;
  transition: all 0.25s;
}
.product-item:hover .product-img {
  transform: translateY(-20px);
}
.product-title-p {
  font-size: 14px;
}
.product-item strong {
  color: rgb(47, 47, 47);
}
.why-choose-us {
  background-color: #eff2f1;
  padding: 7rem 0 12rem 0;
}
.why-choose-us .why-choose-us-icon {
  position: relative;
}
.why-choose-us .why-choose-us-icon::before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  background: rgba(59, 93, 80, 0.2);
  border-radius: 50%;
  right: -8px;
  bottom: -16px;
}
.why-choose-us-img {
  position: relative;
}
.why-choose-us-img img {
  position: relative;
  z-index: 2;
}
.why-choose-us-img::after {
  content: "";
  position: absolute;
  width: 255px;
  height: 217px;
  top: -60px;
  left: -60px;
  background: url(../images/dots-yellow.svg) top right no-repeat;
}
.Testimonials-img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
.carousel-indicators {
  margin-bottom: 2rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  position: relative;
}
.carousel-control-prev-icon::after {
  content: "\2190";
  font-size: 25px;
  color: gray;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  background-color: gainsboro;
  border-radius: 50%;
}
.carousel-control-next-icon::after {
  content: "\2192";
  font-size: 25px;
  color: gray;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  background-color: gainsboro;
  border-radius: 50%;
}
.blog-section {
  background-color: #eff2f1;
  padding: 7rem 0 12rem 0;
}
.more-blog-posts:hover {
  text-decoration: none;
}
.blog-post-img {
  position: relative;
}
.blog-post-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.3s;
}
.blog-post:hover .blog-post-img::after {
  opacity: 1;
}
.blog-post-span {
  font-size: 14px;
}
.footer-img img {
  width: 100%;
  max-width: 380px;
}
.form input {
  border-radius: 10px;
  height: 50px;
  width: 100%;
  margin-bottom: 1rem;
}
.form-button {
  background-color: #3b5d50;
  padding: 12px 30px;
  height: 50px;
}
.form-button:hover {
  background-color: #314d43;
}
.footer-links .social-icons a {
  text-decoration: none;
  background-color: #dce5e4;
  color: #3b5d50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.footer-links .social-icons a:hover {
  color: #dce5e4;
  background-color: #3b5d50;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 15px;
}
.footer-links ul li a,
.Privacy,
.Terms,
.Untree-co {
  font-weight: 400;
  text-decoration: none;
  color: black;
  transition: all 0.15s;
}
.footer-links a:hover,
.Privacy:hover,
.Terms:hover,
.Untree-co:hover {
  color: rgba(47, 47, 47, 0.5);
}
.copyright {
  border-top: 1px solid #dce5e4;
}
label{
  cursor: pointer;
}