@charset "utf-8";


/* css reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    vertical-align: baseline;
    color: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}
:focus {outline: none;}

sub, sup {font-size: 1em;}

/*초기 설정*/
html {
    font-size: 10px;
    color: #000;
}

* {
font-family: 'Noto Sans KR';
word-break: keep-all;
box-sizing: border-box;
}

b {font-weight: 600;}


/* 텍스트 컬러 및 폰트 class  */
.ff_pp {font-family: 'Paperlogy';}


/*공통css*/
.flx1 {display: flex; flex-flow: row wrap;}
.flx2 {display: flex; flex-flow: column wrap;}
.inner {width: 100%; max-width: 1700px; margin: 0 auto;}

img {max-width: 100%;}

.mt-0 {
    margin-top: 0 !important;
}
.hide-1080 {}
.hide-768 {}
.show-768 {display: none;}
.show-500 {display: none;}

@media (max-width:1700px) {
    .inner {padding: 0 4%;}
}

@media (max-width:1400px) {
    html {font-size: 9px;}
    
}

@media (max-width:1080px) {
    html {font-size: 8px;}
    .hide-1080 {display: none;}
}

@media (max-width:768px) {
    html {font-size: 7px;}
    .show-768 {display: block;}
    .hide-768 {display: none;}
}

@media (max-width:500px) {
    .show-500 {display: block;}
    .hide-500 {display: none;}
}


/* 헤더 */
.hd-area {
    height: 11.5rem;
}
header {
    border-bottom: 1px solid #4122c3;
    background: #fff;
    /* box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header .inner {
    align-items: center;
    justify-content: space-between;
    height: 11.5rem;
    max-width: 100%;
    padding-inline: 4%;
    
}
header .logo {
    width: min(275px, 18%);
}   
header .menu {
    width: 64%;
}
header .menu ul {
    width: 100%;
    justify-content: space-evenly;
}
header .menu ul li a {
    font-size: 2.2rem;
    font-weight: 500;
    transition: all 0.2s;
}
header .menu ul li a:hover {
    color: #4122c3;
}
header .hd-btn {
    width: min(160px, 18%);
    justify-content: flex-end;
    align-items: center;
}
header .webzin_list,
.mo-menu .webzin_list{
    width: 100%;
    display: block;
    padding-block: 1rem;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
    background: #eaeaea;
    border-radius: 5rem;
    transition: all 0.2s;
}
header .webzin_list:hover,
.mo-menu .webzin_list:hover {
    background: #000;
    color: #fff;
}
header .mo-menu-btn {   
    display: none;
    width: 5.5rem;
    height: 4.2rem;
    position: relative;
    cursor: pointer;
}
header .mo-menu-btn span {
    display: block;
    width: 100%;
    height: 5px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s;
}
header .mo-menu-btn span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header .mo-menu-btn span:nth-of-type(3) {
    top: 100%;
    left: 50%;
    transform: translate(-50%,-100%);
}
.mo-open header .mo-menu-btn span:nth-of-type(1),
.mo-open header .mo-menu-btn span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.mo-open header .mo-menu-btn span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}

.mo-menu { 
    position: fixed;
    top: 11.5rem;
    right: 0;
    width: min(400px,80%);
    height: 100vh;
    border-top: 1px solid #f55542;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateX(110%);
    transition: all 0.3s;
}
.mo-open .mo-menu {
    transform: translateX(0);
}
/* .mo-menu::before {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 100%);;
} */
.mo-menu-wrap {
    padding: 3.4rem;
    padding-top: 0;
}
.mo-menu ul {
    background: #fff;
}
.mo-menu ul li a {
    font-size: 2.5rem;
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
    display: block;
    padding-block: 2rem;
    border-bottom: 1px solid #a5a5a5;
}
.mo-menu ul li:last-child a {
    border-bottom: none;
}
.mo-menu ul li:hover a {
    color: #4122c3;
}
.mo-menu .webzin_list {
    font-size: 2.2rem;
    margin-top: 3rem;
    padding-block: 2rem;
}
 
@media (max-width:1700px) {
    header .logo {
        width: min(275px, 15%);
    } 
    header .menu {
        width: 70%;
    }
    header .menu ul {
        gap: 2rem;
    }
    header .menu ul li a {
        font-size: 1.9rem;
    }
    header .hd-btn {
        width: min(160px, 15%);
    }
}
@media (max-width:1280px) {
    header .logo {
        width: min(275px, 50%);
    } 
    header .menu {
        display: none;
    }
    header .hd-btn {
        width: min(160px, 50%);
    }
    header .webzin_list {
        display: none;
    }
    header .mo-menu-btn {   
        display: block;
    }
}


/* 푸터 */
footer {
    background: #2b2b2b;
    color: #fff;
    padding-block: 7rem;
}

footer .inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
footer p {
    font-size: max(14px,1.8rem);
    line-height: 1.6;
}
footer .ft-logo {
    width: min(275px, 18%);
}
footer .ft-sns ul {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem;
}
footer .ft-sns li {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background: #959595;
    transition: all 0.2s;
}
footer .ft-sns li img {
    filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(92deg) brightness(111%) contrast(101%);
}

footer .ft-sns li:nth-of-type(1):hover {
    background: #f55542;
}
footer .ft-sns li:nth-of-type(2):hover {
    background: #1877f2;
}
footer .ft-sns li:nth-of-type(3):hover {
    background: #ff0000;
}
@media (max-width:1280px) {
    footer .ft-logo {
        width: min(275px, 40%);
    }
    footer .ft-sns  {
        width: 58%;
    }
    footer .ft-sns ul {
        justify-content: flex-end;
        gap: 2rem;
    }
    footer > ul > li:nth-of-type(2) {
        width: 100%;
        order:3;
        margin-top: 2rem;
    }
}

.top-btn {
    position: fixed;
    
    right: 4%;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #e5e5e5;
}
.top-btn img {
    width: 40%;
    margin-bottom: 5px;
    transform: scale(1,-1);
}

.top-btn:hover {
    background: #4122c3;
}
.top-btn:hover img {
    filter: invert(100%) sepia(50%) saturate(2%) hue-rotate(92deg) brightness(111%) contrast(101%);
}