@charset "utf-8";

#subBnr {
    position: relative;
    z-index: 20;
    height: 430px;
    margin: 0 auto;
    color: #fff;
    background: linear-gradient(rgb(0, 0, 0, 0.2), rgb(0, 0, 0, 0.2)), url(./sub_bg.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#subBnr .txt_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-size: 38px;
    line-height: 45px;
    font-weight: 700;
    text-align: center
}

#subBnr .txt_area span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7)
}

#subBnr .txt_area div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Pretendard"
}

#subBnr .txt_area div svg {
    position: relative;
    top: 6px;
    fill: #fff
}

#subBnr .txt_area div i {
    margin: 0 20px;
    font-size: 14px
}

/* 반응형 [s] */
@media (max-width:1024px) {
    #subBnr {
        height: 340px
    }

    #subBnr .txt_area {
        opacity: 1 !important;
        padding-top: 0px !important;
        font-size: 32px;
        line-height: 1.5
    }
}

@media (max-width:768px) {
    #subBnr {
        height: 300px
    }

    #subBnr .txt_area {
        font-size: 28px
    }

    #subBnr .txt_area div {
        margin-top: 5px
    }

    #subBnr .txt_area div i {
        margin: 0 15px
    }
}

@media (max-width:580px) {
    #subBnr {
        height: 260px
    }

    #subBnr .txt_area {
        font-size: 26px
    }

    #subBnr .txt_area div i {
        margin: 0 12px
    }
}

@media (max-width:480px) {
    #subBnr {
        height: 55px;
        background: none;
        border-bottom: 1px solid #e1e1e1
    }

    #subBnr .txt_area {
        font-size: 16px;
        color: #000
    }

    #subBnr .txt_area div {
        display: none
    }
}

/* 반응형 [e] */