* {
  transition: all 0.2s;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: #f4f4f4;
  z-index: 200;
}
.jost {
  font-family: "Jost", sans-serif;
}
.kumbh {
  font-family: "Kumbh Sans", sans-serif;
}
/* btn one */

.btn-one {
  background-color: blue;
  color: #fff;
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  font-weight: 600;
}

.btn-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 101%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: transform 0.4s ease-out;
  transform: translateX(-100%);
}

.btn-one:hover:before {
  transform: translateX(0);
}

.btn-one:hover {
  cursor: pointer;
  color: #fff;
}
/* btn one */
@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(50px);
  }

  100% {
    transform: rotateX(0deg) translateX(0px);
  }
}

.animate {
  animation: alltuchtopdown 8s infinite linear;
}
.animate2 {
  animation: leftToRight 10s infinite linear;
}
.group:hover .service-icon {
  transform: rotatey(180deg);
  transition: all 0.5s;
}
.group .service-icon {
  transition: all 0.5s;
}
.group:hover .img-icon {
  transform: rotatey(360deg);
  transition: all 0.5s;
}
.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: blue;
  height: 17px;
  width: 0;
  color: #fff;
  text-align: end;
}
.prog-2 .progress-value {
  animation: load2 3s normal forwards;
  background-color: blue;
}

.prog-3 .progress-value {
  animation: load3 3s normal forwards;
  background-color: blue;
}
@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}
