@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
body {
	padding: 0;
	margin: 0;
	font-family: "Lato", sans-serif;
	max-width: 100vw;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
html {
	max-width: 100vw;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
.Navbar {
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 100px;
	background-color: white;
	overflow-x: hidden;
}

.Hero {
	color: aqua;
	height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	background-image: url(./media/banner.png);
	background-size: contain;
	background-repeat: no-repeat;
	overflow-x: hidden;
}
.Text-Content {
	width: 50%;
}
.blank {
	width: 50%;
}

.Selector {
	display: flex;
	background-color: white;
	height: 100vh;
	width: 100%;
	flex-direction: column;
	display: flex;
	background-color: white;
	height: 100vh;
	width: 100%;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
}
.location-image {
	width: 70%;
}

.image-box {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	margin: 0 5%;
	padding: 2% 0;
	height: 360px;
	border: 2px solid rgba(255, 255, 255, 0);
	transition: all ease-in-out 300ms;
	border-radius: 26px;
}
a{
	width: 300px;
}
.image-box:hover {
	border: 2px solid #94c37f;
	background-color: #94c37f;
	box-shadow: -1px -1px 56px 1px rgba(0, 0, 0, 0.42);
	-webkit-box-shadow: -1px -1px 56px 1px rgba(0, 0, 0, 0.42);
	-moz-box-shadow: -1px -1px 56px 1px rgba(0, 0, 0, 0.42);
}
.imageContainer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
}

.selector-title {
	padding-top: 10%;
	width: 100%;
	text-align: center;
	padding: 0 5%;
	font-size: 50px;
	color: #94c37f;
	margin-bottom: 5%;
}

.location-name {
	color: #94c37f;
	transition: all ease-in-out 300ms;
}
.image-box:hover .location-name {
	color: white;
}
.footer{
    height: 100px;
    width: 100%;
}

@media only screen and (max-width: 600px) {
	.Hero {
		flex-direction: column;
		height: 34vh;
		background-size:cover;
		background-position: left left;
	}
	.Selector {
		height: 50%;
	}
	.image-box {
		padding-top: 2%;
		justify-content: center;
        height: 160px;
		margin: 0;
	}
	.selector-title {
		padding-top: 50px;
		padding-bottom: 50px;
		font-size: 30px;
		
	}
}
