/*==============================================
   Process One    
===============================================*/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0 0px;
  z-index: 1;
}

.process-one .section-title {
  margin-bottom: 30px;
}

.process-one__single-inner {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.process-one__single {
  position: relative;
  display: block;
}

.process-one__img {
  position: relative;
  display: block;
  max-width: 300px;
  margin: 0 auto;
  z-index: 1;
}

.process-one__img img {
  width: 100%;
}

.process-one__icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1;
  background-color: var(--mata-base);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.process-one__icon i {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--mata-white);
  top: -2px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.process-one__single-inner:hover .process-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.process-one__count-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 70px;
  margin: -20px auto 0;
  padding: 5px 5px 5px;
  background-color: rgba(var(--mata-base-rgb), 0.4);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.process-one ul li:nth-child(2) .process-one__count-inner {
  background-color: rgba(var(--mata-primary-rgb), 0.4);
}

.process-one ul li:nth-child(3) .process-one__count-inner {
  background-color: rgba(var(--mata-secondary-rgb), 0.4);
}

.process-one__count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  background-color: var(--mata-base);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.process-one ul li:nth-child(2) .process-one__count {
  background-color: rgba(var(--mata-primary-rgb), 0.4);
}

.process-one ul li:nth-child(3) .process-one__count {
  background-color: rgba(var(--mata-secondary-rgb), 0.4);
}

.process-one__count:before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--mata-white);
  font-family: var(--mata-font-three);
  counter-increment: count;
  content: "0" counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-one__shape-1 {
  position: absolute;
  bottom: -30px;
  left: 67px;
  opacity: 0.2;
}

.process-one__shape-1 img {
  width: auto;
}

.process-one__shape-2 {
  position: absolute;
  bottom: -30px;
  right: 67px;
  opacity: 0.2;
}

.process-one__shape-2 img {
  width: auto;
}

.process-one__content {
  position: relative;
  display: block;
  text-align: center;
}

.process-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

/*==============================================
    End     
===============================================*/
