@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Cabin', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
h1 {
	font-size: 2em;
	margin-bottom: 20px;
}
h2 {
	font-size: 1.5em;
	margin-bottom: 20px;
	border-bottom: none !important;
}
h3 {
	font-size: 1.17em;
}
h4 {
	font-size: 1em;
}
h5 {
	font-size: .83em;
}
h6 {
	font-size: .67em;
}
/* Sparrow Main Styles */
.clear {
	clear: both;
}
.clearfix {
	clear: both;
}
strong {
	font-weight: bold;
}
p {
	margin: 12px 0;
	line-height: 1.32em;
}
a {
	text-decoration: none;
	color: #111;
	transition: all ease .3s;
}
a:hover {
	color: #C75561;
}
table {
	width: 100%;
	border-collapse: collapse;
}
/* Zebra striping */
tr:nth-of-type(odd) {
	background: #eee;
}
th {
	background: #333;
	color: white;
	font-weight: bold;
}
td, th {
	padding: 6px;
	border: 1px solid #ccc;
	text-align: left;
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr {
	display: block;
}
/* Hide table headers (but not display: none;, for accessibility) */
thead tr {
	position: absolute;
	top: -9999px;
	left: -9999px;
}
tr {
	border: 1px solid #ccc;
}
td {
	/* Behave  like a "row" */
	border: none;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-left: 50%;
}
td:before {
	/* Now like a table header */
	position: absolute;
	/* Top/left values mimic padding */
	top: 6px;
	left: 6px;
	width: 45%;
	padding-right: 10px;
	white-space: nowrap;
}
/*
	Label the data
	*/
td:nth-of-type(1):before {
	content: "First Name";
}
td:nth-of-type(2):before {
	content: "Last Name";
}
td:nth-of-type(3):before {
	content: "Job Title";
}
td:nth-of-type(4):before {
	content: "Favorite Color";
}
td:nth-of-type(5):before {
	content: "Wars of Trek?";
}
td:nth-of-type(6):before {
	content: "Nick Name";
}
td:nth-of-type(7):before {
	content: "Date of Birth";
}
td:nth-of-type(8):before {
	content: "Dream Vacation City";
}
td:nth-of-type(9):before {
	content: "GPA";
}
td:nth-of-type(10):before {
	content: "Arbitrary Data";
}
}
header {
	position: fixed;
	width: 100%;
	text-align: center;
	background: #fff;
	color: #fff;
	font-family: 'Cabin', sans-serif;
	transition: all 0.4s ease;
	z-index: 300000;
	top: 0;
}
header.dark {
	position: fixed;
	width: 100%;
	text-align: center;
	background: #555;
	color: #fff;
	font-family: 'Cabin', sans-serif;
	transition: all 0.4s ease;
	z-index: 300000;
}
#non-stick {
	position: relative;
}
header.sticky {
	font-size: 22px;
	line-height: 48px;
	background: #fff;
	text-align: left;
	padding-left: 20px;
}
address {
	color: #111;
	line-height: 1.2em;
	margin: 7px 0;
	font-size: 21px;
}
address a {
	font-weight: bold;
}
nav {
	padding: 16px 29px 0 0;
	margin-top: 10px;
}
header.dark nav {
	position: absolute;
	right: 0;
	top: 0;
}
nav ul {
	float: right;
	margin-top: 17px;
	line-height: 38px;
}
nav ul li {
	display: inline-block;
	position: relative;
}
nav ul li a {
	margin: 10px;
	font-family: 'Cabin', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	padding: 12px 0;
	color: #111;
}
header.dark nav ul li a {
	color: #fff
}
nav ul li a[href*="appointment"] {
	border: 4px solid #ededed;
	padding: 10px;
}
nav ul li a[href*="appointment"]:hover {
	color: #111;
	background: #ededed;
}
header.dark nav ul li a[href*="appointment"]:hover {
	color: #111;
	background: #ededed;
}
nav ul li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 30px; /* make this equal to the line-height of the links (specified below) */
	background: rgba(0,0,0,.8);
}
nav ul li ul li {
	display: block;
	position: relative;
}
nav li li ul {
	position: absolute;
	top: 0;
	left: 119px; /* make this equal to the width of the sub nav above */
	margin: 0;
}
nav ul ul a {
	color: #fff;
	padding: 18px 18px 18px 5px;
	text-align: left;
}
.js .slicknav_menu {
	display: none;
}
#menu li {
	display: none;
}
#logo {
	float: left;
	margin: 15px;
}
#logo a img {
	width: 100%;
	max-width: 166px;
	margin: 20px;
}
#wrapper {
	width: 100%;
}
#home-1 {
	/*background: linear-gradient(rgba(255,0,0,.7), rgba(255,0,0,.7)),
                rgba(255,0,0,.7) url('../images/bkg-bw.jpg') no-repeat center top;*/
	background: url('../images/bkg.jpg') no-repeat center top;
	background-size: cover;
	clear: both;
	text-align: center;
	display: block;
}
#about-us-1 {
	/*background: linear-gradient(rgba(255,0,0,.7), rgba(255,0,0,.7)),
                rgba(255,0,0,.7) url('../images/bkg-bw.jpg') no-repeat center top;*/
	background: url('../images/stock/1.jpg') no-repeat center top;
	background-size: cover;
	clear: both;
	text-align: center;
	display: block;
}
#home-1 .inner {
	padding: 150px 0;
	width: 100%;
	background: rgba(0,0,0,0.7);
	transition: all ease .6s;
}
.video .video-inner {
	padding: 150px 0;
	width: 100%;
	background: rgba(0,0,0,0.4);
	text-align: center;
}
#home-1 .inner:hover {
	background: rgba(0,0,0,0.9);
}
#home-1 .inner .social {
	visibility: hidden;
	margin-top: 35px;
	opacity: 0;
	transition: all ease .6s;
}
.video-inner .social {
	margin-top: 35px;
}
#home-1 .inner:hover .social {
	display: block;
	visibility: visible;
	opacity: 1;
}
#home-1 a, .video-inner a {
	margin: 0 10px;
}
#home-1 i, .video-inner i {
	border: 1px solid #fff;
	color: #fff;
	padding: 10px;
	display: inline-block;
	width: 38px;
	font-size: 32px;
	text-align: center;
}
#home-1 h1 {
	color: #fff;
	font-size: 30px;
	line-height: 1.4em;
	margin-top: 150px;
}
#about-us-1 h1 {
	color: #fff;
	font-size: 30px;
	line-height: 1.4em;
	margin-top: 150px;
}
.video-inner h1 {
	margin-top: 30px;
	color: #fff;
	font-size: 30px;
	line-height: 1.4em;
}
#home-1 h2, .video-inner h2 {
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.6em;
	text-transform: uppercase;
}
#home-1 p, .video-inner p {
	font-size: 22px;
	color: #fff;
	line-height: 1em;
}
#home-2 {
	margin: 0 auto;
	text-align: center;
	padding: 60px 16px;
	width: 800px;
	box-sizing: border-box;
	max-width: 100%;
}
.home-2-slider {
	padding-top: 10px !important;
}
#home-2 h2 {
	border: 2px solid #111 !important;
	color: #111;
	padding: 15px 25px;
	margin: 20px 0;
	display: inline-block;
	font-size: 40px;
	text-transform: uppercase;
	word-spacing: 10px;
	letter-spacing: 2px;
}
#home-2 h3 {
	font-size: 32px;
	margin: 18px 0;
}
#home-2 p {
	margin: 10px auto;
	text-align: justify;
	font-size: 18px;
	line-height: 1.3em;
}
#home-2 p a {
	text-align: center;
	color: #fff;
	background: #111;
	padding: 13px;
	margin: 30px auto;
	display: block;
	width: 112px;
	text-decoration: none;
	border: 2px solid #111;
	transition: all ease-in-out .3s
}
#home-2 a:hover {
	background: #fff;
	color: #111;
	border: 2px solid #111;
}
#home-2 a:hover span {
}
#home-3 {
	display: flex;
	overflow: hidden;
}
#home-3 .right, #home-3 .left {
	width: 50%;
	float: left;
	box-sizing: border-box;
}
#home-3 .left {
	text-align: right;
	background: linear-gradient(rgba(201,201,201,0.7), rgba(201,201,201,0.7)), url(../images/left2-bg.jpg) no-repeat left bottom;
	background-attachment: fixed;
}
#home-3 .left-inner {
	padding: 60px 40px;
}
#home-3 .left h3 {
	font-size: 60px;
	font-family: 'Paytone One', sans-serif;
	text-transform: uppercase;
}
#home-3 .left h3 span {
	font-size: 111px;
}
#home-3 .right {
	padding: 60px 40px;
	background: #222;
	background: linear-gradient(#111, #222);
	background: url(../images/geo.jpg) no-repeat center center;
	color: #fff;
}
#home-3 .right li {
	font-size: 26px;
	margin: 8px 0;
}
#home-4 {
	border-top: 10px solid #CECECE;
	border-bottom: 10px solid #CECECE;
	box-sizing: border-box;
	background: url(../images/whitewall.png) repeat left top;
	text-align: center
}
#home-4 h3 {
	font-size: 40px;
	font-family: 'Cabin', sans-serif;
	text-transform: uppercase;
	text-align: center;
	margin: 0 auto 20px;
	word-spacing: 10px;
	letter-spacing: 2px;
	border: 2px solid #111;
	color: #111;
	padding: 15px 25px;
	display: inline-block;
	background: #F0EFEE;
}
#submit {
	max-width: 324px;
	width: 100%;
	margin: 0 auto;
}
#submit input {
	float: right;
	cursor: pointer;
}
#home-5 {
	display: flex;
}
#home-5 .right, #home-5 .left {
	width: 50%;
	float: left;
	box-sizing: border-box;
}
#home-5 .right {
	text-align: left;
	padding: 60px 0 60px 40px;
	background: linear-gradient(rgba(201,201,201,0.7), rgba(201,201,201,0.7)), url(../images/right2-bg.jpg) no-repeat right bottom;
	background-attachment: fixed;
}
#home-5 .right h3 {
	font-size: 60px;
	color: #000;
	font-family: 'Paytone One', sans-serif;
	text-transform: uppercase;
}
#home-5 .right h3 span {
	font-size: 111px;
}
#home-5 .left {
	padding: 60px 100px 60px 100px;
	background: #222;
	background: linear-gradient(#111, #222);
	background: url(../images/geo.jpg) no-repeat center center;
	color: #fff;
}
#home-5 .left:before {
	content: "“";
	font-size: 300px;
	color: #555;
	position: absolute;
	top: 0;
	left: 10px;
}
blockquote {
	font-size: 22px;
	font-style: italic;
	line-height: 1.3em;
	color: #EDE8E8;
}
cite {
	font-size: 19px;
	line-height: 1.4em;
	margin-top: 35px;
	text-align: center;
	display: block;
}
cite span {
	font-size: 16px;
	color: grey;
}
.sep {
	background: #111;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 2px 6px;
	display: inline-block;
	clear: both;
}
#map-canvas {
	max-width: 100%;
	height: 400px;
	padding: 0px;
	text-align: left;
	box-shadow: 0 1px 5px #888;
}
#map-canvas img {
	/* Prevent streetview buddy from getting squished by img max-width: 100% */
	max-width: none;
}
#infowindow-content ul {
	list-style: none;
	padding: 0;
}
#infowindow-content ul li {
	padding-bottom: 3px;
}
.col-4 {
	width: 33.3%;
	box-sizing: border-box;
	float: left;
	padding: 30px;
	text-align: center;
}
.col-4 p {
	display: inline-block;
	font-size: 24px;
	line-height: 1.3em;
	text-align: left;
	margin: 12px auto;
	width: 325px;
	max-width: 100%;
}
.col-4 p.first, p.second, p.third {
	position: relative;
	padding-left: 24px;
}
.col-4 p.first:before {
	content: "\f041";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 18px;
	padding-right: 0.5em;
	position: absolute;
	top: 0;
	left: 0;
}
.col-4 p.second:before {
	content: "\f095";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 18px;
	padding-right: 0.5em;
	position: absolute;
	top: 0;
	left: 0;
}
.col-4 p.third:before {
	content: "\f0e0";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 16px;
	padding-right: 0.5em;
	position: absolute;
	top: 2px;
	left: 0;
}
footer {
	background: #fff;
	padding: 60px 10px;
	color: #111;
	font-family: 'Cabin', sans-serif;
	font-size: 18px;
	line-height: 28px;
	margin: 0 auto;
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	clear: both;
}
footer#padding-top {
	padding-top:180px;
}
footer .col {
	width: 24%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	text-align: left;
}
footer h4 {
	font-size: 24px;
	font-family: 'Paytone One', sans-serif;
	text-transform: uppercase;
	margin-bottom: 25px;
}
footer ul li {
	margin: 8px 0;
}
footer address {
}
#footer-social a {
	display: block;
	color: #fff;
	margin: 5px 0;
	text-align: left;
	padding: 6px 0;
	width: 185px;
}
footer#dark {
	background: #555;
	color: #fff;
}
footer#dark address {
	color: #fff;
}
footer#dark a {
	color: #fff;
}
footer#dark a:hover {
	color: #C75561;
}
.facebook {
	background: #fff;
	color: #3b5998 !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #3b5998;
}
.facebook:hover {
	background: #3B5998;
	color: #fff !important;
}
.facebook:before {
	content: "\f09a";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.facebook:hover:before, .facebook:focus:before, .facebook:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.facebook-fill {
	background: #3b5998;
	color: #fff !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #3b5198;
}
.facebook-fill:hover {
	background: #fff;
	color: #3B5998 !important;
}
.facebook-fill:before {
	content: "\f09a";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.facebook-fill:hover:before, .facebook-fill:focus:before, .facebook-fill:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.gplus {
	background: #fff;
	color: #DC4E41 !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #DC4E41;
}
.gplus:hover {
	background: #DC4E41;
	color: #fff !important;
}
.gplus:before {
	content: "\f0d5";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.gplus:hover:before, .gplus:focus:before, .gplus:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.gplus-fill {
	background: #DC4E41;
	color: #fff !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #d83a2b;
}
.gplus-fill:hover {
	background: #fff;
	color: #DC4E41 !important;
}
.gplus-fill:before {
	content: "\f0d5";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.gplus-fill:hover:before, .gplus-fill:focus:before, .gplus-fill:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.rss {
	background: #fff;
	color: #FF6600 !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #FF6600;
}
.rss:hover {
	background: #FF6600;
	color: #fff !important;
}
.rss:before {
	content: "\f09e";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.rss:hover:before, .rss:focus:before, .rss:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.rss-fill {
	background: #FF6600;
	color: #fff !important;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 2.2em !important;
	border: 3px solid #ff5100;
}
.rss-fill:hover {
	background: #fff;
	color: #FF6600 !important;
}
.rss-fill:before {
	content: "\f09e";
	position: absolute;
	left: 10px;
	opacity: 1;
	padding: 0;
	font-family: FontAwesome;
	font-size: 16px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.rss-fill:hover:before, .rss-fill:focus:before, .rss-fill:active:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-animation-name: hvr-icon-drop;
	animation-name: hvr-icon-drop;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
#copyright {
	text-align: center;
	font-size: 46px;
	background: #333;
	padding: 30px 0;
}
#sparrow {
	transform: rotate(0deg);
	transition: all ease .7s;
	color: #555;
	opacity: 0.35;
}
#sparrow:hover {
	transform: rotate(360deg);
	color: #C75561;
	opacity: 1;
}
/* Right Sidebar Hero */
.inner-shorter {
	padding: 75px 16px;
	box-sizing: border-box;
	width: 100%;
	background: rgba(0,0,0,0.7);
	transition: all ease .6s;
}
.inner-shorter.non-stick {
	padding: 71px 6px;
}
.inner-shorter.non-stick > h1 {
	margin-top: 25px !important;
}
.inner-shorter > h1 {
	width: 960px;
	max-width: 100%;
	margin: 0 auto;
	text-align: left;
	font-size: 40px !important;
	font-weight: bold;
}
#content-wrapper {
	width: 1060px;
	max-width: 100%;
	margin: 20px auto;
}
#content-wrapper-top {
	width: 1060px;
	max-width: 100%;
	margin: 0 auto 20px;
	top: 140px;
	position: relative;
}
.dark-section {
	background: #F0EFEC;
	width: 100% !important;
	;
	margin: 20px auto;
	overflow: hidden;
}
.full-dark {
	width: 1060px !important;
	max-width: 100%;
	margin: 20px auto;
}
#content-main {
	width: 640px;
	max-width: 100%;
	box-sizing: border-box;
	float: right;
	padding: 0 16px;
	margin-right: 20px;
}
#content-main-right-sidebar {
	width: 640px;
	max-width: 100%;
	box-sizing: border-box;
	float: left;
	padding: 0 16px;
	margin-right: 20px;
}
#content-main h2, #content-main-right-sidebar h2 {
	border-bottom: 3px solid #eee;
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 12px;
	margin-top: 20px;
}
#content-main img, #content-main-right-sidebar img {
	max-width: 100%;
}
.firstcharacter {
	float: left;
	color: #C75561;
	font-size: 60px;
	line-height: 47px;
	padding-top: 4px;
	padding-right: 8px;
	padding-left: 3px;
}
img.float-right {
	float: right;
	margin-top: 6px;
	margin-left: 12px;
	margin-bottom: 12px;
}
img.float-left {
	float: left;
	margin-top: 6px;
	margin-right: 12px;
	margin-bottom: 12px;
}
img.center {
	margin: 10px auto;
	width: auto;
	display: block;
}
#right-side {
	box-sizing: border-box;
	padding: 20px 30px;
	float: right;
}
.widget {
	background: url('../images/bkg.jpg') no-repeat center top fixed;
	background-size: cover;
	margin: 0 0 25px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.widget .inside {
	box-sizing: border-box;
	padding: 20px 30px;
	color: #fff;
	background: rgba(0,0,0,0.85);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
.widget.shortcodes {
	margin-top: 20px;
}
.widget.shortcodes ul li a {
	color: #fff;
	margin: 15px;
	display: block;
	clear: both;
	text-align: right;
}
.widget.shortcodes ul li a:hover {
	color: #C75561;
}
.widget.shortcodes .inside {
	box-sizing: border-box;
	padding: 20px 30px;
	color: #fff;
	background: rgba(0,0,0,0.85);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
aside h3 {
	font-size: 22px;
	border-bottom: 1px dotted #444;
	padding-bottom: 12px;
	text-align: right;
	font-weight: bold;
}
aside h3 i {
	color: #444;
	margin-right: 4px;
}
aside ul {
	text-align: center;
	margin: 12px 0;
}
aside a i {
	color: #fff;
	font-size: 32px !important;
	margin: 20px 11px;
	transition: all ease .4s;
}
aside a:hover i {
	color: #555;
}
#stand-out {
	width: 100%;
	border: 8px double #F7F7F7;
	box-sizing: border-box;
	margin: 20px 0;
	background: url(../images/whitewall.png) repeat left top;
}
#stand-out h4 {
	font-size: 28px;
	text-align: center;
	font-family: 'Noto Sans', sans-serif;
	font-style: italic;
	font-weight: bold;
	padding: 40px 20px;
	background: rgba(255,255,255,0.6);
}
/* Left Sidebar Hero */
#left-side {
	box-sizing: border-box;
	padding: 20px 30px;
	float: left;
}
#left-side .widget {
	background: url('../images/bkg.jpg') no-repeat center top fixed;
	background-size: cover;
	margin: 0 0 25px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#left-side .widget .inside {
	box-sizing: border-box;
	padding: 20px 30px;
	color: #fff;
	background: rgba(0,0,0,0.85);
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#left-side h3 {
	text-align: left;
}
/* Full-Width Hero */
#content-full {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 20px;
}
#content-full h2 {
	border-bottom: 3px solid #eee;
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 12px;
	margin-top: 20px;
}
#content-full h2 {
	border-bottom: 3px solid #eee;
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 12px;
	margin-top: 20px;
}
#content-full img {
	max-width: 100%;
}
.social-mobile {
	font-size: 21px;
	margin: 20px 0;
}
.social-mobile a {
	margin: 0 5px;
}
.only-mobile {
	display: none;
}
.content-half {
	width: 100%;
	max-width: 490px;
	box-sizing: border-box;
	padding: 10px 20px;
	float: left;
}
.content-half.two {
	width: 100%;
	max-width: 440px;
	box-sizing: border-box;
	padding: 10px 20px;
	float: left;
	margin-left: 50px;
}
.content-half h2 {
	border-bottom: 3px solid #eee;
	font-weight: bold;
	font-size: 24px;
	padding-bottom: 12px;
	margin-top: 20px;
}
.content-half img {
	max-width: 100%;
}
.home-video {
	height: 600px
}
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	/* image replacement properties */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(232, 98, 86, 0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}
.no-touch .cd-top:hover {
	background-color: #e86256;
	opacity: 1;
}
.no-padding {
	padding: 0px !important;
}
input[type="text"], textarea {
	display: block;
	margin: 0;
	width: 100%;
	max-width: 400px;
	font-family: sans-serif;
	font-size: 18px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	padding: 10px;
	border: solid 5px #c9c9c9;
	transition: border 0.3s;
}
input[type="text"]:focus, textarea:focus {
	outline: none;
	border: solid 5px #969696;
}
input[type="text"], textarea {
	padding: 10px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
}
input[type="text"]:focus, input[type="text"].focus,  textarea:focus {
	border: solid 1px #707070;
	box-shadow: 0 0 5px 1px #969696;
}
label {
	padding: 10px;
}
img.ajax-loader {
	display: none;
	float: left;
	margin-top: 34px;
}
.address p {
	display: inline-block;
	font-size: 20px;
	line-height: 1.3em;
	text-align: left;
	margin: 0 auto 12px;
	width: 325px;
	max-width: 100%;
}
.address p.first, p.second, p.third {
	position: relative;
	padding-left: 24px;
}
.address p.first:before {
	content: "\f041";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 18px;
	padding-right: 0.5em;
	position: absolute;
	top: 0;
	left: 0;
}
.address p.second:before {
	content: "\f095";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 18px;
	padding-right: 0.5em;
	position: absolute;
	top: 0;
	left: 0;
}
.address p.third:before {
	content: "\f0e0";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #C75561;
	font-size: 16px;
	padding-right: 0.5em;
	position: absolute;
	top: 2px;
	left: 0;
}
.btn-blk {
	text-align: center;
	color: #fff;
	background: #111;
	padding: 10px;
	margin: 20px auto 0px;
	display: block;
	width: 112px;
	text-decoration: none;
	border: 2px solid #111;
	transition: all ease-in-out .3s;
	font-size: 16px;
	float: right;
}
.btn-blk:hover {
	background: #F0EFEE;
	color: #111;
	border: 2px solid #111;
	cursor: pointer;
}
.btn-sub {
	text-align: center;
	color: #111;
	background: #fff;
	box-sizing: border-box;
	padding: 5px;
	margin: 5px auto;
	display: block;
	width: 72px;
	text-decoration: none;
	transition: all ease-in-out .3s;
	font-size: 16px;
	float: right;
	position: relative;
	font-family: 'Cabin', sans-serif;
}
.btn-sub:hover {
	background: #F0EFEE;
	color: #111;
	cursor: pointer;
}
#content-full .bios img {
	float: left;
	border-radius: 50%;
	width: 100%;
	max-width: 130px;
}
#content-full .bios h2 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 20px;
	color: #C75561;
}
#content-full .bios h3 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 20px;
}
#content-full .bios p {
	font-size: 16px;
}
.clients {
	transition: all .2s ease-in-out;
	margin: 10px;
	width: 30%;
}
.clients:hover {
	background: #e5e3de;
	cursor: pointer;
	transform: scale(1.1);
	opacity: .9;
}
.clients img {
	transition: all .2s ease-in-out;
	width: 290px !important;
}
.clients img:hover {
	cursor: pointer;
}
#content-wrapper > .cta-section > h2 {
	font-size: 40px;
	text-align: center;
}
#content-wrapper > .cta-section > h4 {
	font-size: 20px;
	text-align: center;
}
#content-wrapper > .cta-section > a {
	margin-top: 20px;
	border: 3px;
}
.cta-section {
	text-align: center;
	margin-bottom: 50px;
}
.btn-gray {
	color: #373a3c;
	background-color: #d4d4d4;
	border: 3px solid #fff !important;
	font-size: 22px !important;
	transition: all .2s ease-in-out;
}
.btn-gray:hover {
	border: 3px solid #d4d4d4 !important;
	background-color: #fff;
	color: #373a3c
}
/*Buttons*/
.btn-flat {
	border-radius: 5px;
	padding: 15px 25px;
	font-size: 22px;
	text-decoration: none;
	margin: 20px;
	color: #fff;
	position: relative;
	display: inline-block;
}
.btn-flat:active {
	transform: translate(0px, 5px);
	-webkit-transform: translate(0px, 5px);
	box-shadow: 0px 1px 0px 0px;
}
.btn-flat:hover {
	text-decoration: none;
	color: #fff;
}
.blue {
	background-color: #55acee;
	box-shadow: 0px 5px 0px 0px #3C93D5;
	color: #fff;
}
.blue:hover {
	background-color: #6FC6FF;
}
.green {
	background-color: #2ecc71;
	box-shadow: 0px 5px 0px 0px #15B358;
}
.green:hover {
	background-color: #48E68B;
}
.red {
	background-color: #e74c3c;
	box-shadow: 0px 5px 0px 0px #CE3323;
}
.red:hover {
	background-color: #FF6656;
}
.purple {
	background-color: #9b59b6;
	box-shadow: 0px 5px 0px 0px #82409D;
}
.purple:hover {
	background-color: #B573D0;
}
.orange {
	background-color: #e67e22;
	box-shadow: 0px 5px 0px 0px #CD6509;
}
.orange:hover {

	background-color: #FF983C;
}
.yellow {
	background-color: #f1c40f;
	box-shadow: 0px 5px 0px 0px #D8AB00;
}
.yellow:hover {
	background-color: #FFDE29;
}
/*Call to Action*/
#contact-cta-section {
font-family: "proxima-nova", sans-serif;
font-weight: 400;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
float: left;
width: 100%;
text-align: center; 
}
.wrapper-full {
  position: relative;
max-width: 1050px;
    width: 100%;
margin: 0 auto;
}
.cta-wrapper {
margin-bottom: 0;
text-align: left;
padding: 28px;
background-color: #3686BE;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.cta-red{
    background-color: red;
}
.cta-green{
    background-color: green;
}
.cta-orange{
    background-color: orange;
}
.cta-wrapper .details-wrapper {
float: left;
width: 60%;
}
.cta-wrapper .details-wrapper h2 {
font-weight: 600;
margin: 0 0 4px 0;
color: #FFF;
font-size: 27px;
}
.cta-wrapper .details-wrapper p {
font-size: 18px;
color: #FFF;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cta-wrapper .cta-button {
text-transform: uppercase;
letter-spacing: 0.1em;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
text-decoration: none;
font-weight: 600;
display: inline-block;
white-space: pre;
margin: 31px 0 25px 0;  
float: right;
margin: 0;
padding: 17px 0;
width: 40%;
text-align: center;
}

.cta-blue-btn{
color: #3686BE !important;
background-color: #FFF;
}
.cta-red-btn{
color: red !important;
background-color: #FFF; 
}
.cta-green-btn{
color: green !important;
background-color: #FFF; 
}
.cta-orange-btn{
color: orange !important;
background-color: #FFF; 
}
/* Media Queries */
@media(max-width:1279px) {
#home-3, #home-5 {
	display: block;
}
#home-3 .left, #home-3 .right {
	float: none;
	display: block;
	width: 100%;
}
#home-5 .left {
	float: none;
	display: block;
	width: 100%;
}
#home-5 .right {
	display: none;
}
}

@media(max-width:1048px) {
#content-main, #content-main-right-sidebar, #left-side, #right-side {
	float: none;
	display: block;
	width: 100%;
}
.widget, .inside {
	border-radius: 0 !important;
}
}

@media(max-width:1016px) {
.bio-social {
	clear: both;
}
}

@media(max-width:980px) {
.js .slicknav_menu {
	display: block;
}
header.dark {
	margin-bottom: -20px;
	padding-bottom: 10px;
}
#main-nav {
	display: none;
}
header {
	position: static;
}
#logo {
	float: none;
	margin: 0 auto;
}
nav {
	padding: 0;
	margin: 0;
}
.only-mobile {
	display: block;
}
#home-1 .inner {
	padding: 25px 0;
}
#home-1 .inner h1 {
	margin-top: 0;
}
#home-1 .inner .social, #home-1 .inner:hover .social {
	display: none;
	visibility: hidden;
}
#home-3 .left h3 span {
	font-size: 100%;
}
.col-4 {
	float: none;
	width: 100%;
	display: block;
}
#home-4 h3 {
	display: block;
}
footer {
	padding: 25px 10px;
}
footer .col {
	display: block;
	width: 100%;
	text-align: center;
	margin: 20px 0;
}
#footer-social {
	margin: 0 auto;
	display: block;
	width: 231px;
}
.inner-shorter h1 {
	margin-top: 0 !important;
}
.content-half {
	margin: 0 auto;
	float: none;
}
.content-half.two {
	clear: both;
	float: none;
	margin: 0 auto;
}
#content-full .bios img {
	clear: both;
	float: none !important;
}
#content-full .bios p {
	text-align: center;
}
.clients {
	width: 100%;
	margin: 0px;
}
}

@media(max-width:480px) {
.slick-arrow {
	display: none !important;
}
#home-5 .left {
	padding: 60px 40px;
}
img.float-right, img.float-left {
	float: none;
	margin: 10px auto;
	display: block;
}
input[type="text"], textarea {
	width: 300px !important;
}
.content-half.two {
	margin-left: 0;
}
}

@media(max-width:356px) {
#home-3 .left-inner {
	padding: 40px 13px;
}
input[type="text"], textarea {
	width: 250px !important;
}
}
@media(max-width:545px){
    .cta-wrapper .blue-cta-button{
        font-size: 2.5vw;
        margin-top:15px !important;
        
    }
    .cta-wrapper .details-wrapper, .cta-wrapper .blue-cta-button{
        float:none;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}