@charset "utf-8";

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes slideIn {

    from {
        opacity: 0;
        margin-left: 100%;
    }

    to {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




* {
    margin: 0;
    padding: 0;

}

body {
    /* overflow-x: hidden; */
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin: 0;
}

.space {
    clear: both;
}

.content_list {
    width: 100%;
    margin: 0 auto;
    padding: 150px 0;
    box-sizing: border-box;
}

#wrap {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

a {
    color: #fff;
    text-decoration: none;
}


/* 메인 */
#mainimg {
    width: 100%;
    height: 720px;
    background-image: url(../../images/banner_01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header {
    width: 100%;
    height: 126px;
    position: relative;
}

.logo {
    line-height: 110px;
    position: absolute;
    top: 30px;
    left: 300px;
}

.logo img {
    width: 100%;
    height: 40px;
}


.menu {
    position: absolute;
    margin: 0 auto;
    display: block;
    top: 60px;
    right: 355px;
}

.menu>li {
    float: left;
    width: 150px;
    display: block;
    height: 80px;
    font-size: 1.2rem;
    font-weight: bold;
}

.menu>li>a:hover {
    color: #E9A410;
    text-decoration: none;
}

.menu>:first-child>a:after {
    display: block;
    width: 40px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}


.menu>:nth-child(2)>a:after {
    display: block;
    width: 60px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.menu>li:nth-child(3)>a:after {
    display: block;
    width: 40px;
    content: '';
    border-bottom: solid 2px #E9A410;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.menu>li>a:hover:after {
    transform: scaleX(1);
}

.login img {
    height: 53px;
    right: 250px;
    top: 50px;
    position: absolute;
    list-style-type: none;
    text-align: center;
}

.menu a:hover:after {
    transform: scaleX(1);
}


.main_t span {
    color: #E9A410;
    font-size: 28px;
}

.main_t {
    position: absolute;
    width: 100%;
    left: 23%;
    margin: 0 auto;
    top: 11%;
    color: #ffff;
    font-size: 22px;
    line-height: 38px;
    letter-spacing: -2px;
    animation-duration: 1s;
    animation-name: fadeInUp;
}

.main_t>div {
    border: 3px solid #fff;
    width: 3%;
    display: block;
    margin-bottom: 18px;
}

.header::before {
    content: '';
    display: block;
    clear: both;
}

.logo::after {
    content: '';
    display: block;
    clear: both;
}

.menu::after {
    content: '';
    display: block;
    clear: both;
}

/* 서브 */
/* #content {
    margin: 120px 0 120px 0;
} */

.con_01 {
    h3 {
        text-align: center;
        font-size: 32px;
        color: #3a3a3a;
        font-weight: bold;
        position: relative;
        z-index: 10;
        word-break: auto-phrase;

        &::after {
            content: '';
            width: 682px;
            height: 17px;
            background-color: #C9D8FF;
            display: block;
            position: absolute;
            bottom: 0;
            z-index: -1;
            margin: 0 auto;
            left: 0;
            right: 0;
        }

    }

    div {
        text-align: center;
        padding-top: 50px;
        font-size: 1.125rem;
        line-height: 32px;
    }

}

.con_02 {
    width: 60%;
    padding-top: 150px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;

    animation: fadeIn;
    animation-delay: 250ms;
    animation-duration: 1s;

    .con_list {
        width: 45%;
        float: left;
        border-top: 1px dashed #B2B2B2;
        display: flex;
        gap: 30px;
        flex-direction: row;
        padding-top: 50px;
        /* align-items: center; */
        padding-left: 20px;


        .cl_icon {
            img {
                width: 38px;
                box-sizing: content-box;
                display: flex;
                flex-direction: column;
                padding-top: 10px;
            }
        }

        .cl_txt {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }



    }

    .cl_07,
    .cl_08 {
        border-bottom: 1px dashed #B2B2B2;
        padding-bottom: 60px;
    }

}



/* 카드형식 */

.con_03 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 0;
    background: #F6FBFF;


    /* 카드 추가 */

    .box-sec {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        align-items: center;

        animation: fadeInUp;
        animation-delay: 250ms;
        animation-duration: 1s;

        .box-top {
            display: flex;
            gap: 20px;

            .box {
                border: 1px solid #E0E0E0;
                padding: 30px;
                background: #ffffff;
                border-radius: 10px;
                width: 476px;
                height: 242px;
                font-weight: bold;


                .bold-txt {
                    font-weight: bold;
                    color: #3182F7;
                    font-size: 1.25rem;
                    padding-bottom: 20px;

                    .left-txt {
                        float: left;
                        padding-right: 20px;

                    }
                }

                .cnt-txt {
                    line-height: 50px;
                    font-size: 1.125rem;
                    width: 100%;

                    .left-cnt {
                        float: left;
                        padding-right: 60px;
                        width: 40%;
                    }

                    .right-cnt {
                        color: #3182F7;
                        width: 40%;
                        float: left;
                    }
                }

            }


        }

        .box-bot {
            display: flex;
            gap: 20px;
            font-weight: bold;

            .box {
                border: 1px solid #E0E0E0;
                padding: 30px;
                background: #ffffff;
                border-radius: 10px;
                width: 476px;

                .bold-txt {

                    color: #3182F7;
                    font-size: 1.25rem;
                    padding-bottom: 20px;

                    .left-txt {
                        float: left;
                        padding-right: 20px;

                    }
                }

                .cnt-txt {
                    line-height: 50px;
                    font-size: 1.125rem;

                    .left-cnt {
                        float: left;
                        padding-right: 60px;
                        width: 40%;
                    }

                    .right-cnt {
                        color: #3182F7;
                        width: 40%;
                        float: left;
                    }
                }

            }


        }


    }


}