#Process{
    width: 100%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 50px;
}

.processcontainer .Sectiontitle{
    font-size: 3rem;
    list-style: 3rem;
    color: var(--dark);
}

.processcontainer{
    width: 100%;
    padding: 0 10px;
    background-color: var(--background);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 80px;
    overflow: hidden;
}
.fourstepProcess{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.processsteps{
    width: 100%;
    max-width: 700px;
    border: 1px dashed var(--dark);
    border-radius: 20px;
    overflow: hidden;
}
.stepandtimer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px dashed var(--dark);
    background-color: var(--background-shade);
    color: var(--dark);
    font-size: 1rem;
    line-height: 1rem;
}
.stepcard{
    padding: 10px 20px;
}
.grapgjoint{
    margin-block: -8px -20px;
    z-index: 1;
}
.stepinfo{
    font-size: 1rem;
    line-height: 1.2rem;
    border-bottom: 1px dashed var(--dark);
    padding-bottom: 5px;
}
.stepdetailedinfo{
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.2rem;
    font-family: "Quicksand", serif;
}


@media (max-width: 1000px) {
    .processcontainer .Sectiontitle{
        font-size: 2.5rem;
        list-style: 2.5rem;
    }
    .processcontainer{
        gap: 50px;
    }
}

@media (max-width: 600px) {
    #Process{
        padding-block: 30px;
    }
    .processcontainer .Sectiontitle{
        font-size: 2rem;
        list-style: 2rem;
    }
    .processcontainer{
        gap: 30px;
    }
    .stepandtimer{
        font-size: 0.8rem;
        line-height: 0.8rem;
    }
}