@charset "utf-8";

.corp_sec1 {
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 5%;
}
.corp_sec1_flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.corp_sec1_flow:after {content:"";position:absolute;width:100%;height:2px;background-color:#214F72;z-index:-1;animation: fadein 2s;animation-delay: 1s;opacity: 0;animation-fill-mode: forwards;}
.corp_sec1_flow li {
    width: 240px;
    height: 240px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: var(--color-main); */
    border-radius: 50%;
    color: #fff;
    background-image: linear-gradient(134deg, #93A1BF, #214F72);
    font-size: 24px;
}
.corp_sec1_flow li:first-child {
    width: 320px;
    height: 320px;
    background-image: none;
    background-color: #fff;
    border: 2px solid #214F72;
    color: #000;
    box-shadow: 2px 10px 15px rgb(0 0 0 / 15%);
}
.corp_sec1_flow li strong {
    font-size: 34px;
    font-weight: 600;
}
.corp_sec1_flow li p {
    font-size: .8em;
    color: #214F72;
}
.corp_sec1_info {
    background-color: #f5f5f7;
    padding: 3rem;
    margin-top: 3rem;
}
.corp_sec1_info li {
    line-height: 1.8;
}
.corp_sec2 {
    background-color: #EFF7FC;
    padding: 5% 0 10%;
}
.corp_sec2_info {
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
}
.corp_sec2_info  p {
    word-break: keep-all;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.corp_sec2_info  p  span {color: var(--color-main);font-weight: 500;}
.corp_sec2 dl {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    margin-bottom: 3rem;
    border: 1px solid #ddd;
}
.corp_sec2 dl dt {
    width: 15%;
    padding: 1rem;
    background-color: var(--color-main2);
    color: #fff;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
} 
.corp_sec2 dl dd {
    width: 35%;
    padding: 1rem 3rem;
    border-bottom: 1px solid #ddd;
}
.corp_sec2 dl dt:last-of-type {border-bottom: 0;}
.corp_sec2 dl dd:last-of-type {width: 85%;border-bottom: 0;}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

/* PC */ 
@media only screen and (min-width:1280px) and (max-width: 1600px)  {
  
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (max-width:1024px) {
    .corp_sec1_flow {}
    .corp_sec1_flow li{
        width: 135px;
        height: 135px;
        font-size: 2.2vw;
        padding: .5rem;
    }
    .corp_sec1_flow li:first-child{
        width: 210px;
        height: 210px;
        text-align: center;
    }
    .corp_sec1_flow li strong {
        font-size: 3.6vw;
    }
    .corp_sec1_flow li p{
        word-break: keep-all;
    }
    .corp_sec1_info, .corp_sec2_info {padding:1.5rem}
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
    .corp_sec1 {padding: 2rem 1rem;border-radius: 1rem;margin-bottom: 3rem;}
    .corp_sec1_flow {
        display: flex;
        flex-wrap: wrap;
    }
    .corp_sec1_flow li {
        width: 100px;
        height: 100px;
        font-size: 4.5vw;
    }
    .corp_sec1_flow li:first-child{width: 100%;border-radius: 2rem;height: auto;margin-bottom: 1rem;}
    .corp_sec1_flow li strong{
        font-size: 5.5vw;
    }
    .corp_sec1_flow:after {
        bottom: 27%;
    }
    .corp_sec1_info{
        padding: 1rem;
        font-size: 4.5vw;
        margin-top: 1rem;
    }
    .corp_sec2 {
    padding: 3rem 0;
}
    .corp_sec2 dl {margin-bottom:1rem}
    .corp_sec2 dl dt {
        width: 30%;
    }
    .corp_sec2 dl dd, .corp_sec2 dl dd:last-of-type{
        width: 70%;
        padding: 1rem;
        word-break: keep-all;
    }
    .corp_sec2_info {
        padding: 2rem 1rem;
        font-size: 4.5vw;
    }
    
}