/* Custom enhancements */
.hero{
    position:relative;
    background-size:cover;
    background-position:center center;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}
.hero::after{
    content:"";
    position:absolute;
    top:0;left:0;width:100%;height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}
.hero .hero-content{
    position:relative;
    z-index:2;
}
.feature-icon{
    font-size:48px;
    color:#f4b214;
    margin-bottom:15px;
}
.cta{
    background:#f4b214;
    color:#fff;
    padding:60px 0;
}
.footer-dark{
    background:#222;
    color:#bbb;
}
.footer-dark a{
    color:#f4b214;
}
.footer-dark p{
    margin:0;
}