@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*reset*/


* {
    padding: 0;
    border: 0;
    margin: 0;
    font-family: 'Helvetica', 'Noto Sans KR';
    box-sizing: content-box;
}

body {}

a {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    -ms-interpolation-mode:bicubic
}

.area {
    padding-left: 30px;
    padding-right: 30px;
}

.img_area{
    padding-left: 50px;
    padding-right: 50px;
}

.l_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.l_col {
    float: left;
    box-sizing: border-box;
}
.l_col_12_12 { width: 100%; }
.l_col_11_12 { width: 91.66666667%; }
.l_col_10_12 { width: 83.33333333%; }
.l_col_9_12 { width: 75%; }
.l_col_8_12 { width: 66.66666667%; }
.l_col_7_12 { width: 58.33333333%; }
.l_col_6_12 { width: 50%; }
.l_col_5_12 { width: 41.66666667%; }
.l_col_4_12 { width: 33.33333333%; }
.l_col_3_12 { width: 25%; }
.l_col_2_12 { width: 16.66666667%; }
.l_col_1_12 { width: 8.33333333%; }

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}

@media(max-width : 1200px){
    .l_wrapper{
        padding: 0 20px;
    }
}

@media screen and (max-width : 800px) {
    .area {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l_wrapper {
        width: auto;

    }
    
    .img_area{
        padding-left: 30px;
        padding-right: 30px;
    }
     .l_col_12_12_mb{width: 100%;}
}


/*header*/
#headers {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1;
    background-color: rgba(255, 255, 255, .3);
}

header {}

.header-style {
    box-shadow: 0px 3px 10px #00000019;
}

header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    left: -7.5px;
}

.header {
    height: 80px;

}


.logo {
    height: 44px;
    margin: 18px 0px 18px 0px;
}

.main {
    display: flex;
}

.main li {
    padding-right: 58px;
    line-height: 80px;
    color: #2b2a2a;
    font-size: 18px;
    font-weight: 300;
}

.main li:last-child {
    padding-right: 0;
}

.m-nav,
.m-main {
    display: none;
}



.down {
    background-color: rgba(255, 255, 255, .85) !important;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: ease;
    transition-duration: 0.4s;
    transition-timing-function: ease;
}

@media (min-width : 800px) and (max-width : 1200px) {
    .main li {
        padding-right: 25px;
    }

    .main li:last-child {
        padding-right: 25px;
    }
}

@media screen and (max-width : 800px) {

    .header {
        display: flex;
        align-items: center;
    }

    .header,
    header > div {
        height: 50px;
    }

    .header > a {
        height: 26px;
    }

    .logo {
        height: 26px !important;
        margin: 0 !important;
    }

    .w-nav {
        display: none;
    }


    .m-nav {
        display: flex;
        position: relative;
        z-index: 100;

    }

    .m-nav .header,
    .m-nav .menu {}

    .m-nav .header {
        position: fixed;
        left: 20px;
    }

    .m-nav .menu {
        position: fixed;
        right: 20px;
    }

    .m-main {
        /*        display: flex;*/
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
        width: 100vw;
        height: 100vh;
        box-sizing: content-box;
        opacity: 0;
        transition: opacity .4s ease 0s, top 0s ease 0s;

    }

    .m-main ul {

        padding: 20px 0;
        padding-left: 20px;
        margin-top: 100px;
    }

    .m-main li {
        color: #050505;
        font-size: 28px;
        margin-bottom: 7px;
        line-height: 33px;
    }

    .m-main li a {}

    .m-main li a span {}

    .menu-toggle {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        box-sizing: content-box;
        width: calc((15px) * 1.5);
        height: calc((15px) * .9);
        align-items: flex-end;
    }

    .toggle-icon-line {
        background-color: #000;
        width: calc((15px) * 1.5);
        height: calc((15px) * .1);
        transition: .25s ease-in-out;
    }

    .toggle-icon-line-none {
        opacity: 0;
    }

    .toggle-icon-line-rotateA {
        width: calc((15px) * 1.2);
        transform: rotate(45deg);
        transition: .25s ease-in-out;
        transform-origin: left top;
    }

    .toggle-icon-line-rotateB {
        width: calc((15px) * 1.2);
        transform: rotate(-45deg);
        transition: .25s ease-in-out;
        transform-origin: left bottom;
    }


}

@media screen and (min-width : 800px) and (max-width : 1200px) {}


/*footer*/
#footers {
    background-color: #F5F5F5;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
#footers.about{
    background-color: #fff;
}
footer {}

footer ul {
    padding-bottom: 65px;
    display: flex;
}

footer ul li {
     width: 33.33333%;
}
footer ul li:nth-child(1){
    display: flex;
}
footer ul li:nth-child(1) .sns{
    margin-right: 46px;
    padding-top: 0;
}
footer ul li:nth-child(1) .pdf{
    padding-top: 0;
}

footer ul li p {
    font-size: 16px;
    font-weight: 700;
    color: rgb(158, 158, 158);
    line-height: 30.6px;
}

footer ul li div {
    font-size: 16px;
    color: #9E9E9E;
    padding-top: 16px;
    line-height: 20px;
}

footer ul li div img {
    margin-right: 5px;
}

footer > p {
    border-top: 1px solid #e0e0e0;
    color: rgb(158, 158, 158);
    font-size: 14px;
    padding-top: 10px;
    line-height: 1.6;
}


@media screen and (max-width : 800px) {
    #footers {
        padding-top: 52px;
        padding-bottom: 30px;
        line-height: 19.8px;
    }

    footer ul {
        flex-direction: column;
        padding-bottom: 30px;
    }

    footer ul li {
        width: 100%;
        margin-bottom: 35px;
    }

    footer ul li p {
        font-size: 13px;
        line-height: 16px;
    }
    footer ul li div{
        font-size: 12px;
        line-height: 16px;
        
    }
    footer > p{
        font-size: 11px;
    }
}

/*top*/

#toTop {
    position: fixed;
    bottom: 30px;
    right: 75px;
    height: 44px;
    width: 44px;
    border-radius: 50px 50px 50px 50px;
    background-color: #333;
    text-align: center;
    z-index: 10000;
    display: block;
    opacity: 0;
}

#toTop:hover {
    background-color: #9e9e9e;
    transition: opacity .4s ease-in-out, background .2s ease-in-out;
}

#toTop.top-active {
    opacity: .9;
    transition: opacity .4s ease-in-out, background .2s ease-in-out;
}

#toTop:before {
    content: "\f106";
    font-family: FontAwesome;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    line-height: 42px;
}

@media screen and (max-width : 800px) {
    #toTop {
        right: 20px;
    }
}
