/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/images/home-banner.jpg");

    /* Set a specific height */
    height: 400px;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	margin-bottom: 3rem!important; 
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    /* position: absolute; */
    top: 50%;
    padding-top: 120px;
    left: 50%;
    color: white;
}
.hero-text h2 {
    color: #f8f9fb;
    font-family: Montserrat,"Helvetica Neue",Arial,sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
}
.search-home {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 700px;
    width: 100%;
    display: inline-block;
}
.search-box {
    display: none;
}
.menu-toggler {
    top: -21px !important;
}