/* start: global styles */
body {
	font-family: "Roboto", "Helvetica", "Sans-serif";
	margin: 0;
	padding: 0;
	font-size: 1rem;
	font-weight: 400;
	color: #777;
	line-height: 1.7;
}

* {
	outline: none;
}


/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

*:not(.slick-track):not(.slick-list) {
	transition: 0.4s;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.flex {
	display: flex;
	justify-content: space-between;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
}

h1, h2 {
	font-family: "Playfair Display", serif;
	font-weight: 800;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	color: #003166;
	margin-bottom: 1rem;
	line-height: 1.2;
}

h3 {
	font-size: 1.4rem;
	font-weight: 300;
}

h4 {
	font-size: 1.2rem;
	font-weight: 300;
}

h5 {
	font-size: 1rem;
	font-family: "Playfair Display", serif;
}

p {
	margin: 0 0 1rem;
}

button.rounded {
	background: #003166;
	border: none;
	color: #fff;
	font-size: 16px;
	border-radius: 30px;
	padding: 10px 30px;
	line-height: 1.5;
	cursor: pointer;
}

p.large-paragraph {
	font-size: 1.25rem;
	font-weight: 300;
}

p.small-paragraph {
	font-size: 1rem;
	font-weight: 300;
}
/* end: global styles */

/* start: header styles */
#header-hero-container {
	min-height: 600px;
	height: calc(100vh);
	position: relative;
}

header {
	background: transparent;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: fixed;
	width: 100%;
	z-index: 3;
}

#logo {
	font-family: "Roboto", "Helvetica", "Sans-serif";
	font-size: 1.7rem;
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	position: relative;
	top: 4px;
}

.hamburger-menu {
	background-color: transparent;
	border: 1px solid #fff;
	padding: 3px 5px;
	width: 30px;
	cursor: pointer;
	margin-top: 10px;
	display: none;
}

.hamburger-menu .strip {
	display: block;
	height: 1px;
	background-color: #fff;
	margin: 4px 0;
}

header ul {
	list-style-type: none;
}

header ul li {
	display: inline-block;
	margin: 0 15px;
}

#close-flyout {
	display: none;
}

header ul li a {
	color: #999;
	font-size: 16px;
	text-decoration: none;
}

header ul.is-sticky li a {
	color: #000;
}

header ul li a:hover,
header ul li a.active {
	color: #fff;
}

header ul.is-sticky li a:hover,
header ul.is-sticky li a.active {
	color: #003166;
}
/* end: header styles */

/* start: hero section styles */
#hero {
	background: url('../images/intro.jpeg') center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}

#hero .fade {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(52, 58, 64, 0.6);
	z-index: 1;
}

#hero .hero-text {
	position: absolute;
	top: 50%;
	margin: -75px auto 0;
	left: 0;
	right: 0;
	z-index: 2;
	color: #fff;
	width: 700px;
	text-align: left;
}

#hero .hero-text p {
	line-height: 1.5em;
	font-weight: 300;
	font-size: 1rem;
}
/* end: hero section styles */

/* start: how it works styles */
#how-it-works {
	padding: 3rem 0;
	background: #f8f9fa;
	#text-align: center;
}

#why {
	padding: 3rem 0;
	background: #f8f9fa;
}

#how-it-works h2 {
	#margin-bottom: 3rem;
}

#how-it-works .flex > div {
	width: 45%;
}

#how-it-works h4 {
	color: #343a40;
	margin-top: 1rem;
}

#how-it-works span.fas {
	color: #003166;
	font-size: 35px;
}
/* end: how it works styles */

/* start: properties styles */
#properties {
	margin: 0rem;
	position: relative;
}

#properties h2 {
	margin-bottom: 3rem;
}

#properties .container {
	position: relative;
}

#properties .container:before {
	#content: "/";
	position: absolute;
	right: 80px;
	top: 18px;
	color: #999;
}

#properties-slider a.slick-arrow {
	color: #000;
	position: absolute;
	top: -78px;
	right: 0;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	text-decoration: none;
}

#properties-slider a.slick-prev {
	right: 80px;
}

#properties-slider .slick-slide {
	padding: 0 15px;
}

#properties-slider img {
	width: 100%;
	display: block;
}

#properties-slider .property-details {
	padding: 1rem;
}

#properties-slider .price {
	font-size: 1.2rem;
	color: #343a40;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

#properties-slider .property-details span {
	font-size: 0.8rem;
	padding-right: 15px;
}

#properties-slider .property-details span.baths {
	padding-left: 10px;
}

#properties-slider .property-details span.sqft {
	padding-right: 0;
	padding-left: 10px;
}

#properties-slider .property-details span.pages,
#properties-slider .property-details span.menu {
	#border-right: 1px solid #888;
}

#properties-slider .property-details address {
	font-size: 0.8rem;
	font-style: normal;
	margin-top: 0.5rem;
}

#properties-slider2 a.slick-arrow {
	color: #000;
	position: absolute;
	top: -78px;
	right: 0;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	text-decoration: none;
}

#properties-slider2 a.slick-prev {
	right: 80px;
}

#properties-slider2 .slick-slide {
	padding: 0 15px;
}

#properties-slider2 img {
	width: 100%;
	height: 160px;
	display: block;
}

#properties-slider2 .property-details {
	padding: 0rem;
}

#properties-slider2 .price {
	font-size: 1.2rem;
	color: #343a40;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

#properties-slider2 .property-details span {
	font-size: 0.8rem;
	padding-right: 15px;
}

#properties-slider2 .property-details span.baths {
	padding-left: 10px;
}

#properties-slider2 .property-details span.sqft {
	padding-right: 0;
	padding-left: 10px;
}

#properties-slider2 .property-details span.pages,
#properties-slider2 .property-details span.menu {
	#border-right: 1px solid #888;
}

#properties-slider2 .property-details address {
	font-size: 0.8rem;
	font-style: normal;
	margin-top: 0.5rem;
}

#properties-slider3 a.slick-arrow {
	color: #000;
	position: absolute;
	top: -78px;
	right: 0;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	text-decoration: none;
}

#properties-slider3 a.slick-prev {
	right: 80px;
}

#properties-slider3 .slick-slide {
	padding: 0 15px;
}

#properties-slider3 img {
	width: 100%;
	display: block;
}

#properties-slider3 .property-details {
	#padding: 1rem;
}

#properties-slider3 .price {
	font-size: 1.2rem;
	color: #343a40;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
}

#properties-slider3 .property-details span {
	font-size: 0.8rem;
	padding-right: 15px;
}

#properties-slider3 .property-details span.baths {
	padding-left: 10px;
}

#properties-slider3 .property-details span.sqft {
	padding-right: 0;
	padding-left: 10px;
}

#properties-slider3 .property-details span.pages,
#properties-slider3 .property-details span.menu {
	#border-right: 1px solid #888;
}

#properties-slider3 .property-details address {
	font-size: 0.8rem;
	font-style: normal;
	margin-top: 0.5rem;
}

#properties button.rounded {
	display: block;
	margin: 2rem auto 0;
	width: 350px;
}
/* end: properties styles */

/* start: agents styles */
#agents {
	margin: 4rem 0 6rem;
	padding: 0 0 6rem;
	border-bottom: 1px solid #ccc;
}

#agents p.large-paragraph {
	width: 50%;
	margin-bottom: 4rem;
}

#agents .flex {
	flex-wrap: wrap;
	padding: 0;
}

#agents .card {
	width: 32%;
	background: #f0f0f0;
	margin-bottom: 2rem;
}

#agents .card img {
	width: 100%;
}

#agents .card h3 {
	font-family: "Playfair Display", serif;
	color: #000;
}

#agents .card h3,
#agents .card p {
	padding-left: 1rem;
}
/* end: agents styles */

/* start: best real estate company styles */
#the-best {
	margin: 2rem 0;
}

#the-best .flex > img {
	width: 47%;
}

#the-best .flex > div {
	width: 40%;
}

#the-best ul {
	padding-left: 20px;
	margin-bottom: 4rem;
}

#the-best ul li {
	margin: 10px 0;
}
/* end: best real estate company styles */



/* start: rescuit*/
#recruit {
	background: #f8f9fa;
	padding-top:20px;
	border-bottom: 1px solid #ccc;
}

#recruit h2 {
	#text-align: center;
	margin-bottom: 3rem;
}

#recruit h3 {
	font-family: "Playfair Display", serif;
	color: #000;
	font-weight: 700;
}

#recruit .flex {
	flex-wrap: wrap;
	padding: 0;
}

#recruit .flex > div {
	width: 50%;
	margin-bottom: 2rem;
}

@media (max-width: 400px) {
	#recruit .flex > div {
		width: 100%;
		margin-bottom: 2rem;
	}
}

#recruit .flex > div .fas {
	color: #003166;
	font-size: 40px;
	float: left;
	margin-top: 15px;
	width: 20%;
	#text-align: center;
}

#recruit .flex > div .services-card-right {
	#float: right;
	#width: 75%;
}

/* start: services styles */
#services {
	#background: #f8f9fa;
	#padding: 6rem 0;
	margin: 1rem 0;
	#border-bottom: 1px solid #dee2e6;
}

#services h2 {
	#text-align: center;
	margin-bottom: 3rem;
}

#services h3 {
	font-family: "Playfair Display", serif;
	color: #000;
	font-weight: 700;
}

#services .flex {
	flex-wrap: wrap;
}

#services .flex > div {
	width: 30%;
	margin-bottom: 2rem;
}

#services .flex > div .fas {
	color: #003166;
	font-size: 40px;
	float: left;
	margin-top: 15px;
	width: 20%;
	#text-align: center;
}

#services .flex > div .services-card-right {
	float: right;
	width: 75%;
}

#services .flex > div a {
	color: #003166;
	text-decoration: none;
}

#services .flex > div a:hover {
	text-decoration: underline;
}
/* end: services styles */

/* start: testimonials styles */
#testimonials {
	margin-bottom: 8rem;
}

#testimonials h2 {
	text-align: center;
}

#testimonials-slider .slick-slide {
	text-align: center;
}

#testimonials-slider blockquote {
	font-size: 1.5rem;
	font-style: italic;
	margin: 1rem auto 3rem;
	max-width: 740px;
}

#testimonials-slider .testimonials-caption {
	width: 200px;
	margin: 0 auto;
}

#testimonials-slider .testimonials-caption img {
	float: left;
	border-radius: 30px;
	width: 60px;
}

.testimonials-caption p {
	position: relative;
	top: 13px;
	font-size: 1.2rem;
}

#testimonials-slider .slick-arrow {
	text-decoration: none;
	position: absolute;
	font-size: 40px;
	color: #222;
	top: 50%;
	margin-top: -35px;
	z-index: 1;
}

#testimonials-slider .slick-next {
	right: 0;
}
/* end: testimonials styles */

/* start: contact us styles */
#contact {
	background: #f8f9fa;
	padding: 2rem;
}

#contact h2 {
	margin-bottom: 1rem;
}

#form-container {
	width: 58%;
	background: #fff;
	padding: 2.5rem;
	box-sizing: border-box;
	height: 0%;
}

#form-container h3 {
	color: #000;
	font-family: "Playfair Display", serif;
	margin-bottom: 2rem;
}

#form-container label {
	display: block;
	color: #000;
	margin-top: 1rem;
}

#form-container input,
#form-container textarea {
	display: block;
	border-radius: 20px;
	padding: 10px;
	border: 1px solid #ced4da;
	width: 100%;
	box-sizing: border-box;
	height: 43px;
	font-family: "Roboto", "Helvetica", "Sans-serif";
	font-size: 1rem;
	color: #495057;
}

#form-container textarea {
	height: 170px;
	margin-bottom: 2rem;
	resize: none;
}

#address-container {
	width: 38%;
	background: #fff;
	padding: 1.5rem;
	box-sizing: border-box;
	height: 0%;
}

#address-container label {
	font-weight: 700;
	display: block;
	margin-top: 2rem;
}

#address-container label:first-child {
	margin-top: 0;
}

#address-container address {
	margin-bottom: 1.5rem;
	font-style: normal;
}

#address-container a {
	text-decoration: none;
	color: #003166;
}

#address-container a:hover {
	text-decoration: underline;
}
/* end: contact us styles */

/* start: footer styles */
footer {
	background: #333;
	padding: 1rem 0;
}

footer .flex {
	padding-bottom: 6rem;
	border-bottom: 1px solid #777;
}

footer h5 {
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 300;
}

footer h5.follow-us {
	margin-top: 1rem;
}

footer .footer-about {
	width: 47%;
}

footer .footer-about p {
	width: 65%;
}

footer .footer-quick-links {
	width: 16%;
}

footer .footer-quick-links ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .footer-quick-links ul li {
	margin: 10px 0;
}

footer .footer-quick-links ul li a {
	color: #777;
	text-decoration: none;
}

footer .footer-quick-links ul li a:hover {
	color: #fff;
}

footer .footer-subscribe {
	width: 35%;
}

#subscribe-container {
	position: relative;
}

footer .footer-subscribe input {
	border-radius: 30px;
	height: 43px;
	font-family: "Roboto", "Helvetica", "Sans-serif";
	border: 1px solid #6c757d;
	background-color: transparent;
	font-size: 1rem;
	padding: 10px;
	color: #fff;
	box-sizing: border-box;
	width: 80%;
}

footer button.right-rounded {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	background: #003166;
	font-size: 16px;
	color: #000;
	padding: 10px 30px 9px;
	line-height: 1.5;
	cursor: pointer;
	border: none;
	position: absolute;
	right: 0;
}

footer button.right-rounded:hover {
	background: #fff;
}

footer .footer-subscribe ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .footer-subscribe ul li {
	display: inline-block;
	margin: 0 16px;
}

footer .footer-subscribe ul li:first-child {
	margin-left: 0;
}

footer .footer-subscribe ul li a {
	text-decoration: none;
	color: #777;
}

footer .footer-subscribe ul li a:hover {
	color: #fff;
}

footer small {
	margin-top: 1rem;
	font-size: 1rem;
	display: block;
	text-align: center;
}

footer small a {
	color: #777;
	text-decoration: none;
}

footer small a:hover {
	color: #fff;
}
/* end: footer styles */

/* start: media queries */
@media (max-width: 991px) {
	#logo {
		top: 1px;
	}

	#nav-toggle {
		display: block;
	}

	nav ul {
		position: fixed;
		background: #fff;
		right: -100%;
		top: 0;
		margin: 0;
		padding: 2rem;
		height: 100%;
		width: 300px;
		box-sizing: border-box;
		box-shadow: 5px 0 10px 3px #999;
	}

	#close-flyout {
		position: absolute;
		right: 2rem;
		top: 1.5rem;
		font-size: 30px;
		color: #777;
		cursor: pointer;
		display: block;
		line-height: 1;
		margin: 0;
	}

	nav ul li {
		display: block;
		margin: 20px 0;
	}

	nav ul li:first-child {
		margin-top: 50px;
	}

	nav ul li a {
		font-size: 20px;
		color: #212529;
	}

	nav ul li a.active,
nav ul li a:hover {
		color: #003166;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.2rem;
	}

	.large-paragraph {
		font-size: 1rem;
	}

	p {
		font-size: 0.8rem;
	}

	.container {
		max-width: 540px;
	}

	#hero .hero-text {
		width: 400px;
	}

	#agents .card {
		width: 49%;
	}

	#the-best .flex > img {
		display: none;
	}

	#the-best .flex > div {
		width: 100%;
	}

	#testimonials-slider p {
		font-size: 1.2rem;
	}

	#properties .container:before {
		top: 2px;
		font-size: 0.85rem;
	}

	#properties-slider a.slick-arrow {
		font-size: 0.85rem;
	}

	#properties button.rounded {
		width: 300px;
	}

	#services .flex > div {
		width: 48%;
	}

	#contact .flex {
		flex-wrap: wrap;
	}

	#form-container {
		width: 100%;
		padding: 2rem;
	}

	#address-container {
		width: 100%;
		margin-top: 2rem;
	}

	footer {
		padding: 6rem 0;
	}

	footer .flex {
		flex-wrap: wrap;
	}

	footer .flex > div {
		width: 100%;
		margin-top: 1rem;
	}

	footer .flex > div:first-child {
		margin-top: 0;
	}

	footer .footer-about p {
		font-size: 1rem;
		width: 100%;
	}

	footer .footer-subscribe input {
		width: 90%;
	}

	footer h5.follow-us {
		margin-top: 2rem;
	}
}

@media (max-width: 500px) {
	#hero .hero-text {
		width: 330px;
	}

	#agents {
		margin: 4rem 0 3rem;
		padding: 0 0 3rem;
	}

	#agents .card {
		width: 100%;
	}

	#agents p.large-paragraph {
		width: 100%;
	}

	#how-it-works .flex {
		display: block;
	}

	#how-it-works .flex > div {
		width: 100%;
		margin-top: 2rem;
	}

	#properties button.rounded {
		width: 250px;
	}

	#services {
		padding: 4rem 0 3rem;
		margin: 4rem 0;
	}

	#services .flex > div {
		width: 100%;
	}

	#testimonials {
		margin-bottom: 4rem;
	}

	#testimonials-slider p {
		font-size: 1rem;
	}

	#testimonials-slider .slick-arrow {
		display: none !important;
	}

	#contact {
		padding: 4rem 0;
	}

	#contact h2 {
		margin-bottom: 2rem;
	}

	#form-container {
		padding: 1.5rem;
	}

	footer {
		padding: 4rem 0;
	}
}

@media (max-width: 400px) {
	#hero .hero-text {
		max-width: 275px;
		width: 100%;
	}

	#properties button.rounded {
		max-width: 250px;
		width: 100%;
	}

	nav ul {
		width: 200px;
	}
}

