:root{
    --pri-color: #bff2e1;
    --pri-dark: #20c997;
    --white: #f6f6f6;
    --black: #1a1a1a;
    --open-sans-font: "Open Sans", sans-serif;
    --poppins: "Poppins", sans-serif;
    --border-color: rgb(211, 211, 211);
    --border-color2: rgb(138, 138, 138);
    --text-color: #6c6c6c;
}

.process{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.process-intro h2, p{
    margin: 0;
}

.process h2{
    text-transform: capitalize;
}

.process-intro p{
    font-family: var(--open-sans-font);
    text-align: center;
    font-size: 0.9rem;
    text-transform: capitalize  ;
}

.process-desc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.process-desc h3{
    font-size: 0.8rem;
    text-transform: capitalize;
    color: var(--black);
    font-weight: 600;
}

.process-circle{
    display: inline-block;
    width: 5rem;
    height: 5rem;
    background-color: var(--pri-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    /* margin: 1rem; */
    flex-shrink: 0;
    position: relative;
}

.process-desc i{
    font-size: 2rem;
    color: var(--white);
}

.process-desc > span{
    display: none;
    width: 3rem;
    height: 0.2rem;
    background-color: var(--black);
    flex-shrink: 0;
    position: relative;
    bottom: 1rem;
}

.process-desc > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.badge{
    position: absolute;
    right: -0.5rem;
    top: -0.5rem;
    background-color: gold;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--white);
    font-weight: 600;
}

@media (min-width: 350px){
    .process-circle {
        width: 6rem;
        height: 6rem;
    }

    .badge{
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (min-width: 458px){
    .process-desc{
        gap: 3rem;
    }

    .process-desc > span{
        width: 5rem;
    }
}

@media (min-width: 500px){
    .process-circle {
        width: 6rem;
        height: 6rem;
    }

    .badge{
        width: 2.5rem;
        height: 2.5rem;
    }

    .process-intro p{
        font-size: 0.95rem;
    }
}


@media (min-width: 768px){
    .process-desc{
        gap: 5rem;
    }

    .process h3{
        font-size: 1rem;
    }
}

@media (min-width: 1000px){
    .process-desc{
        gap: 2rem;
    }

    .process-desc > span{
        display: inline-block;
    }

    .process-circle {
        width: 6.5rem;
        height: 6.5rem;
    }

    .badge{
        width: 2.7rem;
        height: 2.7rem;
    }

    .process-desc i{
        font-size: 2.25rem;
    }
}


