/* ////////////////////sub_top//////////////////// */
.sub_top{
    width:100%;
    height:273px;
    background: url(../img/sub/sub_top/sub_top.jpg) no-repeat center / cover;
    position: relative;
    font-family: 'NanumSquare', sans-serif !important;
}

.sub_top_txt{
    position: absolute;
    left:50%;
    top:30%;
    transform: translate(-50%,-50%);
    text-align: center;
    animation: sub_txt 1s forwards;
    opacity: 0;
}

.sub_top_txt01{
    font-size: 32px;
    color: #111;
    font-weight: 600;
}

.sub_top_txt02{
    font-size: 16px;
    color: #696969;
    font-weight: 600;
    margin-top: 7px;
}

@keyframes sub_txt{
    0%{opacity: 0; top:30% ;}
    100%{opacity: 1; top:50% ;}
}
