.main-container {
	display: none;
}

.heroBgContainer {
    align-items: center;
    color: #fdfdfd;
    display: flex;
    flex-direction: column;
    height: 770px;
    justify-content: center;
    position: relative;
	width: 100vw;
}

.heroBgContainer:before {
    background: rgba(0, 0, 0, .3);
    bottom: 0;
	content: "";
	height: 100%;
	left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.heroBgContainer video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.heroBgContainer img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.heroContent {
    z-index: 1;
}

.search-input-container {
    width: 100%;
    border: none;
    height: 43px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 16px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
}

.search-icon {
    color: #c0c0c0;
    margin-right: 10px;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 0;
}

.search-input {
    color: #000;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 50px;
    border: none;
    border-radius: 0;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 0;
}

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

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

.activeSarchOption {
	text-decoration: underline;
}

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

.citySuggestions {
	background-color: #FFF;
	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 {
	color: #222;
	cursor: pointer;
	padding: .25rem .5rem;
	transition: all .1s ease-in-out;
	width: 100%;
}

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

.hero-search-button {
	-webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
	cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	font-size: 14px;
	height: 44px;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	outline: none;
    padding: 10px 20px;
	text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.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) {
	.citySuggestions {
		width: 96%;
	}
}

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

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