﻿
    section.public-data-section{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    section.public-data-section > div:nth-child(1){
        border: 1px solid #ddd;
        padding:1rem;
        background-color: aliceblue;
        font-size: 1.2rem;
        text-align: center;
    }
    section.public-data-section > div:nth-child(1)::before{
        content: '';
        background: url(/_files/pages/20200303/30fe87c9f0e59072f0dd1987b7005fae.png) 0 0/contain no-repeat;
        position: absolute;
        width: 3rem;
        height: 3rem;
        left: 4rem;
        top: 4.5rem;
    }

    @media (max-width: 999px) {
        section.public-data-section > div:nth-child(1){
            font-size: 1rem;
        }
        section.public-data-section > div:nth-child(1)::before{
            display: none;
        }
    }



    .process-step{
        display: flex;
        flex-direction: row;
        /*gap: 137px;*/
        gap: 50px;
        justify-content: flex-start;
    }

    .process-step > div{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 8rem;
        border: 1px solid #ddd;
        padding:1rem;
    }

    .process-step > div:not(:first-child){
        margin-right: 87px;
    }

    span.arrow{
        position: relative;
    }
    span.arrow::after{
        content:'';
        background: url(/webroot2/images/korean/sub/vision2_arr.png) no-repeat;
        position: absolute;
        /*left: 0rem;*/
        top:-7rem;
        height: 137px;
        width: 266px;
        transform: rotate(90deg) scale(0.6);
    }

    .process-step .process-header{
        width: 5rem;
        background: #f2f4fd;
        color: #2b54d9;
    }


