/* 
 Site Manager Version: 14.2.0
 Date Created: December 2023
 
 Account: murray-ortho
 Written by: vita stillion
 
 Sesame Communications - All rights reserved. C2023
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
.fontB {
  font-family: 'Birthstone Bounce', cursive;
}
.fontP {
  font-family: 'Plus Jakarta Sans', 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: 'Plus Jakarta Sans', sans-serif;
}
form button,
button {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #46474b;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #b3a174;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
.home #content a {
  color: white;
}
.home #content a:hover {
  color: #c5b795;
}
#content a:hover {
  text-decoration: underline;
  color: #4daeb5;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  color: #b3a174;
  margin: 0 0 1.44em;
  text-rendering: auto;
}
.home h1,
.home h2:not(.topic),
.home h3:not(.topic),
.home h4,
.home h5,
.home h6 {
  color: white;
}
.sub h1 {
  font-size: 10vw;
  text-align: inherit;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.55882353em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 3.4em;
    /* mintab 480w */
  }
}
.home h1 {
  line-height: 1.0625;
  font-size: 10vw;
  margin-bottom: 0.875em;
  color: white;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 2.4em;
    /* mintab 480w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.17142857;
  font-size: 0.72916667em;
}
h2:not(.topic) {
  font-size: 1.31578947em;
  color: #488269;
}
h3:not(.topic) {
  font-size: 1.21052632em;
  color: #4daeb5;
}
h4 {
  font-size: 1.10526316em;
}
h5 {
  font-size: 1.05263158em;
}
h6 {
  font-size: 1em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 64.5em;
}
/* ===============================================
	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;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  #masthead .container {
    max-width: none;
    /* midTab 1024oo */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  height: 44px;
  width: 44px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 44px;
  color: #b3a174;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.2em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: 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: #46474b;
}
#main-nav .open .trigger {
  color: #46474b;
}
#main-nav .open .trigger .navicon span:nth-child(1) {
  transform: translate(50%, 150%) scaleX(0);
}
#main-nav .open .trigger .navicon span:nth-child(4) {
  transform: translate(50%, -150%) scaleX(0);
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate(0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -44px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2;
  font-size: 1em;
  color: #195d94;
  width: auto;
  height: 2em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #4daeb5;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(77, 174, 181, 0.89);
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  background: #195d94;
  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;
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  /* midTab 1024w */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #fff;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    height: 1.8em;
    background-color: #9d8d66;
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 666px) and (max-width: 1023px) {
  #hd .mod {
    width: 100%;
    background-color: #9d8d66;
    /* range 666w - 1024oo */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.6em;
  width: 10.75em;
  margin: 2px auto 4px 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    position: absolute;
    top: 0.25em;
    left: 0.4em;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  #logo a {
    min-height: 44px;
    display: flex;
    align-items: center;
    /* midTab 1024oo */
  }
}
#logo img {
  width: 10.75em;
}
#logo svg {
  width: 10.75em;
  height: 6.7em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 665px) {
  #contactinfo {
    width: 100%;
    background-color: #b3a174;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 768px) {
  #contactinfo {
    margin-right: 1em;
    /* midTab 768w */
  }
}
#contactinfo .office {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 665px) {
  #contactinfo .office {
    width: calc(40% - 0.5em);
    /* custom 666oo */
  }
}
#contactinfo .office:nth-child(1) {
  margin-right: 1em;
}
#contactinfo .address {
  font-weight: 700;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .address {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .address {
    line-height: 3;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
#contactinfo .divider {
  font-weight: 700;
  margin: 0 2px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #contactinfo .divider {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (max-width: 1023px) {
  #contactinfo .divider {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .divider {
    line-height: 3;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
#contactinfo .phone {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .phone {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .phone {
    line-height: 3;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
@media only screen and (max-width: 767px) {
  #contactinfo .phone .cta {
    white-space: nowrap;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    /* midTab 768oo */
  }
}
#contactinfo .phone .icon {
  display: none;
}
@media only screen and (max-width: 767px) {
  #contactinfo .phone .icon {
    display: block;
    /* midTab 768oo */
  }
}
#contactinfo a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #46474b;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 665px) {
  #utilitynav {
    width: 100%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #utilitynav {
    width: auto;
    /* custom 666w */
  }
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 665px) {
  #utilitynav ul {
    width: 48.26254826%;
    /* custom 666oo */
  }
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 665px) {
  #utilitynav ul li {
    width: 100%;
    /* custom 666oo */
  }
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #utilitynav a {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a {
    line-height: 3.41666667;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
#utilitynav a[class]:hover {
  color: #fff;
  background-color: #46474b;
}
#utilitynav a.appointmentrequest {
  background-color: #4daeb5;
}
@media only screen and (max-width: 665px) {
  #utilitynav a.appointmentrequest {
    width: 51.73745174%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #utilitynav a.appointmentrequest {
    width: 11.16666667em;
    /* custom 666w */
  }
}
#utilitynav a.appointmentrequest:before {
  content: '';
  /* 	single quotes only || no hex values, only keyword colors or rgba works */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg class='icon' aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' width='12' height='41' viewBox='0 0 12 41'><path fill='white' d='M3.562 14c.449 0 .812.363.812.812v.812h3.25v-.812a.813.813 0 0 1 1.626 0v.812h1.219a1.22 1.22 0 0 1 1.219 1.219v1.219H.312v-1.219a1.22 1.22 0 0 1 1.219-1.219H2.75v-.812c0-.449.363-.812.812-.812zm-3.25 4.875h11.375v6.906A1.22 1.22 0 0 1 10.468 27H1.531a1.22 1.22 0 0 1-1.219-1.219v-6.906zm1.626 2.031v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812a.407.407 0 0 0-.406.406zm3.25 0v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812a.407.407 0 0 0-.406.406zm3.656-.406a.408.408 0 0 0-.406.406v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812zm-6.906 3.656v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812a.407.407 0 0 0-.406.406zm3.656-.406a.408.408 0 0 0-.406.406v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812zm2.844.406v.812c0 .223.183.406.406.406h.812a.408.408 0 0 0 .406-.406v-.812a.408.408 0 0 0-.406-.406h-.812a.407.407 0 0 0-.406.406z'/></svg>");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 1em;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #utilitynav a.appointmentrequest:before {
    height: 44px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a.appointmentrequest:before {
    height: 3.41666667em;
    /* midTab 1024w */
  }
}
#utilitynav a.patient-login {
  background-color: #004b88;
}
@media only screen and (max-width: 665px) {
  #utilitynav a.patient-login {
    width: 100%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #utilitynav a.patient-login {
    width: 10.41666667em;
    /* custom 666w */
  }
}
#utilitynav a.patient-login:before {
  content: '';
  /* 	single quotes only || no hex values, only keyword colors or rgba works */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg class='icon' aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' width='17' height='41' viewBox='0 0 17 41'><path fill='white' d='M6.062 20.5a3.25 3.25 0 1 0 0-6.5 3.25 3.25 0 0 0 0 6.5zm-1.16 1.219a4.526 4.526 0 0 0-4.527 4.527c0 .416.338.754.754.754h9.214a1.626 1.626 0 0 1-.218-.812v-3.25c0-.053.003-.107.008-.16a4.516 4.516 0 0 0-2.91-1.059H4.902zm8.879-1.625c.449 0 .812.363.812.812v1.219h-1.625v-1.219a.813.813 0 0 1 .813-.812zm-2.031.812v1.219a.811.811 0 0 0-.812.812v3.25c0 .449.363.812.812.812h4.062a.811.811 0 0 0 .812-.812v-3.25a.811.811 0 0 0-.812-.812v-1.219a2.03 2.03 0 1 0-4.062 0z'/></svg>");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 1.41666667em;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #utilitynav a.patient-login:before {
    height: 44px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a.patient-login:before {
    height: 3.41666667em;
    /* midTab 1024w */
  }
}
/* ===============================================
	socialmedia
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 665px) {
  .socialmedia {
    display: block;
    position: absolute;
    top: 0;
    right: 44px;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 768px) {
  .socialmedia {
    margin-right: 1rem;
    /* midTab 768w */
  }
}
.socialmedia a {
  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 (max-width: 665px) {
  .socialmedia a {
    color: #b3a174;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .socialmedia a {
    color: #fff;
    /* custom 666w */
  }
}
@media only screen and (max-width: 1023px) {
  .socialmedia a {
    line-height: 44px;
    font-size: 12px;
    width: 44px;
    height: 44px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .socialmedia a {
    line-height: 3.27272727;
    font-size: 0.55em;
    height: 3.27272727em;
    width: 1.37454545em;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #46474b;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 1.75vw;
  text-align: center;
  color: #fff;
  min-height: 55vw;
  background: #000;
  position: relative;
  z-index: 380;
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow {
    min-height: 1125px;
    /* range 1300w - 1999oo */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
  aspect-ratio: 16 / 9;
  opacity: 0.8;
}
@media only screen and (min-width: 1300px) {
  #slideshow .welcomevid {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow .welcomevid {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
#slideshow .ssoverlay {
  line-height: 1;
  font-size: 4.55em;
  font-family: 'Birthstone Bounce', cursive;
  color: currentcolor;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  top: 45%;
  left: 0;
  z-index: 420;
}
@media only screen and (max-width: 479px) {
  #slideshow .ssoverlay {
    /* mintab 480oo */
  }
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight.top {
  background: #ffffff url(../images/spotlight/spottop.jpg) no-repeat 0 100%;
  position: relative;
}
@media only screen and (max-width: 1299px) {
  .spotlight.top {
    background-size: cover;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spotlight.top {
    background-position: 0 130%;
    /* desk 1300w */
  }
}
.spotlight.top .endcap {
  width: 102.95em;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 2059px) {
  .spotlight.top .endcap {
    font-size: 1vw;
    /* custom 2059w */
  }
}
.no-appearance .spotlight.top .endcap {
  display: none;
}
.spotlight.top .endcap .bottom {
  display: none;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot01
=============================================== */
.spot01 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot01 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 {
    font-size: inherit;
    font-size: min(1.7vw, 1em);
    padding: 0 0 5em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 {
    /* desk 1300w */
  }
}
.spot01 a {
  color: #004b88;
  max-width: 15em;
  padding: 0.75em 0.75em 0 0.75em;
  background-color: #ffffff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.11);
}
@media only screen and (max-width: 479px) {
  .spot01 a {
    width: 44%;
    margin: 2%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 a {
    width: calc( 25% - 1.5em );
    margin: -4.75em 0.75em 0;
    /* mintab 480w */
  }
}
.spot01 a:hover {
  z-index: 400;
}
.spot01 a:hover img {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
.spot01 a:hover .decoration:before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.spot01 a:hover h2.topic {
  color: white;
  transform: translate3d(0, -7em, 0);
}
.spot01 a .decoration {
  transition: transform 0.33s ease-in-out;
  position: relative;
  overflow: hidden;
}
.spot01 a .decoration:before {
  content: '';
  background: rgba(77, 174, 181, 0.8);
  transition: transform 0.33s ease-in-out, background 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform-origin: center top;
  transform: translate3d(0, -100%, 0);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}
.spot01 a .decoration img {
  width: 100%;
  transition: -webkit-filter 0.5s ease-in-out, filter 0.5s ease-in-out;
  z-index: 1;
}
.spot01 a h2.topic {
  line-height: 2.95833333;
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
  transition: transform 0.5s ease-in-out, color 0.6s ease-in-out;
}
/* ===============================================
	spot02
=============================================== */
.spot02 {
  color: #fff;
  padding: 3em 0;
  z-index: 420;
}
@media only screen and (max-width: 479px) {
  .spot02 {
    font-size: min(4vw, 1em);
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    /* custom 666w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot02 .bg {
  background: #004b88;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.spot02 .bg .cap {
  width: 102.95em;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (min-width: 2059px) {
  .spot02 .bg .cap {
    font-size: 1vw;
    /* custom 2059w */
  }
}
.no-appearance .spot02 .bg .cap {
  display: none;
}
.spot02 .bg .cap path {
  transform-origin: 50% 50%;
}
.spot02 .decoration {
  width: 99%;
  max-width: 33em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 665px) {
  .spot02 .decoration {
    margin: 0 0 1em;
    /* custom opt-out 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot02 .decoration {
    margin: 0 4.85em 0 -0.75em;
    /* custom 666w */
  }
}
.spot02 .decoration img {
  width: 45.45454545%;
  margin: min( 0.75em , 2.27272727% );
}
.spot02 .decoration .abo {
  width: 9.8em;
  height: 9.8em;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
  right: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot02 .decoration .abo:hover {
  transform: translate3d(0, -50%, 0) scale(1.02);
}
.spot02 .decoration .abo:hover .icon {
  transform: translate3d(0, 0, 0) scale(1.11);
}
.spot02 .decoration .abo .icon {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot02 .mod {
  width: 90%;
  max-width: 23.8em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  .spot02 .mod {
    text-align: left;
    padding: 0;
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  line-height: 0.98;
  font-size: 3.3em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.62em;
}
.spot02 h2.topic .trait {
  line-height: 0.9;
  font-family: 'Birthstone Bounce', cursive;
  font-weight: 400;
  text-transform: none;
  display: block;
}
.spot02 .info {
  line-height: 1.2;
  margin-bottom: 3.13333333em;
  text-align: justify;
}
@media only screen and (max-width: 1299px) {
  .spot02 .info {
    font-size: clamp( 12px, 0.75em , 15px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 .info {
    font-size: 0.75em;
    /* desk 1300w */
  }
}
.spot02 .spotbtn {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #b3a174;
  width: 9.58333333em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: background 0.5s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  .spot02 .spotbtn {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    min-width: 44px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 .spotbtn {
    line-height: 3.91666667;
    font-size: 0.6em;
    /* desk 1300w */
  }
}
.spot02 .spotbtn:hover {
  background: rgba(77, 174, 181, 0.6);
}
/* ==================================================================
	subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #fff;
  background: #778b28 url(../images/slideshow/hero.jpg) no-repeat 0 100%;
  background-size: cover;
  padding: 3.2em 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #subnav {
    text-align: left;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    height: 28.95em;
    padding: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  #subnav {
    height: 28.95vw;
    /* custom 2000w */
  }
}
#subnav:before {
  content: '';
  background-color: #000000;
  opacity: 0.18;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#subnav .container {
  z-index: 420;
}
@media only screen and (min-width: 1300px) {
  #subnav .container {
    position: absolute;
    right: 0;
    bottom: 3.2em;
    left: 0;
    /* desk 1300w */
  }
}
#subnav p {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #subnav p {
    width: 61.62790698%;
    /* midTab 768w */
  }
}
@media only screen and (max-width: 1299px) {
  #subnav p {
    font-size: clamp( 12px, 0.75em , 15px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav p {
    font-size: 0.75em;
    /* desk 1300w */
  }
}
#subnav a {
  text-transform: uppercase;
  color: #fff;
  margin: 0 0.8em;
  padding: 0.6em 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    padding: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  #subnav a:after {
    bottom: 0.39em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #subnav a:after {
    bottom: 0;
    /* midTab 1024w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #fff;
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  position: relative;
  z-index: 400;
  /* fractional bg image on subpages */
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 5em 0 6em;
    /* midTab 768w */
  }
}
#bd.sub {
  background: #ffffff url(../images/bdsub.jpg) no-repeat 50% 0;
}
#bd.sub:after {
  content: none;
  height: 100%;
  background: #488269;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  #bd.sub:after {
    content: '';
    width: 27%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #bd.sub:after {
    width: auto;
    left: calc(50% + 14.5em );
    /* desk 1300w */
  }
}
#bd .cap {
  width: 102.95em;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 420;
  pointer-events: none;
}
@media only screen and (min-width: 2059px) {
  #bd .cap {
    font-size: 1vw;
    /* custom 2059w */
  }
}
.no-appearance #bd .cap {
  display: none;
}
.home #bd .cap .bottom {
  display: none;
}
#bd .endcap {
  width: 102.95em;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 420;
  pointer-events: none;
}
@media only screen and (min-width: 2059px) {
  #bd .endcap {
    font-size: 1vw;
    /* custom 2059w */
  }
}
.no-appearance #bd .endcap {
  display: none;
}
#bd .container {
  max-width: 64.5em;
}
#content {
  display: block;
}
.home #content {
  color: white;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 61.62790698%;
    max-width: 39.75em;
    float: left;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.68421053;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.torso
=================================================================== */
.torso {
  width: 100%;
  background: #ffffff no-repeat 50% 0%;
  display: block;
  position: relative;
  z-index: 420;
}
.torso .endcap {
  width: 102.95em;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 420;
  pointer-events: none;
}
@media only screen and (min-width: 2059px) {
  .torso .endcap {
    font-size: 1vw;
    /* custom 2059w */
  }
}
.no-appearance .torso .endcap {
  display: none;
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 4em 0 2.6em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd {
    padding-bottom: 0;
    /* desk 1300w */
  }
}
.home #bd .container {
  max-width: 64.5em;
}
@media only screen and (max-width: 767px) {
  .home #bd .container {
    width: 100%;
    /* midTab 768oo */
  }
}
.home #bd #content {
  background-color: #488269;
  box-shadow: 1.25em 1.25em 1.25em rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .home #bd #content {
    padding: 2em 2%;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 75%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 2.15em 2.5em 2em;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    max-width: 35.5em;
    margin-right: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content .content-text {
    /* desk 1300w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd .ornament {
  width: 100%;
  max-width: 80.9em;
  height: 40.95em;
  margin: auto;
  background: #095097 no-repeat 50% 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 1299px) {
  .home #bd .ornament {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd .ornament {
    display: block;
    /* desk 1300w */
  }
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mediaslider .cycle-slideshow .cycle-slide {
    padding: 0 5%;
    /* midTab opt-out 768oo */
  }
}
.mediaslider .cycle-slideshow > button {
  font-size: 2.8em;
  color: #b3a174;
  background: none;
  border: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > button .icon {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > button.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > button.cycle-prev .icon {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > button.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > button.cycle-next .icon {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > button:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > button:hover .icon {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.68;
}
/* content centered for slideshow and video-centric content */
.before-and-after #content,
.office-tour #content,
.smile-gallery #content,
.invisalign-videos #content {
  text-align: center;
}
.before-and-after #content h1,
.office-tour #content h1,
.smile-gallery #content h1,
.invisalign-videos #content h1,
.before-and-after #content h2,
.office-tour #content h2,
.smile-gallery #content h2,
.invisalign-videos #content h2,
.before-and-after #content h3,
.office-tour #content h3,
.smile-gallery #content h3,
.invisalign-videos #content h3,
.before-and-after #content p,
.office-tour #content p,
.smile-gallery #content p,
.invisalign-videos #content p {
  text-align: center;
}
.before-and-after .img-left,
.office-tour .img-left,
.smile-gallery .img-left,
.invisalign-videos .img-left {
  float: none;
  margin: 0 auto;
}
/* blockquote styling */
#content blockquote {
  margin: 0 0 1.58em;
  padding: 0 0 0 1em;
  border-left: 0.33em solid #f0f0f0;
}
/* comment line below if patient-login is live and legit */
/* office location ancillary image style */
@media only screen and (max-width: 767px) {
  .locationimg {
    margin: 0 auto 1em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .locationimg {
    margin: 0 0 1em 1em;
    float: right;
    /* midTab 768w */
  }
}
/* 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: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
  /* midTab 768w */
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  .common-procedures #content h2[id] {
    scroll-margin-top: 10em;
  }
  /* desk 1300w */
}
/* 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: 1300px) {
  #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 {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.21052632em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #b3a174;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.68421053;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #b3a174;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  color: #46474b;
  text-decoration: none;
}
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: 768px) {
  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: 19.7em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 30.54263566%;
    margin: 0 0 1em;
    display: block;
    float: right;
    clear: right;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}
.stock {
  width: 100%;
  position: relative;
  box-shadow: -25px 25px 25px rgba(0, 0, 0, 0.15);
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR - */
/* ===============================================
	spot03 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION REVERSE
=============================================== */
.spot03 {
  color: #fff;
  padding: 3em 0;
}
@media only screen and (min-width: 666px) {
  .spot03 {
    font-size: min(1.6vw, 1em);
    direction: rtl;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot03 .mod {
  width: 90%;
  max-width: 22.6em;
  direction: ltr;
}
@media only screen and (max-width: 665px) {
  .spot03 .mod {
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot03 .mod {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    /* custom 666w */
  }
}
.spot03 h2.topic {
  line-height: 1;
  font-size: 2.7em;
  font-family: 'Birthstone Bounce', cursive;
  font-weight: 400;
  color: #195d94;
  display: block;
}
@media only screen and (max-width: 665px) {
  .spot03 h2.topic {
    padding: 0.5em 0;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot03 h2.topic {
    margin: 0 0 1.85185185em;
    /* custom 666w */
  }
}
.spot03 .spot03pager {
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  z-index: 1000;
  direction: ltr;
}
.spot03 .spot03pager a {
  text-align: left;
  color: #fff;
  white-space: nowrap;
  background: #4daeb5;
  width: 100%;
  padding: 0 min( 9.07079646% , 2.05em );
  margin: 0 0 1px;
  display: block;
  position: relative;
  transition: background-color 0.33s ease-in-out, color 0.33s ease-in-out;
}
.spot03 .spot03pager a:hover,
.spot03 .spot03pager a.cycle-pager-active {
  background: #195d94;
}
.spot03 .spot03pager a .icon {
  margin: 0 4px 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1299px) {
  .spot03 .spot03pager a .icon {
    width: 44px;
    height: 44px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .spot03pager a .icon {
    width: 4.05em;
    height: 4.05em;
    /* desk 1300w */
  }
}
.spot03 .spot03pager a h3.topic {
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1299px) {
  .spot03 .spot03pager a h3.topic {
    line-height: 44px;
    font-size: 12px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .spot03pager a h3.topic {
    line-height: 3.24;
    font-size: 1.25em;
    /* desk 1300w */
  }
}
.spot03 .toy {
  width: 90%;
  max-width: 22.6em;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}
@media only screen and (min-width: 666px) {
  .spot03 .toy {
    max-width: 35.55em;
    margin: 0 0 0 1.5em;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .toy {
    margin-right: -4.6em;
    /* desk 1300w */
  }
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #cccccc no-repeat center center;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 390;
}
@media only screen and (min-width: 980px) {
  #ft {
    background-size: auto 100%;
    /* custom 980w */
  }
}
#ft a {
  color: #fff;
}
#ft a:hover {
  color: #fff;
  text-decoration: underline;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 0;
  display: block;
}
@media only screen and (min-width: 980px) {
  #location {
    height: 34em;
    /* custom 980w */
  }
}
#location .loc {
  z-index: 420;
}
@media only screen and (max-width: 665px) {
  #location .loc {
    text-align: center;
    width: 100%;
    margin: 0;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #location .loc {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    /* custom 666w */
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #location .loc {
    padding: 4em 0;
    /* range 768w - 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .loc {
    text-align: left;
    width: 195px;
    padding: 0.725em 0 0.725em 1.33333333%;
    display: block;
    position: absolute;
    transform: translate3d(0, -50%, 0);
    /* custom 980w */
  }
}
@media only screen and (max-width: 767px) {
  #location .loc.sanf {
    padding: 2.5em 0 2em;
    /* midTab 768oo */
  }
}
@media only screen and (max-width: 979px) {
  #location .loc.sanf {
    background-color: rgba(0, 75, 136, 0.9);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .loc.sanf {
    top: 13.35em;
    left: 50%;
    /* custom 980w */
  }
}
@media only screen and (min-width: 980px) and (max-width: 1023px) {
  #location .loc.sanf {
    margin-left: -21.2em;
    /* range 980w - 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #location .loc.sanf {
    margin-left: -21.2em;
    /* desk 1024w */
  }
}
.no-appearance #location .loc.sanf {
  background-color: rgba(0, 75, 136, 0.9);
}
@media only screen and (max-width: 665px) {
  #location .loc.kenne {
    padding: 2em 0;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) and (max-width: 767px) {
  #location .loc.kenne {
    padding: 2.5em 0 2em;
    /* range 666w - 768oo */
  }
}
@media only screen and (max-width: 979px) {
  #location .loc.kenne {
    background-color: rgba(179, 161, 116, 0.9);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .loc.kenne {
    margin-left: 15.7em;
    top: 21.6em;
    left: 50%;
    /* custom 980w */
  }
}
.no-appearance #location .loc.kenne {
  background-color: rgba(179, 161, 116, 0.9);
}
#location h2.topic {
  line-height: 1.84615385;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}
@media only screen and (max-width: 979px) {
  #location h2.topic {
    font-size: min(10vw, 1em);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location h2.topic {
    font-size: 0.65em;
    /* custom 980w */
  }
}
#location .phone {
  display: block;
}
@media only screen and (max-width: 767px) {
  #location .phone {
    line-height: 44px;
    font-size: clamp( 12px, 0.65em , 13px );
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .phone {
    line-height: 1.38461538;
    font-size: 0.65em;
    /* midTab 768w */
  }
}
#location .address {
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 1023px) {
  #location .address {
    line-height: 14.66666667px;
    font-size: clamp( 12px, 0.65em , 13px );
    padding: 7.33333333px 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #location .address {
    line-height: 1.38461538;
    font-size: 0.65em;
    /* midTab 1024w */
  }
}
#location .address .marker {
  line-height: 1;
  font-size: 5.07692308em;
  color: #b3a174;
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: -1;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 979px) {
  #location .address .marker {
    display: none;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .address .marker {
    display: block;
    /* custom 980w */
  }
}
@media only screen and (min-width: 980px) and (max-width: 1299px) {
  #location .address .marker {
    margin-left: -1em;
    /* range 980w - 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #location .address .marker {
    margin-left: -1.33333333em;
    /* desk 1300w */
  }
}
#location .address .marker.sanf:before {
  color: #004b88;
}
#location .address .marker.kenne:before {
  color: #b3a174;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  bottom: -0.15em;
  left: 0.2em;
  z-index: -1;
  -webkit-filter: blur(0.04125em);
  filter: blur(0.04125em);
  pointer-events: none;
}
#location .address:hover .marker {
  transform: translate3d(0, 0, 0) scale(2);
}
#location .bg {
  width: auto;
  height: 100%;
  -webkit-filter: drop-shadow(0.75em 0.75em 0.75em rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0.75em 0.75em 0.75em rgba(0, 0, 0, 0.15));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 979px) {
  #location .bg {
    display: none;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .bg {
    display: block;
    /* custom 980w */
  }
}
.no-appearance #location .bg {
  display: none;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #46474b;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: block;
  position: relative;
  z-index: 410;
}
@media only screen and (min-width: 480px) and (max-width: 1299px) {
  #links {
    height: 44px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links {
    height: 75px;
    /* desk 1300w */
  }
}
@media only screen and (max-width: 479px) {
  #links .util {
    display: inline;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    margin: 0;
    float: left;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 666px) {
  #links .util {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    left: 0;
    /* custom 666w */
  }
}
@media only screen and (max-width: 1299px) {
  #links .util {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links .util {
    line-height: 75px;
    font-size: 0.6em;
    /* desk 1300w */
  }
}
#links .util a {
  color: #000;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 479px) {
  #links .util a.sitemap {
    text-align: right;
    width: 44%;
    padding-right: 2em;
    /* mintab 480oo */
  }
}
#links .util a:hover {
  color: #46474b;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
@media only screen and (max-width: 479px) {
  #links .util .divider {
    display: none;
    /* mintab 480oo */
  }
}
/* ===============================================
		sesame link
=============================================== */
@media only screen and (max-width: 479px) {
  a#sesame-link {
    width: 100%;
    /* mintab 480oo */
  }
}
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.5em;
  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;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 479px) {
  #btt {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  #btt {
    width: auto;
    display: block;
    float: right;
    /* mintab 480w */
  }
}
a#backtotop {
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0 0 1.41176471em;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  a#backtotop {
    line-height: 44px;
    font-size: clamp( 12px, 0.85em , 17px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  a#backtotop {
    line-height: 75px;
    font-size: 0.85em;
    /* desk 1300w */
  }
}
a#backtotop:after {
  content: '';
  background-color: #488269;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 75vw;
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
a#backtotop:hover {
  color: #fff;
}
a#backtotop:hover:after {
  background-color: #46474b;
}
/*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: #666666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  color: #fff;
  width: 100%;
  padding: 1rem;
  background: #b3a174;
  float: left;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: small;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #b3a174;
  border: 1px solid #b3a174;
  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: #46474b;
  background-color: #46474b;
}
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;
}
/* ===============================================
	blog sidebar sharethiswidget styles
=============================================== */
#blog_search label,
p.share-text {
  margin-bottom: 10px;
}
/* ===============================================
	generic button for quick use by PM/PAs
=============================================== */
a.intbtn,
#content a.intbtn {
  line-height: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  height: 44px;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #b3a174;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: background-color 0.33s ease-in-out;
}
a.intbtn:hover,
#content a.intbtn:hover {
  background-color: #46474b;
}
/* ===============================================
	.screenreader 
	a11y support for descriptive text on vaguely worded buttons
	https://gomakethings.com/hidden-content-for-better-a11y/#hidden-labels
=============================================== */
.screenreader {
  white-space: nowrap;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 768px (768px) and up
=============================================== */
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #bd.sub:after,
  .layout-full-width #bd.sub:after {
    content: none;
  }
  .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;
    width: 100%;
    display: block;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  [class^='inovation-chart-'] {
    max-width: 50%;
    display: inline-block;
  }
  .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%;
    margin: 2%;
    display: inline-block;
    float: none;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 1024px (1024px) and up
=============================================== */
@media only screen and (min-width: 1024px) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 3.6em;
    margin-top: 1.85em;
    box-shadow: none;
    position: relative;
    top: auto;
    z-index: 2900;
  }
  #main-nav .container {
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.6em;
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.3em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    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;
    text-align: center;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    position: absolute;
    display: none;
    z-index: 2800;
  }
  #main-nav ul ul li {
    height: 1.25em;
    margin: 0;
    padding: 0;
    float: left;
    opacity: 1;
  }
  #main-nav ul ul li a {
    line-height: 1.66666667;
    text-align: left;
    white-space: nowrap;
    height: 1.66666667em;
    padding: 0 1.46666667em;
    float: left;
  }
  #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 {
    display: block;
    left: -1.1em;
    /*top:37px;*/
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    margin: 0;
    left: auto;
    right: -1.1em;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    transform: translate(100%, 0);
    opacity: 0;
    pointer-events: none;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
}
/* ===============================================
	embed-container enhanced support
=============================================== */
@supports (aspect-ratio: 16 / 9) and (object-fit: cover) {
  .embed-container,
  .embed-container.ratio16x9 {
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    display: block;
  }
  @media only screen and (max-width: 1299px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 41.84210526em , 90% );
      /* desk 1300oo */
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 41.84210526em , 1200px );
      /* desk 1300w */
    }
  }
  .embed-container embed,
  .embed-container.ratio16x9 embed,
  .embed-container object,
  .embed-container.ratio16x9 object,
  .embed-container iframe,
  .embed-container.ratio16x9 iframe {
    object-fit: cover;
    position: relative;
    top: auto;
    left: auto;
  }
}
