.hero-image {
    background-image: url('../assets/images/homepage/hero-image.jpg');
    min-height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-title {
    position: absolute;
    bottom: 20px;  /* 20 / 30 / 50px for different screen sizes*/
    font-size: 30px;  /* 36px for screen sizes larger than 768px */
    line-height: 40px;  /* 48px for screen sizes larger than 768px */
    color: var(--our-white-1);
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.85);
    margin: 0;
    padding-right: 10px;
}

/* css media queries ----- ----- */
@media only screen and (max-width: 991px) {
    .our-sidebar {
        background-color: var(--our-black-3);
    }
}

@media only screen and (min-width: 400px) {
    .hero-image {
        min-height: 450px;
    }

    .hero-title {
        bottom: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .hero-image {
        min-height: 739px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 48px;
        bottom: 50px;
    }
}