/*Basics*/

:root {
	--accent-offwhite: #EEEEEE;
	--accent-pink: #C79EC1;
	--accent-purple: #93448d;
	--accent-dark: #19322F;
	--accent-light: #6A807D;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

html, html a {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); }

html, body {
	min-height: 100%; 
}

body {
	font-size: 16px;
	color: var(--accent-dark);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #fff; 
}


section.white-background {
	background-color: #fff;
}
section.off-white-background {
	background-color: var(--accent-offwhite);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Arimo', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--accent-dark);
	margin: 0;
	padding: 0; 
}

h3 { font-size:  50px;}
h5 { font-size: 20px; }

p {
	line-height: 1.4;
	margin: 20px 0;
}

p.subtitle {
	font-family: 'Arimo', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--accent-light);
	text-align: center;
}

img, embed, object, video {
	max-width: 100%; }

ul, li {
	list-style: none;
	margin: 0;
	padding: 0; 
}

a {
	text-decoration: none; 
	color: var(--accent-pink);
}

a:hover {
	text-decoration: none; 
	color: var(--accent-dark);
}

.email-list-section a {
	color: var(--accent-dark);
}

.email-list-section a:hover {
	color: var(--accent-light);
}

::selection {
	background: var(--accent-dark);
	color: #fff;
}

.clear {
	clear: both;
}
	
.wrapper {
	max-width: 1190px;
	margin: 0 auto;
	position: relative; 
}

input[type=text], textarea {
	border: 2px solid var(--accent-dark);
	background: var(--accent-offwhite);
	font-size: 16px;
	color: var(--accent-dark);
	padding: 16px;
	border-radius: 30px;
	width: 280px;
	font-family: 'Arimo', sans-serif;
	font-weight: 700;
}

.buttons {
	width: auto;
	margin: 0 auto;
	text-align: center;
}

a.button-1, a.button-2, button {
	border: 2px solid var(--accent-light);
	border-radius: 30px;
	margin-top: -2px;
	margin-left: 10px;
	font-family: 'Arimo', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.03em;
	display: inline-block;
	width: 220px;
	margin: 10px;
	text-align: center;
	padding: 18px 0;
}

a.button-1:hover {
	border-color: #42966e;
	background: #42966e;
}

a.button-2 {
	border-color: var(--accent-dark);
	background: none;
	color: var(--accent-dark);
}

a.button-2:hover {
	background: var(--accent-dark);
	color: #fff;
}

@media only screen and (max-width: 640px) {
	a.button-1, a.button-2 {
		font-size: 16px;
		margin: 5px;
	}
}

/*Header*/

header#top {
	background: #fff;
	height: 160px;
}

h1.logo a {
	display: inline-block;
	float: left;
	color: var(--accent-dark);
	line-height: 2.25;
	text-indent: -4999px;
	background: url(../images/logo_100.png) no-repeat;
	margin: 30px 0 0 0;
	width: 365px;
	height: 100px;
}

header#top nav {
	display: inline-block;
	float: right;
	width: auto;
	margin-top: 60px;
	margin-right: 40px;
}

header#top nav ul li {
	display: inline-block;
	float: left;
}

header#top nav ul li a {
	display: inline-block;
	background: none;
	padding:  10px 15px;
	color: #777;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

header#top nav ul li a:hover {
	color: var(--accent-dark);
}

/* ::backdrop {
	background-color: #000;
	opacity: 0.75;
  }
   */

@media only screen and (max-width: 1024px) {
	header#top {
		height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	h1.logo {
	}
	header#top nav {
		float: none;
		text-align: center;
		width: 100%;
		margin: 20px auto 0 auto;
	}
	header#top nav ul li {
		float: none;
		font-size: 15px;
	}
	h1.logo a {
		display: block;
		float: none;
		margin: 0 auto;
		text-align: center;
	}
}

/*Banner*/

#banner {
	height: 700px;
	background: #B6CECB url(../images/header-image.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	padding: 1px 0 0 0;
}

#banner h2 {
	margin: 220px 0 0 0;
    opacity: 0.9;
	color: var(--accent-purple);
	font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
}

#banner p.subtitle {
	font-size: 24px;
	margin: 10px 0 50px 0;
	color: var(--accent-dark);
}

@media only screen and (max-width: 1024px) {
	#banner h2 {
		margin-top: 100px;
		padding: 0 2%;
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#banner h2 {
		font-size: 30px;
		margin-top: 64px;
	}
	#banner p.subtitle {
	 font-size: 16px;
	}

	h3 { font-size:  40px;}
}

@media only screen and (max-width: 1024px) {
	#banner {
		height: 420px;
	}
}

@media only screen and (max-width: 480px) {
	#banner {
		height: 400px;
	}
}

/*Text Section*/

.text-section {
	text-align: left;
	padding: 100px 0;
}

.text-section p.subtitle {
	text-align: left;
	color: var(--accent-pink);
	font-size: 18px;
	margin-bottom: 40px;
}

.text-section .image.align-left {
	float: left;
	width: 33%;
	padding: 0 20px;
}

.text-section .text.align-left {
	float: left;
	width: 66%;
	padding: 0 5% 0 40px;
}

.text-section .image.align-right {
	float: right;
	width: 33%;
	padding: 0 20px;
}

.text-section .text.align-right{
	float: right;
	width: 66%;
	padding: 0 40px 0 5%;
}

.text-section .text.full-screen {
	width: 100%;
}

.text-section .text.align-center {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}

.text-section .text.align-center p.subtitle {
	text-align: center;
}

.text-section ul.list-checkmarks {
	margin-top: 40px;
}

.text-section table td {
	text-align: right;
}

.text-section table th {
	font-family: 'Arimo', sans-serif;
}

.text-section table td, .text-section table th {
	padding: 0 0 0 15px;
}

ul.list-checkmarks li {
	text-align: left;
	list-style-image: none;
	background: url(../images/checkmark.png) top left no-repeat;
	background-position: 0 2px;
	margin: 10px 0;
	padding: 0 10px 10px 40px;
}

img.horizontal-flip {
	-webkit-transform: scaleX(-1);
  	transform: scaleX(-1);
}

@media only screen and (max-width: 720px) {
	.text-section .text {
		float: none!important;
		/* text-align: center; */
	}
	.text-section .text.align-right, 
	.text-section .text.align-left,
	.text-section .image.align-right,
	.text-section .image.align-left {
		width: 100%;
	}
	.text-section .image {
		float: none!important;
		width: 80%!important;
		padding: 0 20px;
		margin: 0 auto 60px auto;
	}
	/* .text-section .text p.subtitle {
		text-align: center;
	} */
}

/*Features Section*/

.features-section {
	background: var(--accent-pink);
	padding: 100px 0;
	color: var(--accent-dark);
}

.features-section h3 {
	margin-left: 90px;
}

.features-section h5 {
	color: var(--accent-light);
}

.features-section p {
	color: var(--accent-dark);
}

.features-section ul.feature-squares {
	width: 90%;
	margin: 0 auto;	
    clear: left;
}

.features-section ul.feature-squares li {
	width: 50%;
	padding: 3%;
	float: left;
}

.features-section ul.feature-squares li .image {
	float: left;
	width: 20%;
	margin-right: 5%;
	margin-top: 20px;
	text-align: center;
}

.features-section ul.feature-squares li .text {
	float: left;
	width: 75%;
}

@media only screen and (max-width: 960px) {
	.features-section ul.feature-squares li {
		display: block;
		width: 100%;
		margin: 20px 0!important;
	}
}

/*Portfolio Section*/

.portfolio-section {
	text-align: center;
	padding: 100px 0;
	background: #fff;
}

.portfolio-section p.subtitle {
	color: var(--accent-pink);
	font-size: 18px;
}

ul.portfolio-list {
	width: 90%;
	max-width: 1190px;
	margin: 80px auto 60px;
}

ul.portfolio-list li {
	display: inline-block;
	float: left;
	width: 30.3%;
	background: #fff;
	padding: 0;
	margin: 1.5%;
}

ul.portfolio-list li a:hover {
	opacity: .5;
}
@media only screen and (max-width: 960px) {
	ul.portfolio-list li {
		display: block;
		width: 47%;
		margin: 1.5%;
	}
}

@media only screen and (max-width: 720px) {
	ul.portfolio-list li {
		display: block;
		width: 100%;
		margin: 3% 0;
	}
}

/*Email List Section*/

.email-list-section {
	background: var(--accent-pink);
	padding: 100px 0;
}

.email-list-section .text-align-right {
	text-align: right;
}

.email-list-section li {
	line-height: 1.4;
	color: var(--accent-dark);
}

.email-list-section h3 {
	color: var(--accent-dark);
	text-align: left;
}

.email-list-section p.subtitle {
	color: var(--accent-light);
	/* font-size: 1.1em; */
	font-size: 18px;
}

.email-list-section form {
	width: auto;
	text-align: left;
	margin: 40px auto 0 auto;
}

.email-list-section input[type=text], textarea {
	color: var(--accent-dark);
	border: 2px solid var(--accent-offwhite);
	margin: 10px 5px;
	width: 100%;
}

.email-list-section input[type=text]:focus {
	outline: none;
	color: var(--accent-dark);
}

.email-list-section button {
	background: var(--accent-light);
    color: var(--accent-offwhite);
    margin: 10px 5px;
}

/*Footer*/

footer {
	background: var(--accent-light);
	margin-top: 0px;
	color: #fff;
	text-align: center;
	padding: 30px 0;
}

footer a.logo {
	display: block;
	float: left;
	color: #fff;
	text-indent: -4999px;
	padding: 0 0 40px 0;
	background: url(../images/logo_100.png) no-repeat;
	margin: 0 0 0 30px;
	width: 365px;
	height: 100px;
}

footer .footer-left {
	float: left;
	text-align: left;
	margin-top: 5px;
	margin-left: 50px;
}

footer .footer-right {
	float: right;
	margin-top: 20px;
	text-align: right;
}

footer p {
	font-size: 16px;
	margin: 5px;
}

footer p.copyright {
	font-family: 'Arimo', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
}

footer .footer-links {
	color: var(--accent-pink);
}

footer .footer-links a {
	color: var(--accent-pink);
	margin: 0 20px;
}

footer .footer-links a:hover {
	color: var(--accent-dark);
}

footer .footer-links a:first-of-type {
	margin: 0 20px 0 0;
}

footer .footer-right a.social {
	display: inline-block;
	width: 44px;
	height: 44px;
	background: no-repeat center;
	text-indent: -4999px;
	overflow: hidden;
	text-align: left;
	background-color: #363636;
	border-radius: 999px;
	margin-left: 10px;
}

@media only screen and (max-width: 960px) {
	footer {
		padding: 30px 0;
	}
	footer .footer-left, footer .footer-right, footer a.logo {
		float: none;
		text-align: center;
		margin: 0 auto;
	}
	footer .footer-left {
		margin-bottom: 20px;
	}
	footer a.logo {
		 margin: 10px auto 40px auto;
	}
	footer .footer-links a {
		margin: 0 5px!important;
		font-size: 14px;
	}
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 300px; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }

  div.hidden {
	display: none;
  }