.c-how-it-works {
    background-color: var(--p-color);
    padding-top: 30px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.c-how-it-works .build__bg__span.down__bg__span {
    transform-origin: left bottom;
    background: var(--p-color);
    display: block;
    position: absolute;
    z-index: 0;
    transform: skewY(-10.45deg);
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    transition: all 0.2s ease;
}

.c-how-it-works .container {
    padding: 0px 20px 64px 20px !important; /* override the default padding */
}

.c-how-it-works .overline {
    color: var(--s-color);
    font-size: 20px;
}

.c-how-it-works .h2 {
    color: #fff;
    margin-top: 16px;
}

.c-how-it-works .body {
    color: #fff;
    margin: 0;
}

.c-how-it-works__steps {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 48px 0;
    padding: 0;
    gap: 16px;
    flex-wrap: wrap;
}

.c-how-it-works__step {
    background: linear-gradient(229.11deg, #183E62 4.83%, #11283E 98.78%);
    box-shadow: 0px 2px 20px rgb(0 0 0 / 20%);
    border-radius: 20px;
    text-align: center;
    width: 100%;
    position: relative;
    padding: 24px;
    margin: 0;
    align-self: stretch;
}


.c-how-it-works__step-content {
    max-width: 100%;
    margin: 0 auto;
}

.c-how-it-works__step-number {
    position: absolute;
    left: 30%;
    top: 27px;
    font-family: var(--ff-cp-medium);
    background: var(--btn-bgcolor);
    border-radius: 30px;
    color: var(--p-color);
    font-size: 30px;
    height: 54px;
    width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.c-how-it-works__step-title {
    font-size: 21px;
    margin: 33px 0px 10px 0px;
    line-height: 26px;
    font-family: var(--ff-cp-medium);
}

.c-how-it-works__step-description {
    margin: 0px;
    font-size: 17px;
    padding: 0;
}

@media (min-width: 640px) {
    .c-how-it-works {
        padding-top: 80px;
    }
    
    .c-how-it-works .container {
        padding: 0px 30px 100px 30px;
    }
    
    .c-how-it-works .h2 {
        margin: 16px 0;
        max-width: 690px;
    }

    .c-how-it-works .body {
        max-width: 750px;
    }
    
    .c-how-it-works__overline {
        font-size: 20px;
    }
    
    .c-how-it-works__steps {
        justify-content: space-between;
        gap: 24px;
    }
    
    .c-how-it-works__step-content {
       margin-inline: 34px;
    }
    
    .c-how-it-works__step-number {
        left: 70px;
        top: 27px;
    }
    
    .c-how-it-works__step-description {
        padding: 0px 30px;
    }

    .c-how-it-works__step {
        width: calc(100% / 2 - 16px);
    }

    .c-how-it-works .build__bg__span.down__bg__span {
        width: 134%;
        height: 95%;
        left: -34%;
    }
}

@media (min-width: 1024px) {
    .c-how-it-works .container {
        padding: 0px 30px 142px 30px;
    }

    .c-how-it-works__steps {
        gap: 24px;
    }

    .c-how-it-works {
        padding-top: 64px;
    }

    .c-how-it-works .overline {
        font-size: 20px;
    }

    .c-how-it-works__step {
        padding: 40px 16px;
    }

    .c-how-it-works .container {
        padding: 0px 20px 80px 20px !important; /* override the default padding */
    }
}

@media screen and (min-width: 1200px) {
    .c-how-it-works__steps {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .c-how-it-works__step {
        width: calc(100% / 4 - 8px);
    }
}


