@charset "utf-8";
@import "font.css";

/* 초기화 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}

body {
    background-color: #f7f7f7;
    font-family: 'Paperlogy', sans-serif !important;
    font-weight: 500;
}
/* 모바일버튼영역 */
.mb-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 101;
    cursor:pointer;
    display: none;
    padding-top: 10px;
}
.mb-btn .line {
    display: block;
    width: 30px;
    height: 5px;
    background-color: #000;
    border-radius: 5px;
    margin: 5px;
    transition: 1s;
}
.mb-btn .line-middle {
    width: 20px;
}
.mb-btn .line-bottom {
    width: 10px;
}
.mb-btn.on .line-top {
    transform: rotate(45deg) translateY(14px);
}
.mb-btn.on .line-middle {
    opacity: 0;
}
.mb-btn.on .line-bottom {
    width: 30px;
    transform: rotate(-45deg) translateY(-14px);
}
/* 모바일메뉴영역 */
.mb-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #f7f7f7;
    z-index: 999;
    padding: 50px;
    transition: .6s;
}
.mb-close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 50px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    z-index: 1001;
}
.mb-nav.on {
    right: 0;
}
.mb-nav .pic {
    width: 100%;
    text-align:center;
    margin-top: 25px;
}
.mb-nav .pic img {
    border-radius: 50%;
    margin-bottom: 1em;
}
.mb-nav .pic p {
    color: #000;
    font-weight: bold;
    font-size: 1em;
}

.mb-nav .mb-menu {
    margin-top: 50px;
    font-size: 1.25em;
}
.mb-nav .mb-menu li {
    padding: 20px 0;
    border-bottom: 1px solid #000;
}
.mb-nav .mb-menu li.on {}
.mb-nav .mb-menu a {
    color: #000;
}
.mb-nav .mb-menu a i {
    margin-right: 20px;
}
/* 마스크영역 */
.window-mask {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0,0,0,0.6);
    display:none;
}
/* 헤더영역 */
.header {
    position: relative;
    top:0;
    left: 0;
    width: 100%;
    height:10vh;
    z-index: 99;
    background-color: #f7f7f7;
    /* padding: 10px 0; */
    line-height: 10vh;
}
.header .header-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.header nav {}
.header nav ul {
    display:flex;
    justify-content: center;
    gap: 90px;
    font-size: 1.1em;
    font-weight: 300;
}
.header nav ul li {
    position: relative;
}
.header nav ul li.on::after,
.header nav ul li:hover::after {
    transform: scaleX(1)
    /* width: 100%; */
}
.header nav ul li a {
    color: #333;
}
.header nav ul li.on a {
    font-weight: 900;
    color: #454545;
}


/* 푸터영역 */
.footer {
    position: absolute;
    bottom: 0;
    height: 8vh;
    /* padding: 25px 0; */
    width: 100%;
    background-color: #727272;
}
.footer p {
    text-align:center;
    color: #fff;
    height: 100%;
    line-height: 8vh;
}

/* ========== 반응형 ========= */
@media screen and (max-width: 1240px) {
    .header .header-wrap {
       width: 96%;
    }
    .content .title-wrap{
        width: 96%;
    }
}
@media screen and (max-width: 750px) {
    .header nav ul li a {
        font-size: 0.9em;
}
}
@media screen and (max-width: 710px) {
    .header nav ul {
        gap: 70px;
    }
}
@media screen and (max-width: 640px) {
    .header nav {
        display: none;
    }
    .header .etc {
        display: none;        
    }
    .mb-btn {
        display: block;
    }
    .dark-btn {
        display:block;
    }
    .content .title-wrap{
        margin: 140px auto 50px;
        padding: 15px 0 20px;
        border-radius: 5px;
    }
    .content .title-wrap .title h3{
        font-size: 0.8em;
    }
    .content .title-wrap .title h3::after{
       width: 7%;
    }
}