@charset "utf-8";
body,html {
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.025em;
    background: #000;
}
#wrap {
    width: 100%;
}
#wrap {
    background: #000;
    position: relative;
}
/* Header */
.header {
    padding: 24px;
}

/* A. Hamburger */
input[id="menuicon"] {
    display: none;
}
input[id="menuicon"]+label {
    display: block;
    width: 24px;
    height: 14px;
    cursor: pointer;
    /* 위치기준값 */
    position: relative;
    z-index: 999999;
}
input[id="menuicon"]+label span {
    display: block;
    width: 100%;
    height: 2px;
    background: #8abf3f;
    /* 포지션 */
    position: absolute;
    z-index: 999999;
    transition: all 0.3s;
}
input[id="menuicon"]+label span:nth-child(1) {
    top: 0;
}
input[id="menuicon"]+label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
input[id="menuicon"]+label span:nth-child(3) {
    bottom: 0;
}

/* B. X button */
input[id="menuicon"]:checked +label span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
input[id="menuicon"]:checked +label span:nth-child(2) {
    opacity: 0;
}
input[id="menuicon"]:checked +label span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* C. GNB 메뉴 슬라이딩 효과 */
.header nav[class="mobile_gnb"] {
    width: 210px;
    height: 100%;
    background: #111;
    /* 포지션 */
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 99999;
    transition: all 0.3s;
}
input[id="menuicon"]:checked +label+nav {
    left: 0;
}

/* 햄버거 클릭시 나오는GNB 메뉴 */
.header .mobile_gnb {
    padding: 64px 0 0 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
}
.header .mobile_gnb .gnb>li {
    height: 42px;
    line-height: 42px;
    padding-left: 24px;
}
.header .mobile_gnb .gnb>li:hover {
    background: #fff;
}
.header .mobile_gnb .gnb>li>a {
    display: block;
    font-weight: 700;
    color: #7baa39;
}
.header .mobile_gnb .gnb>li>a:hover {
    color: #000;
}

/* SNS */
.header .mobile_gnb .sns {
    display: table;
    margin-top: 18px;
    padding-left: 26px;
}
.header .mobile_gnb .sns li {
    display: table-cell;
    width: 30px;
    padding-right: 18px;
}
.header .mobile_gnb .sns li a {
    display: table-cell;
    width: 32px;
    height: 32px;
    text-align: center;
}
.header .mobile_gnb .sns i {                                                                                                                                                                                                                                                                                                    
    font-size: 1rem;
    color: #cdcdcd;
}
/* LOGO */
.logo {
    text-align: center;
}
.logo h2 {
    width: 100%;
    height: 62px;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9998;
}
.logo h2 img {
    width: 64px;
    margin-top: 20px;
}

/* Contents */
#contents {
    width: 100%;
    background: #000;
}

/* 슬라이더 */
.slider ul li img {
    width: 100%;
}

/* 인포 */
.info {
    letter-spacing: normal;
    font-family: 'Noto Sans KR', sans-serif;
    text-align: center;
    color: #eee;
}
.info h2 {
    font-size: 12px;
}
.info h3 {
    font-size: 15px;
    padding-top: 8px;
    font-size: 50px;
    font-weight: 700;
    color: #8abf3f;
}
.info p {
    margin-top: 32px;
    line-height: 1.6rem;
}
.info p:nth-child(3) {
    margin-top: 12px;
    color: #fff;
}

/* 버튼 */
.button {
    margin: auto;
    width: 290px;
    height: 40px;
    padding-top: 22px;
    padding-bottom: 100px;
}
.button button {
    width: 290px;
    height: 40px;
    background: #8abf3f;
    border: none;
    outline: none;
}
.button button a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

/* Footer */
footer {
    background: #1c1c1c;
    text-align: center;
    color: #545454;
}
footer .footer_img {
    padding-top: 12px;
}
footer .footer_img img {
    margin-top: 20px;
    height: 50px;
}
footer .footer_img p {
    padding-top: 10px;
    color: #686868;
}
footer {
    font-family: 'Noto Sans KR',sans-serif;
    font-size: 0.625rem;
    line-height: 0.875rem;
}
footer nav {
    font-size: 0.875rem;
    margin-top: 20px;
    color: #a0a0a0;
    text-align: center;
}
footer nav ul {
    display: inline-block;
}
footer nav ul li {
    float: left;
}
footer nav li:nth-child(2) a {
    font-weight: 700;
}
footer nav li a:hover {
    font-weight: 700;
    color: #8abf3f;
}
footer .copyright {
    padding: 18px 0 40px;
}

/* 클립보드 복사 추가 코딩 */
.copy_btn i {
    cursor: pointer;
}
.blind{
	font-size:0;
	text-indent:-9999999px;
}
.swal2-container {
    z-index: 10000000 !important;
}
.swal2-popup {
    font-size: 0.5rem !important;
    font-family: 'Nanum Gothic', sans-serif !important;
}
