@charset "utf-8";

/*
 * File       : style.css
 * Author     : YONG
 *
 * 최종수정일 : 24/00/00
 *
 * SUMMARY:
 * 통합.CSS
 */

/* 
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■ 공용 ■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
*/

.main {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.visual {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    background-image: url(../img/team-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.visual > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual .title h3 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
}

/*  */
.content {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    background-image: url(../img/team-graph.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.content > .inner {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.content .title h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    line-height: normal;
}

.content .list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 0;
    line-height: normal;
}


.content .list > li {
    width: 50%;
    height: auto;
}

.content .list > li > h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #979797;
    margin-bottom: 8px;
}

.content .list > li > p {
    font-size: 2.2rem;
    font-weight: 900;
    color: #222;
}



@media screen and (min-width: 768px) and (max-width: 1200px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 공용 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    .visual {
        height: 300px;
    }

    .visual .title {
        margin-top: 1rem;
    }

    .visual .title h3 {
        font-size: 1.6rem;
    }

    /*  */
    .content {
        height: auto;
        background-size: cover;
        padding: 5rem 4rem 6rem;
    }

    .content > .inner {
        flex-direction: column;
        justify-content: space-around;
        gap: 6rem;
    }

    .content .title h4 {
        font-size: 1.6rem;
        text-align: center;
    }

    .content .list > li {
        display: flex;
        gap: 1rem;
        padding-left: 2rem;
    }

    .content .list > li > h5{
        margin: 0;
        margin-top: 4px;
    }

    .content .list > li > p {
        font-size: 2rem;
    }

}


@media screen and (max-width: 767px) {

    /* 
    ■■■■■■■■■■■■■■■■■■■■■
    ■■■■■■■■ 공용 ■■■■■■■■
    ■■■■■■■■■■■■■■■■■■■■■
    */

    body {
        padding-top: 70px;
    }

    .visual {
        height: 200px;
    }

    .visual .title h3 {
        font-size: 1.2rem;
    }

    /*  */
    .content {
        height: auto;
        background-size: cover;
        padding: 2rem 2rem 4rem;
    }

    .content > .inner {
        flex-direction: column;
        justify-content: center;
    }

    .content .title h4 {
        font-size: 1rem;
        text-align: center;
    }

    .content .list > li {
        padding-left: 2rem;
    }

    .content .list > li > h5 {
        font-size: 0.9rem;
    }

    .content .list > li > p {
        font-size: 1.2rem;
    }

}