    .infographic {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      padding: 10px 0 0;
    }
    .step {
        display: flex;
        width: 40%;
        margin-bottom: 20px;
        padding: 10px;
        box-sizing: border-box;
    }
    .step img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20%;
        aspect-ratio: 1 / 1;
        border-radius: 1rem;
        background: transparent;
        color: #a29bfe;
        font-size: 3rem;
        font-weight: 700;
        box-sizing: border-box;
        object-fit: contain;
    }
    .step7{;
        width: 80%;
        margin: 0 auto;
    }
    .step7 img{
        width: 12%;
    }
    .detail{
        display: flex;
        flex-wrap: wrap;
    }
    .detail .step-no{
        display: inline-block;
        width: 50px;
    }
    .step-p{
        padding-top: 5px;
        width: 80%;
        font-size: 20px;
        margin:0 auto;
        word-spacing: 3px;
    }
    .infographic-mobile{
        display: none;
    }
    /* Responsive Design */
    @media screen and (max-width: 768px){
        .infographic{
            display: none;
        }
        .infographic-mobile{
            display: block;
        }
        .infographic-mobile .step{
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .step .step-img{
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }
        .step-img .step-no{
            width: 18%;
            margin-right: 20px;
            object-fit: contain;
        }
        .step img{
            width: 40%;
        }
        .step .detail{
            display: flex;
        }
        .detail .img{
            display: flex;
            justify-content: center;
            width: 100%;
            margin: 0 auto;
        }
        .step-p{
            padding: 0;
            margin-top: 30px;
            font-size: 18px;
            width: 100%;
        }
    }
    @media (min-width: 769px) and (max-width: 1024px){
        .infographic{
            display: none;
        }
        .infographic-mobile{
            display: block;
        }
        .infographic-mobile .step{
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .step .step-img{
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: justify;
        }
        .step-img .step-no{
            width: 10%;
            margin-right: 20%;
            object-fit: contain;
        }
        .step img{
            width: 20%;
        }
        .step .detail{
            display: flex;
        }
        .detail .img{
            display: flex;
            justify-content: center;
            width: 100%;
            margin: 0 auto;
        }
        .step-p{
            padding: 0;
            margin-top: 30px;
            font-size: 30px;
            width: 100%;
        }
    }