@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/contact-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 {
    text-align: center;
    color: #fff;
}

.visual .title h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.visual .title span {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 5px;
}

.visual .title p {
    font-size: 1.1rem;
    color: #c5c5c5;
}

/*  */
.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

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

.content .img img {
    width: 420px;
    height: auto;
    object-fit: contain;
}

.content .txt > h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #023e8a;
    margin-bottom: 1rem;
}

.content .txt > h4 > img {
    width: 14px;
    height: auto;
    object-fit: contain;
}

.content .txt > ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content .txt > ul > li {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
}

/*  */
.contact {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 0 4rem;
}

.contact > .inner {
    width: 100%;
    height: auto;
    display: flex;
    gap: 2rem;
}

.contact .call {
    width: 50%;
    height: auto;
    background-color: #e9e9ed;
    border-radius: 1rem;
}

.contact .katalk {
    width: 50%;
    height: auto;
    background-color: #f9e01a;
    border-radius: 1rem;
}

.contact .call > a, 
.contact .katalk > a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 4rem;
}

.contact .call .txt, 
.contact .katalk .txt {
    line-height: normal;
}

.contact .call .txt h5, 
.contact .katalk .txt h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    margin-bottom: 5px;
}

.contact .call .txt p, 
.contact .katalk .txt p {
    font-size: 1.6rem;
    font-weight: 800;
    color: #3d3d3f;
}

.contact .call img, 
.contact .katalk img {
    width: 60px;
    height: auto;
    object-fit: contain;
}


@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;
    }

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

    .visual .title p {
        font-size: 1rem;
    }

    /*  */
    .content {
        padding: 3rem;
    }

    .content > .inner {
        justify-content: space-around;
        gap: 0;
    }

    .content .img img {
        width: 280px;
    }

    .content .txt > h4 {
        font-size: 1.6rem;
    }

    /*  */
    .contact {
        padding: 2rem 2rem 4rem;
    }

    .contact .call > a, .contact .katalk > a {
        padding: 2.5rem;
    }

    .contact .call .txt p, .contact .katalk .txt p {
        font-size: 1.2rem;
    }

    .contact .call img, .contact .katalk img {
        width: 50px;
    }

}


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

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

    body {
        padding-top: 70px;
    }

    .visual {
        height: 200px;
    }

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

    .visual .title span {
        font-size: 1rem;
    }

    .visual .title p {
        font-size: 0.9rem;
    }

    /*  */
    .content {
        padding: 4rem 0 2rem;
    }
    .content > .inner {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .content .txt > h4 {
        font-size: 1.4rem;
    }

    .content .txt > ul > li {
        font-size: 1rem;
    }

    .content .img img {
        width: 70vw;
        max-width: 270px;
    }

    /*  */

    .contact {
        padding: 2rem;
    }

    .contact > .inner {
        flex-direction: column;
        gap: 1rem;
    }

    .contact .call {
        width: 100%;
    }

    .contact .katalk {
        width: 100%;
    }

    .contact .call > a, .contact .katalk > a {
        padding: 2rem;
    }

    .contact .call .txt h5, .contact .katalk .txt h5 {
        font-size: 1rem;
    }

    .contact .call .txt p, .contact .katalk .txt p {
        font-size: 1.2rem;
    }

    .contact .call img, .contact .katalk img {
        width: 40px;
    }

}