/*----------------------------------------------------
# Base
----------------------------------------------------*/
*,
*:after,
*:before {
	box-sizing: inherit;
}
html {
	box-sizing: border-box;
	font-size: 62.5%;
}
body {
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
}

/*----------------------------------------------------
# Layout
----------------------------------------------------*/
.container {
	max-width: 100.0rem;
	margin: 0 auto;
}
.container-fluid {
	margin: 0 1em;
}
.grid {
	display: flex;
	margin: -1em;
}
.column {
	flex: 1;
	padding: 1em;
}
@media (max-width: 60.0rem) {
	.container-fluid {
		margin: 0;
	}
	.grid {
    	display: block;
    	margin: 0;
    }
    .column {
		width: 100%;
		margin: 0 0 1em 0;
		padding: 1em 2em 2em;
	}
	.column.empty {
		margin: 0;
		padding: 0;
	}
}

/*----------------------------------------------------
# Typography
----------------------------------------------------*/
body {
	color: #292f3b;
	font-family: 'Merriweather', serif;
	font-size: 1.6em;
	font-weight: 300;
	letter-spacing: .01em;
  	line-height: 1.6;
	text-rendering: optimizeLegibility;
}
h1, h2, h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
  	letter-spacing: -.1rem;
}
h1 {
	font-size: 6.5rem;
	line-height: 119.35%;
	margin: 0;
}
h3 {
	font-size: 3.3rem;
	font-weight: 400;
	line-height: 1.25;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}
p {
	font-size: 1.7rem;
	line-height: 166.67%;
	margin-top: 0;
	margin-bottom: 20px;
}

/*----------------------------------------------------
# Links
----------------------------------------------------*/
a {
	color: #56ccd2;
	text-decoration: none;
}
a:focus,
a:hover {
	text-decoration: underline;
}

/*----------------------------------------------------
# Header
----------------------------------------------------*/
.logo {
	padding: 1em 0;
	text-align: center;
}
.title {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 2.0rem; 
	font-weight: 400; 
	line-height: 1.3; 
	text-transform: uppercase; 
}
.title a,
.title a:hover,
.title a:focus,
.title a:active,
.title a:visited {
	color: #56ccd2;
	text-decoration: none;
}

/*----------------------------------------------------
# Nav
----------------------------------------------------*/
@media (max-width: 60.0rem) {
	#header-mobile {display: block;}
	#header-desk {display: none;}
}
@media (min-width: 60.0rem) {
	#header-mobile {display: none;}
	#header-desk {display: block;}
	.anchor {
		margin-top: -90px;
		padding-top: 90px;
	}
	.anchor:first-child > div {
		padding-top: 180px;
	}
}

/*----------------------------------------------------
## Nav Mobile
----------------------------------------------------*/
#nav-mobile {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2.0rem;
	line-height: 1;
	padding: 0;
	text-transform: uppercase;
}
#nav-mobile ul {
	display: flex;
	flex-direction: column;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: none;
}
#nav-mobile ul.opening {
	display: block;
}
#nav-mobile li { 
	background: #fff;
	border-bottom: 1px solid #f6f4e2;
}
#nav-mobile li:last-child { border-bottom: none; }
#nav-mobile a {
	color: #888;
	display: block;
	padding: 1.5em 4em 1.5em 3em;
	text-transform: uppercase;
	text-decoration: none;
}
#nav-mobile a:hover, #nav-mobile a:focus { 
	background: #56ccd2;
	color: #fff;
}
.site-nav--icon {
	font-size: 1.4em;
	margin-right: 1em;
	width: 1.1em;
	text-align: right;
	color: rgba(255,255,255,.4);
}
.menu-toggle {
	position: absolute;
	padding: 0.8em;
	top: 3.5em;
	right: .5em;
	cursor: pointer;
}
.hamburger, .hamburger::before, .hamburger::after {
	content: '';
	display: block;
	background: #EBEBD3;
	height: 3px;
	width: 2em;
	border-radius: 3px;
	-webkit-transition: all ease-in-out 350ms;
	transition: all ease-in-out 350ms;
}
.hamburger::before {
	-webkit-transform: translateY(-7px);
	transform: translateY(-7px);
}
.hamburger::after {
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
}
.open .hamburger {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open .hamburger::before { display: none; }
.open .hamburger::after {
	-webkit-transform: translateY(-1px) rotate(-90deg);
	transform: translateY(-1px) rotate(-90deg);
}

/*----------------------------------------------------
## Nav Desk
----------------------------------------------------*/
#header-desk {
	background: #fff;
	margin-top: 0;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.nav-grid {
	background: #eee;
	margin-top: 0;
	border-top: 1px solid #2f3a55;
	border-bottom: 1px solid #2f3a55;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
#nav {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	list-style: none;
	margin: 0;
	padding-top: 0.4em;
	padding-bottom: 0.2em;
	text-align: left;
	text-transform: uppercase;
}
#nav li {
	display: inline-block;
	margin-right: 15px;
}
#nav a {
	color: #676767;
	display: block;
	text-decoration: none;
}
#nav a:hover,
#nav a:focus {
	border-bottom: 2px solid #56ccd2;
}
#nav .current a {
	color: #56ccd2;
	border-bottom: 2px solid #56ccd2;
}

/*----------------------------------------------------
# Buttons
----------------------------------------------------*/
.button {
	border-radius: 0.4rem;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .1rem;
	line-height: 3.8rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
a.button {
	text-decoration: none;
}
.button {
	margin-top: 1em;
	padding: 0.5rem 2.5rem;
}
.button-primary {
	background: #56ccd2;
	border: 0.1rem solid #56ccd2;
}
.button-primary:hover,
.button-primary:focus,
#nav .current a.button-nav {
	background: #7ed8dd;
	border: 0.1rem solid #56ccd2;
	color: #fff;
	outline: 0;
}
.button-secondary {
	background: #2f3a55;
	border: 0.1rem solid #2f3a55;
}
.button-secondary:hover,
.button-secondary:focus {
	background: #384565;
	border: 0.1rem solid #384565;
	color: #fff;
	outline: 0;
}
.button-nav {
	float: right;
	margin-top: -3.5em;
	margin-bottom: -0.5em;
	margin-right: 2em;
}
.button-mobile {
	height: 64px;
	margin-top: -14px;
}
.button-mobile .button {
	width: 50%;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: fixed;
    z-index: 999;
}
.button-mobile .button-secondary {
	margin-left: 50%;
}

/*----------------------------------------------------
# About
----------------------------------------------------*/
.about {
	background-image: linear-gradient(0deg, rgba(47,58,85,0.6), rgba(47,58,85,0.7)), url('../img/background/about.jpg');
	background-position: 0% 10%;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}
.about .column:nth-child(1) {
	flex: 0 0 75%;
}
.about h2 {
	font-family: 'Merriweather', serif;
	font-size: 2.5rem;
	line-height: 119.35%;
	margin-bottom: 1.5em;
}
.about p {
	margin-bottom: 1.5em;
}

/*----------------------------------------------------
# Meet
----------------------------------------------------*/
.meet .column:nth-child(1) {
	flex: 0 0 35%;
}
.meet .column:nth-child(2) {
	flex: 0 0 50%;
}
.meet h3 {
	font-size: 1.7rem;
	margin: 1.667em 0;
	text-transform: uppercase;
}
.meet-blue {
	color: #56ccd2;
	font-family: 'Poppins', sans-serif;
	font-size: 3.3rem;
	line-height: 1.4;
}
.accordion {
	margin: 0 auto;
}
.accordion-content {
	display: none;
	padding-top: 1.5em;
}

/*----------------------------------------------------
# Techniques
----------------------------------------------------*/
.techniques {
	background: #fafafa;
}
.techniques .border-top {
	margin-top: 2em;
}
.techniques .border {
	border: 1px solid #888;
	padding: 1em;
	margin-bottom: 2em;
}
.techniques .border p {
	font-size: 1.3rem;
}
.techniques .column:nth-child(2) {
	margin-top: 1.5em;
}

/*----------------------------------------------------
# Candidate
----------------------------------------------------*/
.candidate .column:nth-child(1) {
	flex: 0 0 75%;
}

/*----------------------------------------------------
# Learn More
----------------------------------------------------*/
.learn-more {
	background: #56ccd2;
}
.learn-more .column:nth-child(2) {
	flex: 0 0 50%;
	background: #fff;
	border-radius: 10px;
	margin-top: 3em;
	padding: 2em 2em 1.5em;
}
.learn-more .column:nth-child(2) .column:nth-child(2) {
	flex: 0 0 70%;
}
.learn-more .consultation {
	color: #56ccd2;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	margin-top: -3.3em;
}

/*----------------------------------------------------
# Image Gallery
----------------------------------------------------*/
.image-gallery .column:nth-child(2) {
	flex: 0 0 50%;
}
.image-gallery p {
	font-size: 1.7rem;
	font-weight: 600;
	margin-top: 1em;
}
.gallery-examples {
	text-align: center;
}

/*----------------------------------------------------
# Testimonials
----------------------------------------------------*/
.testimonials {
	background-image: linear-gradient(0deg, rgba(47,58,85,0.5), rgba(47,58,85,0.6)), url('../img/background/testimonials.jpeg');
	background-size: cover;
	background-position: 0% 50%;
}
.testimonials p {
	background: #56ccd2;
	padding: 75px 60px;
	margin-bottom: 2em;
}

/*----------------------------------------------------
# Appointment
----------------------------------------------------*/
.appointment p {
	max-width: 67.0rem;
	margin: 1em auto;
}

/*----------------------------------------------------
# Spacing
----------------------------------------------------*/
@media (max-width: 60.0rem) {
	h1 {margin-top: 2em;}
	.meet h3 {margin-top: -1em;}
	.techniques .border-top {margin-top: -3em;}
	.learn-more {padding-top: 3em;}
	.testimonials {padding-top: 3em;}
	.testimonials .column:nth-child(1) {margin-bottom: -3em;}
	footer {margin-bottom: -1em;}
	.learn-more .column:nth-child(1),
	.image-gallery .column:nth-child(1) {
		margin-bottom: 0;
	}
	.learn-more .column:nth-child(2) {
		margin-top: 0;
		margin-left: 5%;
		width: 90%;
	}
	.learn-more .column:nth-child(2) img {
		margin-left: 10%;
		width: 50%;
	}
}
@media (min-width: 60.0rem) {
	h1 {margin-top: 0.8em;}
	.about {padding-bottom: 5em;}
	.meet {padding: 3em 0 5em;}
	.meet .column:nth-child(1) {margin-left: -1em;}
	.meet .column:nth-child(2) {padding-left: 4em;}
	.candidate {padding: 1em 0 4em;}
	.image-gallery {padding: 2em 0 5em;}
	.testimonials {padding: 10em 0 5em;}
	.testimonials .column:nth-child(1) {padding-top: 7em;}
	.learn-more {padding: 2em 0 7em;}
	.appointment {margin: 2em 0 3em;}
	.learn-more h3,
	.image-gallery h3,
	.appointment h3 {
		text-align: center;
	}
}

/*----------------------------------------------------
# Footer
----------------------------------------------------*/
footer {
	background: #2f3a55;
	font-family: 'Poppins', sans-serif;
	padding: 2em 0 0;
	text-align: center;
}
footer,
footer a,
footer a:focus,
footer a:hover,
footer a:active,
footer a:visited {
	color: #fff;
}
footer p {
	margin: 0;
}
.footer-title {
	font-size: 2.0rem;
	text-transform: uppercase;
}
.footer-links {
	list-style: none;
	padding-left: 0;
	padding-bottom: 0;
	text-transform: uppercase;
}
.footer-links li {
	display: inline;
	padding: 0 2em;
}
.attribution {
	font-size: 1.3rem;
	margin-top: 3em;
	margin-bottom: 0;
}

/*----------------------------------------------------
# Active Campaign Form
----------------------------------------------------*/
 #_form_7_ * { outline:0; }
 ._form_hide { display:none; visibility:hidden; }
 ._form_show { display:block; visibility:visible; }
 #_form_7_._form-top { top:0; }
 #_form_7_._form-bottom { bottom:0; }
 #_form_7_._form-left { left:0; }
 #_form_7_._form-right { right:0; }
 #_form_7_ input[type="text"],#_form_7_ input[type="date"],#_form_7_ textarea { padding:6px; height:auto; border:#979797 1px solid; border-radius:4px; color:#000 !important; font-size:1.6rem; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
 #_form_7_ textarea { resize:none; }
 #_form_7_ ._close-icon { cursor:pointer; background-image:url('https://d226aj4ao1t61q.cloudfront.net/esfkyjh1u_forms-close-dark.png'); background-repeat:no-repeat; background-size:14.2px 14.2px; position:absolute; display:block; top:11px; right:9px; overflow:hidden; width:16.2px; height:16.2px; }
 #_form_7_ ._close-icon:before { position:relative; }
 #_form_7_ ._form-body { margin-bottom:30px; }
 #_form_7_ ._form-image-left { width:150px; float:left; }
 #_form_7_ ._form-content-right { margin-left:164px; }
 #_form_7_ ._form-branding { color:#fff; font-size:10px; clear:both; text-align:left; margin-top:30px; font-weight:100; }
 #_form_7_ ._form-branding ._logo { display:block; width:130px; height:14px; margin-top:6px; background-image:url('https://d226aj4ao1t61q.cloudfront.net/hh9ujqgv5_aclogo_li.png'); background-size:130px auto; background-repeat:no-repeat; }
 #_form_7_ ._form-label,#_form_7_ ._form_element ._form-label { font-weight:bold; margin-bottom:5px; display:block; }
 #_form_7_._dark ._form-branding { color:#333; }
 #_form_7_._dark ._form-branding ._logo { background-image:url('https://d226aj4ao1t61q.cloudfront.net/jftq2c8s_aclogo_dk.png'); }
 #_form_7_ ._form_element { position:relative; margin-bottom:10px; font-size:0; max-width:100%; }
 #_form_7_ ._form_element * { font-size:1.6rem; }
 #_form_7_ ._form_element._clear { clear:both; width:100%; float:none; }
 #_form_7_ ._form_element._clear:after { clear:left; }
 #_form_7_ ._form_element input[type="text"],#_form_7_ ._form_element input[type="date"],#_form_7_ ._form_element select,#_form_7_ ._form_element textarea:not(.g-recaptcha-response) { display:block; width:100%; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
 #_form_7_ ._field-wrapper { position:relative; }
 #_form_7_ ._inline-style { float:left; }
 #_form_7_ ._inline-style input[type="text"] { }
 #_form_7_ ._inline-style:not(._clear) + ._inline-style:not(._clear) { margin-left:20px; }
 #_form_7_ ._form_element img._form-image { max-width:100%; }
 #_form_7_ ._clear-element { clear:left; }
 #_form_7_ ._full_width { width:100%; }
 #_form_7_ ._form_full_field { display:block; width:100%; margin-bottom:10px; }
 #_form_7_ input[type="text"]._has_error,#_form_7_ textarea._has_error { border:#f37c7b 1px solid; }
 #_form_7_ input[type="checkbox"]._has_error { outline:#f37c7b 1px solid; }
 #_form_7_ ._error { display:block; position:absolute; font-size:13px; z-index:10000001; }
 #_form_7_ ._error._above { padding-bottom:4px; bottom:39px; right:0; }
 #_form_7_ ._error._below { padding-top:4px; top:100%; right:0; }
 #_form_7_ ._error._above ._error-arrow { bottom:0; right:15px; border-left:5px solid transparent; border-right:5px solid transparent; border-top:5px solid #f37c7b; }
 #_form_7_ ._error._below ._error-arrow { top:0; right:15px; border-left:5px solid transparent; border-right:5px solid transparent; border-bottom:5px solid #f37c7b; }
 #_form_7_ ._error-inner { padding:8px 12px; background-color:#f37c7b; font-size:13px; font-family:arial, sans-serif; color:#fff; text-align:center; text-decoration:none; -webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px; }
 #_form_7_ ._error-inner._form_error { margin-bottom:5px; text-align:left; }
 #_form_7_ ._button-wrapper ._error-inner._form_error { position:static; }
 #_form_7_ ._error-inner._no_arrow { margin-bottom:10px; }
 #_form_7_ ._error-arrow { position:absolute; width:0; height:0; }
 #_form_7_ ._error-html { margin-bottom:10px; }
 .pika-single { z-index:10000001 !important; }
 @media all and (min-width:320px) and (max-width:667px) { ::-webkit-scrollbar { display:none; }
 #_form_7_ { margin:0; width:100%; min-width:100%; max-width:100%; box-sizing:border-box; }
 #_form_7_ * { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; font-size:1em; }
 #_form_7_ ._form-content { margin:0; width:100%; }
 #_form_7_ ._form-inner { display:block; min-width:100%; }
 #_form_7_ ._form-title,#_form_7_ ._inline-style { margin-top:0; margin-right:0; margin-left:0; }
 #_form_7_ ._form-title { font-size:1.2em; }
 #_form_7_ ._form_element { margin:0 0 20px; padding:0; width:100%; }
 #_form_7_ ._form-element,#_form_7_ ._inline-style,#_form_7_ input[type="text"],#_form_7_ label,#_form_7_ p,#_form_7_ textarea:not(.g-recaptcha-response) { float:none; display:block; width:100%; }
 #_form_7_ ._row._checkbox-radio label { display:inline; }
 #_form_7_ ._row,#_form_7_ p,#_form_7_ label { margin-bottom:0.7em; width:100%; }
 #_form_7_ ._row input[type="checkbox"],#_form_7_ ._row input[type="radio"] { margin:0 !important; vertical-align:middle !important; }
 #_form_7_ ._row input[type="checkbox"] + span label { display:inline; }
 #_form_7_ ._row span label { margin:0 !important; width:initial !important; vertical-align:middle !important; }
 #_form_7_ ._form-image { max-width:100%; height:auto !important; }
 #_form_7_ input[type="text"] { padding-left:10px; padding-right:10px; font-size:16px; line-height:1.3em; -webkit-appearance:none; }
 #_form_7_ input[type="radio"],#_form_7_ input[type="checkbox"] { display:inline-block; width:1.3em; height:1.3em; font-size:1em; margin:0 0.3em 0 0; vertical-align:baseline; }
 #_form_7_ ._inline-style { margin:20px 0 0 !important; }
 }
 #_form_7_ { position:relative; text-align:left; margin:25px auto 0; padding:20px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; *zoom:1; background:#fff !important; border:0px solid #b0b0b0 !important; -moz-border-radius:0px !important; -webkit-border-radius:0px !important; border-radius:0px !important; }
 #_form_7_ ._form-title { font-size:22px; line-height:22px; font-weight:600; margin-bottom:0; }
 #_form_7_:before,#_form_7_:after { content:" "; display:table; }
 #_form_7_:after { clear:both; }
 #_form_7_._inline-style { width:auto; display:inline-block; }
 #_form_7_._inline-style input[type="text"],#_form_7_._inline-style input[type="date"] { padding:10px 12px; }
 #_form_7_._inline-style button._inline-style { position:relative; top:27px; }
 #_form_7_._inline-style p { margin:0; }
 #_form_7_._inline-style ._button-wrapper { position:relative; margin:27px 12.5px 0 20px; }
 #_form_7_ ._form-thank-you { position:relative; left:0; right:0; text-align:center; font-size:18px; }
 @media all and (min-width:320px) and (max-width:667px) { #_form_7_._inline-form._inline-style ._inline-style._button-wrapper { margin-top:20px !important; margin-left:0 !important; }
 }
#_form_7_ {
	max-width: 70.0rem;
	/* margin: 3em auto 2em; */
}
#_form_7_ ._submit {
	background: #56ccd2;
	border: 0.1rem solid #56ccd2;
	border-radius: 0.4rem;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .1rem;
	line-height: 3.8rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	margin-top: 1em;
	padding: 0.5rem 2.5rem;
}
#_form_7_ ._submit:hover,
#_form_7_ ._submit:focus {
	background: #7ed8dd;
	color: #fff;
	outline: 0;
}
