@charset "utf-8";

#subBnr {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 650px;
    background: #000;
}

#subBnr .bg {
    position: absolute;
    transform: scale(1.05);
    width: 100%;
    height: 100%;
    background: url(./sub_bg.jpg) center no-repeat;
    background-size: cover;
    transition: all 1.2s cubic-bezier(0.165, 0.840, 0.440, 1);
    background-blend-mode: multiply;
    opacity: .8;
}

#subBnr.on .bg {
    transform: scale(1)
}

#subBnr .txt_area {
    position: absolute;
    left: 50%;
    top: 57%;
    z-index: 1;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    font-size: 18px;
    color: #fff
}

#subBnr .txt_area .btxt {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700
}

@media(max-width:1240px) {
    #subBnr .txt_area {
        padding: 0 30px
    }
}

@media(max-width:1024px) {
    #subBnr {
        height: 350px
    }

    #subBnr .txt_area {
        top: 35%
    }

    #subBnr .txt_area .btxt {
        font-size: 35px
    }
}

@media(max-width:768px) {
    #subBnr {
        height: 260px
    }
}

@media(max-width:480px) {
    #subBnr {
        height: auto;
        padding: 15px 0;
        border-top: 1px solid #d1d1d1;
        border-bottom: 1px solid #eee;
    }

    #subBnr .bg {
        display: none
    }

    #subBnr .txt_area {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 0;
        color: #222;
        text-align: center
    }

    #subBnr .txt_area .btxt {
        margin: 0;
        font-size: 16px;
        font-weight: 600
    }

    #subBnr .txt_area .stxt {
        display: none
    }
}