/* ============================================
   HERO
============================================ */

.hero{

    height:100vh;

    background:url('../images/banner.jpg') center center/cover;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

}

.hero h1{

    font-size:58px;

    margin-bottom:25px;

    line-height:1.2;

}

.hero p{

    font-size:20px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:var(--primary);

    color:white;

    padding:16px 40px;

    border-radius:50px;

    transition:.35s;

}

.btn-primary:hover{

    background:#680000;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:16px 40px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:white;

    color:black;

}