.vm_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.vm_wrap .circle{
    width: 40%;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px;
    border-radius: 200px;
    font-size:18px;
}
.vm_wrap .circle.blue{
    background-color: #E5EDF799;
    border: 1px solid #0050B0;
}
.vm_wrap .circle.blue b{
    font-size: 22px;
    color: #0050B0;
}
.vm_wrap .circle.green{
    background-color: #E6F4F599;
    border: 1px solid #00BC70;
    margin-left: -30px;
}
.vm_wrap .circle.green b{
    font-size: 22px;
    color: #00BC70;
}
.vm_wrap .circle p{
    text-align: center;
    word-break: keep-all;
    line-height: 1.4;
}
.content_flex{
    display: flex;
    gap: 100px;
    margin-top: 80px;
}
.content_flex h4{
    width: 180px;
    min-width: 180px;
    font-size: 30px;
    border-top: 1px solid #1e1e1e;
    padding-top: 30px;
    font-weight: 600;
}
.content_flex .con{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.content_flex .con li{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(50% - 15px);
    padding: 30px 36px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.content_flex .con li h6{
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.content_flex .con li h6::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('/images/user/icon_foundation_vision.svg') no-repeat center center;
    margin-right: 12px;
}
.content_flex .con li h6 span{
    font-size: 16px;
}
.content_flex .con li p{
    color: #666;
}
@media (max-width:1172px){
    .vm_wrap .circle{
        width: 50%;
    }
    .content_flex{
        gap: 40px;
    }
    .content_flex h4{
        font-size: 24px;
    }
}

@media (max-width:1023px){
    .content_flex{
        flex-direction: column;
    }
    .content_flex h4{
        padding-top: 0;
        padding-bottom: 20px;
        border-top: none;
        border-bottom: 1px solid #1e1e1e;
    }
    .content_flex .con{
        gap: 16px;
    }
    .content_flex .con li{
        width: calc(50% - 8px);
        padding: 20px 24px;
        gap: 8px;
    }
    .content_flex .con li h6{
        font-size: 18px;
    }
}

@media (max-width:767px){
    .vm_wrap{
        flex-direction: column;
    }
    .vm_wrap .circle.green{
        margin-left: 0;
        margin-top: -20px;
    }
    .content_flex .con{
        flex-direction: column;
    }
    .content_flex .con li{
        width: 100%;
    }
    .vm_wrap .circle{
        width: 80%;
        border-radius: 50%;
    }
}