/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    margin-top: -80px;
    z-index: 10;
}

.counter-one__inner {
    position: relative;
    display: block;
    background: linear-gradient(to top, #e3e39b -70%, var(--junk-green) 100%);
    /* background-color: var(--crank-white); */
    padding: 30px 40px 30px;
    /* box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05); */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.how-it{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .how-it h3{
    width: fit-content;
    /* color: var(--junk-background); */
    font-size: 32px;
    margin-bottom: 30px;
  }

.counter-one__list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.counter-one__list li {
    position: relative;
    display: block;
}

.counter-one__list li:before {
    content: "";
    position: absolute;
    top: 18px;
    left: -50px;
    bottom: 7px;
    width: 2px;
    background-color: var(--junk-green);
}

.counter-one__list li:first-child:before {
    display: none;
}

.counter-one__single {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-one__count-box {
    /* position: relative; */
    /* align-items: center; */
    /* flex-wrap: wrap; */
    display: flex;
    /* background-color: var(--junk-background); */
    background-color: var(--crank-white);
    width: fit-content;
    padding: 10px 15px;
    border-radius: 10px;
}

.counter-one__count-box h3 {
    font-size: 72px;
    line-height: 84px !important;
    letter-spacing: -0.02em;
    font-family: var(--crank-font-two) !important;
    font-weight: 600;
}

.counter-one__count-box>span {
    font-size: 72px;
    line-height: 84px;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--crank-font-two);
    position: relative;
    display: block;
    top: -3px;
}

.counter-one__text {
    margin-top: 15px;
}


/*--------------------------------------------------------------
  # Counter Two
  --------------------------------------------------------------*/
.counter-two {
    position: relative;
    display: block;
    z-index: 1;
}

.counter-two .container {
    max-width: 1160px;
}

.counter-two__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    height: 250px;
    width: 250px;
    background-color: var(--crank-white);
    border-radius: 50%;
    margin: 0 auto 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.counter-two__single:hover {
    transform: translateY(-10px);
}

.counter-two__count-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.counter-two__count-box h3 {
    font-size: 72px;
    line-height: 84px !important;
    letter-spacing: -0.02em;
    font-family: var(--crank-font-two) !important;
    font-weight: 600;
}

.counter-two__count-box>span {
    font-size: 72px;
    line-height: 84px;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--crank-font-two);
    position: relative;
    display: block;
    top: -3px;
}

/*--------------------------------------------------------------
  # Counter Three
  --------------------------------------------------------------*/
.counter-three {
    margin-top: 0;
    padding: 68px 0 0px;
}

.counter-three .counter-one__inner {
    background-color: transparent;
    box-shadow: none;
    padding: 33px 0px 44px;
}





















/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/