#container{
    width: 100%;
    height: 83vh;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

section{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section .inner{
    height: 83vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blur{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -99;
    overflow: hidden;
}

.blur video{
    width: 100%;
    height: auto;
}


/* main section */
#main_section{
    width: 100%;
}

.logo_text{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    animation: opacity 1.5s;
}

@keyframes opacity {
    0%{
        opacity: 0;
        top: 60%;
    }

    100%{
        opacity: 1;
        top: 50%;
    }
}

.main_text{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

p.t01{
    font-family: 'NanumSquareB';
    color: #fff;
    font-size: 26px;
    letter-spacing: 30px;
    margin-left: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

p.t02{
    font-family: 'NanumSquareR';
    color: #fff;
    font-size: 32px;
    letter-spacing: 25px;
    margin-left: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.middle_line{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar{
    width: 100px;
    height: 1px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.rhombus{
    font-size: 15px;
    color: #fff;
    margin: 3% 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.scroll_down{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-40%);
    text-align: center;
}

.scroll_down img{
    margin: 10px 0 0;
    animation: up_down 1s infinite ease-in-out;
}

@keyframes up_down {
    0%{
        margin: 0 0 10px;
    }

    50%{
        margin: 10px 0 0;
    }

    100%{
        margin: 0 0 10px;
    }
}

.scroll_down p{
    color: #fff;
    font-weight: 300;
}


/* section0 */
#section0 .inner{
    background-color: transparent;
}


/* section1 */
#section1 .inner{
    background-image: url(../images/main_sec1.png)
}

#section1 .section_title span{
    display: block;
    color: #999;
    font-size: 18px;
    font-family: 'NanumSquareR';
    margin-top: 10px;
}

.section_title{
    font-family: 'NanumSquareB';
    font-size: 40px;
    width: 100%;
    text-align: center;
    padding-top: 6%;
}

.section1_content{
    width: 85%;
    margin: 0 auto;
}

p.sec1_t{
    font-family: 'NanumSquareL';
    font-size: 40px;
    color: #333;
    margin-top: 40px;
}

.s1_slide{
    width: 100%;
    margin-top: 20px;
}

.s1_slide ul{
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.s1_slide ul li{
    width: 31%;
    height: 350px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
    background-color: #fff;
}

.s1_slide ul li:hover{
    outline: 8px solid #004b83;
    box-shadow: none;
}

.img_box{
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.img_box img{
    width: 100%;
}

.text_box{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
}

.text_box p{
    font-size: 24px;
    font-family: 'NanumSquareB';
    margin-bottom: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
/* add homepee add 21-12-06 */
.text_box p[style]{
    font-size: 17px;
    margin-bottom: 5px;
    display:none;
}

.text_box p[style] a{
    font-size: 17px;
    margin-bottom: 5px;
    display:block;
}

/* //add homepee add 21-12-06 */

.text_box span{
    color: #777;
    font-size: 18px;
    font-family: 'NanumSquareR';
    line-height: 25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.category{
    position: absolute;
    background-color: #004b83;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #fff;
    font-family: 'NanumSquareB';
    width: 65px;
    height: 65px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus_btn{
    position: absolute;
    color: #004b83;
    font-size: 45px;
    font-weight: lighter;
    bottom: 0px;
    right: 15px;
    cursor: pointer;
}

.view_more_btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.view_more_btn a{
    font-size: 18px;
    color: #fff;
    font-family: 'NanumSquareB';
    width: 200px;
    height: 50px;
    border-radius: 50px;
    background-color: #434343;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.view_more_btn a img{
    width: 40px;
    margin-left: 15px;
}


/* section2 */
#section2 .inner{
    background-image: url(../images/main_sec2.png);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

#section2 .center{
    position: relative;
}

.ceo_info{
    position: absolute;
    top: 150px;
    left: 50px;
}

.ceo_i_name{
    font-size: 26px;
    font-family: 'NanumSquareR';
}

.ceo_i_name strong{
    font-size: 36px
}

.ceo_text{
    margin-top: 60px;
}

.big_text{
    width: 100%;
    padding-left: 40px;
    box-sizing: border-box;
    position: relative;
    color: #004b83;
}

.big_text>span{
    font-family: 'NanumSquareL';
    font-size: 40px;
    line-height: 60px;
}

.big_text>span strong{
    font-family: 'NanumSquareB';
}

span.blue{
    font-size: 70px;
    color: #004b83;
    font-family: 'NEXON Lv2 Gothic Bold';
    letter-spacing: -5px;
}

.point{
    position: absolute;
    top: 0;
    left: 0;
}

.point img{
    width: 30px;
}

.ceo_info .view_more_btn{
    justify-content: flex-start;
    margin: 60px 0 0 30px;
}


/* section3 */
.s3_01{
    width: 100%;
    height: 23vh;
    background-color: #fff;
}

.s3_02{
    width: 100%;
    height: 60vh;
    background-image: url(../images/main_s3_bg.png);
    background-position: center 0%;
    background-repeat: no-repeat;
    background-size: cover;
}

.s3_01 .center{
    height: 100%;
    display: flex;
    align-items: center;
}

.s3_01_text{
    width: 100%;
    font-size: 40px;
    font-family: 'NanumSquareL';
    line-height: 55px;
    text-align: center;
}

.s3_01_text span{
    font-family: 'NanumSquareB';
    color: #004b83;
}

.s3_02 .center{
    height: 100%;
    display: flex;
    align-items: center;
}

.s3_02_con{
    width: 100%;
    height: 85%;
    position: relative;
}

.s3_02_text{
    position: absolute;
    padding-top: 40px;
    top: 0;
    left: 0;
}

.s3_02_text span{
    font-size: 35px;
    color: #fff;
    font-family: 'NanumSquareL';
    line-height: 45px;
}

.greetings{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 30px;
}

.greetings:hover .arrow{
    border: 0;
    background-color: #004b83;
}

.greetings p{
    font-family: 'NanumSquareR';
    font-size: 18px;
    color: #fff;
}

.arrow{
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 50px;
    font-size: 20px;
    color: #fff;
    font-family: 'NanumSquareR';
    text-align: center;
    line-height: 40px;
    margin-left: 20px;
}

.s3_02_text img{
    position: absolute;
    top: 0;
    left: 0;
}

.ul_box{
    position: absolute;
    width: 75%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

ul.ul_box01{
    width: 65%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

ul.ul_box02{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: -13%;
}

.ul_box ul li{
    width: 280px;
    height: 280px;
    position: relative;
    cursor: pointer;
}

.ul_box ul li>img{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.li_con{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.li_con img{
    margin-bottom: 10px;
}

.li_con p{
    font-family: 'NanumSquareL';
    color: #fff;
    font-size: 18px;
    line-height: 25px;
}


/* section4 */
#section4 .inner{
    background-image: url(../images/main_sec4.png);
    background-position: center 0%;
}

#section4 .section_title{
    color: #fff;
    text-align: left;
    width: 90%;
    margin: 0 auto;
}

#section4 .section_title span{
    display: block;
    color: #999;
    font-size: 18px;
    font-family: 'NanumSquareR';
    margin-top: 10px;
}

.s4_text{
    width: 100%;
    margin: 40px 0;
    font-family: 'NanumSquareL';
    font-size: 40px;
    color: #fff;
    line-height: 60px;
}

.s4_text strong{
    font-family: 'NanumSquareEB';
}

.s4_text p { font-size:24px; margin-top:5px; line-height:30px; word-break:keep-all; }

.section4_content{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
}

.s4_left{
    width: 35%;
}

.s4_right{
    width: 60%;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
	margin-top:-70px;
}

.table_box{
    width: 100%;
}

.table_box a{
    width: 100%;
    display: block;
    text-align: right;
    color: #fff;
    font-size: 16px;
    font-family: 'NanumSquareR';
}

.table_box table{
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid rgba(229, 229, 229, 0.3);
    margin-bottom: 20px;
}

.table_box table td{
    padding: 20px 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.3);
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 300;
}

.table_box table td:first-child{
    width: 20%;
}

.table_box table td:nth-child(2){
    width: 35%;
}

.table_box table td:last-child{
    width: 45%;
}

.td_box{
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 30%;
    box-sizing: border-box;
}

.new{
    width: 20px;
    height: 20px;
    background-color: #f04509;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-family: 'NanumSquareEB';
    text-align: center;
    line-height: 20px;
    margin-left: 15px;
}

.input_01{
    width: 100%;
}

.input_01 p{
    font-family: 'NanumSquareR';
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.input_01 input[type='text']{
    width: 100%;
    height: 40px;
    border: 1px solid #d2d2d2;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.input_01 textarea{
    width: 100%;
    height: 100px;
    border: 1px solid #d2d2d2;
    padding: 10px;
}

.input_01 textarea::placeholder{
    color: #999;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
}

.input_01 textarea:-ms-input-placeholder{
    color: #999;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
}

.input_03{
    width: 100%;
    margin: 10px 0 20px;
}

.input_03 label{
    font-family: 'NanumSquareR';
    font-size: 14px;
    display: flex;
    align-items: center;
}

.input_03 label input{
    margin-right: 5px;
}

.input_04{
    width: 100%;
}

.input_04 a{
    width: 100%;
    height: 55px;
    background-color: #2d2f31;
    font-size: 20px;
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input_04 a img{
    margin-left: 10px;
    width: 50px;
}


/* section5 */
#section5 .inner{
    background-color: #fff;
}

#section5 .section_title{
    color: #072840;
    font-family: 'NanumSquareL';
    line-height: 50px;
    text-align: left;
    width: 90%;
    margin: 0 auto;
}

#section5 .section_title span{
    font-family: 'NanumSquareR';
}

#section5 .section_title strong{
    font-family: 'NanumSquareEB';
}

.section5_content{
    width: 100%;
    height: 550px;
    margin-top: 5%;
    position: relative;
}

.address_box{
    width: 350px;
    background-color: #004b83;
    padding: 30px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(-50%);
    z-index: 99;
}

.address_box span{
    font-family: 'NanumSquareR';
    font-size: 24px;
    color: #fff;
    line-height: 35px;
}

.map_box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map_box .root_daum_roughmap{
    width: 100%;
    height: 100% !important;
}

.root_daum_roughmap .cont{
	display:none !important;
}

.map_box .root_daum_roughmap .wrap_map{
    height: 100%;
}

.more_info{
    width: 100%;
    margin-top: 10%;
}

.more_info p{
    font-size: 16px;
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    padding: 2px 0;
}

.view_more{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    margin-top: 30%;
}

.view_more p{
    font-size: 16px;
    color: #fff;
    font-family: 'NanumSquareR';
}

.view_more img{
    width: 40px;
    margin-left: 10px;
}


/* popup */
.popup{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 9999;
    display: none;
}

.pop_bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.pop_box{
    width: 50%;
    height: 550px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 50px 0;
    box-sizing: border-box;
}

.pop_title{
    width: 100%;
    text-align: center;
    font-family: 'NanumSquareEB';
    font-size: 30px;
}

.pop_innerbox{
    width: 100%;
    height: 400px;
    margin-top: 30px;
    background-color: #dfdfdf;
    overflow: auto;
    padding: 20px 30px;
    box-sizing: border-box;
    line-height: 28px;
    word-break: keep-all;
}

.pop_box button{
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #004b83;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    font-family: 'NEXON Lv2 Gothic Bold';
}

/* 인증번호 받기*/
.ph_wrap{ 
	position:relative;
}
.ph_wrap .request_btn{ 
	position:absolute;
	right:0;
	top:0;
	width:auto;
	height:40px;
	padding:0 20px;
	line-height:40px;
	background:#999;
	color:#fff;
}






































/* mobile */
@media screen and (max-width: 767px){

    #section0{
      height:100vh !important;
    }

    #container{
        height: 90vh;
    }
    #fullpage{
      overflow-y: scroll;
    }
    section{
      overflow: hidden;
    }

    .blur{
      height: 100vh;
    }

    .blur video{
        height: 100vh;
        object-fit: cover;
    }


    /* main section */
    .logo_text img{
        width: 70%;
    }

    p.t01{
        font-size: 18px;
        letter-spacing: 10px;
        margin-left: 10px;
    }

    p.t02{
        font-size: 20px;
        letter-spacing: 5px;
        margin-left: 5px;
        line-height: 30px;
    }

    .bar{
        width: 80px;
    }

    .rhombus{
        font-size: 10px;
        margin: 3% 20px;
    }

    .scroll_down img{
        width: 20px;
        margin: 5px 0 0;
    }

    @keyframes up_down {
        0%{
            margin: 0 0 5px;
        }

        50%{
            margin: 5px 0 0;
        }

        100%{
            margin: 0 0 5px;
        }
    }

    .scroll_down p{
        font-size: 12px;
    }


    /* section1 */
    #section1 .inner{
        height: inherit;
        padding: 50px 0;
    }

    .section_title{
        font-size: 24px;
        padding-top: 0;
        text-align: center !important;
    }

    .section1_content{
        width: 95%;
    }

    p.sec1_t{
        font-size: 5vw;
        margin-top: 8%;
        text-align: center;
    }

    .s1_slide{
        margin-top: 2%;
    }

    .s1_slide ul{
        display: block !important;
        padding: 10px 15px;
    }

    .s1_slide ul li{
        width: 100%;
        height: inherit;
    }

    .s1_slide ul li:not(:last-child){
        margin-bottom: 5%;
    }

    .img_box{
        height: 100px;
    }

    .text_box{
        width: 100%;
        padding: 10px;
        height: 100px;
        overflow: hidden;
    }

    .text_box p{
        font-size: 17px;
        margin-bottom: 5px;
    }

     .text_box span{
        font-size: 14px;
        line-height: 20px;
        /*display: inline-block;*/
        box-sizing: border-box;
    }

    .category{
        font-size: 10px;
        width: 40px;
        height: 40px;
        line-height: 15px;
    }

    .plus_btn{
        font-size: 30px;
        top: 0px;
        right: 15px;
    }

    .view_more_btn{
        margin-top: 8%;
    }

    .view_more_btn a{
        font-size: 14px;
        width: 150px;
        height: 35px;
        line-height: 37px;
    }


    /* section2 */
    #section2 .inner{
        height: 40vh;
        background-position: 60% 100%;
    }

    .ceo_info{
        top: 40px;
        left: 0;
    }

    .ceo_i_name{
        font-size: 12px;
    }

    .ceo_i_name strong{
        font-size: 14px
    }

    .ceo_text{
        margin-top: 20px;
    }

    .big_text{
        padding-left: 20px;
    }

    .big_text>span{
        font-size: 14px;
        line-height: 20px;
    }

    span.blue{
        font-size: 20px;
        letter-spacing: -0.5px;
    }

    .point img{
        width: 10px;
    }

    .ceo_info .view_more_btn{
        justify-content: flex-start;
        margin: 20px 0 0 0;
    }



    /* section3 */
    .s3_01{
        height: 17vh;
    }

    .s3_02{
        height: 68vh;
    }

    .s3_01_text{
        font-size: 4.5vw;
        line-height: 25px;
        font-family: 'NanumSquareR';
    }

    .s3_01_text span{
        font-family: 'NanumSquareR';
        font-weight: 900;
    }

    .s3_02_con{
        height: 90%;
        position: initial;
    }

    .s3_02_text{
        width: 100%;
        position: relative;
        padding: 25px 0 0;
    }

    .s3_02_text img{
        width: 20px;
    }

    .s3_02_text span{
        font-size: 22px;
        line-height: 30px;
    }

    .greetings p{
        font-size: 16px;
    }

    .greetings{
        margin-top: 20px;
    }

    .arrow{
        width: 30px;
        height: 30px;
        font-size: 16px;
        line-height: 30px;
        margin-left: 10px;
    }

    .ul_box{
        position: initial;
        width: 100%;
        height: 50%;
        margin: 10% auto 0;
        transform: none;
        top: revert;
    }

    .ul_box ul{
        height: 50%;
    }

    ul.ul_box01{
        width: 100%;
        justify-content: center;
    }

    ul.ul_box02{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 0;
    }

    .ul_box ul li{
        width: 33.33%;
        height: 100%;
    }

    .li_con{
        height: 100%;
    }

    .li_con img{
        width: 35%;
        margin-bottom: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        position: absolute;
    }

    .li_con p{
        font-size: 2.5vw;
        line-height: 15px;
        word-break: keep-all;
        position: absolute;
        bottom: -10px;
        width: 100%;
        text-align: center;
    }


    /* section4 */
    #section4 .inner{
        height: inherit;
        padding: 50px 0;
    }

    #section4 .section_title span{
        font-size: 4vw;
        margin-top: 2%;
    }

    .s4_text{
        margin: 5% 0 0;
        font-size: 4vw;
        line-height: 23px;
        width: 100%;
        text-align: center;
    }

    .s4_text p { font-size:14px; margin-top:5px; line-height:18px; word-break:keep-all; }

    .s4_text br{
        display: none;
    }

    .s4_text br.stay{
        display: block;
    }

    .s4_text strong{
        font-family: 'NanumSquareB';
    }

    .section4_content{
        display: block;
    }

    .s4_left{
        width: 100%;
        margin-top: 2%;
    }

    .s4_right{
        width: 100%;
        margin-top: 5%;
        padding: 20px;
    }

    .table_box a{
        font-size: 12px;
    }

    .table_box table{
        margin: 10px 0;
    }

    .table_box table td{
        padding: 5px 0;
        font-size: 12px;
    }

    .table_box table td:first-child{
        width: 15%;
    }

    .table_box table td:nth-child(2){
        width: 35%;
    }

    .table_box table td:last-child{
        width: 50%;
    }

    .td_box{
        padding-left: 10%;
    }

    .new{
        width: 15px;
        height: 15px;
        font-size: 12px;
        line-height: 15px;
        margin-left: 10px;
        border-radius: 3px;
    }

    .input_01 p{
        font-size: 14px;
    }

    .input_01 input[type='text']{
        height: 35px;
        margin-bottom: 10px;
    }

    .input_03 label{
        font-size: 10px;
    }

    .input_04 a{
        height: 35px;
        font-size: 14px;
    }

    .input_04 a img{
        width: 40px;
    }


    /* section5 */
    #section5 .inner{
        height: inherit;
        padding: 50px 0;
    }

    #section5 .section_title{
        line-height: 30px;
    }

    .section5_content{
        display: block;
        height: 300px;
    }

    .address_box{
        width: 80%;
        padding: 10px;
        position: relative;
        left: 0;
        top: 50%;
        transform: none;
    }

    .address_box span{
        font-size: 14px;
        letter-spacing: -0.5px;
        line-height: 20px;
        width: 100%;
        font-family: 'NanumSquareR';
        word-break: keep-all;
    }

    .address_box span br{
        display: none;
    }

    .map_box{
        width: 100%;
        height: 30vh;
    }

    .more_info{
        margin-top: 5%;
    }

    .more_info p{
        font-weight: lighter;
        font-size: 12px;
    }

    .view_more{
        margin-top: 0;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

    .view_more p{
        font-size: 12px;
    }

    .view_more .arrow{
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
        margin-left: 5px;
    }


    /* popup */
    .pop_box{
        width: 80%;
        height: 400px;
        padding: 20px 10px 0;
    }

    .pop_title{
        font-size: 18px;
    }

    .pop_innerbox{
        height: 330px;
        margin-top: 20px;
        padding: 5px 10px;
        line-height: 25px;
        font-size: 14px;
    }

    .pop_box button{
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

	.ph_wrap .request_btn{ 
		height:35px;
		line-height:35px;
		padding:0 10px;
		font-size:14px;
	}

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

  #section0{
    height:100vh !important;
  }
    #container{
        height: 90vh;
    }
    #fullpage{
      overflow-y: scroll;
    }
    section .inner{
        /* height: 90vh; */
        height: inherit;
    }

    .blur{
      height: 100vh;
    }

    .blur video{
        height: 100vh;
        object-fit: cover;
    }


    /* main section */
    .logo_text img{
        width: 60%;
    }

    p.t01{
        font-size: 22px;
        letter-spacing: 20px;
        margin-left: 20px;
    }

    p.t02{
        font-size: 26px;
        letter-spacing: 20px;
        margin-left: 20px;
    }


    /* section1 */
    #section1 .inner{
      padding: 50px 0;
    }

    .section_title{
        font-size: 35px;
        padding-top: 0;
    }

    .section1_content{
        width: 95%;
    }

    p.sec1_t{
        font-size: 26px;
        margin-top: 5%;
    }

    .s1_slide{
        margin-top: 3%;
    }

    .s1_slide ul{
        display: block !important;
    }

    .s1_slide ul li{
        width: 100%;
        height: 160px;
        display: flex;
    }

    .s1_slide ul li:not(:last-child){
        margin-bottom: 20px;
    }

    .img_box{
        width: 50%;
        height: 100%;
    }

    .img_box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text_box{
        width: 50%;
        padding: 35px 20px;
    }

    .category{
        font-size: 12px;
        width: 50px;
        height: 50px;
        line-height: 15px;
        right: inherit;
        left: 10px;
    }

    .view_more_btn{
        margin-top: 5%;
    }

    .s1_slide ul li:hover{
        outline: 0;
        box-shadow: inherit;
    }


    /* section2 */
    #section2 .inner{
        background-position: 70% 100%;
        height: 50vh;
    }

    .ceo_info{
        top: 100px;
        left: 20px;
    }

    .ceo_i_name{
        font-size: 18px;
    }

    .ceo_i_name strong{
        font-size: 22px
    }

    .ceo_text{
        margin-top: 40px;
    }

    .big_text{
        padding-left: 20px;
    }

    .big_text>span{
        font-size: 30px;
        line-height: 45px;
    }

    span.blue{
        font-size: 50px;
    }

    .point img{
        width: 20px;
    }

    .ceo_info .view_more_btn{
        justify-content: flex-start;
        margin: 40px 0 0 0;
    }





    /* section3 */
    .s3_01{
        height: 20vh;
    }

    .s3_02{
        height: inherit;
        padding: 50px 0;
    }

    .s3_01_text{
        font-size: 4vw;
        line-height: 50px;
        font-family: 'NanumSquareR';
    }

    .s3_01_text span{
        font-family: 'NanumSquareR';
        font-weight: 900;
    }

    .s3_02_con{
        height: 90%;
        position: initial;
    }

    .s3_02_text{
        width: 100%;
        position: relative;
        padding: 40px 0 0;
    }

    .s3_02_text span{
        font-size: 30px;
        line-height: 40px;
    }

    .ul_box{
        position: initial;
        width: 610px;
        height: 360px;
        margin: 10% auto 0;
        transform: none;
        top: revert;
    }

    .ul_box ul{
        height: 50%;
    }

    ul.ul_box01{
        width: 100%;
        justify-content: center;
    }

    ul.ul_box02{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: -10%;
    }

    .ul_box ul li{
        width: 33.33%;
        height: auto;
    }

    .li_con img{
        width: 20%;
        margin-bottom: 5px;
    }

    .li_con p{
        font-size: 2vw;
        line-height: 25px;
    }


    /* section4 */
    #section4 .inner{
      padding: 50px 0;
    }

    #section4 .section_title{
        text-align: center;
        width: 100%;
    }

    .s4_text{
        margin: 5% 0;
        font-size: 30px;
        line-height: 45px;
        text-align: center;
    }
    
    .s4_text p { font-size:18px; margin-top:5px; line-height:24px; word-break:keep-all; }

    .s4_text br.none{
        display: none;
    }

    .section4_content{
        display: block;
    }

    .s4_left{
        width: 100%;
    }

    .s4_right{
        width: 100%;
        margin-top: 5%;
    }

    .table_box table{
        margin-bottom: 10px;
    }

    .table_box table td{
        padding: 10px 0;
        font-size: 16px;
    }

    .table_box table td:first-child{
        width: 20%;
    }

    .table_box table td:nth-child(2){
        width: 40%;
    }

    .table_box table td:last-child{
        width: 40%;
    }


    /* section5 */
    #section5 .inner{
      padding: 50px 0;
    }

    #section5 .section_title{
        text-align: center;
    }


    .section5_content{
        height: 400px;
    }

    .section5_content{
        display: block;
    }

    .address_box{
        padding: 20px;
        transform: none;
        top: 45%;
        left: 5%;
    }

    .address_box span{
        font-size: 20px;
        letter-spacing: -0.5px;
        line-height: 30px;
        width: 100%;
        font-family: 'NanumSquareR';
    }

    .address_box span br{
        display: none;
    }

    .map_box{
        width: 100%;
        height: 40vh;
    }

    .more_info{
        margin-top: 5%;
    }

    .more_info p{
        font-weight: lighter;
    }

    .view_more{
        margin-top: 0;
        position: absolute;
        bottom: 20px;
        right: 20px;
    }


    /* popup */
    .pop_box{
        width: 80%;
        height: 400px;
        padding: 30px 20px 0;
    }

    .pop_title{
        font-size: 24px;
    }

    .pop_innerbox{
        height: 300px;
        margin-top: 20px;
        padding: 10px 20px;
        line-height: 28px;
    }

}






















/* pc mini-size */
@media screen and (min-width: 1000px) and (max-width: 1680px){

    #container{
        height: 100vh;
    }

    section .inner{
        width: 95%;
        height: 100vh;
    }

    .blur{
      height: 100vh;
    }

    .blur video{
        height: 100vh;
        object-fit: cover;
    }

    /* section2 */
    #section2 .inner{
      padding-top: 3%;
    }

    .s2_con01{
        height: 70vh;
    }

    .s2_con02{
        height: 30vh;
    }

    .lawyer_list {
        width: 75%;
    }


    /* section3 */
    .s3_01{
        height: 25vh;
    }

    .s3_02{
        height: 75vh;
    }

    .ul_box ul li{
      height: 250px;
    }
}


/* 20240902 */
.emailSelect { position:relative; display:flex; }
.emailSelect label[for=no-email] { position:absolute; right:10px; top:50%; transform: translateY(-50%); z-index:10; display:flex; align-items:center; gap:5px; padding-bottom:20px; cursor:pointer; }
.emailSelect label[for=no-email].pd0 { padding-bottom:0;}
.emailSelect label[for=no-email] input[type=checkbox] { vertical-align:middle; margin:0; }
@media screen and (max-width: 767px){
    .emailSelect label[for=no-email] { font-size:14px; padding-bottom:10px; }
    .emailSelect label[for=no-email].pd0 { padding-top:10px; }
}
