/* General Styles */
body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header Styles */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: white;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.logo {
	height: 90px;
	width: auto;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
	margin-right: 50px;
	text-transform: uppercase;
	font-size: .9rem;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
}

nav ul li a {
	text-decoration: none;
	color: black;
	font-weight: 500;
}
nav ul li a:hover {color: #D0D25B;}
.btn {
	display: block;
	margin-top: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: .9rem;
	color: #fff;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	width: 200px;
	padding: 20px;
	border: 0;
	/* background-color: #445e6e; */
	background-color: #D0D25B;
	color: #020202;
}
.btn:hover {/*background-color: #4b6a7e;*/ background-color: #a2a443;}

.nav-btn {
	display: block;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: 1px;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	padding: 8px 12px;
	margin-top: -6px;
	border: 0;
	/* background-color: #445e6e; */
	background-color: #D0D25B;
	color: #020202;	
}
.nav-btn:hover {color:#fff;}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url('hero-bg.jpg') no-repeat right center/cover;
	height: 100vh;
	color: white;
}

.hero-content {
	max-width: 600px;
	padding: 20px;
	position: relative;
	top: -30px;
	right: 50px;
}
h1 {
	font-family: 'Montserrat', helvetica neue, helvetica, sans-serif;
	font-weight: 300;
	font-size: 3rem;
	line-height: 3.2rem;
	text-align: left;
	margin: 0; 
	padding: 0;
	text-shadow: -20px 10px 20px #ccc;
}
.hero p, .about-jill p {
	line-height: 24px;
	font-weight: 300;
	font-size: 18px;
	text-shadow: 8px 3px 10px rgba(48,48,48,0.59);
}
/* About Section */
.about {
	padding: 40px 0;
	/* background-image: linear-gradient(to right top, #f8e7ed, #f8edf4, #f9f3f9, #fbf9fd, #ffffff); */
	background-color: #fff;
	color: #303030;
}
.about h2 {
	font-size: 2rem;
	margin-top: -3px;
	text-transform: uppercase;
	font-weight: 700;
}
.about h4 {
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #445e6e;
}
.about p {text-align: left; font-size: 17px;}
.about a.btn {text-align: center; margin: 30px auto 0; background-color: #6d6761;}
.about-content {
	max-width: 550px;
	margin: 0 auto;
	float: none;
	text-align: center;
}

/* About Jill Section */
.about-jill {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: url('about-jill-bg.jpg') no-repeat;
	background-position: fixed;
	height: 100vh;
	color: white;
	padding-left: 5%;
}

.about-jill-content {
	max-width: 500px;
}
.about-jill h2 {
	/* text-indent: -9999px;
	background: transparent url(hi.png) no-repeat left; */
	font-family: 'Montserrat', Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 3.5rem;
	font-weight: 200;
	background-size: 300px 83px;
	height: 40px;
}
/* Testimonials*/
.testimonials {
	padding: 40px 0;
	background-color: #fff;
	color: #303030;
}
.testimonials .testimonials-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.testimonials h2 {
	font-size: 2rem;
	margin-top: -3px;
	text-transform: uppercase;
	font-weight: 700;
}
.bottom-section {
	/* background-color: #8a9da8; */
	/* background-image: linear-gradient(to right top, #f8e7ed, #f8edf4, #f9f3f9, #fbf9fd, #ffffff); */
	background-color: #fbf9fd;
	padding: 30px 0 50px;
	border-bottom: 1px solid #eddede;

}
.bottom-section-content {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}
.bottom-section-content h2 {
	font-size: 33px;
	line-height: 48px;
	font-weight: 700;
	color: #fff;
	color: #020202;
}
.bottom-section a.btn {width: 250px; text-align: center; margin: 30px auto 0;}

/* Footer */
footer {
	padding: 40px 0;
}
footer p {
	text-align: center;
	font-size: 10px;
	opacity: .4;
}
.footer-content {
	max-width: 500px;
	margin: 0 auto;
}
footer h2 {
	text-indent: -9999px;
	text-align: center;
	height: 80px;
	width: 176px;
	margin: 0 auto;
	background: transparent url(logo.png) no-repeat center center/cover;
}

