/* skip 메뉴 */
#skip {
    position: relative;
    z-index: 100000;
}

#skip a {
    background: rgb(15, 12, 37);
    color: #fff;
    position: absolute;
    padding: 20px 40px;
    left: -400px;
    top: 5px;
}

#skip a:active,
#skip a:focus {
    left: 5px;
}

/* 컨테이너 */
.container {
    width: 100%;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* font */
.gmark {
    font-family: 'GmarketSans';
    font-weight: 300;
}


/* 간격 셋팅 */
.mb0 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}

.mt0 {margin-top: 0 !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}

@media (max-width: 960px) {
    .section {
        padding: 100px 0;
    }
    .section > h2 {
        font-size: 40px;
    }
    .section > p {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .section {
        padding: 80px 0;
    }
    .section > h2 {
        font-size: 30px;
    }
    .section > p {
        font-size: 16px;
        margin-bottom: 50px;
    }
}