#wrap>video{
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.section{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#section1,
#section2,
#section3{
    background-color: rgba(0, 0, 0, 0.5);
}


/* section0 */
#section0{
    background-image: url(../images/section1_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#section0 .center{
    height: 100%;
    position: relative;
}

.section0_text{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
}

.section0_text img{
    width: 43.25vw;
}

.section0_text p{
    font-size: 1.6vw;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-top: 2.2%;
}

.scroll_down{
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}

.scroll_shape{
    width: 25px;
    height: 40px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 50px;
    position: relative;
    margin: 0 auto;
}

.scroll_dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll infinite 1.5s linear;
}

@keyframes scroll {
    0% {
        top: 5px;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

.scroll_down p{
    font-size: 14px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    margin-top: 15px;
}


/* section1 */
#section1{
    display: flex;
    align-items: flex-start;
}

.section1_content1{
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.banner_slide{
    width: 100%;
    height: auto;
}

.banner{
    width: 100%;
    height: auto;
    cursor: pointer;
}

.banner img{
    width: 100%;
}

.section1_content2{
    width: 100%;
    height: 70px;
    background-color: rgba(18, 82, 149, 0.6);
}

.section1_content2 .center{
    height: 100%;
}

.section1_content2 .slick-slider .slick-track, .slick-slider .slick-list{
    height: 100% !important;
}

.notice_box{
    width: 100%;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.notice_category{
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
    width: 15%;
}

.notice_title{
    width: 85%;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
}

.section1_content3{
    width: 100%;
    padding-top: 5%;
}

.section1_content3 ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section1_content3 ul li{
    width: 24%;
    height: 17vh;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section1_content3 ul li:first-child{
    background-image: url(../images/section2_bg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section1_content3 ul li:nth-child(2){
    background-image: url(../images/section2_bg2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section1_content3 ul li:nth-child(3),
.section1_content3 ul li:last-child{
    background-color: #fff;
}

.section1_content3 ul li::before{
    content: '';
	width: 0%;
	height: 100%;
	display: block;
	position: absolute;
	-ms-transform: skewX(-20deg);
	-webkit-transform: skewX(-20deg);
	transform: skewX(-20deg);
	left: -15%;
	opacity: 1;
	top: 0;
	z-index:1;
	-moz-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
	transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
}

.section1_content3 ul li:first-child::before{
    background-color: #043ba2;
}

.section1_content3 ul li:nth-child(2)::before{
    background-color: #1a7add;
}

.section1_content3 ul li:nth-child(3)::before,
.section1_content3 ul li:last-child::before{
    background-color: #d2d2d2;
}

.section1_content3 ul li:hover::before{
    opacity:1;
    width: 130%;
}

.icon_title{
    position: absolute;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    left: 12%;
    bottom: 22%;
    z-index: 2;
    transition: left .3s;
}

.section1_content3 ul li:hover .icon_title{
    left: 15%;
}

img.icon_img{
    width: 2.3vw;
    margin-bottom: 15px;
}

.section1_content3 ul li:nth-child(3) img.text_img{
    width: 8.6vw;
}

.section1_content3 ul li:last-child img.text_img{
    width: 9.1vw;
}

.icon_title p{
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
}

.plus_btn{
    width: 19.1%;
    height: 34.54%;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus_btn i{
    font-size: 2vw;
    color: #fff;
    position: absolute;
    transition: margin .2s;
}

.section1_content3 ul li:first-child .plus_btn{
    background-color: #043ba2;
}

.section1_content3 ul li:nth-child(2) .plus_btn{
    background-color: #1a7add;
}

.section1_content3 ul li:nth-child(3) .plus_btn,
.section1_content3 ul li:last-child .plus_btn{
    background-color: #d2d2d2;
}

.section1_content3 ul li:hover .plus_btn i{
    margin-top: -60%;
    margin-left: -50%;
}


/* section2 */
#section2 .center{
    height: 100%;
    padding-top: 6.5%;
    box-sizing: border-box;
}

.section2_content1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2_video{
    width: 50%;
}

.section2_video video{
    width: 100%;
}

.sectio2_text{
    width: 47%;
    font-size: 0.85vw;
    color: #fff;
    line-height: 1.45vw;
    font-family: 'Pretendard-Light', sans-serif;
}

.sectio2_text p{
    font-family: 'Pretendard-SemiBold', sans-serif;
    font-size: 1.1vw;
}

.sectio2_text p:first-child{
    margin-bottom: 2%;
}

.sectio2_text img{
    width: 14.54vw;
    display: block;
    margin: 3% 0 2%;
}

.section2_content2{
    width: 100%;
    margin-top: 4%;
}

.section2_content2>p{
    font-size: 24px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Pretendard-Medium', sans-serif;
}

.section2_content2 ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2%;
}

.section2_content2 ul li{
    width: 24%;
    height: 27.8vh;
    border: 2px solid #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.section2_content2 ul li img{
    width: 10.42vw;
    position: relative;
    z-index: 2;
}

.section2_content2 ul li p{
    font-size: 1.2vw;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
    margin-top: 10%;
    position: relative;
    z-index: 2;
}

.section2_content2 ul li::before{
    content: '';
    background-color: #fff;
	width: 0%;
	height: 100%;
	display: block;
	position: absolute;
	opacity: 0;
	top: 0;
	z-index: 1;
	-moz-transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
	transition: all .6s cubic-bezier(0.77, 0, 0.175, 1);
}

.section2_content2 ul li:hover::before{
    width: 100%;
    opacity: 1;
}

.section2_content2 ul li:hover p{
    color: #125295;
    font-family: 'Pretendard-SemiBold', sans-serif;
}


/* section3 */
#section3 .center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3_content{
    width: 100%;
}

.section3_content>p{
    font-size: 28px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Pretendard-Medium', sans-serif;
}

.partner1,
.partner2{
    width: 100%;
    margin-top: 2%;
}

.partner2{
    display: none;
}

.section3_content ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section3_content ul li{
    width: 32%;
    height: 10.42vw;
    background-color: #fff;
    padding: 2% 5%;
    box-sizing: border-box;
}

.section3_content ul li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section3_btn{
    width: 230px;
    height: 50px;
    border: 1px solid #fff;
    box-sizing: border-box;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6% auto 0;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Medium', sans-serif;
    cursor: pointer;
    transition: background-color .5s;
}

.section3_btn i{
    font-size: 20px;
    color: #fff;
    transition: transform .3s;
}

.section3_btn:hover{
    background-color: #fff;
    color: #043ba2;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.section3_btn:hover i{
    color: #043ba2;
    font-weight: bold;
    transform: rotate(180deg);
}

.link_btn{
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    border: 0;
}

.link_btn.on{
    opacity: 1;
    visibility: visible;
    height: 50px;
    margin: 6% auto 0;
    border: 1px solid #fff;
}

























/* mobile */
@media screen and (max-width: 767px){

    #wrap>video{
        position: fixed;
        top: 0;
        left: 0;
    }

    .section,
    .fp-tableCell{
        height: inherit !important;
    }

    /* section0 */
    #section0{
        height: 50vh !important;
    }

    .section0_text img{
        width: 50vw;
    }

    .section0_text p{
        font-size: 3vw;
        line-height: 5vw;
        margin-top: 3%;
        word-break: keep-all;
    }

    .scroll_down{
        bottom: 0;
    }

    .scroll_shape{
        width: 15px;
        height: 25px;
    }

    .scroll_dot {
        width: 4px;
        height: 4px;
    }

    @keyframes scroll {
        0% {
            top: 5px;
        }

        100% {
            top: 20px;
            opacity: 0;
        }
    }

    .scroll_down p{
        font-size: 12px;
        margin-top: 10px;
    }


    /* section1 */
    #section1{
        padding-top: 60px;
    }

    .section1_content1{
        margin-top: 0;
    }

    .section1_content2{
        height: 65px;
    }

    .notice_box{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        cursor: inherit;
    }

    .notice_category{
        font-size: 15px;
        width: 100%;
    }

    .notice_title{
        width: 90%;
        font-size: 12px;
        margin-top: 7px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .section1_content3{
        padding-top: 30px;
    }

    .section1_content3 ul{
        display: inline-block;
    }

    .section1_content3 ul li{
        width: 48.5%;
        height: 75px;
        float: left;
        margin-right: 3%;
        margin-bottom: 10px;
        cursor: inherit;
    }

    .section1_content3 ul li:nth-child(2n){
        margin-right: 0;
    }

    .section1_content3 ul li:first-child::before{
        background-color: transparent;
    }

    .section1_content3 ul li:nth-child(2)::before{
        background-color: transparent;
    }

    .section1_content3 ul li:nth-child(3)::before,
    .section1_content3 ul li:last-child::before{
        background-color: transparent;
    }

    .icon_title{
        left: 10%;
        bottom: 50%;
        transform: translateY(50%);
        transition: none;
    }

    .section1_content3 ul li:hover .icon_title{
        left: 10%;
    }

    img.icon_img{
        width: 20px;
        margin-bottom: 8px;
    }

    .section1_content3 ul li:nth-child(3) img.text_img{
        width: 25vw;
    }

    .section1_content3 ul li:last-child img.text_img{
        width: 27vw;
    }

    .icon_title p{
        font-size: 4vw;
    }

    .plus_btn{
        width: 30px;
        height: 30px;
    }

    .plus_btn i{
        font-size: 14px;
        transition: none;
    }

    .section1_content3 ul li:hover .plus_btn i{
        margin-top: 0;
        margin-left: 0;
    }


    /* section2 */
    #section2{
        padding-top: 60px;
    }

    #section2 .center{
        padding-top: 0;
    }

    .section2_content1{
        display: block;
    }

    .section2_video{
        width: 100%;
    }

    .sectio2_text{
        width: 100%;
        font-size: 3vw;
        line-height: 4.8vw;
        margin-top: 20px;
        word-break: keep-all;
    }

    .sectio2_text br.m_none{
        display: none;
    }

    .sectio2_text p{
        font-size: 3.5vw;
    }

    .sectio2_text img{
        width: 30vw;
    }

    .section2_content2{
        margin-top: 35px;
    }

    .section2_content2>p{
        font-size: 16px;
    }

    .section2_content2 ul{
        display: inline-block;
        margin-top: 15px;
    }

    .section2_content2 ul li{
        width: 48.5%;
        height: 13vh;
        float: left;
        margin-right: 3%;
        margin-bottom: 10px;
        cursor: inherit;
    }

    .section2_content2 ul li:nth-child(2n){
        margin-right: 0;
    }

    .section2_content2 ul li img{
        width: 18vw;
    }

    .section2_content2 ul li p{
        font-size: 2.5vw;
        margin-top: 10%;
    }

    .section2_content2 ul li::before{
        background-color: transparent;
    }

    .section2_content2 ul li:hover p{
        color: #fff;
        font-family: 'Pretendard-Medium', sans-serif;
    }


    /* section3 */
    #section3{
        padding: 50px 0 100px;
    }

    .section3_content>p{
        font-size: 16px;
    }

    .partner1{
        margin-top: 15px;
    }

    .partner2{
        margin-top: 10px;
    }

    .section3_content ul li{
        height: 13vw;
        padding: 2% 6%;
    }

    .section3_btn{
        width: 130px;
        height: 40px;
        padding: 0 15px 0 20px;
        font-size: 14px;
        cursor: inherit;
        transition: none;
    }

    .section3_btn i{
        font-size: 14px;
        transition: none;
    }

    .section3_btn:hover{
        background-color: transparent;
        color: #fff;
        font-family: 'Pretendard-Medium', sans-serif;
    }

    .section3_btn:hover i{
        color: #fff;
        font-weight: normal;
        transform: none
    }

    .link_btn{
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        margin: 0;
        border: 0;
    }

    .link_btn.on{
        opacity: 1;
        visibility: visible;
        height: 40px;
        border: 1px solid #fff;
    }


}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    #wrap>video{
        position: fixed;
        top: 0;
        left: 0;
    }

    .section,
    .fp-tableCell{
        height: inherit !important;
    }

    /* section0 */
    #section0{
        height: 45vh !important;
    }

    .scroll_down{
        bottom: 0;
    }

    .scroll_shape{
        width: 20px;
        height: 30px;
    }

    .scroll_dot {
        width: 4px;
        height: 4px;
    }

    @keyframes scroll {
        0% {
            top: 5px;
        }

        100% {
            top: 25px;
            opacity: 0;
        }
    }

    .scroll_down p{
        font-size: 12px;
        margin-top: 10px;
    }


    /* section1 */
    #section1{
        padding-top: 80px;
    }

    .section1_content1{
        margin: 0;
    }

    .section1_content2{
        height: 60px;
    }

    .notice_box{
        cursor: inherit;
    }

    .notice_category{
        font-size: 18px;
        width: 20%;
    }

    .notice_title{
        width: 80%;
        font-size: 16px;
    }

    .section1_content3 ul li{
        height: 10vh;
        cursor: inherit;
    }

    .section1_content3 ul li:first-child::before{
        background-color: transparent;
    }

    .section1_content3 ul li:nth-child(2)::before{
        background-color: transparent;
    }

    .section1_content3 ul li:nth-child(3)::before,
    .section1_content3 ul li:last-child::before{
        background-color: transparent;
    }

    .icon_title{
        left: 10%;
        bottom: 50%;
        transform: translateY(50%);
        transition: none;
    }

    .section1_content3 ul li:hover .icon_title{
        left: 10%;
    }

    img.icon_img{
        width: 3.5vw;
        margin-bottom: 10px;
    }

    .section1_content3 ul li:nth-child(3) img.text_img{
        width: 14vw;
    }

    .section1_content3 ul li:last-child img.text_img{
        width: 14.5vw;
    }

    .icon_title p{
        font-size: 15px;
    }

    .plus_btn i{
        transition: none;
    }

    .section1_content3 ul li:hover .plus_btn i{
        margin-top: 0;
        margin-left: 0;
    }


    /* section2 */
    #section2{
        padding-top: 100px;
    }

    #section2 .center{
        padding-top: 0;
    }

    .section2_video{
        width: 47%;
    }

    .sectio2_text{
        width: 50%;
        font-size: 1.5vw;
        line-height: 2.3vw;
    }

    .sectio2_text p{
        font-size: 1.7vw;
    }

    .sectio2_text img{
        width: 14vw;
        margin: 3% 0 2%;
    }

    .section2_content2>p{
        font-size: 20px;
    }

    .section2_content2 ul li{
        height: 15vh;
        cursor: inherit;
    }

    .section2_content2 ul li p{
        font-size: 1.8vw;
    }

    .section2_content2 ul li::before{
        background-color: transparent;
    }

    .section2_content2 ul li:hover p{
        color: #fff;
    }


    /* section3 */
    #section3{
        padding: 100px 0 150px;
    }

    .section3_content>p{
        font-size: 20px;
    }

    .section3_content ul li{
        height: 10.42vw;
        padding: 2% 8%;
    }

    .section3_btn{
        width: 150px;
        height: 45px;
        padding: 0 15px 0 20px;
        margin: 6% auto 0;
        font-size: 16px;
        cursor: inherit;
        transition: none;
    }

    .section3_btn i{
        font-size: 16px;
        transition: none;
    }

    .section3_btn:hover{
        background-color: transparent;
        color: #fff;
        font-family: 'Pretendard-Medium', sans-serif;
    }

    .section3_btn:hover i{
        color: #fff;
        font-weight: normal;
        transform: none;
    }

    .link_btn{
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        margin: 0;
        border: 0;
    }

    .link_btn.on{
        opacity: 1;
        visibility: visible;
        height: 45px;
        margin: 6% auto 0;
        border: 1px solid #fff;
    }

}

























/* pc_s */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    /* section1 */
    .section1_content3 ul li:nth-child(3) img.text_img {
        width: 11.5vw;
    }

    .section1_content3 ul li:last-child img.text_img {
        width: 12vw;
    }


    /* section2 */
    #section2 .center{
        padding-top: 10%;
    }


    .section2_video{
        width: 47%;
    }

    .sectio2_text{
        width: 50%;
        font-size: 1.2vw;
        line-height: 1.8vw;
    }

    .sectio2_text p{
        font-size: 1.4vw;
    }


    /* section3 */
    .section3_content ul li{
        height: 12vw;
    }

}
