.fw-banner{
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fw-banner img{
    visibility: hidden;
    max-width: 100%;
    height: 100%;
}

.fw-banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: #5A5A5A;
    opacity: 0.64;
}

.fw-banner-content{
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
    height: calc(100% - 83px);
    text-align: center;
}

.fw-banner-content span{
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 35px;
    max-width: 450px;
    position: relative;
    z-index: 1;
}


