/* ===================================
   HERO SECTION
=================================== */

.rlp-hero{
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.rlp-hero__overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72),
        rgba(0,0,0,.45)
    );

}

.rlp-hero__content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:#fff;

    padding:100px 0;

}

.rlp-hero__subtitle{

    display:inline-block;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:4px;

    color:#d4af37;

    margin-bottom:18px;

}

.rlp-hero__title{

    font-size:64px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;

}

.rlp-hero__text{

    font-size:18px;

    line-height:1.8;

    color:#ececec;

    max-width:560px;

    margin-bottom:40px;

}

.rlp-hero__buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.rlp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:2px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.rlp-btn--primary{

    background:#d4af37;

    color:#111;

}

.rlp-btn--primary:hover{

    background:#fff;

}

.rlp-btn--secondary{

    border:1px solid #fff;

    color:#fff;

}

.rlp-btn--secondary:hover{

    background:#fff;

    color:#111;

}

@media(max-width:768px){

    .rlp-hero{

        min-height:70vh;

    }

    .rlp-hero__title{

        font-size:42px;

    }

}