.n-banner {
    position: relative;
    height: 500px;
}
.n-banner-button {
    transition: background-position 200ms;
    display: inline-block;
    background-color: #002452;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #002452 0%, #002452 50%, #fabd0e 50%, #fabd0e 100%);
    color: #ffffff;
}
.n-banner-button:hover, .n-banner-button:hover span {
    background-position: 0 100%;
    color: #212121;
}
.n-banner-text {
    position: absolute;
    left: 0;
    top: 50px;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
    padding: 40px;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
}
.n-banner-text h1 {
    font-weight: 900;
    font-size: 3em;
    color: #fabd0e;
    line-height: .9em;
}
.n-banner-text p {
    line-height: 1.4em;
    margin: 20px 0;
    font-weight: 600;
}
.n-banner-text *{
    color: #ffffff;
}
.n-banner-img {
    position: absolute;
    background: #f8f8f8 no-repeat center center url('../img/n-ban-1.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 979px) {
    .n-banner-text h1 {
        font-size: 2.4em;
    }
}
@media (max-width: 767px) {
    .n-banner {
        height: 280px;
    }
    .n-banner-text h1 {
        font-size: 1.4em;
    }
    .n-banner-text p {
        font-size: .9em;
    }
    .n-banner-text {
        background: none;
        backdrop-filter: blur(0);
        top: 240px;
        padding: 0;
        height: 280px;
    }
    .n-banner-img {
        left: -300px;
        right: -20px;
    }
}