/*
Available Fonts and Colors
Header - Open Sans - #4BB2F2
Copyright - Times New Roman - #000000
Paragraph - Varela Round #000000
Navigation - Funnel Display - #77C3F2
Header 3-5 - Varela Round - #2F5973
Background - #F2F2F2
*/

/*- Main stuff -*/

body {
	background-image: url("new-client-images/new-client-gradient.png");
	background-size: cover;
}

/*- Less Important -*/

footer {
	margin: auto;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-weight: 900;
	color: black;
	background-color: #F2F2F2;
	background-size: cover;
	border: solid 3px #F2F2F2;
	border-radius: 100px;
	
}

h2 {
	margin-bottom: 0;
}

/*- Classes -*/

.page-header {
	font-family: "Varela Round", sans-serif;
	color: #000000;
	border: solid 5px #F2F2F2;
	text-align: center;
	margin: auto;
	margin-bottom: 100px;
	font-weight: lighter;
	/*- Ai helped with... -*/
	background-color: rgba(242, 242, 242, 0.85);
	/*- Ai ends here -*/
}

/*- Index -*/

.index h1 {
	text-align: center;
	border: solid 3px #F2F2F2;
	background-color: rgba(242, 242, 242, 0.9);
	font-family: "Open Sans", sans-serif;
	margin-bottom: 30px;
}

.index-text {
	margin: 020px 20%;
	font-family: "Varela Round", sans-serif;
	color: #000000;
	border: solid 3px #F2F2F2;
	background-color: rgba(242, 242, 242, .9);
	text-align: center;
}

/*- Agent -*/

.agent-text {
	display: flex;
	flex-direction: column;
	text-align: center;
	height: 350px;
	width: 1000px;
	font-family: "Varela Round", sans-serif;
	font-size: 25px;
}

.agent-div {
	display: flex;
	flex-direction: wrap;
	border: solid 5px #F2F2F2;
	background-color: rgba(242, 242, 242, 0.85);
	height: 350px;
	width 1000px;
	margin: 25px 20%;
}

.agent-div img {
	height: 350px;
	width: 250px;
}

/*- Contact -*/

.contact-info {
	display: flex;
	flex-direction: wrap;
	margin: 25px 20%;
	border: solid 5px #F2F2F2;
	background-color: rgba(242, 242, 242, 0.85);
}

.contact-text {
	display: flex;
	flex-direction: column;
	font-family: "Varela Round", sans-serif;
	color: #000000;
	text-align: center;
}

/*- Home -*/

.house-link {
	display: flex;
	flex-direction: column;
	border: solid 3px #F2F2F2;
	margin: 15px 35%;
}

.house-link img {
	height: 100%;
	width: 100%;
}

.homes h2 {
	text-align: center;
	font-family: "Open Sans", sans-serif;
	color: #4BB2F2;
	text-shadow: 1px 3px 5px blue;
	margin: 10px auto 50px auto;
}

.homes p {
	margin: 30px 30%;
	font-family: "Varela Round", sans-serif;
	color: black;
	text-align: center;
	border: solid 3px #F2F2F2;
	background-color: rgba(242, 242, 242, 0.8)
}

.house-images {
	display: flex;
	flex-direction: wrap;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

.house-images img {
	width: 23%;
	border: solid 3px #F2F2F2;
	margin: 0 1%;
}

.house-list {
	font-family: "Varela Round", sans-serif;
	margin-left: 42%;
	margin-right: 42%;
	
}

.house-list h3 {
	text-align: center;
}

/*- Link shenannigans -*/

a:link {
	text-decoration: none;
	color: #2F5973;
}

a:hover {
	color: #F2F2F2;
}

a:active {
	color: #77C3F2;
}

a:visited {
	color: #2F5973
}

/*- Ids -*/

#logo {
	margin-left: auto;
	margin-right: auto;
	height: 200px;
	width 400px;
	display: block;
	border: solid 3px white;
	border-radius: 50px;
}

#house-1-header {
	font-size: 50px;
}

#reviews {
	display: flex;
	flex-direction: wrap;
	margin: 20px 34%;
	width: 600px;
}

#reviews img {
	width: 50%;
}

/*- Dropdown -*/

nav {
	margin: 80px 0;
	text-align: center;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

nav ul li{
	display: inline-block;
	margin: 0px 10px;
	background-color: #F2F2F2;
	font-family: "Funnel Display", sans-serif;
	font-size: 30px;
}

nav a {
	display: block;
	padding: 0 10px;
	line-height: 50px;
	text-decoration: none;
	border: solid 5px #4BB2F2;
	
}

nav a:hover {
	background-color: #2F5973;
	color: #F2F2F2;
}

nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	background-color: #F2F2F2;
	margin: 0 -136px;
}

nav ul li:hover > ul {
	display: inherit;
}

nav ul ul li {
	border: single 5px black;
	margin: 0px;
}

nav ul ul li a:hover {
	
}

/*- Media Query -*/

@media screen and (max-width: 1500px)
{
	.agent-text {
		font-size: 20px
	}
}

@media screen and (max-width: 1300px)
{
	.agent-text {
		font-size: 17px;
	}
}