@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("animate.min.css");
/*-- font style --*/
/*-- shadow effect --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #8BC53F;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #1A5D1A;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
}

a,
a:hover {
  text-decoration: none;
}

a,
span {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #1A5D1A !important;
  padding-left: 0;
}
.custum-input:focus {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: #1A5D1A !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #1A5D1A;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #8BC53F;
  border-color: transparent;
  opacity: 0.5;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Kumbh Sans", sans-serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: #8BC53F;
}

.theme-bg-secondary {
  background-color: #1A5D1A;
}

.theme-bg-accent-one {
  background-color: #A5A5A5;
}

.theme-bg-accent-two {
  background-color: #eaeaea;
}

.theme-bg-white {
  background-color: #ffffff;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-black {
  color: #000000;
}

.theme-text-primary {
  color: #8BC53F;
}

.theme-text-secondary {
  color: #1A5D1A;
}

.theme-text-accent-one {
  color: #A5A5A5;
}

.theme-text-accent-two {
  color: #eaeaea;
}

.body-bg {
  background-color: #F1C93B;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(26, 93, 26, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #8BC53F;
  color: #000000;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.9375rem;
}

.custom-btn-secondary {
  min-width: 100px;
  min-height: 50px;
  border: 0;
  border-radius: 0.9375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #eaeaea;
  color: #8BC53F;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #1A5D1A;
  border: 2px solid #8BC53F;
}

.theme-border-radius {
  border-radius: 0.9375rem;
}

.theme-border {
  border: 1px solid #8BC53F;
}

/*-- primary button effect css --*/
.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-effect {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-effect::before {
  background: #1a5d1a;
  content: "";
  position: absolute;
  z-index: -1;
}
.button-effect::after {
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  background: #1a5d1a;
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.button-effect:hover {
  color: #ffffff;
  background-color: #8BC53F;
  transition: all 0.2s ease;
}
.button-effect:hover::after {
  height: 100%;
}

/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
}
.img-lt:hover {
  filter: grayscale(0%);
}

/*-- product hover effect qhick view --*/
.product-quick-view {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view span,
.product-quick-view .view i {
  color: #ffffff;
}
.product-quick-view:hover {
  filter: grayscale(100%);
}
.product-quick-view:hover .view {
  opacity: 1;
  cursor: pointer;
}

/*-- add cart button effect --*/
.bottom .add-cart {
  cursor: pointer;
}
.bottom .add-cart .add {
  position: relative;
  display: inline-block;
}
.bottom .add-cart .add:hover {
  transform: translateY(-3px);
}

/*-- slick slider custom arrow --*/
.slick-arrow {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #8BC53F;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.slick-arrow i {
  color: #8BC53F;
}

.slick-arrow.slick-next {
  right: 20px;
}
.slick-arrow.slick-next:before {
  content: "\f285";
  font-family: "bootstrap-icons";
  color: #1A5D1A;
}
.slick-arrow.slick-prev {
  left: 20px;
}
.slick-arrow.slick-prev:before {
  content: "\f284";
  font-family: "bootstrap-icons";
  color: #1A5D1A;
}
.slick-arrow:hover {
  background-color: #8BC53F;
}
.slick-arrow:hover i {
  color: #ffffff;
}

.slick-dots li button {
  width: 0;
  height: 0;
}
.slick-dots li button::before {
  border: 1px solid #8BC53F;
  background-color: rgba(255, 255, 255, 0.5);
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  border-radius: 0.9375rem;
  font-family: initial;
  content: "";
}
.slick-dots .slick-active button::before {
  background-color: white;
}

/*-- heading highlight css --*/
.high-text {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  background: url(../images/icons/leaf.svg) no-repeat;
  margin: auto;
  align-items: end;
  text-align: center;
  justify-content: center;
}
.high-text::before {
  content: "";
  display: flex;
  width: 100px;
  height: 2px;
  background: #eaeaea;
  position: absolute;
  right: 65px;
}
.high-text::after {
  content: "";
  display: flex;
  width: 100px;
  height: 2px;
  background: #eaeaea;
  position: absolute;
  left: 65px;
}

/*-- card effect --*/
.grow-box {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  width: 100%;
}

.grow-box:hover {
  transform: scale(1.1);
}

.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
  padding: 0.25rem 0.5rem;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
}
.page-loader .spinner {
  position: relative;
  top: 35%;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  background-color: #8BC53F;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.info-top {
  background-color: #ffffff;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
}
.info-top .btn {
  color: #eaeaea;
  text-decoration: none;
}
.info-top .btn i {
  color: #ffffff;
}
.info-top .social a,
.info-top .social .botom-link {
  color: #1A5D1A;
}
.info-top .social a:hover,
.info-top .social .botom-link:hover {
  color: #8BC53F;
}

.header {
  background-color: #ffffff;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .header .navbar-collapse {
    height: 250px;
    overflow: auto;
  }
}
.header .navbar-nav .nav-item .nav-link {
  color: #A5A5A5;
  padding: 1.2rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #eaeaea;
  }
}
.header .navbar-nav .nav-item .nav-link.active {
  color: #8BC53F;
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #A5A5A5;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #8BC53F;
  color: #ffffff;
}
.header .navbar-nav .active a {
  color: #8BC53F !important;
}
.header .navbar-nav .active a::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: #8BC53F;
  position: absolute;
  bottom: 0;
  display: block;
  left: 33%;
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .active a::before {
    left: 0;
  }
}
.header .navbar-nav .active .dropdown-item {
  color: #1A5D1A !important;
}

.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 2px;
  background: #8BC53F;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero {
  position: relative;
}
@media screen and (max-width: 992px) {
  .hero {
    margin-top: 0px;
  }
}
.hero .slider-item {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .hero .slider-item {
    min-height: 60vh;
  }
}
@media screen and (max-width: 767px) {
  .hero .slider-item {
    min-height: 40vh;
    background-position: right;
  }
}
.hero .slider-item:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .hero .slider-item:before {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.hero .slick-dots {
  bottom: 3rem;
}
.hero .slick-dots li button:before {
  font-size: 1rem;
}
.hero .slick-dots li.slick-active button:before {
  color: #8BC53F;
}
.hero .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.top-cat .wrap:hover .left-icon .icon .overlay {
  transform: scale(1);
}
.top-cat .wrap:hover .left-icon .icon:before {
  border-color: #1A5D1A;
  animation-play-state: running;
}
.top-cat .wrap .left-icon {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.9375rem;
  text-align: center;
}
.top-cat .wrap .left-icon .icon {
  transition-duration: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
  width: 80px;
  height: 80px;
}
.top-cat .wrap .left-icon .icon:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px dashed #A5A5A5;
  transform: translate(-50%, -50%);
  animation: rotate360 1.2s linear infinite;
  animation-play-state: paused;
}
.top-cat .wrap .left-icon .icon img {
  width: 50px;
  height: 50px;
  border-radius: 0%;
  display: inline-block;
}
.top-cat .wrap .left-icon .icon .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  transform: scale(0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.top-cat .wrap .left-icon .icon .overlay a i {
  width: 50px;
  height: 50px;
  display: block;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  background: #8BC53F;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.top-cat .wrap .left-icon .icon .overlay a i:hover {
  color: #8BC53F;
  background: #ffffff;
}
.top-cat .wrap .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 10px;
}
.top-cat .wrap .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.75rem;
}
.top-cat .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.top-cat:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
@keyframes rotate360 {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.topCategories .nav-pills li .nav-link,
.featuredProduct .nav-pills li .nav-link {
  border: 0px solid transparent;
  color: #1A5D1A;
  font-weight: bold;
}
.topCategories .nav-pills li .active,
.featuredProduct .nav-pills li .active {
  background-color: transparent;
  color: #8BC53F;
}
.topCategories .card-wrap,
.featuredProduct .card-wrap {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(26, 93, 26, 0.3);
  border-top: 2px solid #8BC53F;
  border-bottom: 2px solid #1A5D1A;
  background-color: #ffffff;
}
.topCategories .card-wrap .con-img-wrap,
.featuredProduct .card-wrap .con-img-wrap {
  position: relative;
}
.topCategories .card-wrap .small-img,
.featuredProduct .card-wrap .small-img {
  min-height: 120px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.topCategories .card-wrap .con-wrap .text a,
.featuredProduct .card-wrap .con-wrap .text a {
  color: #1A5D1A;
}
.topCategories .card-wrap .con-wrap .text a:hover,
.featuredProduct .card-wrap .con-wrap .text a:hover {
  color: #8BC53F;
}
.topCategories .card-wrap .con-wrap .rating-cover i,
.featuredProduct .card-wrap .con-wrap .rating-cover i {
  color: orange;
}
.topCategories .card-wrap .con-wrap .product-price span,
.featuredProduct .card-wrap .con-wrap .product-price span {
  color: #8BC53F;
}
.topCategories.topCategories, .topCategories.featuredProduct,
.featuredProduct.topCategories,
.featuredProduct.featuredProduct {
  background-color: rgba(165, 165, 165, 0.1);
}

.deal-to-action {
  background-color: rgba(139, 197, 63, 0.1);
  background-image: url(../images/section/Bg-Deals.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
}
.deal-to-action::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.deal-to-action #timer {
  font-size: 2.5em;
  font-weight: 600;
  color: #8BC53F;
  display: flex;
  justify-content: center;
}
.deal-to-action #timer div {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  border-right: 1px solid #eaeaea;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .deal-to-action #timer div {
    min-width: 60px;
  }
}
.deal-to-action #timer div:last-child {
  border-right: none;
}
.deal-to-action #timer div span {
  color: #1A5D1A;
  display: block;
  font-size: 0.35em;
  font-weight: 500;
}

.why-us .max {
  max-width: 650px;
  margin: auto;
}

.testimonials {
  position: relative;
  background-color: rgba(139, 197, 63, 0.1);
  background-image: url(../images/section/review-bg-picture.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
}
.testimonials::before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.testimonials .review-wrap {
  padding: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.testimonials .client-pic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .client-pic .avatar {
  overflow: hidden;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: #000000;
}
.testimonials .client-pic .avatar::before {
  content: "";
  background-image: url(../images/icons/qotes-icon.svg);
  width: 50px;
  height: 38px;
  position: absolute;
}
.testimonials .client-con {
  text-align: center;
  font-size: 0.875rem;
}

.blog .blog-card {
  background-color: rgba(234, 234, 234, 0.6);
  border-radius: 0.9375rem;
}
.blog .blog-card .cat {
  color: #8BC53F;
  cursor: pointer;
}
.blog .blog-card .cat:hover {
  color: #1A5D1A;
}

.partner {
  position: relative;
}

.contact-sec {
  position: relative;
  background-image: url(../images/section/support-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 5rem 0;
}
.contact-sec:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.footer {
  position: relative;
  background-color: #000000;
}
.footer p {
  line-height: 2rem;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li i {
  color: #8BC53F;
  font-size: 1.5rem;
  line-height: normal;
  vertical-align: middle;
}
.footer .footer-link li a {
  color: #A5A5A5;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #8BC53F;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
}
.footer .social a,
.footer .social .botom-link {
  color: #A5A5A5;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #8BC53F;
}
.footer .custom img {
  width: 240px;
}
.footer .custom p {
  color: #A5A5A5;
}
.footer .form-subcriber {
  border-radius: 0.9375rem;
  position: relative;
}
.footer .form-subcriber input {
  box-shadow: none;
  width: 100%;
  border: 0;
  border-radius: 0.9375rem;
  padding: 1rem 2rem;
}
.footer .form-subcriber button {
  margin-top: 0.5rem;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(165, 165, 165, 0.2);
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3.5rem;
  width: 3.5rem;
  line-height: 3.5rem;
  bottom: -5rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(139, 197, 63, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.scrollup img {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup img:hover, .scrollup img:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #1A5D1A;
}

.scrollup.back-top {
  bottom: 40px;
}

@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.carouselhero [data-animation-in] {
  opacity: 0;
}

.features .left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 0.9375rem;
  text-align: center;
}
.features .left-icon:hover .icon {
  transform: translateY(-5px);
  transition-duration: 0.3s;
}
.features .left-icon .icon {
  transition-duration: 0.3s;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}
.features .left-icon .icon img {
  width: 50px;
  height: 50px;
  display: inline-block;
}
.features .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 10px;
}
.features .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.75rem;
}/*# sourceMappingURL=main.css.map */