/* ===============================================
	.less VERSION 2.0
	
	client_name
	
	Sesame Communications - (c) 2021
	Written by: Kristopher V
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* color */
/* color || hyperlinks */
/* mauve gradient + star decoration (subnav) — dark mauve fade, matches Patient Forms color */
#subnav,
#ft {
  background: linear-gradient(to bottom, #a9878d 0%, #e8dfe2 45%, #ffffff 100%);
}
#subnav {
  position: relative;
}
#subnav::before,
#subnav::after {
  content: '';
  position: absolute;
  width: 9em;
  height: 11em;
  background: url('../images/decor/mauve-stars.png') no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
#subnav::before {
  left: -0.75em;
  top: 12%;
  transform: translateX(-8%);
}
#subnav::after {
  right: -0.75em;
  top: 8%;
  transform: scaleX(-1) translateX(-8%);
}
@media only screen and (min-width: 48em) {
  #subnav::before,
  #subnav::after {
    width: 12em;
    height: 14em;
  }
  #subnav::before {
    left: max(-1.5em, calc((100% - 55em) / 2 - 11em));
    top: 10%;
    transform: none;
  }
  #subnav::after {
    right: max(-1.5em, calc((100% - 55em) / 2 - 11em));
    top: 6%;
    transform: scaleX(-1);
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav::before,
  #subnav::after {
    width: 16em;
    height: 18em;
  }
  #subnav::before {
    left: max(-2em, calc((100% - 55em) / 2 - 14em));
    top: 8%;
  }
  #subnav::after {
    right: max(-2em, calc((100% - 55em) / 2 - 14em));
    top: 4%;
  }
}
/* ===============================================
					fonts
=============================================== */
@font-face {
  font-family: 'Rosehot';
  src: url('/assets/fonts/Rosehot.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/Quicksand_Book.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/Quicksand_Bold.otf') format('opentype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
.fontH {
  font-family: 'Rosehot', sans-serif;
  font-size-adjust: 0.58;
}
/* ===============================================
					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;
}
.ob {
  font-style: oblique;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.supp {
  font-variant: small-caps;
}
.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;
}
.near {
  clear: none;
}
.wimp {
  width: 100%!important;
}
.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;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.hide {
  display: none;
}
.obliterate {
  line-height: 0;
  font-size: 0;
  text-indent: -999em;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  display: none;
  visibility: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  display: inline-block;
  float: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.trans {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.fade {
  opacity: 0.5;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.vertical-align-nul {
  position: relative;
  top: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 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);
  -webkit-filter: grayscale(100%);
  filter: gray;
  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: 'Quicksand', Arial, sans-serif;
  font-size-adjust: 0.52; /* match previous Raleway x-height */
}
form button {
  font-family: 'Rosehot', sans-serif;
  font-size-adjust: 0.58;
}
body {
  font-size: 15px;
  color: #232323;
  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: #a9878d;
  text-decoration: underline;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #8f7177;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #a9878d;
  margin: 0 0 0.8em;
  text-rendering: auto;
  color: #232323;
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
.topic,
#main-nav a,
#utilitynav a,
#subnav h1,
#subnav a,
#links .util a,
#btt a,
a#backtotop,
form button {
  font-family: 'Rosehot', sans-serif;
  font-size-adjust: 0.58;
}
h1 {
  font-size: 10vw;
  font-weight: 600;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 2.5em;
    /* mintab 480w */
  }
}
.home h1 {
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
  margin: 0 0 0.7em;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 2.15em;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 63.9375em) {
  .home h1 {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .home h1 {
    /* midTab 1024w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  color: #a9878d;
  letter-spacing: normal;
  line-height: 1;
  font-family: 'Rosehot', cursive;
  font-size: 0.9em;
  text-transform: none;
}
h2:not(.topic) {
  font-size: 1.66666667em;
}
h3:not(.topic) {
  font-size: 1.38888889em;
}
h4 {
  font-size: 1.16666667em;
}
h5 {
  font-size: 1.11111111em;
}
h6 {
  font-size: 1.05555556em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 50em;
}
/* ===============================================
	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: 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(169, 135, 141, 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: #a9878d;
  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: #a9878d;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #a9878d;
}
#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, 0.9);
  /*
		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] {
  letter-spacing: 0.1em;
  line-height: 3.07692308;
  font-weight: 500;
  font-size: 0.53em;
  text-transform: capitalize;
  color: #232323;
  width: 100%;
  height: 3.07692308em;
  margin: 0;
  padding: 0;
  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: #a9878d;
  background-color: #eeeeee;
  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: rgba(35, 35, 35, 0.89);
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  letter-spacing: normal;
  line-height: 3.07692308;
  font-size: 0.65em;
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 3.07692308em;
  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;
  margin-bottom: 0;
  background: #a9878d;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  -webkit-animation: flyinmobilenav 0.4s 1;
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  -webkit-animation: none;
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  -webkit-transition-duration: 0.33s;
  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: #a9878d;
  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: 1.6em 0 1.2em;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 9.9em;
  margin: 0.5em auto 1em;
  display: block;
  position: relative;
}
@media only screen and (min-width: 41.625em) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 0.6em;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 9.9em;
  height: 5.9em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    margin: 0 0.7em 0 0;
    /* mintab 480w */
  }
}
#contactinfo .divider {
  display: inline-block;
  margin: 0 0.7em 0 0.5em;
  background-color: #c0c0c0;
  width: 1px;
  height: 29px;
  vertical-align: middle;
  opacity: 0;
}
@media only screen and (min-width: 48em) {
  #contactinfo .divider {
    opacity: 1;
    height: 29px;
  }
}
#contactinfo .phone {
  font-weight: bold;
  font-size: 0.8em;
  color: #1f1f1f;
  display: inline-block;
  vertical-align: middle;
}
#contactinfo .phone i {
  color: #a9878d;
  margin-right: 0.2em;
}
#contactinfo a {
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #a9878d;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: middle;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #utilitynav {
    display: inline-block;
  }
}
@media only screen and (min-width: 48em) {
#utilitynav .hide-desk{
  display: none;
}
}
#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;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav a {
  line-height: 1;
  font-size: 0.6em;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0.95em 1.55em 0.7em;
  background: #a9878d;
  border-radius: 5em;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
  margin: .2em;
}
#utilitynav a:hover {
  color: #fff;
  transform: scale(0.9);
  background-color: #a9878d;
}
#utilitynav a.appointmentrequest {
  background-image: linear-gradient(340deg, #666666, #989898);
}
#utilitynav a.patient-login {
  background-image: linear-gradient(340deg, #232323, #3f3f3f);
}
#utilitynav a.hd-patient-forms {
  background-image: linear-gradient(340deg, #a9878d, #a9878d);
  padding: 0.86em 1.65em 0.8em;
  margin-right: 0;
}



#utilitynav .coco {
  /*line-height: 13px;*/
  /*line-height: 30px;*/
  /*font-size: 12px;*/
  /*color: #fff;*/
  /*padding: 6px 0 11px;*/
  /*padding: 0.5em 0;*/
  /*background: #54078B;*/
  /*width: 100%;*/
  /*display: block;*/
  /*-webkit-transition-duration: 0.3s;*/
  /*-moz-transition-duration: 0.3s;*/
  /*-o-transition-duration: 0.3s;*/
  /*-ms-transition-duration: 0.3s;*/
  /*transition-duration: 0.3s;*/
  line-height: 1;
  font-size: 0.6em;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  /*padding: 2.95em 2.55em 2.7em;*/
  /* padding: 0.95em 1.55em 1.7em; */
  /*background: #6d18ab url(../images/spotlight/spot02dec03.jpg) center center no-repeat;*/

  border-radius: 5em;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
  /*margin: 0 0.07em;*/
}



#utilitynav .coco:hover {
  /*background: rgba(0, 28, 47, 0.76);*/
}
#utilitynav .coco:hover .icon {
  animation-name: pulse_custom;
}
#utilitynav .coco .icon {
  /*line-height: 30px;*/
  /*font-size: 16px;*/
  display: inline-block;
  margin-right: 0.25em;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}
#utilitynav .coco .trait {
  font-weight: 700;
}


@media only screen and (min-width: 64em) {

  #utilitynav .coco {
    padding: 2.95em 2.55em 2.7em;
    background: #a9878d url(../images/spotlight/spot02dec03.jpg) center center no-repeat;
      background-size: 75%;
  }


  #utilitynav .coco {
    line-height: 13px;
    /*width: 122px;*/
    /*height: 78px;*/
    /*padding: 6px 0 11px;*/
    margin: 0 0 0 auto;
    position: fixed;
    right: 0;
    top: 155px;
    border-radius: 1.5em;
  }
  #utilitynav .coco .trait {
    display: block;
  }
  #utilitynav .coco .icon{
    display: none
  }

}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  height: auto;
  padding: 0;
  position: relative;
  z-index: 300;
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (max-width: 63.9375em) {
  .socialmedia {
    display: inline-block;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .socialmedia {
    /* maxTab 1024w */
  }
}
.socialmedia a {
  line-height: 1;
  font-size: 0.75em;
  color: #1f1f1f;
  margin: 0 2px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .socialmedia a {
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #a9878d;
  z-index: 400;
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  /*background: #000;*/
  /*min-height: 38.0952381vw;*/
  /* adjust to match slideshow height from proof */
  position: relative;
  z-index: 400;
}

#slideshow video {
  width: 100%;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 96%;
    margin-top: 0;
    margin: 0 auto;
    top: 0;
    /* max-width: 75em; */
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #slideshow {
    max-width: 75em;
    margin-top: 144px;
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  #slideshow #home-slideshow {
    position: relative;

    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
@media only screen and (min-width: 81.25em) {
  #slideshow #home-slideshow {
    margin-top: 5em;
  }
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
.spotlight.top {
  z-index: 900;
  background: #fff;
}
/* ==================================================================
	spot01 || Meet Doctor
=================================================================== */
.spot01 {
  color: #fff;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 41.5625em) {
  .spot01 {
    padding: 3em 0;
    /* custom opt-out 665oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot01 {
    font-size: min(1.4vw, 1em);
    padding: 3.5em 0 4em;
    /* custom 666w */
  }
}
@media only screen and (min-width: 48em) {
  .spot01 {
    padding: 7.5em 0 4.5em;
  }
}
@media only screen and (min-width: 81.25em) {
  .spot01 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot01 .decoration {
  width: 18.35em;
  height: 25.05em;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 41.5625em) {
  .spot01 .decoration {
    margin: 0 0 1em;
    /* custom opt-out 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot01 .decoration {
    margin: 0 1.84em -10em 0;
    /* custom 666w */
  }
}
.spot01 .mod {
  width: 18.35em;
  height: 25.05em;
  padding: 2.47em 2.7em 2.47em 2.7em;
  display: inline-block;
  vertical-align: top;
  background-image: linear-gradient(#a9878d, #a9878d);
}
.spot01 .mod hr {
  background-color: #fff;
  margin: 0.75em 0 2em;
}
@media only screen and (min-width: 41.625em) {
  .spot01 .mod {
    margin: 0 0 -10em 0;
  }
}
@media only screen and (min-width: 48em) {
  .spot01 .mod {
    text-align: left;
    /* midTab 768w */
  }
}
.spot01 h2.topic {
  line-height: 1.04347826;
  font-size: 1.15em;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.2em;
  color: #232323;
  margin: 0 0 1.88em;
  position: relative;
}
.spot01 h2.topic:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -4.8em;
  margin: 0 auto;
  width: 1px;
  height: 4.05em;
  background-color: #878787;
  display: none;
}
@media only screen and (min-width: 48em) {
  .spot01 h2.topic:before {
    display: block;
  }
}
@media only screen and (min-width: 81.25em) {
  .spot01 h2.topic:before {
    height: 81px;
  }
}
.spot01 .info {
  line-height: 1.86666667;
  font-size: 0.8em;
  margin: 0 0 0;
  font-weight: 300;
}
@media only screen and (min-width: 81.25em) {
  .spot01 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot01 .spotbtn {
  /*font-family: 'Sacramento', cursive;*/
  line-height: 1.2;
  font-size: 1.25em;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
.spot01 .spotbtn i {
  margin-left: 0.35em;
  font-size: 0.75em;
}
.spot01 .spotbtn:before {
  content: '\f324';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  font-size: 0.75em;
  font-weight: 100;
  right: -1em;
  top: 0.15em;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.spot01 .spotbtn:after {
  content: '\f324';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  font-size: 0.75em;
  font-weight: 100;
  right: -2em;
  top: 0.15em;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.spot01 .spotbtn:hover:before,
.spot01 .spotbtn:hover:after {
  opacity: 1;
}
.spot01 .spotbtn:hover:after {
  transition-delay: 0.3s;
}
.spot01 .spotbtn:active {
  transition: none;
}
.spot01 #spot01dec {
  position: relative;
}
.spot01 #spot01dec:before {
  content: '';
  width: 18.35em;
  height: 25.05em;
  position: absolute;
  left: 0;
  z-index: 10;
  background: url('../images/spotlight/spot01dechover.jpg') center no-repeat;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.spot01 #spot01dec.spot01dechover:before {
  opacity: 1;
}
/* ===============================================
	spot02 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
div.spot02 {
  text-align: center;
  padding: 2em 0 3em;
  margin: 0;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  div.spot02 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  div.spot02 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  div.spot02 {
    font-size: inherit;
    padding: 5em 0;
    /* custom opt-out 979oo */
  }
}
div.spot02 a {
  color: #fff;
  width: 8.65em;
  border-radius: 50%;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  div.spot02 a {
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  div.spot02 a {
    margin: 0 1em;
    /* midTab 768w */
  }
}
div.spot02 a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(44, 44, 44, 0.5);
  z-index: 1;
}
div.spot02 a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: scale(1.23);
  transform: scale(1.23);
  z-index: 400;
}
div.spot02 a .decoration {
  width: 100%;
  border-radius: 50%;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
div.spot02 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 51.9%;
  left: 0;
  z-index: 5;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
div.spot02 a .icon {
  width: 2em;
  margin: 0 auto 1em;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
div.spot02 a h2.topic {
  line-height: 1.1;
  font-size: 1.05em;
  font-weight: bold;
  color: currentcolor;
  width: 100%;
  display: block;
}
div.spot02 a h2.topic .trait {
  font-weight: 700;
  font-style: italic;
}
@media only screen and (min-width: 48em) {
  div.spot02 {
    position: absolute;
    right: 2.9em;
    top: 1.35em;
    z-index: 900;
    background: transparent;
  }
  div.spot02 .container {
    padding-right: 2.85em;
  }
  div.spot02 a {
    text-align: center;
    display: block;
    margin: 1.2em 0;
  }
}
/* ==================================================================
	
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to 'side oriented' [=
	
=================================================================== */
body.invisalign-treatment #subnav .container #subnav-wrap,
body.botox #subnav .container #subnav-wrap {
  display: none;
}
body.layout-section-early-intervention #bd {
  /* padding-top: 17em; */
}
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #000;
  padding: 2em 0;
  z-index: 999;
}
#subnav .container {
  max-width: 55em;
}
#subnav .container > header,
#subnav .container > #subnav-wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 48em) {
  #subnav {
    padding-top: 7.9em;
    height: 21.2em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav {
    padding-top: 7.9em;
    margin-top: 7em;
    height: 21.2em;
    /* desk 1300w */
  }
}
#subnav .container #subnav-wrap {
  background-color: rgba(35, 35, 35, 0.8);
  padding: 2em 2.5em;
}
@media only screen and (min-width: 48em) {
  #subnav .container #subnav-wrap {
    margin-bottom: -18em;
  }
}
#subnav h1 {
  text-align: center;
  margin: 0 0 0.68em;
}
@media only screen and (min-width: 48em) {
  #subnav h1 {
    max-width: 50%;
  }
}
#subnav p {
  line-height: 1.66666667;
  font-size: 0.75em;
  margin: 0;
  padding: 0;
}
#subnav a {
  color: #fff;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}
@media only screen and (min-width: 64em) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:hover,
#subnav a.active {
  opacity: 0.6;
  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 */
  }
}
@media only screen and (min-width: 48em) {
  #subnav {
    text-align: left;
  }
  #subnav h1 {
    padding-left: 1em;
    text-align: left;
  }
  #subnav a {
    margin: 0.2em 0;
    display: block;
  }
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 11em 0 3.31em;
    /* midTab 780w */
  }
}
#bd .container {
  max-width: 41.75em;
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    width: 100%;
    /* midTab 780w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.88888889;
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 0.9em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
.home #bd {
  padding: 3em 0;
  background: linear-gradient(to bottom, #a9878d 0%, #e8dfe2 45%, #ffffff 100%) center no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 12.5em 0 7.75em;
    /* midTab 780w */
  }
}
.home #bd .container {
  max-width: 55em;
  background-color: transparent;
  padding: 1em;
}
@media only screen and (min-width: 48em) {
  .home #bd .container {
    padding: 7.75em 0 7.75em 5em;
    position: relative;
  }
  .home #bd .container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 12vw;
    width: 1px;
    height: 100%;
    background-color: #878787;
  }
}
@media only screen and (min-width: 49em) {
  .home #bd .container:before {
    right: 7.15em;
  }
}
@media only screen and (min-width: 64em) {
  .home #bd .container {
    padding: 8em 0 5.8em 8.25em;
  }
  .home #bd .container:before {
    right: 7.15em;
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 31.75em;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-left: auto;
    margin-right: auto;
    margin-left: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content .content-text {
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.9em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
/* ==================================================================
	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: #a9878d;
  position: absolute;
  top: 50%;
  z-index: 900;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  -webkit-transition: transform 0.35s ease, opacity 0.35s ease;
  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 {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.68;
}
/* ===============================================
 		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;
  }
}
/* comment line below if patient login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* 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.5;
  font-size: 1.66666667em;
  font-weight: 600;
  text-decoration: none;
  color: #232323;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.88888889;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #232323;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #a9878d;
}
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: 27.35em;
  margin: 0 auto 6%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 65.50898204%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  background: none;
  background-color: transparent !important;
  position: relative;
  width: 20em;
  margin: 0 auto;
  display: none;
}
@media only screen and (min-width: 48em) {
  #hide-stock {
    position: absolute;
    top: -3.8em;
    right: 0;
    display: block;
    width: 27.35em;
    z-index: 2;
    /* midTab 768w */
  }
}
.stock {
  width: 100%;
  position: relative;
}
body.meet-dr-gina-domm #hide-stock {
  display: block;
  margin-top: 2em;
}
@media only screen and (min-width: 48em) {
  body.meet-dr-gina-domm #hide-stock {
    margin-top: 0;
  }
}
/* ===============================================
	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;
}
/* ==================================================================
	.spotlight
=================================================================== */
/* ===============================================
	spot03 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION REVERSE
=============================================== */
.spot03 {
  font-size: 3vw;
  padding: 3em 0;
  background-color: #fff;
}
@media only screen and (min-width: 30em) {
  .spot03 {
    font-size: 2.3vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot03 {
    font-size: inherit;
    /* custom 666w */
  }
}
@media only screen and (min-width: 48em) {
  .spot03 {
    padding: 8.05em 0 5.6em;
    /* midTab 768w */
  }
}
.spot03 h2.topic {
  margin-bottom: 1.59em;
  color: #232323;
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  position: relative;
}
.spot03 h2.topic:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -5.1em;
  margin: 0 auto;
  width: 1px;
  height: 81px;
  background-color: #878787;
  display: none;
}
@media only screen and (min-width: 48em) {
  .spot03 h2.topic:before {
    display: block;
  }
}
.spot03 .cycle-slideshow {
  overflow: visible !important;
  margin-left: -5em;
}
.spot03 {
  --mauve-darker: #8f7177;
  --mauve-dark: #a9878d;
  --mauve-less-dark: #c1a8ad;
}
.spot03 a {
  color: var(--mauve-darker);
  width: 13.45em !important;
  height: 16.65em;
  margin: 0.2%;
  padding: 1.7em 0 0;
  background-color: #fff;
  border-top: 0.28em solid var(--mauve-dark);
  position: relative;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
}
.spot03 a:nth-child(3n + 1) {
  color: var(--mauve-darker);
  border-top-color: var(--mauve-darker);
}
.spot03 a:nth-child(3n + 2) {
  color: var(--mauve-dark);
  border-top-color: var(--mauve-dark);
}
.spot03 a:nth-child(3n + 3) {
  color: var(--mauve-less-dark);
  border-top-color: var(--mauve-less-dark);
}
.spot03 a:hover {
  -webkit-transform: scale(1.23);
  transform: scale(1.23);
  background-color: var(--mauve-dark);
  color: #fff;
  z-index: 400;
}
.spot03 a .decoration {
  width: 7.2em;
  margin: 0 auto 1em;
  filter: hue-rotate(-16deg) saturate(0.72);
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
.spot03 a figure {
  margin-bottom: 0.6em;
}
.spot03 a h3.topic {
  line-height: 1.15;
  font-size: 1em;
  text-align: center;
  color: currentcolor;
  width: 100%;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
}
.spot03 a h3.topic .trait {
  color: currentcolor;
  font-size: 0.75em;
}
/* ===============================================
	spot04 || Testimonials
=============================================== */
.spot04 {
  padding: 1em 0 2em;
  background-color: #f4f4f5;
}
@media only screen and (min-width: 48em) {
  .spot04 {
    padding: 5.1em 0 3.7em;
    /* midTab 768w */
  }
}
.spot04 .cycle-slideshow {
  color: #a9878d;
  width: 96%;
  max-width: 60em;
  margin: 0 auto;
  display: block;
}
.spot04 .cycle-slideshow:hover {
  color: #a9878d;
}
.spot04 .cycle-slide {
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
.spot04 .slide-card {
  background: #fff;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.19);
  width: 23.25em;
  height: 12.25em;
  display: block;
  text-align: left;
  padding: 1.36em 2.5em 0 1.45em;
  margin: 1em auto;
}
@media only screen and (min-width: 53em) {
  .spot04 .slide-card {
    margin: 0 0.65em;
    display: inline-block;
  }
}
.spot04 .slide-card img {
  height: 2.7em;
  width: 2.7em;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.6em;
}
.spot04 .slide-card div div {
  display: inline-block;
  vertical-align: middle;
}
.spot04 .five-stars {
  margin: 0.45em 0 0.18em;
  display: block;
}
.spot04 .testimony {
  line-height: 1.65;
  font-size: 0.8em;
  display: block;
  color: #3a3a3b;
  font-weight: 600;
}
.spot04 .testimony span {
  font-size: 0.9em;
  color: #a9878d;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 0.3em;
}
.spot04 .testifier {
  color: #040d20;
  line-height: 1;
  font-size: 1.05em;
  font-weight: 700;
  display: block;
}
.spot04 .testimony-date {
  color: #232323;
  line-height: 1;
  font-size: 0.75em;
  font-weight: 600;
}
.spot04 i {
  color: #f5b92b;
  font-size: 0.9em;
  letter-spacing: 0.07em;
  margin: 0.5em 0;
}
.spot04 .controls {
  line-height: 0;
  width: 100%;
  max-width: 60em;
  margin: 2em auto 0;
  display: block;
}
@media only screen and (min-width: 48em) {
  .spot04 .controls {
    text-align: right;
    margin: 0 auto;
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot04 .controls > a {
  line-height: 2.75;
  font-size: 0.9em;
  text-align: center;
  color: #232323;
  width: 2.75em;
  height: 2.75em;
  border-radius: 50%;
  border: 1px solid #232323;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot04 .controls > a:hover {
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.5;
}
.spot04 .controls > a.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 48em) {
  .spot04 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot04 .controls > a.next {
  padding-left: 0.1em;
}
.spot04 .review-btn {
  color: #fff;
  font-size: 0.8em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.85em 2.15em;
  display: inline-block;
  background-image: linear-gradient(102deg, #666, #989898);
  margin-top: 2.25em;
  transition: 0.3s ease-in-out;
}
.spot04 .review-btn i {
  color: #fff;
  font-size: 1.35em;
  margin-left: 0.3em;
}
.spot04 .review-btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 10px rgba(102, 102, 102, 0.5);
}
/* ===============================================
	spot05 ||Social section
=============================================== */
.spot05 {
  text-align: center;
  padding: 2em;
  background: #fff;
}
@media only screen and (min-width: 48em) {
  .spot05 {
    padding: 6.75em 0 13.3em;
  }
}
.spot05 h2.topic {
  color: #a9878d;
  font-weight: 500;
  font-size: 5.35em;
  line-height: 1.2;
  font-size-adjust: none;
  padding: 0.12em 0.06em 0.06em;
  overflow: visible;
  background: -webkit-linear-gradient(125deg, #a9878d, #a9878d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.225em;
}
.spot05 .mod {
  max-width: 21.5em;
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
@media only screen and (min-width: 48em) {
  .spot05 .mod {
    text-align: right;
    margin: 0;
    margin-right: 2.9em;
    margin-left: -2.8em;
  }
}
.spot05 .socialmedia {
  line-height: 0;
  text-align: inherit;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 63.9375em) {
  .spot05 .socialmedia {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .spot05 .socialmedia {
    margin: 0;
    display: block;
    right: unset;
    top: unset;
    /* maxTab 1024w */
  }
}
.spot05 .socialmedia a {
  line-height: 2.6;
  font-size: 1em;
  color: #fff;
  height: 2.6em;
  width: 2.6em;
  border-radius: 50%;
  margin: 0 2px 0 0;
  background: rgba(112, 112, 112, 0.9);
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  -webkit-transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .spot05 .socialmedia a {
    margin: 0 0 3px 4px;
    display: inline-block;
    /* maxTab 1024w */
  }
}
.spot05 .socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.spot05 .socialmedia a:hover {
  color: #fff;
  background: #a9878d;
  z-index: 400;
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
}
.spot05 .socialmedia a .icon {
  position: relative;
}
.spot05 .stories {
  display: none;
  position: relative;
  vertical-align: middle;
  margin: -1.2em 0 -5em;
}
.spot05 .stories video {
  width: 14.75em;
  height: 26.2em;
}
.spot05 .stories:before {
  content: '';
  position: absolute;
  left: -0.75em;
  top: -0.5em;
  pointer-events: none;
  z-index: 999;
  background: url('../images/phone.png') center no-repeat;
  background-size: contain;
  width: 26.75em;
  height: 30.1em;
}
@media only screen and (min-width: 48em) {
  .spot05 .stories {
    display: inline-block;
  }
}


/* ===============================================
  spot06 || Testimonials
=============================================== */
.spot06 {
  padding: 1em 0 2em;
  background-color: #f4f4f5;
}
@media only screen and (min-width: 48em) {
  .spot06 {
    padding: 5.1em 0 3.7em;
    /* midTab 768w */
  }
}
.spot06 .cycle-slideshow {
  color: #a9878d;
  width: 96%;
  max-width: 60em;
  margin: 0 auto;
  display: block;
}
.spot06 .cycle-slideshow:hover {
  color: #a9878d;
}
.spot06 .cycle-slide {
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
.spot06 .slide-card {
  /*background: #fff;*/
  /*box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.19);*/
  width: 23.25em;
  height: 12.25em;
  display: block;
  text-align: left;
  /*padding: 1.36em 2.5em 0 1.45em;*/
  margin: 1em auto;
}

.spot06 .slide-card .embed-container{
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.19);
  margin: auto;

}
@media only screen and (min-width: 53em) {
  .spot06 .slide-card {
    margin: 0 0.65em;
    display: inline-block;
  }
}

.spot06 i {
  color: #f5b92b;
  font-size: 0.9em;
  letter-spacing: 0.07em;
  margin: 0.5em 0;
}
.spot06 .controls {
  line-height: 0;
  width: 100%;
  max-width: 60em;
  margin: 2em auto 0;
  display: block;
}
@media only screen and (min-width: 48em) {
  .spot06 .controls {
    text-align: right;
    margin: 0 auto;
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot06 .controls > a {
  line-height: 2.75;
  font-size: 0.9em;
  text-align: center;
  color: #232323;
  width: 2.75em;
  height: 2.75em;
  border-radius: 50%;
  border: 1px solid #232323;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot06 .controls > a:hover {
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.5;
}
.spot06 .controls > a.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 48em) {
  .spot06 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot06 .controls > a.next {
  padding-left: 0.1em;
}
.spot06 .review-btn {
  color: #fff;
  font-size: 0.8em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.85em 2.15em;
  display: inline-block;
  background-image: linear-gradient(102deg, #666, #989898);
  margin-top: 2.25em;
  transition: 0.3s ease-in-out;
}
.spot06 .review-btn i {
  color: #fff;
  font-size: 1.35em;
  margin-left: 0.3em;
}
.spot06 .review-btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 10px rgba(102, 102, 102, 0.5);
}


/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 0em 0 2em;
  position: relative;
}
@media only screen and (max-width: 47.94em) {
  .associationlogos {
    font-size: 2vw;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 48em) {
  .associationlogos {
    font-size: 1.1vw;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 48em;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .associationlogos {
    font-size: 0.9em;
    /* maxTab 1024w */
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  -webkit-transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .associationlogos a {
    margin: 0 0.45em;
    /* midTab 768w */
  }
}
.associationlogos a:hover {
  -webkit-transform: scale(0.88);
  transform: scale(0.88);
  opacity: 0.5;
}
.associationlogos a.aao {
  width: 5.8em;
  height: 2em;
}
.associationlogos a.abo {
  width: 3.25em;
  height: 2.8em;
}
.associationlogos a.invisalign {
  width: 4.3em;
  height: 2.25em;
}
.associationlogos a.aafe {
  width: 3.4em;
  height: 2.6em;
}
.associationlogos a.best-of-dayton {
  width: 2.8em;
  height: 2.8em;
}
.associationlogos a.diamond {
  width: auto;
  height: 2.8em;
}
.associationlogos a.diamond img {
  width: auto;
  height: 100%;
}
.associationlogos a img,
.associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #232323;
  width: 100%;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
#ft #location {
  position: relative;
  z-index: 1;
}
#ft a {
  color: #232323;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #a9878d;
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (min-width: 48em) {
  #location {
    padding: 5.3em 0 5.4em 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  #location {
    text-align: center;
    max-width: 55em;
    margin: 0 auto;
    justify-content: space-between;
    /* desk 1300w */
  }
}
#location .mod {
  text-align: center;
  display: block;
  flex: 1 1 12em;
}
@media only screen and (max-width: 47.9375em) {
  #location .mod {
    margin: 1em;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location .mod {
    margin: 0;
    /* midTab 768w */
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 1em auto;
  display: none;
  flex: 0 0 auto;
}
#location .logo img {
  width: 14.9em;
  height: auto;
}
@media only screen and (min-width: 55em) {
  #location .logo {
    margin: 0 auto;
    display: block;
  }
}
#location .address {
  letter-spacing: 0.02em;
  line-height: 1.38461538;
  font-size: 0.65em;
  margin: 0 auto;
  display: block;
}
#location .address i {
  font-size: 1.6em;
  margin-bottom: 0.4em;
}
#location .phone {
  letter-spacing: 0.005em;
  line-height: 1.15789474;
  font-size: 1em;
  font-weight: 500;
  display: block;
  margin-bottom: 1.95em;
}
#location .phone i {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
#location .officehours {
  line-height: 1.11111111;
  font-size: 0.9em;
  max-width: 16em;
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 81.25em) {
  #location .officehours {
    margin: 0 auto;
  }
}
#location .officehours .days,
#location .officehours .hours {
  letter-spacing: 0.025em;
  line-height: 2.49;
  font-size: 0.7em;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
}
@media only screen and (min-width: 55em) {
  #location .officehours .days,
  #location .officehours .hours {
    width: 38%;
  }
}
#location .officehours .days {
  font-weight: bold;
  text-align: right;
  margin-right: 1em;
  width: 40%;
  text-transform: uppercase;
}
@media only screen and (min-width: 55em) {
  #location .officehours .days {
    width: 45%;
  }
}
#location .officehours i {
  font-size: 1.3em;
  margin-bottom: 0.28em;
}
@media only screen and (min-width: 55em) {
  #location .officehours i {
    margin-left: 2.5em;
  }
}
/* ==================================================================
		#links || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #232323;
  padding: 2em 0;
  margin: 0;
  background-color: #fff;
}
#links .container {
  max-width: 55em;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 6.85em;
    padding: 2.175em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.72727273;
  font-size: 0.55em;
  margin-bottom: 2em;
}
@media only screen and (min-width: 30em) {
  #links .util {
    line-height: 4.54545455;
    width: auto;
    margin: 0;
    float: left;
    /* mintab 480w */
  }
}
#links .util a {
  color: #232323;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #a9878d;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 2.18181818em;
  height: 1.81818182em;
  margin-right: 0.72727273em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  -webkit-transition: fill 0.33s ease-in-out;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
}
#btt .divider {
  margin: 0 0.22em;
}
#btt a,
#btt .divider {
  line-height: 4.54545455;
  font-size: 0.55em;
  color: #232323;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
#btt a:hover {
  color: #a9878d;
}
@media only screen and (min-width: 30em) {
  #btt {
    width: auto;
    float: right;
    /* mintab 480w */
  }
}
a#backtotop {
  line-height: 4.54545455;
  font-size: 0.55em;
  color: #232323;
  display: inline-block;
  vertical-align: top;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
a#backtotop:hover {
  color: #a9878d;
}
/*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: #a9878d;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #a9878d;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: smaller;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #a9878d;
  border: 1px solid #a9878d;
  -webkit-transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
  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: #a9878d;
  background-color: #a9878d;
}
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%; }*/
  .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
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.85em;
    margin-top: 0em;
    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: 2.85em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 -0.11em;
    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.7em;
    text-align: center;
    text-decoration: none;
    height: auto;
    z-index: 3000;
    width: auto;
    padding: 0 1em;
    border-radius: 3em;
  }
  #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: 1.92307692;
    text-align: left;
    white-space: nowrap;
    height: 1.92307692em;
    width: 100%;
    padding: 0 1.7em;
    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 {
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -1.1em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@-webkit-keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

/* Hide Botox/Filler links in generated navigation menus */
#main-nav li.botox-filler,
#subnav li.botox-filler,
#main-nav a[href*="botox-filler"],
#subnav a[href*="botox-filler"] {
  display: none !important;
}
