#main-photoslider {
    padding-top: 0px !important;
}

.main-container {
    display: none;
}

.heroBgContainer {
    align-items: center;
    background: url(/themes/custom/brokerage/images/shutterstock_1254645601.jpg) no-repeat bottom center; 
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 93px);
    justify-content: center;
    position: relative;
}

.heroBgContainer:before {
    background: linear-gradient(to top, #f9fafb 0%, rgba(249, 250, 251, .5) 50%);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.heroContent h1 {
    color: #273c75;
    font-size: 2rem;
    line-height: 1;
}

.searchOption {
    cursor: pointer;
    font-weight: 500;
    transition: all .1s ease-in;
}

.searchOption:hover {
    text-decoration: underline;
}

.activeSarchOption {
    text-decoration: underline;
}

.btn-secondary {
    background-color: #273c75 !important;
    z-index: 0 !important;
}

.btn-secondary:hover {
    background-color: #394d84 !important;
}

.form-control:focus,
.form-control:active {
    box-shadow: none !important;
    outline: none !important;
}

.citySuggestions {
    background-color: #FFF;
    border-radius: 3px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    display: none;
    height: auto;
    max-height: 200px;
    left: 12px;
    list-style-type: none;
    margin-top: .2rem;
    overflow-y: scroll;
    padding: .5rem;
    position: absolute;
    width: 93%;
    max-width: 636px;
}

.cityOption {
    border-radius: 3px;
    color: #222;
    cursor: pointer;
    padding: .25rem .5rem;
    transition: all .1s ease-in-out;
    width: 100%;
}

.cityOption:hover {
    background-color: #f4f4f5;
}

.searchDescription {
    font-size: .8rem;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .heroBgContainer {
        background-attachment: scroll;
    }
}

@media (min-width: 376px) {
    .citySuggestions {
        width: 94%;
    }
}

@media (min-width: 450px) {
    .citySuggestions {
        width: 95%;
    }
}

@media (min-width: 768px) {
    .heroContent h1 {
        font-size: 3rem;
    }

    .citySuggestions {
        width: 96%;
    }
}

@media (min-width: 992px) {
    .heroContent h1 {
        font-size: 4rem;
        line-height: .7;
    }

    .citySuggestions {
    width: 95%;
    }
}

@media (min-width: 1200px) {
    .citySuggestions {
        width: 96%;
    }
}