@font-face {
    font-family: 'goyang';
    src: url('../font/goyang_r.TTF');
}
/* 기본값 초기화 */
* {
    margin: 0;
    padding: 0;
    font-family: 'goyang';
}
a {
    text-decoration: none;
    color: white;
}
ul,
li {
    list-style: none;
}
img {
    width: 100%;
    border: 0;
}
.wrap {
    width: 100%;
    min-width: 800px;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-image: url('../image/test1.png');
    background-color: black;
    transition-duration: 2s;
    transition-delay: 0.5s;
}
.wrap_in_box {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    margin-left: 90%;
    transition-duration: 0.5s;
}
.menu_list {
    width: 25%;
    margin-top: 30vh;
    transition-duration: 0.5s;
    position: relative;
}
.cat_img {
    width: 30%;
    position: absolute;
    top: -13%;
    left: 10%;
    z-index: 2;
}
.menu {
    width: 50%;
    height: 20vh;
    text-align: center;
    line-height: 20vh;
    color: white;
    border: 1px solid #ffffff69;
    position: relative;
    cursor: pointer;
    z-index: 1;
    font-size: 24px;
    font-weight: bold;
    transition-duration: 0.5s;
}
.menu::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 0.5s;
    opacity: 0.7;
    z-index: -1;
    background-color: black;
}
.menu:nth-child(2)::before {
    border-radius: 30px 0 0 0;
}
.menu:nth-child(4)::before {
    border-radius: 0 0 0 30px;
}
li::after:first-child {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: red;
}
.active {
    color: red;
}
.gongo_box {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gongo_box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: -1;
    background-color: black;
}
.menu_close {
    width: 40px;
    height: 40px;
    line-height: 50px;
    font-size: 34px;
    font-weight: bold;
    position: absolute;
    top: 2%;
    right: 2%;
    color: red;
    background: none;
    border: none;
    cursor: pointer;
}
.menu_close img {
    width: 100%;
}
.gongo_in_box {
    width: 80%;
    height: 90%;
    color: white;
}
.gongo_list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow-y: scroll;
}
.gongo_list::-webkit-scrollbar {
    display: none;
}
.gongo_scroll {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.gongo_desk, .gongo_moon {
    font-weight: bold;
}
.gongo_moon {
    list-style: armenian;
    line-height: 40px;
    font-size: 18px;
}
.gongo_desk_tit {
    font-size: 38px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.gongo_desk_text {
    font-size: 16px;
    line-height: 25px;
    list-style-image: url(../image/list.png);
    margin-bottom: 30px;
}
.gongo_scroll::-webkit-scrollbar {
    display: none;
}
.gongo {
    width: 45%;
    height: 130px;
    border: 1px solid white;
    position: relative;
    border-radius: 35px;
    margin-bottom: 50px;
    padding: 0px 20px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.gongo_tit {
    margin-bottom: 10px;
}
.gongo::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 35px;
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 0.5s;
    opacity: 0;
    z-index: -1;
    background-color: black;
}
.gongo:hover::before {
    opacity: 0.5;
}
.link_btn {
    width: 150px;
    height: 40px;
    background: transparent;
    border: 1px solid white;
    border-radius: 5px;
    transition-duration: 1s;
}
.link_btn:hover {
    background: black;
}
.link_btn a {
    width: 100%;
    height: 100%;
    line-height: 40px;
    display: block;
    color: white;
}