.numbered-step-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.numbered-step-container .step{
    font-size: 24px;
    text-align: center;
    border: 3px solid var(--petals-purple-2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding-top: 30px;
    font-weight: bold;
    margin-bottom: -50px;
    background-color: var(--petals-white);
    z-index: 5;
}
.numbered-step-container .text-container{
    border: 3px solid var(--petals-purple-2);
    border-radius: 10px;
    text-align: center;
    padding: 72px 20px 24px 20px;
    min-height: 280px;
}
.numbered-step-container i{
    font-size: 42px;
    margin-bottom: 21px;
}
.numbered-step-container .title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}
.numbered-step-container .description{}

@media only screen and (max-width: 600px) {
    .numbered-step-container .text-container {
        padding: 72px 0 24px 0;
    }
}
