/* =========================================
   01. RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================
   02. HEADER
========================================= */

.header {
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;

    display: flex;
    align-items: center;
}

.logo-wrap {

    max-width: 1200px;
    width: 100%;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 15px;

}

.logo-wrap img {

    height: 30px;
    width: auto;

}

.logo-wrap span {

    font-size: 26px;
    font-weight: 700;
    color: #12356b;

}


/* =========================================
   03. MAIN VISUAL
========================================= */

.main-visual {
    width: 100%;
}

.main-visual img {
    width: 100%;
    height: auto;
}


/* =========================================
   04. INTRO
========================================= */

.intro {

    background: #F7F4ED;
    padding: 110px 0;

}

.intro-inner {

    max-width: 1200px;
    width: 100%;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

.intro-photo {

    flex: 0 0 460px;

}

.intro-photo img {

    width: 100%;
    height: auto;

}

.intro-text {

    flex: 1;

}

.intro-text h2 {

    font-size: 54px;
    line-height: 1.3;
    font-weight: 700;

    margin-bottom: 45px;

}

.intro-text h3 {

    font-size: 26px;
    line-height: 1.8;
    font-weight: 500;

    margin-bottom: 45px;

}

.intro-text p {

    font-size: 22px;
    line-height: 1.8;
    color: #444;

    margin-bottom: 20px;

}

.intro-text p:last-child {

    margin-bottom: 0;

}


/* =========================================
   99. MOBILE
========================================= */

@media screen and (max-width:768px) {

    /* Header */

    .header {

        height: 60px;
        padding: 0 15px;

    }

    .logo-wrap {

        width: 100%;
        padding: 0;

        gap: 10px;

    }

    .logo-wrap img {

        height: 34px;

    }

    .logo-wrap span {

        font-size: 18px;

    }


    /* Main */

    .main-visual {

        width: 100%;
        overflow: hidden;

    }

    .main-visual img {

        width: 100%;
        height: auto;

    }


    /* Intro */

    .intro {

        padding: 60px 20px;

    }

    .intro-inner {

        flex-direction: column;
        gap: 40px;

    }

    .intro-photo {

        flex: none;
        width: 100%;
        max-width: 360px;

        margin: 0 auto;

    }

    .intro-photo img {

        border-radius: 12px;

    }

    .intro-text {

        text-align: center;

    }

    .intro-text h2 {

        font-size: 34px;
        line-height: 1.4;

        margin-bottom: 25px;

    }

    .intro-text h3 {

        font-size: 22px;
        line-height: 1.6;

        margin-bottom: 25px;

    }

    .intro-text p {

        font-size: 18px;
        line-height: 1.8;

    }

}
