.inter {
  font-family: "Inter", sans-serif;
}
.rubik {
  font-family: "Rubik", sans-serif;
}
@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    transform: rotateX(0deg) translateY(-30px);
  }

  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}

@keyframes leftToRight {
  0% {
    transform: rotateX(0deg) translateX(0px);
  }

  50% {
    transform: rotateX(0deg) translateX(30px);
  }

  100% {
    transform: rotateX(0deg) translateX(0px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(180deg);
  }
}
@keyframes treeMove2 {
  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%,
  75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
/* @keyframes cloudmove {
  0% {
    background-position: 0% 10%;
  }
  100% {
    background-position: 100% 10%;
  }
}

@-webkit-keyframes cloudmove {
  0% {
    background-position: 0% 10%;
  }
  100% {
    background-position: 500% 10%;
  }
} */
.animate4 {
  animation: treeMove2 8s infinite linear;
}
.animate {
  animation: alltuchtopdown 8s infinite linear;
}
.animate2 {
  animation: leftToRight 10s infinite linear;
}
.animate3 {
  animation: rotate 8s infinite linear;
}
/* .animate5 {
  animation: cloudmove 180s infinite linear;
} */
.img-box:hover .img:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}

.img-box .img:before {
  content: "";
  background: rgba(80, 194, 189, 0.8);
  position: absolute;
  left: 0px px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  display: block;
}

.category-card {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 45px 20px 42px;
  transition: all 500ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #44a05b;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 400ms ease-in-out, visibility 400ms ease-in-out;
  transform-origin: bottom center;
}

.category-card:hover::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.category-card .icon-bg {
  width: 210px;
  height: 210px;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  margin: auto;
  transition: all 500ms ease;
  opacity: 0.1;
  visibility: hidden;
  mix-blend-mode: multiply;
}

.category-card:hover .icon-bg {
  visibility: visible;
  bottom: -20px;
  transition-delay: 0.2s;
}
/* btn-one start */
.btn-one {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 1em;
  border: 3px solid green;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: green;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.btn-one:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: green;
  z-index: -1;
}

.btn-one:hover,
.btn-one:focus {
  color: white;
}

.btn-one:hover:before,
.btn-one:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-one:active {
  transform: scale(0.9);
}
/* btn-one end */
/* btn-two start */
.btn-two {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 1em;
  border: 3px solid green;
  background-color: green;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: white;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.btn-two:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: white;
  z-index: -1;
}

.btn-two:hover,
.btn-two:focus {
  color: green;
}

.btn-two:hover:before,
.btn-two:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-two:active {
  transform: scale(0.9);
}
/* btn-two end */

.progress {
  background: rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 40px;
  width: 100%;
}
.progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #000;
  border-radius: 100px;
  background: green;
  height: 17px;
  width: 0;
  color: #fff;
  text-align: end;
}
.prog-2 .progress-value {
  animation: load2 3s normal forwards;
  background-color: green;
}

.prog-3 .progress-value {
  animation: load3 3s normal forwards;
  background-color: green;
}
@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 60%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 75%;
  }
}

.navbar {
  z-index: 99999;
}

.navbar .dropdown-content {
  z-index: 99999;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
}
