﻿body {
    margin: 0;
    padding: 0;
}



.landing_wrap {
    background-color: #d9fdff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .landing_wrap.skin_250508 {
        background-color: #def7de;
    }


    .landing_wrap img {
        width: 100%;
        display: table;
    }


    .landing_wrap .intro {
        width: 100%;
        max-width:1920px;
    }

        .landing_wrap .intro .mo_view {
            display:none;
        }

        .landing_wrap .ctn {
            position: relative;
        }

.ctn .tap_box {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: sticky;
    top: 10vh;
}
    .ctn .tap_box .tap_tit {
        display: block;
        width: 17%;
        padding: 10px 0;
        font-size: 22px;
        color: #0f52c3;
        text-align: center;
        background: #fff;
        border-radius: 40px;
        cursor: pointer;
        box-shadow: 0 10px 14px 0px #3ad9ee3d;
    }
    .ctn .tap_box .tap_tit.active {
        color: #fff;
        background: #0f52c3;
        font-weight: 700;
    }

/*
.ctn .ctn_img img {
    padding-top:30px;
}*/



.landing_wrap .bottom_ban {
    width: 100%;
    background: #0f52c3;
}

        .landing_wrap .bottom_ban img {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }


/*미디어쿼리 시작*/
@media (min-width: 768px) and (max-width: 1024px) {
    .landing_wrap .bottom_ban {
        margin-bottom: 12vh;
    }
}

@media (max-width: 767px) {

    .landing_wrap .intro .pc_view {
        display: none;
    }

    .landing_wrap .intro .mo_view {
        display: block;
    }

    .landing_wrap {
        margin-top: 0;
        background-color: #d9fdff;
    }

    .ctn .tap_box {
        flex-wrap: wrap;
        gap: 6px;
        padding: 0 14px;
        top: 9.8vh;
    }

        .ctn .tap_box .tap_tit {
            width: 18%;
            font-size: 14px;
            box-shadow: 0 8px 10px 0px #3ad9ee3d;
            padding: 7px 0;
            font-weight: 500;
            letter-spacing: -0.5px;
        }

    .ctn .ctn_img img {
        padding-top: 60px;
    }


}
