/* ===============================================
	.less VERSION 2.1
	
	cansler-landon
	Written by: Ryan Postell
		
	Sesame Communications - (c) 2022
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* color */
/* color || hyperlinks */
/* ===============================================
					fonts
=============================================== */
/* jost-500 - latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''), url('../fonts/jost-v13-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/jost-v13-latin-500.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* joan-regular - latin */
@font-face {
  font-family: 'Joan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/joan-v1-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/joan-v1-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* jost-regular - latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/jost-v13-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/jost-v13-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* jost-700 - latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''), url('../fonts/jost-v13-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/jost-v13-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* jost-italic - latin */
@font-face {
  font-family: 'Jost';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local(''), url('../fonts/jost-v13-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/jost-v13-latin-italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.fontH {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
}
.fontJ {
  font-family: 'Joan', Helvetica, Arial, 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;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ==================================================================
	main content-text font sizes
=================================================================== */
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
}
form button {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
}
body {
  font-size: 15px;
  color: #1f1f1f;
  overflow: hidden;
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  body {
    font-size: 1vw;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #003b5c;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #003b5c;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #003b5c;
  margin: 0 0 0.8em;
  text-rendering: auto;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  color: #1f1f1f;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-variant: small-caps;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 30em) {
  .sub h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1 {
  font-size: 10vw;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1:after {
  content: '';
  width: 4.5em;
  height: 2px;
  margin: 0.33333333em auto 0.7em;
  background: #003b5c;
  display: block;
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.5;
  font-size: 0.5em;
  text-transform: none;
}
.home h1 .trait.bottom {
  line-height: 1.5;
  font-size: 0.5em;
}
h2:not(.topic) {
  font-size: 1.6em;
}
h3:not(.topic) {
  font-size: 1.4em;
}
h4,
h5,
h6 {
  font-size: 1.2em;
}
/* ===============================================
	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;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #masthead {
    font-size: 1.1em;
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    /* maxTab 1024w */
  }
  #masthead:before {
    content: '';
    position: absolute;
    display: block;
    height: 7em;
    width: 100em;
    background: url("../images/spotlight/nav-bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
  }
}
@media only screen and (min-width: 64em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
  #masthead.ready:before {
    opacity: 0;
  }
  #masthead.ready #main-nav ul li a {
    color: #fff;
  }
  #masthead.ready #main-nav ul li.open > a[id],
  #masthead.ready #main-nav ul li.active > a[id],
  #masthead.ready #main-nav ul li:hover > a[id] {
    color: #fff;
    text-decoration: none;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
  }
  #masthead.ready #main-nav ul li.open > a[id]:before,
  #masthead.ready #main-nav ul li.active > a[id]:before,
  #masthead.ready #main-nav ul li:hover > a[id]:before {
    opacity: 1;
  }
  #masthead.ready #logo {
    transition: transform 0.33s ease-in-out;
    transform: scale(0.0000001);
  }
  #masthead.ready #logo .scroll {
    /*display: none;*/
  }
  #masthead.ready #logo .default {
    /*display: block;*/
  }
}


#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 64em) {
  #masthead .container {
    max-width: 60em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(0, 59, 92, 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: #003b5c;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition: color 0.33s ease-in-out;
  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;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
  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: #003b5c;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #003b5c;
}
#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) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 1);
  /*
		background-image: -moz-linear-gradient(top,  fade(#fff, 0) 0%, fade(#fff, 99%) 100%);
		background-image: -webkit-linear-gradient(top,  fade(#fff, 0) 0%,fade(#fff, 99%) 100%);
		background-image: linear-gradient(to bottom,  fade(#fff, 0) 0%,fade(#fff, 99%) 100%);
		*/
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.66666667;
  font-size: 0.75em;
  text-transform: uppercase;
  color: #1f1f1f;
  width: auto;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.025em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition: color 0.33s ease;
  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: #f76825;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background: #65696d;
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  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;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#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: #fff;
  margin-bottom: 0;
  background: #f76825;
  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;
}
@media only screen and (max-width: 63.9375em) {
  /* main-nav */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #003b5c;
  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 */
  }
}
#hd .container {
  max-width: 60em;
  padding-top: 0.5em;
}
@media only screen and (min-width: 41.625em) and (max-width: 63.9375em) {
  #hd .container {
    padding: 1.5em 55px 1.5em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 666px) {
  #hd .container {
    padding: 0.75em;
    padding-right: 4.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 64em) {
  #hd .container {
    padding: 0 ;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 1em;
  width: 9.1em;
  margin: 0em auto 1em;
  display: block;
  position: relative;
  padding-top: 0.75em;
}
@media only screen and (min-width: 666px) {
  #logo {
    position: absolute;
    top: 2em;
    left: 2%;
    padding: 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 1.25em;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transition: transform 0.67s ease-in-out;
    transform-origin: 0 100%;
    /* maxTab 1024w */
  }
}
#logo .scroll {
  /*display: block;*/
}
@media only screen and (min-width: 1300px) {
  #logo .scroll {
    /*display: none;*/
  }
}
#logo .default {
  /*display: none;*/
}
@media only screen and (min-width: 1300px) {
  #logo .default {
    /*display: block;*/
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 9.1em;
}
#logo .scroll {
  /*display: block;*/
}
@media only screen and (min-width: 64em) {
  #logo .scroll {
    /*display: block;*/
  }
}
#logo .default {
  /*display: none;*/
}
@media only screen and (min-width: 64em) {
  #logo .default {
    /*display: none;*/
  }
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
}
@media only screen and (min-width: 666px) {
  #contactinfo {
    width: auto;
    margin-right: 0em;
    margin-left: 5em;
  }
}
@media only screen and (min-width: 828px) {
  #contactinfo {
    margin: 0;
    width: auto;
    margin-right: 1em;
  }
}
@media only screen and (min-width: 64em) {
  #contactinfo {
    margin: 0;
  }
}
#contactinfo .address {
  line-height: 2.85714286em;
  font-size: 0.7em;
  color: #1a1a1a;
  width: auto;
  margin-right: 1em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 64em) {
  #contactinfo .address {
    margin-right: 2.85714286em;
    margin-left: 0em;
    color: #fff;
    position: relative;
  }
  #contactinfo .address:after {
    content: '';
    position: absolute;
    display: block;
    height: 2.85714286em;
    width: 1px;
    background: #999999;
    opacity: 1;
    top: 0;
    right: -1.42857143em;
  }
  #contactinfo .address:hover {
    text-decoration: underline;
  }
}
#contactinfo .address span {
  margin-right: 0.35714286em;
}
@media only screen and (min-width: 64em) {
  #contactinfo .address span {
    margin-right: 0.71428571em;
  }
}
#contactinfo .phone {
  line-height: 2.85714286em;
  font-size: 0.7em;
  color: #1a1a1a;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  margin-right: 1.42857143em;
}
@media only screen and (min-width: 64em) {
  #contactinfo .phone {
    color: #fff;
    position: relative;
    margin-right: 2.92857143em;
  }
  #contactinfo .phone:after {
    content: '';
    position: absolute;
    display: block;
    height: 2.85714286em;
    width: 1px;
    background: #999999;
    opacity: 1;
    top: 0;
    right: -1.42857143em;
  }
}
#contactinfo .social-link {
  font-size: 0.95em;
  color: #1a1a1a;
}
@media only screen and (min-width: 64em) {
  #contactinfo .social-link {
    color: #fff;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #contactinfo {
    margin-right: auto;
  }
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #utilitynav {
    display: inline-flex;
    justify-content: flex-end;
    width: auto;
  }
}
#utilitynav a {
  line-height: 3.33333333em;
  font-size: 0.6em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  letter-spacing: 0.05em;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a:hover {
  color: #859baa;
  background-color: #ffffff !important;
}
#utilitynav a.appointmentrequest {
  width: auto;
  padding: 0 1.91666667em;
  background-color: #808080;
  margin: 0 1px;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 64em) {
  #utilitynav a.appointmentrequest {
    margin: 0em;
  }
}
#utilitynav a.forms {
  width: auto;
  background-color: #ff641a;
  margin: 0;
  padding: 0 1.91666667em;
  padding-left: 1.83333333em;
}
#utilitynav .membership {
  font-size: 1em;
  height: 2em;
  line-height: 2em;
  position: relative;
  padding: 0;
}
#utilitynav .membership img {
  height: 100%;
  display: block;
  width: auto;
}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 0;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 63.9375em) {
  .socialmedia {
    display: flex;
    justify-content: center;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .socialmedia {
    width: 2.4em;
    margin: 0;
    display: block;
    position: absolute;
    right: 1em;
    top: 12.5em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  .socialmedia {
    position: fixed;
    /* desk 1300w */
  }
}
.socialmedia a {
  line-height: 3;
  font-size: 0.8em;
  color: #fff;
  height: 3em;
  width: 3em;
  border-radius: 50%;
  margin: 0 2px 0 0;
  background: rgba(0, 59, 92, 0.7);
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .socialmedia a {
    margin: 0 0 3px 0;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #fff;
  background: #003b5c;
  z-index: 400;
  transform: scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 52vw;
  position: relative;
  z-index: 400;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
}
#slideshow #welcomevid {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
#slideshow .ssoverlay {
  width: 100%;
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 420;
  transition: transform 0.66s ease-in-out;
  transform: scale(0.33) translateY(-450%);
}

@media only screen and (min-width: 48em) {
  #slideshow .ssoverlay {
   display: block;
  }
}
#slideshow .ssoverlay.ready {
  transform: scale(1) ;
}
#slideshow .ssoverlay img {
  width: 26em;
  height: 15em;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	spot01 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=================================================================== */
.spot01 {
  padding: 5em 0 2.5em;
  background: #f8f8f8;
}
.spot01 .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: min(3vw, 1em);
}
@media only screen and (min-width: 768px) {
  .spot01 .container {
    font-size: inherit;
    max-width: 50em;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .spot01 {
    padding-bottom: 9.95em;
    padding-top: 5em;
  }
}
.spot01 a {
  width: 14em;
  height: auto;
  position: relative;
  margin: 0 1em;
}
@media only screen and (max-width: 767px) {
  .spot01 a {
    margin-bottom: 7.5em;
  }
}
@media only screen and (min-width: 1024px) {
  .spot01 a {
    margin: 0;
  }
  .spot01 a picture {
    position: relative;
    height: 14em;
    display: block;
  }
  .spot01 a picture:before {
    content: '';
    position: absolute;
    display: block;
    height: 0%;
    width: 100%;
    background: #FF6419;
    opacity: 0.5;
    top: 0;
    left: 0;
    transition: height 0.3s;
    z-index: 10;
  }
  .spot01 a:nth-of-type(2) {
    margin: 0 0.75em;
  }
  .spot01 a:hover picture:before {
    height: 100%;
  }
  .spot01 a:hover h2 {
    border: 1px solid #FF6419;
    color: #fff;
    z-index: 11;
    background-color: #FF6419;
  }
  .spot01 a:hover h2 span {
    color: #fff;
  }
  .spot01 a:hover img {
    filter: grayscale(100%);
  }
}
.spot01 a img {
  width: 100%;
  height: auto;
  border: 1px solid #666666;
}
@media only screen and (min-width: 1024px) {
  .spot01 a img {
    transition: filter 0.3s;
  }
}
.spot01 a h2 {
  font-size: 1.2em;
  height: 3.33333333em;
  line-height: 0.875em;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #666666;
  position: absolute;
  bottom: -4.16666667em;
  left: 0;
  font-weight: 400;
  width: 100%;
  letter-spacing: 0.05em;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  background-color: #fff;
  margin: auto;
  transition: color 0.3s, background-color 0.3s;
}
/* ==================================================================
	
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to 'side oriented' [=
	
=================================================================== */
/* ==================================================================
	content || aka .interior-content
=================================================================== */
body.layout-full-width #bd:before,
body.sitemap #bd:before {
  display: none;
}
body.sitemap #content .content-text ul li:before {
  display: none;
}
#bd {
  padding: 3em 0;
  padding: 0 0 3em;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 5em 0 6em;
    /* midTab 780w */
  }
  #bd:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 28.25em;
    background: url("../images/spotlight/int-side.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: 0;
    left: 50%;
    margin-left: 21.8em;
  }
}
@media only screen and (min-width: 1300px) {
  #bd {
    padding-top: 10.95em;
  }
}
#bd .container {
  max-width: 60em;
}
#bd .sub h1 {
  font-size: 10vw;
  text-transform: capitalize;
  font-variant: small-caps;
}
@media only screen and (min-width: 30em) {
  #bd .sub h1 {
    font-size: 3.5em;
  }
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 40em;
    width: 66.66666667%;
    float: left;
    /* midTab 780w */
  }
  #content p {
    text-align: left;
  }
}
#content .content-text {
  line-height: 1.5;
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
#content .content-text ul li {
  list-style: none;
  position: relative;
}
#content .content-text ul li:before {
  content: '+';
  position: absolute;
  display: block;
  height: auto;
  width: auto;
  top: -0.1em;
  left: -1.45em;
  font-size: inherit;
}
#content .content-text a {
  color: #ff641a;
  text-decoration: none;
}
#content .content-text a:hover {
  text-decoration: underline;
}
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
.home #bd {
  padding: 4.45em 0 5em;
  position: relative;
  background: transparent;
}
.home #bd:before {
  display: none;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding-top: 6em;
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd {
    background: url("../images/spotlight/home-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 57.05em;
  }
}
@media only screen and (min-width: 1500px) {
  .home #bd:after {
    display: none;
  }
}
.home #bd .container {
  max-width: 60em;
}
.home #bd h1 {
  margin-bottom: 0;
  color: #1f1f1f;
  line-height: 1.14285714;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-variant: small-caps;
}
.home #bd h1:after {
  display: none;
}
@media only screen and (min-width: 30em) {
  .home #bd h1 {
    font-size: 3.5em;
  }
}
@media only screen and (min-width: 48em) {
  .home #bd h1 {
    text-align: left;
  }
}
.home #bd h1 span {
  display: block;
}
.home #bd h1 .top {
  line-height: 1.46666667;
  font-size: 0.28571429em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 0.3em;
}
.home #bd .line {
  width: 7.25em;
  height: 0.15em;
  background: #ff641a;
  margin: 2.1em auto 2.45em;
}
@media only screen and (min-width: 48em) {
  .home #bd .line {
    margin-left: 0;
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 35em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1200px) {
  .home #bd #content {
    float: left;
    max-width: 32.9em;
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
.home #bd #content ul li {
  list-style: none;
  position: relative;
}
.home #bd #content ul li:before {
  content: '+';
  position: absolute;
  display: block;
  height: auto;
  width: auto;
  top: -0.1em;
  left: -1.45em;
  font-size: inherit;
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: left;
    /* midTab 768w */
  }
}
.home #bd #content a {
  color: #ff641a;
}
.home #bd #content a:hover {
  text-decoration: underline;
}
.home-image {
  display: none;
}
body.home .home-image {
  display: none;
}
@media only screen and (min-width: 1200px) {
  body.home .home-image {
    display: block;
    position: absolute;
    top: -1em;
    height: 45em;
    left: 50%;
    width: 37em;
    margin-left: 8em;
  }
  body.home .home-image:before {
    content: '';
    position: absolute;
    display: block;
    height: 49.8em;
    width: 38.8em;
    background: url("../images/spotlight/shadow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: -1.25em;
    left: 50%;
    transform: translateX(-50%);
  }
  body.home .home-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    margin: 0;
    border: 0.4em solid #fff;
  }
}
/* ==================================================================
	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: #003b5c;
  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;
}
/* 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;
}
.staff-fix{
  max-width: 100%;
}
.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.07142857;
  font-size: 1.4em;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  color: #ff641a;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  letter-spacing: 0.025em;
  font-variant: small-caps;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.5;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #ff641a;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #003b5c;
}
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: 110%;
  margin: 0 -5% 3em;
  display: block;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 27.5%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
  width: 100%;
  max-width: 16.5em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
@media only screen and (min-width: 48em) {
  #hide-stock {
    margin-bottom: 2em;
    display: block;
    order: 1;
    /* midTab 768w */
  }
}
#hide-stock:before {
  content: '';
  position: absolute;
  display: block;
  height: 25.8em;
  width: 15em;
  background: url("../images/spotlight/int-shadow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  top: -2.75em;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 48em) {
  #hide-stock:before {
    width: 17.8em;
    top: -1em;
  }
}
#hide-stock img {
  border: 0.4em solid #fff;
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #hide-stock,
body[class^='meet-dr-'] #hide-stock,
body[class^='meet-doctor-'] #hide-stock {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
	SUBNAV || aka subnav-outer || aka ipSub || SIDE ORIENTED
=================================================================== */
#subnav {
  text-align: center;
  color: #fff;
  margin: 0 0 6%;
  background: #1f1f1f;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 47.94em) {
  #subnav {
    padding: 3em 10% 4em;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 48em) {
  #subnav {
    padding: 0em 0em 1.5em;
    order: 2;
    background: #4d4d4d;
    /* midTab 768w */
  }
}
#subnav h2.topic {
  line-height: 1.25;
  font-size: 1.4em;
  text-align: inherit;
  font-weight: 400;
  color: #fff;
  height: 1.25em;
  width: 100%;
  margin: 0 auto 2em;
  display: block;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  font-variant: small-caps;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #subnav h2.topic {
    line-height: 2.89285714em;
    height: 2.89285714em;
    background: #1f1f1f;
    text-align: left;
    padding-left: 1.42857143em;
    margin-bottom: 0.75em;
  }
}
#subnav p {
  line-height: 2.5;
  font-size: 0.6em;
  text-transform: uppercase;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  letter-spacing: 0.05em;
}
#subnav a {
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  margin: 0.2em 0.8em;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #subnav a {
    float: left;
    clear: left;
    margin: 0.2em 0;
    padding-left: 3.33333333em;
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav a {
    margin: 0;
    /* desk 1300w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #ff641a;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out;
  transform: scaleX(0);
  z-index: -1;
}
@media only screen and (min-width: 48em) {
  #subnav a:after {
    height: 100%;
  }
}
#subnav a:hover,
#subnav a.active {
  color: #fff;
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: scaleX(1);
}
/* END SIDEBAR - */
/* ==================================================================
	.spotlight
=================================================================== */
/* ===============================================
	spot04 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot02 {
  color: #fff;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  padding: 3em 0;
  margin-bottom: 6em;
}
@media only screen and (min-width: 1024px) {
  .spot02 {
    padding-top: 2.6em;
    padding-bottom: 0em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 {
    font-size: inherit;
    height: 29em;
    padding-bottom: 5em;
    /* desk 1300w */
  }
}
.spot02 .wrapper {
  width: 24em;
  height: 27em;
  position: relative;
  margin: auto;
  margin-bottom: 4em;
  z-index: 10;
}
@media only screen and (max-width: 470px) {
  .spot02 .wrapper {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .wrapper {
    transform: translateY(-5.6em);
    margin: 0;
    margin-right: 4.05em;
  }
  .spot02 .wrapper:before {
    content: '';
    position: absolute;
    display: block;
    height: 29.75em;
    width: 25.8em;
    background: url("../images/spotlight/shadow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    top: -0.75em;
    left: 50%;
    z-index: -10;
    transform: translateX(-50%);
  }
}
.spot02 .wrapper img {
  border: 0.4em solid #fff;
}
.spot02 .mod {
  width: 96%;
  max-width: 30em;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 64em) {
  .spot02 .mod {
    text-align: left;
    padding: 0;
    margin-top: 2.3em;
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  line-height: 1;
  font-size: 2.5em;
  font-weight: 400;
  color: #1f1f1f;
  font-family: 'Joan', Helvetica, Arial, sans-serif;
  font-variant: small-caps;
  margin: 0 0 0em;
}
@media only screen and (max-width: 470px) {
  .spot02 h2.topic {
    font-size: 10vw;
  }
}
.spot02 .line {
  width: 6em;
  height: 0.15em;
  background: #ff641a;
  margin: 1.65em auto 1.7em;
}
@media only screen and (min-width: 64em) {
  .spot02 .line {
    margin-left: 0;
  }
}
.spot02 .info {
  line-height: 1.5;
  font-size: 1em;
  margin: 0 0 2.6em;
  color: #1f1f1f;
  /*display: none;*/
}
@media only screen and (min-width: 1024px) {
  .spot02 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot02 .spotbtn {
  line-height: 5;
  font-size: 0.6em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  background: #ff641a;
  width: 12.5em;
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  position: relative;
  z-index: 420;
  margin: auto;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .spot02 .spotbtn {
    margin-left: 0;
  }
}
.spot02 .spotbtn:hover {
  color: #fff;
  -webkit-transition-duration: 0.33s;
  transition-duration: 0.33s;
}
.spot02 .spotbtn:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition-duration: 0.33s;
  transition-duration: 0.33s;
}
.spot02 .spotbtn:hover:after {
  opacity: 0;
  -webkit-transition-duration: 0.33s;
  transition-duration: 0.33s;
}
.spot02 .spotbtn:before,
.spot02 .spotbtn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.spot02 .spotbtn:before {
  background-color: #003b5c;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
#services-section {
  padding-top: 5em;
  padding-bottom: 5em;
  background: url("../images/spotlight/services.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 500px) {
  #services-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
#services-section .service {
  box-shadow: 1px 7px 15px 0px rgba(0, 0, 0, 0.25);
  padding: 1.75em 1em;
  border-radius: 0.5em;
  width: 15em;
  margin: auto;
  margin-bottom: 2em;
  overflow: hidden;
  position: relative;
  background: #fff;
}
#services-section .service:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 25em;
  background: #75cae8;
  transform: rotate(15deg) translate(-50%, 0%);
  transform-origin: center;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  z-index: -1;
}
#services-section .service h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.8em;
  line-height: 1.11111111em;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  font-variant: small-caps;
}
#services-section .service h2 span {
  display: block;
}
#services-section .service p {
  display: none;
}
#services-section .service a {
  display: block;
  margin: auto;
  background: #ff641a;
  color: #fff;
  text-transform: uppercase;
  line-height: 5em;
  width: 12.5em;
  text-align: center;
  font-size: 0.6em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 48em) {
  /*-- -------------------------- -->
	<---          Services          -->
	<--- -------------------------- -*/
  #services-section {
    padding: 0;
    background: url("../images/spotlight/services.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 32.5em;
    font-size: min(1.4vw, 1em);
    margin: 0;
    width: 100%;
  }
  #services-section .service {
    display: inline-block;
    height: 32.5em;
    position: relative;
    width: 20em;
    box-sizing: border-box;
    border-radius: 0;
    background: transparent;
    margin: 0;
    box-shadow: none;
  }
  #services-section .service:hover {
    cursor: pointer;
  }
  #services-section .service:hover:before {
    height: 100%;
    transition: 0.3s ease;
  }
  #services-section .service:hover h2 {
    margin-bottom: 2.02777778em;
  }
  #services-section .service:hover h2:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.08333333em;
    width: 2.22222222em;
    background: #fff;
    opacity: 1;
    bottom: -1em;
    left: 50%;
    transform: translateX(-50%);
  }
  #services-section .service:hover p {
    height: 11.11111111em;
    transition: 0.3s ease;
  }
  #services-section .service:hover a {
    visibility: visible;
    height: 5em;
    line-height: 5em;
  }
  #services-section .service:last-of-type {
    border-right: none;
  }
  #services-section .service:before {
    content: '';
    position: absolute;
    display: block;
    height: 0%;
    width: 100%;
    background: #ff641a;
    opacity: 0.9;
    top: 0;
    left: 0;
    transform: none;
    transition: 0.3s ease;
  }
  #services-section .service .content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
  }
  #services-section .service h2 {
    color: #fff;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
  }
  #services-section .service p {
    display: block;
    font-size: 0.9em;
    color: #fff;
    line-height: 1.38888889;
    overflow: hidden;
    height: 0;
    margin: auto;
    margin-bottom: 1.06666667em;
    transition: 0.3s ease;
    width: 17.44444444em;
  }
  #services-section .service a {
    line-height: 0;
    color: #fff;
    background-color: transparent;
    height: 0;
    transition: 0.3s ease;
    visibility: hidden;
    border: 1px solid #fff;
    letter-spacing: 0.05em;
  }
  #services-section .service a:hover {
    background: #fff;
    color: #ff641a;
  }
}
@media only screen and (min-width: 1024px) {
  #services-section {
    font-size: min(1vw, 1em);
  }
  #services {
    height: 40em;
  }
  #services .service {
    height: 40em;
  }
}
@media only screen and (min-width: 1500px) {
  #services-section {
    font-size: inherit;
    height: 35em;
  }
  #services-section .service {
    height: 35em;
  }
}
/*-- -------------------------- -->
<---           Logos            -->
<--- -------------------------- -*/
#logos {
  padding: 50px 0 0px;
  background: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
}
#logos:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}
#logos a {
  display: inline-block;
  width: 30%;
  margin: 0 15px;
  margin-bottom: 50px;
}
#logos a.one {
  width: 11.7em;
  height: 2.05em;
}
#logos a.two {
  width: 14.05em;
  height: 2.2em;
}
#logos a.three {
  width: 4.1em;
  height: 3.8em;
}
#logos a.four {
  width: 16.55em;
  height: 3em;
}
#logos a img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 48em) {
  #logos {
    padding: 50px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #logos a {
    margin: 1em;
  }
}
@media only screen and (min-width: 64em) {
  #logos {
    height: 10em;
    justify-content: space-between;
    gap: 0;
    max-width: 60em;
    margin: auto;
  }
  #logos a {
    transition: 0.3s ease;
    transform: translateY(-0.25em);
  }
  #logos a:hover {
    transform: scale(1.1);
    transition: 0.3s ease;
  }
}
@media only screen and (min-width: 1300px) {
  #logos {
    padding-top: 89px;
    padding-bottom: 79px;
  }
  #logos a {
    width: auto;
    margin: 0;
    margin-right: 50px;
  }
  #logos a:last-of-type {
    margin-right: 0;
  }
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 81.25em) {
  #ft {
    background-size: auto 100% /* desk 1300w */;
  }
}
@media only screen and (min-width: 64em) {
  #ft {
    background: url("../images/spotlight/map.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30em;
  }
}
#ft .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
@media only screen and (min-width: 64em) {
  #ft .bg {
    display: none;
  }
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 3em 0;
  background-color: rgba(102, 102, 102, 0.93);
  display: block;
}
@media only screen and (min-width: 48em) {
  #location {
    text-align: right;
    width: 50%;
    margin-left: 50%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  #location {
    padding-top: 3.05em;
    padding-bottom: 5em;
    height: 30em;
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  max-width: 14.8em;
  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-left: 5em;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #location .mod {
    margin-left: 7.55em;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1.6em;
  display: block;
}
#location .logo img {
  width: 13.85em;
}
#location .address {
  line-height: 1.5625;
  font-size: 0.8em;
  margin: 0 auto;
  display: block;
  color: #fff;
  margin-bottom: 2.0625em;
  letter-spacing: 0.025em;
}
#location .address .pin {
  display: none;
}
@media only screen and (min-width: 768px) {
  #location .address .pin {
    display: block;
    position: absolute;
    font-size: 1.25em;
    left: 50%;
    top: 14.2em;
    margin-left: -15.9em;
    width: 1.5em;
    height: 2em;
    transition: transform 0.3s;
  }
}
@media only screen and (min-width: 1024px) {
  #location .address .pin {
    top: 14em;
    margin-left: -15.8em;
  }
}
@media only screen and (min-width: 1300px) {
  #location .address .pin {
    top: 14em;
    margin-left: -15.8em;
  }
}
#location .address:hover {
  text-decoration: underline;
}
#location .address:hover .pin {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#location .phone {
  line-height: 1.25;
  font-size: 1em;
  display: block;
  color: #fff;
  margin-bottom: 0.06666667em;
  font-weight: bold;
}
#location .request {
  font-size: 0.6em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 15.83333333em;
  line-height: 4.08333333em;
  background-color: #ff641a;
  color: #fff;
  display: block;
  border: 1px solid #fff;
  margin: auto;
  margin-bottom: 2.08333333em;
  transition: background-color 0.3s, color 0.3s;
}
#location .request:hover {
  background-color: #fff;
  color: #ff641a;
}
#location .office {
  font-size: 0.7em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 2.71428571em;
}
#location .office span {
  margin-right: 0.71428571em;
}
#location .days {
  display: block;
  font-size: 0.7em;
  font-weight: 500;
  line-height: 1.28571429em;
  margin-bottom: 2.14285714em;
  letter-spacing: 0.05em;
}
#location .days span {
  display: block;
}
#location .social-link {
  font-size: 0.9em;
  color: #fff;
  transition: color 0.3s;
}
#location .social-link:hover {
  color: #ff641a;
}
/* ==================================================================
		#links || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #1f1f1f;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 5em;
    padding: 1.5em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
}
@media only screen and (min-width: 30em) {
  #links .util {
    line-height: 3.33333333;
    width: auto;
    margin: 0;
    float: left;
    /* mintab 480w */
  }
}
#links .util a {
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  text-decoration: underline;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 1.1em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.58333333em;
  height: 1.33333333em;
  margin-right: 0.66666667em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  transition: fill 0.33s ease-in-out;
}
a#sesame-link .sesameicon path.top {
  fill: #D6E03D;
}
a#sesame-link .sesameicon path.bottom {
  fill: #00a5e3;
}
a#sesame-link:hover .sesameicon path {
  fill: currentcolor;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 30em) {
  #btt {
    width: auto;
    float: right;
    /* mintab 480w */
  }
}
a#backtotop {
  line-height: 3.33333333;
  font-size: 0.6em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.3s;
  width: 3.33333333em;
  background-color: #ff641a;
  border-radius: 50%;
}
a#backtotop:hover {
  color: #ff641a;
  background-color: #fff;
}
/*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: #666;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #003b5c;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: small;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #003b5c;
  border: 1px solid #003b5c;
  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: #ff641a;
  background-color: #ff641a;
}
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-box,
  p.before-after-text {
    width: 100%;
  }
  .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.45em;
    margin-top: 1.55em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: none;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.45em;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: none;
  }
  #main-nav ul li.new-patients {
    margin-right: 28.5em;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.3em 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.66666667;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
    letter-spacing: 0.025em;
  }
  #main-nav ul li a[id]:after {
    display: block;
  }
  #main-nav ul li a[id]:before {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 0;
    top: 2.33333333em;
    left: 0;
  }
  #main-nav ul li.open > a[id],
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #ff641a;
    text-decoration: none;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
  }
  #main-nav ul li.open > a[id]:before,
  #main-nav ul li.active > a[id]:before,
  #main-nav ul li:hover > a[id]:before {
    opacity: 0;
  }
  #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.45em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 2.41666667;
    text-align: left;
    white-space: nowrap;
    height: 2.41666667em;
    width: 100%;
    padding: 0 2.41666667em;
    float: left;
    -webkit-transition-duration: 0s;
    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: 0em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: 0em;
    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;
  }
}
