.hero-section {

    width: 100%;
    min-height: 100vh;

    padding-top: 120px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url('../../img/banners/home-banner.jpg');

    background-size: cover;
    background-position: center;

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.65) 40%,
            rgba(0,0,0,.3) 100%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 850px;

    padding-inline: 70px;

}

.hero-content h1 {

    font-size: 92px;
    line-height: 1.05;

    color: var(--color-white);

    margin-bottom: 25px;

    font-weight: 900;

}

.hero-content p {

    color: #f1f5f9;

    font-size: 22px;
    line-height: 1.7;

    margin-bottom: 40px;

}

.hero-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 40px;

    background: #f4c95d;

    color: #000;

    font-size: 22px;
    font-weight: 800;

    border-radius: 999px;

    transition: .3s;

}

.hero-button:hover {

    transform: translateY(-4px);

    background: #ffd978;

}