.label_section{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    border: 3px dotted var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
}

/* step */

.label_section h3{
    font-size: 13px;
    font-weight: 500;
    color: var(--text3);
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.9;
}

/* label */

.label_section label{
    font-size: 13px;
    color: var(--blue);
}

/* title */

.label_section h2{
    width: 400px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    color: var(--text1);
}

/* image */

.basic_image{
    width: fit-content;
    height: fit-content;
}

/* text */

.label_section p{
    width: 540px;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: var(--text2);
}

/* --- List --- */

.label_section ul{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* li */

.label_section ul li{
    font-size: 14px;
    color: var(--text2);
    list-style-type: none;
}

/* li icon */

.label_section ul li img{
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0.6;
}

/* --- Media --- */

@media screen and (max-width: 1000px) {
    
    .label_section p{
        width: 80%;
    }

    /* image */

    .label_section img{
        width: 70%;
    }

    /* --- List --- */

    .label_section ul{
        width: 60%;
    }

    /* list li */

    .label_section ul li{
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    
    .label_section{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* title */

    .label_section h2{
        width: 90%;
    }

    /* step */

    .label_section h3{
        font-size: 12px;
        top: 20px;
        left: 20px;
    }

    /* text */

    .label_section p{
        width: 100%;
    }

    /* image */

    .label_section img{
        width: 100%;
    }

    /* list li */

    .label_section ul {
        width: 90%;
    }
}