/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 90%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.85em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Quicksand', sans-serif;
  color: #00113f; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 35px;
	font-weight: 200; 
	color: #00113f;
  	letter-spacing: .5px;
	}
h1 { font-size: 2.4em; line-height: 1.2;  }
h2 { font-size: 2.3em; line-height: 1.25;}
h3 { font-size: 2.0em; line-height: 1.3; }
h4 { font-size: 1.9em; line-height: 1.35;}
h5 { font-size: 1.8em; line-height: 1.5;  }
h6 { font-size: 1.5em; line-height: 1.6; font-weight: 700;
  letter-spacing: 2px;
  font-size: 80%;
	text-transform: uppercase;}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 2.35em; }
  h2 { font-size: 2.25em; }
  h3 { font-size: 2.1em; }
  h4 { font-size: 1.8em; }
  h5 { font-size: 1.6em; }
  h6 { font-size: 1em; }
}

p {
  margin-top: 0; }

em, .em { 
    font-style: italic;
}

.strong { font-weight: 800;}
.upper { text-transform: uppercase;}

.larger { font-size: 1.3em; }
.smaller { font-size: 80%;  line-height: 1.3em;}

.white-font { color: #ffffff; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {  
  color: #e85139; text-decoration: none; 
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;	  }

a { color: #e85139; }
a:hover { color: #f97d4e; border-bottom: 1px solid #f97d4e;}

a.no-border {
	border: 0px !important;
	border-bottom: 0px;
}

.header-row-link { 
    color: #fff; 
    text-decoration: underline;
}




/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  height: 40px;
  padding: 0px 22px;
  color: #e85139;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 2px solid #fff;
  -webkit-border-radius: 38px;
  -moz-border-radius: 38px;
  border-radius: 38px;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #e85139;
  border-color: #e85139;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #e85139;
  border-color: #e85139; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #f97d4e;
  border-color: #f97d4e; }


.button-lg {
	height: 48px;
    font-size: 17px;
	line-height: 46px;
	padding: 0 42px;
}

#header-row .button, #header-row .button-primary, #header-row .button-lg {
	background-color: transparent;
	border-color: #fff ;
}

#header-row .button:hover, #header-row .button-primary:hover, #header-row .button-lg:hover {
	background-color: #f97d4e;
	border-color: #f97d4e ;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 50px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 2px solid #D1D1D1;
  border-radius: 0;
	-webkit-appearance: none;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 2px solid #ff534b;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 80%;
	text-transform: uppercase;
}
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: 5px;
  font-weight: normal; }

select { 
background-position: right 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,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);
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 15px 0 15px 30px;
  font-size: 90%; }
li {
    margin-bottom: 1.7rem;
    list-style: none; 
}

#services ul>li, .footer ul>li {
  list-style: none; }


/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section {
  padding: 80px 0 70px;
  text-align: center;
}
.section-heading,
.section-description {
  margin-bottom: 12px;
}


/* Nav
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.nav { 
	z-index: 9;
	position: relative;
	text-align: right;
	background: none;
}

nav { border-bottom: 0px solid #e1e1e1; background: none;}

.is-sticky nav {
	border-bottom: 1px solid #e1e1e1;
	background-color: #ffffff;
	height: 63px;
	opacity: .95;
	-webkit-transition: all 0.5s ease-in-out;
  	-moz-transition: all 0.5s ease-in-out;
  	-o-transition: all 0.5s ease-in-out;
  	transition: all 0.5s ease-in-out;
}

nav ul { padding: 18px 0 0px 0; }

#cssmenu { background: none;}

#cssmenu ul {
  background: none;
  list-style: none;
  line-height: 1;
  display: block;
  zoom: 1;
}
#cssmenu ul:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
#cssmenu ul li {
  display: inline-block;
  padding: 0;
  margin: 0 10px;
}

#cssmenu ul li a {
  text-decoration: none;
  display: block;
  padding: 0 0 10px 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
  transition: color .25s;
	border-bottom: none;
	color: #ffffff;
}

.is-sticky #cssmenu ul li a {
  color: #e85139;
}

#cssmenu ul li a:hover {
  color: #ffffff;
}

.is-sticky #cssmenu ul li a:hover {
  color: #00113f;
}

#cssmenu ul li a:hover:before {
  width: 100%;
}
#cssmenu ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: -3px;
  top: 19px;
  height: 6px;
  width: 6px;
  opacity: .5;
}
#cssmenu ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #ffffff;
  -webkit-transition: width .25s;
  -moz-transition: width .25s;
  -ms-transition: width .25s;
  -o-transition: width .25s;
  transition: width .25s;
}

.is-sticky #cssmenu ul li a:before { background: #00113f; }

#cssmenu ul li.last > a:after,
#cssmenu ul li:last-child > a:after {
  display: none;
}
#cssmenu ul li.active a {
  color: #ffffff;
}

.is-sticky #cssmenu ul li.active a {
  color: #00113f;
}

#cssmenu ul li.active a:before {
  width: 100%;
}
#cssmenu.align-right li.last > a:after,
#cssmenu.align-right li:last-child > a:after {
  display: block;
}
#cssmenu.align-right li:first-child a:after {
  display: none;
}

@media (max-width:600px) {
	#cssmenu ul li { margin: 0 8px; }
	#cssmenu ul li a:after {
		display: none;
	  }
	  #cssmenu ul li a:before {
		display: none;
	  }
	
	.is-sticky nav { height: 75px; }
}


#cssmenu ul li ul {
    background: #fff;
    color: #00113f;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-bottom: 15px;
    top: 27px;
    width: 160px;
    text-align: left;
    transform: translateY(-2px);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

#cssmenu ul li ul.service-dd {
    right: 280px;
}

#cssmenu ul li ul.team-dd {
    right: 200px;
}

#cssmenu ul li ul a, #cssmenu ul li.active ul a { color: #00113f; }
#cssmenu ul li ul a:hover, #cssmenu ul li.active ul a:hover,  #cssmenu ul li ul li.snon a { color: #e85139; }
.is-sticky #cssmenu li.snon a { color: #e85139 !important; }

#cssmenu ul li ul a:before, #cssmenu ul li ul a:after { display: none; }

#cssmenu ul li:hover > ul,
#cssmenu ul li ul:hover {
  visibility: visible;
  opacity: .95;
    z-index: 1;
    transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; 
}

#cssmenu ul li ul li {
  clear: both;
  width: 100%;
}

.is-sticky #cssmenu ul li ul {
    background: #edfbf6;
}

/* homepage header / Logo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
	background-image: url('../images/header-bg.jpg');
	background-size: cover;
	background-position: 50% 90%;
	padding: 120px 80px 90px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

@media (max-width: 550px) { .header { padding: 50px 0 70px;} }

.header, .header h1, .header h2, .header h3, .header h4, .header h5 { 
  color: #fff; }

.logo { width: 600px; height: auto; margin-bottom: 22px;}

.header a, .header a:hover, .header a:active, .header a:visited { color: #fff; border-bottom: 1px solid #fff;}

@media (max-width: 750px) {
	.logo { width: 300px;}
	.header h4 { font-size: 1.5em; }
}

.nav-logo {  
	margin: 0; 
	padding: 8px 0 ;
	width: 348px; 
	height: 50px; 
}

.nav-logo.homepage { visibility: hidden;}

.is-sticky .logo { display: none; }
.is-sticky .nav-logo.homepage { visibility: visible;}

@media (max-width: 735px) { 
	.logo-column { display: none;} 
	.cssmenu-column.columns { width: 100%;}
	.nav { text-align: center;}
}

@media (max-width: 550px) {
	.logo { width: 300px;}
	
	nav { opacity: 0; }
	.is-sticky nav { opacity: 1;}
	
	.header { padding: 100px 0 70px; top: -120px;}
	
	.nav-logo { display: none;}
}


/* About
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.about { padding: 60px 0 70px; }

.about-maria { padding: 22px; }
.maria-img { float: left; padding: 35px 42px 0 0;}
.maria-img img { clip-path: circle(127px at center); }

#content-row p, #content-row h6 {text-align: left;}
@media (max-width:600px) {
	.maria-img { float: none; padding: 0; }
	#content-row p, #content-row h6 {text-align: center;}
}

.secondary-header h5 { padding: 0% 12%; margin: 0; }


/* Services
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-svcs {
	background-image: url('../images/header/header-services.jpg');
	background-size: cover;
	background-color: #000;
	background-position: 50% 70%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

.header-svcs h4, .header-add-svcs h4 { 
	color: #ffffff; 
	text-shadow: 1px 1px 7px rgba(150, 150, 150, 1);
}

img.icon {width: 75px; height: 75px;}
.svc-list { text-align: left; }
#services h6 { color: #062033; }



.header-add-svcs {
	background-image: url('../images/header/header-addserv.jpg');
	background-size: cover;
	background-color: #000;
	background-position: 50% 70%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

.row.boxed .columns { 
    border: 1px solid #e1e1e1;
    padding: 30px;
    -webkit-box-shadow: 2px 4px 11px 0px rgba(181,181,181,0.47);
    -moz-box-shadow: 2px 4px 11px 0px rgba(181,181,181,0.47);
    box-shadow: 2px 4px 11px 0px rgba(181,181,181,0.47);
}

.header-shop {
	background-image: url('../images/header/header-shop.jpg');
	background-size: cover;
	background-color: #000;
	background-position: 50% 12%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -45px;
	z-index: 0;
}


/* Appointments
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-appts {
	background-image: url('../images/header/header-appointments.jpg');
	background-size: cover;
	background-position: 50% 35%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

.header-appts h4 { 
	color: #ffffff; 
	text-shadow: 1px 1px 7px rgba(150, 150, 150, 1);
}

/* Location
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-location {
	background-image: url('../images/header/header-location.jpg');
	background-size: cover;
	background-position: 50% 35%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

iframe {border: 0;  width: 100%; height: 300px;}
.map
{
    border: 0px; padding: 0px; 
	
} 


/* Location
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-drdelsol {
	background-image: url('../images/header/header-drdelsol.jpg');
	background-size: cover;
	background-position: 50% 70%;
	padding: 140px 80px 100px;
	position: relative;
	top: -105px;
	margin-bottom: -105px;
	z-index: 0;
}

.header-drdelsol h4 { color: #ffffff; text-shadow: 1px 1px 7px rgba(150, 150, 150, 1);}

/* footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-headline { background-color: #38c0ca; padding: 35px 0 15px; text-align: center; }

.footer-logo { width: 235px; height: auto;}

.footer { color: #fff; background-color: #00113f; font-size: .75em; }
.footer .smaller { font-size: 85%; }

.footer a { color: #fff; }
.footer a:hover { border-color: #fff;}

.footer h6 { margin-bottom: 20px;}

.footer li { margin-bottom: 3px; }

@media (max-width: 550px) {
	
	.footer .right { text-align: left; margin-top: 35px;}
	.footer-logo { width: 280px; height: auto;}
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 10px; }
input,
textarea,
select,
fieldset {
  margin-bottom: 15px; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 25px; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

.add-top { margin-top: 35px;}
.double-top { margin-top: 70px;}
.no-bottom { margin-bottom: 0; }
.half-bottom { margin-bottom: 16px;}

.mobile-hide { display: block; }
.mobile-show { display: none; }

@media (max-width:550px) {
	.add-top-mobile { margin-top: 35px;}
	.mobile-hide { display: none; }
	.mobile-show { display: block; }
}

.spacer { position: relative; margin-top: 80px;}
.half-spacer { position: relative; margin-top: 40px;}
.small-spacer { position: relative; margin-top: 20px;}

.left {text-align: left; }
.right {text-align: right; }

.hidden { display: none; }

img.scale { width: 100%; height: auto;}

.callout { background: #dde3e8; padding: 20px;}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

hr.larger-hr { margin-top: 60px;
  margin-bottom: 65px; }

.panel { 
    padding: 30px;
    background: #d8f3e9;
    font-weight: 600;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
