@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/partner-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: auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.content > .inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content .list__wrap {
    width: 100%;
    height: auto;
}

.content .list__wrap > h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.content .list__wrap > ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.content .list__wrap > ul > li {
    width: calc(20% - 0.8rem);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 1rem;
}


@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 {
        padding: 2rem;
    }

}


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

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

    body {
        padding-top: 70px;
    }

    .visual {
        height: 200px;
    }

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

    /*  */
    .content {
        padding: 2rem 1rem;
    }

    .content .list__wrap > h4 {
        font-size: 1rem;
    }

    .content .list__wrap > ul {
        gap: 10px;
    }

    .content .list__wrap > ul > li {
        width: calc(50% - 5px)
    }

}