/* General */

.hide {
    display: none !important;
}


/* Heros */

.nbrly-hero {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
}

.nbrly-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* overlay for readability */
}

.nbrly-hero-inner {
    position: relative;
    z-index: 2;
    width: 1240px;
    max-width: 100%;
    padding: 20px;
}

.nbrly-hero-title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.nbrly-hero-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
}

.nbrly-hero-cta {
    margin-top: 2rem;
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background .3s, color .3s;
}

.nbrly-hero-cta:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nbrly-hero-cta i.fa {
    margin-left: 0.5em;
    vertical-align: middle;
}