.mainhero1-container {
    position: relative;
    padding: 100px 0 100px;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
}

.mainhero1-container img.background {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.innerLeft {
    width: 700px;
    max-width: 100%;
    position: relative;
}

.innerLeft h2 {
    margin: 0 0 15px;
    position: relative;
    color: white;
    padding-bottom: 10px;
    width: fit-content;
}

.innerLeft h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.innerLeft h1 {
    margin: 0 0 15px;
    position: relative;
    color: white;
    padding-bottom: 15px;
    font-size: 3rem;
    font-weight: 800;
}

.innerLeft .buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.innerLeft .buttons a {
    margin-right: 15px;
}

.homepage-incentive {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.incentivecopy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

.incentivecopy p {
    color: white;
    font-weight: 500;
    margin: 0;
}

.incentivecopy .btn {
    height: initial;
    padding: 5px 15px;
    width: initial;
    margin-left: 15px;
}

@media (max-width:991px) {
    .mainhero1-container {
        padding: 50px 0 50px;
    }

    .mainhero1-container {
        padding: 50px 0 50px;
        display: block;
        min-height: initial;
        align-items: initial;
        padding: 0;
    }

    .mainhero1-container img.background {
        position: relative;
    }

    .innerLeft h2, .innerLeft h1 {
        color: var(--primary);
        font-size: initial;
    }

    .innerLeft h1 {
        font-size: 26px;
    }

    .innerLeft h2::after {
        background: var(--primary);
    }


    .innerLeft {
        padding: 30px 0;
    }

    .innerLeft .btn.btn-white {
        background: lightgrey;
    }

    .incentivecopy {
        flex-direction: column;
    }

    .incentivecopy p {
        margin-bottom: 10px;
    }

}