/* ===============================================
	.less VERSION 10
	
	ballrick-john2
	Written by: James Stillion
		
	Sesame Communications - (c) 2022
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* 1960s penny */
/* 1990s penny */
/* 2020 penny */
/* indigo */
/* lapiz */
/* bradybunchblue || hyperlinks */
/* pale blue eyes */
/* silver */
/* grey */
/* ===============================================
					fonts
=============================================== */
/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/Lato-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/Lato-Regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/Lato-Italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/Lato-Italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''), url('../fonts/Lato-Bold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/Lato-Bold.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-700italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local(''), url('../fonts/Lato-BoldItalic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/Lato-BoldItalic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.fontL {
  font-family: 'Lato', Geneva, Tahoma, sans-serif;
}
/* ===============================================
					Mixins 
=============================================== */
/*font-mixins*/
.th {
  font-weight: 100;
}
.xlt {
  font-weight: 200;
}
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}
/* use with .trbl */
.grey,
.gray {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.fa,
.fa-brands,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin,
.fab,
.fad,
.fal,
.far,
.fas,
.fat {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ==================================================================
	main content-text font sizes
=================================================================== */
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea,
form button {
  font-family: 'Lato', Geneva, Tahoma, sans-serif;
}
body {
  font-size: 15px;
  color: #333;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #3F92D4;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: none;
  color: #CE7C2F;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 1.83333333em;
  text-rendering: auto;
}
header.sub {
  text-align: center;
  background-color: #000;
}
header.sub:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, #000000 100%);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 50%;
  opacity: 0.3;
}
header.sub .hero {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 81.1875em) {
  header.sub .hero {
    opacity: 0.7;
    /* desk 1300oo */
  }
}
h1 {
  text-align: center;
  font-size: 10vw;
  color: #fff;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 3.25em;
    /* mintab 480w */
  }
}
h1.sub {
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 61.1875em) {
  h1.sub {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 61.25em) {
  h1.sub {
    bottom: 0.61538462em;
    /* custom 980w */
  }
}
.home h1 {
  color: #004678;
  margin: 0 0 1.02040816em;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 2.45em;
    /* mintab 480w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  letter-spacing: 0.16em;
  line-height: 1.15151515;
  font-size: 0.67346939em;
  color: #035AA6;
}
h2:not(.topic) {
  font-size: 1.2em;
  color: #CE7C2F;
}
h3:not(.topic) {
  font-size: 1.1em;
  color: #035AA6;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.975em;
}
h6 {
  font-size: 0.95em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 60em;
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0 0 1em;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 41.625em) {
  #masthead {
    padding: 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #masthead {
    font-size: 1.1em;
    width: 100%;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 64em) {
  #masthead .container {
    max-width: 64.5em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(0, 70, 120, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 43px;
  color: #004678;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  position: relative;
  display: inline-block;
  top: -0.2em;
}
#main-nav .trigger .navicon span {
  height: 2px;
  width: 100%;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #004678;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #CE7C2F;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.85714286;
  font-size: 0.7em;
  color: #004678;
  width: auto;
  height: 2.85714286em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #CE7C2F;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background: #004678;
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  letter-spacing: 0.06em;
  line-height: 3.33333333;
  font-size: 0.6em;
  color: #fff;
  width: 100%;
  height: 3.33333333em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #3F92D4;
  margin-bottom: 0;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
/* all about that open class */
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 2em;
  opacity: 1;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #004678;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 41.625em) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 41.625em) and (max-width: 63.9375em) {
  #hd .container {
    padding: 0.66em 55px 0.66em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 64em) {
  #hd .container {
    padding: 0.55em 0 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 12.6em;
  margin: 0.5em auto 1em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 41.625em) {
  #logo {
    margin: 0;
    position: absolute;
    top: 0.45em;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    top: 1.25em;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 12.6em;
  height: 3.65em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: auto;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 22.5em) {
  #contactinfo {
    margin: 0 0.5em 0 0;
    /* custom 360w */
  }
}
#contactinfo .phone {
  line-height: 3.08333333;
  font-size: 0.6em;
  width: auto;
  margin-right: 1.58333333em;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .phone:before {
  content: '';
  width: 1.16666667em;
  height: 3.08333333em;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  /* 	single quotes only || no hex values, only keyword colors work */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='14' height='37' viewBox='0 0 14 37'><path d='M13.48 21.826l-.591 2.56a.787.787 0 0 1-.773.614C5.71 25 .5 19.79.5 13.383c0-.372.253-.69.615-.773l2.56-.59a.798.798 0 0 1 .909.46l1.181 2.755a.794.794 0 0 1-.228.925L4.17 17.258a8.881 8.881 0 0 0 4.05 4.05l1.119-1.366a.793.793 0 0 1 .927-.229l2.755 1.182c.33.175.545.56.459.931z' fill='peru'/></svg>");
  background-size: cover;
}
#contactinfo .address {
  line-height: 3.08333333;
  font-size: 0.6em;
  text-transform: uppercase;
  width: auto;
  margin-right: 1.58333333em;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .address:before {
  content: '';
  width: 0.91666667em;
  height: 3.08333333em;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  /* 	single quotes only || no hex values, only keyword colors work */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='11' height='37' viewBox='0 0 11 37'><path d='M4.851 25.186C3.419 23.425.237 19.161.237 16.764a5.264 5.264 0 1 1 10.528 0c0 2.396-3.208 6.661-4.614 8.422a.83.83 0 0 1-1.3 0zm.649-6.667c.968 0 1.755-.787 1.755-1.755 0-.967-.787-1.754-1.755-1.754s-1.755.787-1.755 1.754c0 .968.787 1.755 1.755 1.755z' fill='peru'/></svg>");
  background-size: cover;
}
#contactinfo .email {
  line-height: 3.08333333;
  font-size: 0.6em;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .email:before {
  content: '';
  width: 1.16666667em;
  height: 3.08333333em;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  /* 	single quotes only || no hex values, only keyword colors work */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='14' height='37' viewBox='0 0 14 37'><path d='M12.417 13.5a1.251 1.251 0 0 1 .749 2.25L7.5 20a.834.834 0 0 1-1 0L.833 15.75a1.25 1.25 0 0 1 .75-2.25h10.834zM6 20.667a1.668 1.668 0 0 0 2 0l5.667-4.25v5.417A1.67 1.67 0 0 1 12 23.501H2a1.668 1.668 0 0 1-1.667-1.667v-5.417L6 20.667z' fill='peru'/></svg>");
  background-size: cover;
}
#contactinfo a {
  color: #004678;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #A46F3D;
}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 41.5625em) {
  .socialmedia {
    display: block;
    position: absolute;
    top: 0.6em;
    right: 55px;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .socialmedia {
    margin-right: 0.5em;
    display: inline-block;
    vertical-align: top;
    /* custom 666w */
  }
}
.socialmedia a {
  line-height: 2.22623345;
  font-size: 0.831em;
  color: #004678;
  height: 2.22623345em;
  width: 1.80505415em;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-shadow: -0.5em -0.1155em 0 rgba(164, 111, 61, 0), -0.1155em 0.5em 0 rgba(184, 115, 51, 0), 0.1155em -0.5em 0 rgba(206, 124, 47, 0), 0.5em 0.1155em 0 rgba(131, 89, 49, 0);
  transition: transform 0.33s linear, opacity 0.33s linear, text-shadow 0.33s linear, color 0.33s linear;
}
.socialmedia a:hover {
  color: #fff;
  text-shadow: -0.1089em -0.07623em 0 rgba(164, 111, 61, 0.5), -0.07623em 0.1089em 0 rgba(184, 115, 51, 0.5), 0.07623em -0.1089em 0 rgba(206, 124, 47, 0.5), 0.1089em 0.07623em 0 rgba(131, 89, 49, 0.5);
  z-index: 400;
  transform: scale(1.44);
  transition-timing-function: ease-in;
}
.socialmedia a .icon {
  position: relative;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  line-height: 1;
  font-size: 0.5em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  height: 3.7em;
  border-radius: 5px;
  padding: 0.85em 0 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a:nth-child(n+2) {
  margin-left: 3px;
}
#utilitynav a[class]:hover {
  background-color: #B0BDC6;
}
#utilitynav a.patientforms {
  width: 6em;
  background-color: #3F92D4;
}
#utilitynav a.coco {
  width: 10.6em;
  background-color: #CE7C2F;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #fff url(../images/slideshow/bg.jpg) no-repeat center center;
  background-size: cover;
  min-height: 41.9047619vw;
  /* adjust to match slideshow height from proof */
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    min-height: 0;
    height: 44em;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow #home-slideshow {
  width: 67.2vw;
  max-width: 67.2em;
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 64em) {
  #slideshow #home-slideshow {
    width: 100%;
    margin: 0 0 0 -17.2em;
    position: absolute;
    top: 4.75em;
    left: 50%;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
#slideshow .ssoverlay {
  letter-spacing: 0.08em;
  line-height: 0.92424242;
  font-size: 3.3em;
  text-transform: uppercase;
  color: #fff;
  width: 7.01515152em;
  padding: 1.15151515em 0 1.10606061em;
  background-color: rgba(0, 70, 120, 0.9);
  box-shadow: 0.75em 0.75em 0.75em rgba(0, 0, 0, 0.23);
  display: block;
  position: absolute;
  z-index: 420;
}
@media only screen and (max-width: 63.9375em) {
  #slideshow .ssoverlay {
    bottom: 1.5em;
    left: 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  #slideshow .ssoverlay {
    margin: 0 0 0 -9.72727273em;
    bottom: 2.42424242em;
    left: 50%;
    /* midTab 1024w */
  }
}
#slideshow .ssoverlay .trait {
  color: #3F92D4;
  display: block;
}
#slideshow .ssoverlay .trait.top {
  letter-spacing: 0.2em;
  line-height: 1.13793103;
  font-size: 0.43939394em;
}
#slideshow .ssoverlay .trait.bottom {
  letter-spacing: 0.26em;
  line-height: 0.96428571;
  font-size: 0.84848485em;
}
/* ==================================================================
	spot00
=================================================================== */
.spot00 {
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spot00 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  .spot00 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot00 {
    font-size: inherit;
    width: 7.25em;
    display: block;
    position: absolute;
    top: 3.9em;
    right: 0.5em;
    /* custom 980w */
  }
}
@media only screen and (min-width: 64em) {
  .spot00 {
    top: 10em;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot00 {
    position: fixed;
    z-index: 2900;
    /* desk 1300w */
  }
}
.spot00 a {
  color: #fff;
  height: 7.25em;
  border-radius: 0.5em;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 61.1875em) {
  .spot00 a {
    width: 33.33%;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot00 a {
    width: 100%;
    margin: 0 0 0.25em;
    /* custom 980w */
  }
}
.spot00 a:after {
  content: '';
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border-radius: 0.5em;
  border: 2px solid #fff;
  z-index: 2;
}
.spot00 a:nth-child(1) {
  background-color: #3F92D4;
}
.spot00 a:nth-child(1):hover {
  background-color: #CE7C2F;
}
.spot00 a:nth-child(2) {
  background-color: #035AA6;
}
.spot00 a:nth-child(2):hover {
  background-color: #B87333;
}
.spot00 a:nth-child(3) {
  background-color: #004678;
}
.spot00 a:nth-child(3):hover {
  background-color: #A46F3D;
}
.spot00 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
  z-index: 420;
}
.spot00 a .icon {
  width: 2.45em;
  height: 2.35em;
  margin: 0 auto 0.25em;
  display: block;
  transition: transform 0.33s ease-in-out;
}
.spot00 a h2.topic {
  line-height: 0.88235294;
  font-size: 0.85em;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: block;
}
.spot00 a h2.topic .trait {
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 0.82352941em;
  display: block;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	spot01
=================================================================== */
.spot01 {
  text-align: center;
  padding: 0;
  margin: 0;
  background-color: #B0BDC6;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spot01 {
    font-size: 2.5vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  .spot01 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot01 {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
.spot01 a {
  color: #fff;
  width: 50%;
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out;
}
.spot01 a:before,
.spot01 a:after {
  content: '';
}
.spot01 a:before {
  box-shadow: 0.75em 0.75em 0.75em rgba(0, 0, 0, 0.35);
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 1em;
  right: 1em;
  bottom: 1em;
  left: 1em;
  z-index: 3;
  transform: translate3d(0, 0, 0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 0;
}
.spot01 a:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
  background-image: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.99) 100%);
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.99) 100%);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.99) 100%);
}
.spot01 a:nth-child(odd) h2.topic {
  right: 1.11428571em;
  transform-origin: 100% 50%;
}
.spot01 a:nth-child(odd) h2.topic span {
  float: right;
  clear: right;
}
.spot01 a:nth-child(even) h2.topic {
  left: 1.11428571em;
  transform-origin: 0 50%;
}
.spot01 a:nth-child(even) h2.topic span {
  float: left;
  clear: left;
}
.spot01 a:nth-child(1):before {
  background-color: #004678;
}
.spot01 a:nth-child(2):before {
  background-color: #3F92D4;
}
.spot01 a:nth-child(3):before {
  background-color: #ABCEEB;
}
.spot01 a:nth-child(4):before {
  background-color: #035AA6;
}
@media only screen and (min-width: 81.25em) {
  .spot01 a {
    /* desk 1300w */
  }
  .spot01 a:hover:before {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  .spot01 a:hover:nth-child(odd) h2.topic {
    right: 50%;
    bottom: 50%;
    transform: translate3d(0, 50%, 0) scale(1.51428571);
  }
  .spot01 a:hover:nth-child(odd) h2.topic span {
    transform: translate3d(50%, 0, 0);
  }
  .spot01 a:hover:nth-child(even) h2.topic {
    left: 50%;
    bottom: 50%;
    transform: translate3d(0, 50%, 0) scale(1.51428571);
  }
  .spot01 a:hover:nth-child(even) h2.topic span {
    transform: translate3d(-50%, 0, 0);
  }
}
.spot01 a .decoration {
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.33s ease-in-out;
}
.spot01 a h2.topic {
  line-height: 0.91428571;
  font-size: 1.75em;
  text-transform: uppercase;
  display: block;
  position: absolute;
  bottom: 1.05714286em;
  z-index: 420;
  transition: transform 0.33s ease-in-out, right 0.33s ease-in-out, bottom 0.33s ease-in-out, left 0.33s ease-in-out;
}
.spot01 a h2.topic span {
  display: block;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
/* ===============================================
	spot02
=============================================== */
.spot02 {
  color: #004678;
  background-color: #fff;
}
@media only screen and (max-width: 41.5625em) {
  .spot02 {
    padding: 3em 0 0;
    /* custom opt-out 665oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    padding: 4em 0 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot02 .decoration {
  width: 80%;
  max-width: 58.7em;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0.5em 0.75em 0.5em rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 41.5625em) {
  .spot02 .decoration {
    margin: 0;
    /* custom opt-out 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot02 .decoration {
    margin: 0 1.5em 0 -18em;
    /* custom 666w */
  }
}
.spot02 .mod {
  width: 96%;
  max-width: 23.25em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 48em) {
  .spot02 .mod {
    text-align: left;
    width: auto;
    padding: 0;
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  line-height: 0.90909091;
  text-transform: uppercase;
  color: #004678;
  margin-bottom: 0.25974026em;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  .spot02 h2.topic {
    font-size: min( 10vw, 3.85em );
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot02 h2.topic {
    font-size: 3.85em;
    /* midTab 768w */
  }
}
.spot02 h2.topic .trait {
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: 0.68831169em;
  color: #035AA6;
  display: block;
}
.spot02 .info {
  line-height: 1.2;
  font-size: 0.75em;
  margin: 0 0 3.13333333em;
}
@media only screen and (max-width: 81.1875em) {
  .spot02 .info {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot02 .spotbtn {
  line-height: 0.94117647;
  font-size: 0.85em;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  width: 7.64705882em;
  height: 2.70588235em;
  border-radius: 5px;
  padding: 0.52941176em 0 0 0.52941176em;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
.spot02 .spotbtn.drb {
  background-color: #CE7C2F;
}
.spot02 .spotbtn.drp {
  background-color: #3F92D4;
}
.spot02 .spotbtn:nth-child(n+2) {
  margin-left: 0.35294118em;
}
.spot02 .spotbtn[class]:hover {
  background-color: #B0BDC6;
}
.spot02 .spotbtn .trait {
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 0.82352941em;
  display: block;
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
.torso {
  background: #fff url(../images/bd.jpg) no-repeat 50% 100%;
}
@media only screen and (max-width: 81.1875em) {
  .torso {
    background-size: cover;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 81.25em) and (max-width: 124.9375em) {
  .torso {
    background-size: auto auto;
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 125em) {
  .torso {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
.torso.sub {
  background-image: url(../images/bdsub.jpg);
  background-position: 50% 0;
}
/* ==================================================================
	subnav || aka subnav-outer || aka ipSub	
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #004678;
  padding: 2.7em 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 81.25em) {
  #subnav {
    padding-top: 2.7em;
    /* desk 1300w */
  }
}
#subnav p {
  letter-spacing: 0.06em;
  line-height: 1.23529412;
  font-size: 0.85em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
#subnav a {
  color: #004678;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 64em) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #CE7C2F;
  text-decoration: none;
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 64em) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
#bd {
  padding: 11px 0 4.9em;
  position: relative;
  z-index: 400;
}
#bd .container {
  max-width: 48em;
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 48em;
    width: 100%;
    float: left;
    /* midTab 780w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.8;
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
.home #bd {
  padding: 3em 0 0;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 4em 0 0;
    /* midTab 768w */
  }
}
.home #bd .container {
  max-width: 48em;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 48em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content .content-text {
    column-count: 2;
    column-gap: 2.5em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
/* ==================================================================
	blog content
=================================================================== */
@media only screen and (min-width: 48em) {
  .blog #bd #content {
    max-width: 31.5em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .blog #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
.mediaslider .cycle-slideshow .cycle-slide {
  padding: 0 5%;
}
.mediaslider .cycle-slideshow > div {
  font-size: 2.8em;
  color: #004678;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  transform: scale(1.44);
  opacity: 0.68;
}

    .mediaslider .cycle-slideshow > button.cycle-prev {
        text-align: left;
        left: 0;
    }

    .mediaslider .cycle-slideshow > button.cycle-next {
        text-align: right;
        direction: rtl;
        right: 0;
    }

    .mediaslider .cycle-slideshow > button {
        font-size: 2.8em;
        color: #94cddd;
        background: none;
        border: none;
        -webkit-appearance: none;
        position: absolute;
        top: 50%;
        z-index: 900;
        transform: translate3d(0, -50%, 0);
    }

/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* ===============================================
 		common treatments
=============================================== */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 48em) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 48em) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 81.25em) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.15em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #004678;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.95;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #004678;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #A46F3D;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 48em) {
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
    /* midTab 768w */
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 15em;
  margin: 0 auto 6%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 31.25%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class^='meet-dr-'] #sidebar,
body[class^='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR - */
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 4em 0;
  position: relative;
}
@media only screen and (max-width: 41.5625em) {
  .associationlogos {
    font-size: 3vw;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .associationlogos {
    font-size: inherit;
    /* custom 666w */
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .associationlogos a {
    margin: 0 1.75em;
    /* midTab 768w */
  }
}
.associationlogos a:hover {
  transform: scale(0.88);
  opacity: 0.5;
}
.associationlogos a.aao {
  width: 7.5em;
  height: 2.65em;
}
.associationlogos a.ada {
  width: 6.95em;
  height: 2.45em;
}
.associationlogos a.top {
  width: 10.1em;
  height: 2.7em;
}
.associationlogos a img,
.associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* ==================================================================
	spotlight bottom 
=================================================================== */
/* spot03  */
.spot03 {
  text-align: center;
  padding: 0;
  margin: 0;
  background: #928b88 url(../images/spotlight/spot03bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spot03 {
    font-size: 2.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  .spot03 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot03 {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot03 {
    background-attachment: fixed;
    background-position: 50% 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) and (max-width: 124.9375em) {
  .spot03 {
    background-size: auto auto;
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 96em) {
  .spot03 {
    /* custom 1536w */
  }
  .spot03:before,
  .spot03:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    width: auto;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
  }
  .spot03:before {
    margin-left: 38.4em;
    right: 0;
    left: 50%;
  }
  .spot03:after {
    margin-right: 38.4em;
    right: 50%;
    left: 0;
  }
}
.spot03 a {
  color: #fff;
  width: 33.33%;
  max-width: 25.6em;
  height: 30vw;
  max-height: 30em;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  transition: transform 0.33s ease-in-out;
}
.spot03 a.mid:before {
  width: 13em;
}
.spot03 a.mid:after {
  width: 14em;
}
.spot03 a:before,
.spot03 a:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.45);
  border: 0px solid #fff;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 0, 0) scaleX(300%) scaleY(300%);
  transition: background-color 0.33s ease-in-out, border-width 0.33s ease-in-out, border-radius 0.33s ease-in-out, transform 0.33s ease-in-out;
}
.spot03 a:before {
  width: 11em;
  height: 11.75em;
  z-index: 2;
}
.spot03 a:after {
  width: 12em;
  height: 12.75em;
  z-index: 1;
}
@media only screen and (min-width: 81.25em) {
  .spot03 a {
    /* desk 1300w */
  }
  .spot03 a:hover {
    color: #fff;
    z-index: 400;
  }
  .spot03 a:hover:before,
  .spot03 a:hover:after {
    border-radius: 0.5em;
    transition-duration: 0.33s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .spot03 a:hover:before {
    transform: translate3d(0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    border-width: 2px;
  }
  .spot03 a:hover:after {
    transform: translate3d(0, 0, 0);
    background-color: #3F92D4;
  }
}
.spot03 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
  z-index: 420;
}
.spot03 a .icon {
  width: 5.45em;
  height: 4.2em;
  margin: 0 auto 2em;
  transition: transform 0.33s ease-in-out;
}
.spot03 a h2.topic {
  line-height: 0.89655172;
  font-size: 1.45em;
  font-weight: 700;
  text-transform: uppercase;
}
.spot03 a h2.topic .trait {
  letter-spacing: 0.16em;
  line-height: 0.95652174;
  font-size: 0.79310345em;
  display: block;
}
/* spot04 */
.spot04 {
  padding: 5.55em 0 4em;
}
@media only screen and (min-width: 48em) {
  .spot04 {
    font-size: 1.5vw;
    /* midTab */
  }
}
@media only screen and (min-width: 64em) {
  .spot04 {
    font-size: inhherit;
    /* maxTab */
  }
}
.spot04 .cycle-slideshow {
  z-index: 410;
}
@media only screen and (max-width: 41.5625em) {
  .spot04 .cycle-slideshow {
    width: 300%;
    margin: 0 -75%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot04 .cycle-slideshow {
    width: 200%;
    margin: 0 -50%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  .spot04 .cycle-slideshow {
    width: 99em;
    margin: 0 -49.5em;
    left: 50%;
    /* maxTab */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot04 .cycle-slideshow {
    font-size: 1vw;
    /* desk 1300w */
  }
}
.spot04 .cycle-slide {
  color: #fff;
  padding: 0 0.75em;
}
@media only screen and (max-width: 47.9375em) {
  .spot04 .cycle-slide {
    text-align: center;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot04 .cycle-slide {
    text-align: left;
    /* midTab 768w */
  }
}
.spot04 .cycle-slide[data-seq="seq01"] .info {
  background-color: #4092d3;
}
.spot04 .cycle-slide[data-seq="seq02"] .info {
  background-color: #2b7fc6;
}
.spot04 .cycle-slide[data-seq="seq03"] .info {
  background-color: #0d68b4;
}
.spot04 .cycle-slide[data-seq="seq04"] .info {
  background-color: #0059a4;
}
.spot04 .cycle-slide[data-seq="seq05"] .info {
  background-color: #004c8c;
}
.spot04 .cycle-slide[data-seq="seq06"] .info {
  background-color: #04447d;
}
.spot04 .cycle-slide:hover[data-seq] .info {
  background-color: #CE7C2F;
}
.spot04 .cycle-slide:hover[data-seq] .decoration {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
  opacity: 0.5;
}
.spot04 .cycle-slide .info {
  padding: 0 0 2.3em;
  transition: background-color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot04 .cycle-slide .decoration {
  width: 100%;
  margin: 0 0 2.25em;
  display: block;
  transition: -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot04 .cycle-slide h2.topic {
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: normal;
  width: 78.66666667%;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  .spot04 .cycle-slide h2.topic {
    font-size: min( 4vw, 1.05em );
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot04 .cycle-slide h2.topic {
    font-size: 1.05em;
    /* midTab 768w */
  }
}
.spot04 .cycle-slide .voluble {
  line-height: 1.11111111;
  font-size: 0.9em;
  width: 78.66666667%;
  margin: 0.61111111em auto 0;
  white-space: normal;
}
@media only screen and (max-width: 81.1875em) {
  .spot04 .cycle-slide .voluble {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot04 .cycle-slide .voluble {
    display: block;
    /* desk 1300w */
  }
}
.spot04 .cycle-slide .fauxbtn {
  line-height: 3;
  font-size: 0.7em;
  text-align: center;
  text-transform: uppercase;
  width: 8.71428571em;
  height: 3em;
  margin: 0.45em 0 0;
  background-color: #CE7C2F;
  display: inline-block;
  vertical-align: top;
  transition: background-color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot04 .cycle-slide .fauxbtn:hover {
  background-color: #d89659;
}
.spot04 .controls > a {
  line-height: 1;
  font-size: 3.55em;
  color: #CE7C2F;
  max-width: 4.92957746em;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  position: absolute;
  top: 0;
  z-index: 420;
  transition: color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
@media only screen and (max-width: 41.5625em) {
  .spot04 .controls > a {
    width: 25%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot04 .controls > a {
    width: 17%;
    /* custom 666w */
  }
}
.spot04 .controls > a:hover {
  color: #a56326;
  opacity: 0.9;
}
.spot04 .controls > a.spotprev {
  right: 0;
}
.spot04 .controls > a.spotnext {
  left: 0;
}
.spot04 .controls > a .icon {
  width: 1em;
  height: 1em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  right: 0;
  left: 0;
}
/* spot05 */
.spot05 {
  padding: 3em 0;
  background: #7b8f95 url(../images/spotlight/spot05bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}
@media only screen and (min-width: 48em) {
  .spot05 {
    padding: 4em 0 4.9em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot05 {
    background-attachment: fixed;
    background-position: 50% 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) and (max-width: 124.9375em) {
  .spot05 {
    background-size: auto auto;
    /* range 1300w - 1999oo */
  }
}
.spot05 .mod {
  width: 100%;
  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
  padding: 5.3em 0 0;
  background-color: rgba(0, 70, 120, 0.9);
  display: block;
  position: relative;
}
.spot05 .cycle-slideshow {
  color: #fff;
  width: 80%;
  max-width: 37.3em;
  margin: 0 auto 3.35em;
  display: block;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .spot05 .cycle-slideshow {
    font-size: min(3.4vw, 1em);
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot05 .cycle-slideshow {
    /* midTab 768w */
  }
}
.spot05 .cycle-slideshow:hover {
  color: #ABCEEB;
}
.spot05 .cycle-slide {
  width: 100%;
  display: block;
}
.spot05 .testimony {
  line-height: 1.21875;
  font-size: 1.6em;
  margin-bottom: 0.59375em;
  display: block;
}
.spot05 .testifier {
  line-height: 1.5;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.spot05 .spotpager {
  width: 0.9em;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media only screen and (max-width: 47.9375em) {
  .spot05 .spotpager {
    left: 2%;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot05 .spotpager {
    left: 1em;
    /* midTab 768w */
  }
}
.spot05 .spotpager a {
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  margin: 0 0 0.3em 0;
  background-color: #3F92D4;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  display: block;
}
.spot05 .spotpager a:nth-last-child(1) {
  margin: 0;
}
.spot05 .spotpager a:hover {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.8;
}
.spot05 .spotpager a.cycle-pager-active {
  background-color: #fff;
}
.spot05 .links {
  width: 100%;
  margin-bottom: -0.85em;
  display: inline-block;
  vertical-align: bottom;
}
.spot05 .spotbtn {
  letter-spacing: 0.12em;
  line-height: 2.69230769;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  width: 8.30769231em;
  height: 2.69230769em;
  background-color: #CE7C2F;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
.spot05 .spotbtn:hover {
  background-color: #3F92D4;
}
.spot05 .spotlinks {
  line-height: 2.5;
  font-size: 0.7em;
  color: #fff;
  width: 13.57142857em;
  height: 2.5em;
  background-color: #CE7C2F;
  display: inline-block;
  vertical-align: top;
}
.spot05 .spotlinks:before {
  content: 'Leave a Review';
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}
.spot05 .spotlinks a {
  color: #fff;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot05 .spotlinks a:hover {
  transform: translate3d(0, 0, 0) scale(2);
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #e8eaed url(../images/footer/westlake-orthodontic-office.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #ft {
    font-size: 20px;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 81.25em) {
  #ft {
    background-size: auto 100% /* desk 1300w */;
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #CE7C2F;
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 3em 0 1em;
  background-color: rgba(3, 90, 166, 0.9);
  display: block;
}
@media only screen and (min-width: 48em) {
  #location {
    text-align: left;
    width: 50%;
    height: 28.5em;
    margin-left: 50%;
    padding: 4.3em 0 0;
    background-color: #035AA6;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  #location {
    margin-left: calc(50% + 9em);
    float: left;
    /* desk 1300w */
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  max-width: 31.7em;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  #location .mod {
    margin: 0 auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location .mod {
    margin: 0 auto 0 0;
    /* midTab 768w */
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1.5em;
  display: block;
}
#location .logo svg {
  width: 10.2em;
  height: 8.75em;
}
#location .address {
  line-height: 1.2;
  font-size: 0.75em;
  margin: 0 auto;
  display: block;
}
#location .address .marker {
  line-height: 1;
  font-size: 4.4em;
  margin-right: 4.65em;
  position: absolute;
  right: 50%;
  top: 3.66em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
  display: none;
}
@media only screen and (min-width: 48em) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
  }
}
#location .address .marker:before {
  color: #3F92D4;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  background-size: cover;
  position: absolute;
  z-index: -1;
  transition: transform 0.33s ease-in-out;
}
#location .address:hover .marker {
  transform: scale(2);
}
#location .phone {
  line-height: 1.2;
  font-size: 0.75em;
  margin: 0 0 0.66666667em;
  display: block;
}
#location .email {
  line-height: 1.5;
  font-size: 0.6em;
  font-weight: 700;
  text-transform: uppercase;
  color: #5da1da;
  text-decoration: underline;
  display: block;
}
#location .officehours {
  line-height: 1.28571429;
  font-size: 0.7em;
  margin: 3.14285714em 0 6em;
  display: block;
}
#location .officehours .trait {
  margin-right: 0.33em;
}
/* #links || aka ft-design-credit */
#links {
  text-align: center;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 1.5em;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.33333333em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  width: 100%;
  height: 5.1em;
  padding: 1.5em 0 0;
  margin: 0;
  background: #fff url(../images/footer/bg.jpg) no-repeat 0 0;
  display: block;
  position: relative;
}
@media only screen and (min-width: 64em) {
  #btt {
    background-position: 50% 0;
    /* midTab 1024w */
  }
}
a#backtotop {
  letter-spacing: 0.1em;
  line-height: 3.23076923;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  width: 9.61538462em;
  height: 3.23076923em;
  border-radius: 5px;
  background-color: #CE7C2F;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
a#backtotop:hover {
  background-color: #3F92D4;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #d4d4d4;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  border-radius: 1em;
  padding: 1rem;
  float: left;
  background: #A46F3D;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: 0.1em;
  font-size: small;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  height: 38px;
  border-radius: 5px;
  padding: 0 1.5em;
  background-color: #CE7C2F;
  border: 1px solid #CE7C2F;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
}
form button:hover {
  color: #fff;
  border-color: #035AA6;
  background-color: #035AA6;
}
form p {
  height: auto;
}
/* ===============================================
	chat widget resize for mobile use comfort
=============================================== */
#bc-chat-container {
  font-size: 0.8em !important;
}
.bc-minimize-state {
  width: 11.8em !important;
  height: 7.7em !important;
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #content,
  .layout-full-width #content {
    width: 100%;
    max-width: none;
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
	custom content
=============================================== */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  .before-after-image img {
    width: auto;
  }
  .speed-system img[alt='Speed Braces'] {
    display: block;
  }
  /* ===============================================
	PAGE SPECIFIC
=============================================== */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^='inovation-chart-'] {
    display: inline-block;
    max-width: 50%;
  }
  .in-ovation-before-after #content p {
    text-align: center;
    margin-bottom: 0;
  }
  .in-ovation-before-after .content-text h3 {
    text-align: center;
  }
  .in-ovation-before-after .content-text .img-left,
  .in-ovation-before-after .content-text .border {
    max-width: 44%;
    float: none;
    display: inline-block;
    margin: 2%;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 3.1em;
    margin-top: 0.65em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.1em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 0.65em 0 0;
    background: none;
    position: relative;
    vertical-align: top;
    float: none;
    clear: none;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    line-height: 2.85714286;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:after {
    bottom: 1.14285714em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.25em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 2.08333333;
    text-align: left;
    white-space: nowrap;
    height: 2.08333333em;
    width: 100%;
    padding: 0 2.08333333em;
    float: left;
    transition-duration: 0s;
  }
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  #main-nav ul li:hover ul {
    left: -1.25em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -1.25em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
