/* 
 Site Manager Version: 14.2.0
 Date Created: June 2023
 Account: king-yiming
 Written by: Ryan Postell
 Sesame Communications - All rights reserved. C2023
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
          fonts
=============================================== */
.fontH {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
.fontL {
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
}
/* libre-caslon-text-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/libre-caslon-text-v5-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ===============================================
          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: 'Lato', Helvetica, Arial, sans-serif;
}
form button,
button {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #4e5a64;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
  links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #216890;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #216890;
}
/* ===============================================
  h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #216890;
  margin: 0 0 1.44em;
  text-rendering: auto;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: initial;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.76em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.5em;
    /* mintab 480w */
  }
}
.home h1 {
  font-size: 10vw;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1:after {
  content: '';
  width: 2.5em;
  height: 2px;
  margin: 0.33333333em auto 0.7em;
  background: #216890;
  display: block;
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.2;
  font-size: 0.41666667em;
  text-transform: none;
}
.home h1 .trait.bottom {
  font-weight: 700;
}
h2:not(.topic) {
  font-size: 1.31578947em;
  color: #337ea5;
}
h3:not(.topic) {
  font-size: 1.21052632em;
  color: #95a0a9;
}
h4 {
  font-size: 1.10526316em;
  color: #95a0a9;
}
h5 {
  font-size: 1.10526316em;
  color: #95a0a9;
}
h6 {
  font-size: 1.10526316em;
  color: #95a0a9;
}
/* ===============================================
  containers
=============================================== */
.container {
  max-width: 60em;
}
/* ===============================================
  list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
  main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 44px;
  width: 44px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(33, 104, 144, 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: 44px;
  color: #216890;
  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.3em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #216890;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #216890;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate3d(0, 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.5;
  font-size: 0.8em;
  color: #2c749d;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  width: auto;
  height: 2.5em;
  margin: 0 0 0.625em;
  padding: 0 0.6875em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
  z-index: 10;
  overflow: visible;
}
#main-nav ul li a[id]:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid currentColor;
  opacity: 1;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  left: 0;
  transition: transform 0.3s;
  z-index: 10;
  pointer-events: none;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #216890;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul li.open > a[id]:before,
#main-nav ul li.active > a[id]:before,
#main-nav ul li:hover > a[id]:before {
  transition-duration: 0.15s;
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(44, 116, 157, 0.9);
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.85714286;
  font-size: 0.7em;
  color: #fff;
  width: 100%;
  height: 2.85714286em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul ul li a:before {
  content: '';
  width: 93%;
  height: 100%;
  border: 1px solid currentColor;
  opacity: 1;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) scaleX(0);
  left: 50%;
  pointer-events: none;
  transition: transform 0.3s;
}
#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;
  border: none;
}
#main-nav ul li.active ul li a:hover:before,
#main-nav ul ul li a:hover:before,
#main-nav ul ul li a.active:before {
  transition-duration: 0.15s;
  transform: translateY(-50%) translateX(-50%) scaleX(1);
  opacity: 1;
}
/* 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 */
}
/* ==================================================================
  masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0 0 0;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: 1.1em;
    padding: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    background-color: rgba(255, 255, 255, 0.9);
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  #masthead .container {
    max-width: none;
    /* midTab 1024oo */
  }
}
/* ==================================================================
  header
=================================================================== */
#hd {
  text-align: center;
  color: #216890;
  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 {
    z-index: 3000;
    background-color: #337ea5;
    /* maxTab 1024w */
  }
}
#hd .container {
  max-width: 64.5em;
}
@media only screen and (min-width: 666px) and (max-width: 1023px) {
  #hd .container {
    padding: 0.06em 3.5em 0.06em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 0 0.95em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* midTab 1024w */
  }
}
/* ===============================================
  logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 18.15em;
  margin: 0.75em auto 0.75em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 3.3em;
    left: 50%;
    transform: translateX(-50%);
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 18.15em;
}
/* ===============================================
  contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: auto;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 666px) {
  #contactinfo {
    width: auto;
  display: block;
    width: 285px;
    margin: 0 0 0 auto;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 721px) {
  #contactinfo {
    width: auto;
    display: inline-block;
    margin: 0 0 0 auto;
    /* mintab 480w */
  }
}

@media only screen and (min-width: 1024px) {
  #contactinfo {
    margin-right: auto;
    margin: 0;
  }
}
#contactinfo .address {
  line-height: 3.08333333;
  line-height: 1.5416665;
  font-size: 0.6em;
  font-size: 1em;
  color: #337ea5;
  width: auto;
  margin-right: 0.66666667em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 1024px) {
  #contactinfo .address {
    color: #fff;
  }
  #contactinfo .address:hover {
    color: #fff;
    text-decoration: underline;
  }
}
#contactinfo .address span {
  margin-right: 0.16666667em;
}
#contactinfo .phone {
  line-height: 2.64285714;
  line-height: 1.64285714;
  font-size: 0.7em;
  font-size: 1em;
  color: #337ea5;
  display: inline-block;
  vertical-align: top;
  margin-right: 1.21428571em;
}
@media only screen and (min-width: 1024px) {
  #contactinfo .phone {
    color: #fff;
  }
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #216890;
}
/* ===============================================
  utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 1024px) {
  #utilitynav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.1em;
  }
}
#utilitynav a {
  line-height: 3.08333333;
  line-height: 1.5416665;
  font-size: 0.6em;
  font-size: 1em;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0;
  background-color: #216890;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a:hover {
  color: #fff;
  background-color: #093d5c !important;
}
#utilitynav a span {
  margin-right: 0.41666667em;
}
#utilitynav a.appointmentrequest {
  width: 9em;
}
#utilitynav a:last-of-type {
  background-color: #216890;
  width: 9.83333333em;
}
/* ===============================================
  socialmedia
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  height: 2.95em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  position: relative;
  z-index: 300;
  background-color: #95a0a9;
  gap: 0.8em;
}
@media only screen and (max-width: 1023px) {
  .socialmedia {
    display: flex;
    justify-content: center;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .socialmedia {
    width: 2.4em;
    margin: 0;
    height: auto;
    width: 2.95em;
    flex-direction: column;
    padding: 1.25em 0;
    position: absolute;
    right: 1em;
    top: 12.5em;
    /* maxTab 1024w */
  }
  .socialmedia:before {
    content: '';
    position: absolute;
    display: block;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border: 1px solid #fff;
  }
}
@media only screen and (min-width: 1300px) {
  .socialmedia {
    position: fixed;
    /* desk 1300w */
  }
}
.socialmedia a {
  font-size: 0.75em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #fff;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
  slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  min-height: 38.0952381vw;
  background: #000;
  position: relative;
  z-index: 400;
}
#slideshow:before {
  content: '';
  width: 100%;
  height: 50%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
  opacity: 0.3;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: 401;
}
@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: 800px;
    /* range 1300w - 1999oo */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 / 800;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow {
    position: fixed;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow #home-slideshow {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
#slideshow .ssoverlay {
  color: currentcolor;
  width: 100%;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5em;
  z-index: 420;
}
#slideshow .ssoverlay .trait {
  line-height: 1;
  font-size: 3.6em;
  font-style: italic;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  display: block;
}
.spot02 {
  padding: 3.75em 0;
  position: relative;
  z-index: 405;
}
.spot02:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 300;
}
@media only screen and (min-width: 666px) {
  .spot02 {
    padding-top: 0;
    padding-bottom: 4em;
  }
}
.spot02 .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  max-width: 20em;
  position: relative;
  z-index: 300;
}
@media only screen and (min-width: 666px) {
  .spot02 .container {
    width: 96%;
    max-width: 64.5em;
    margin: auto;
    gap: 1.5em;
  }
}
@media only screen and (min-width: 48em) {
  .spot02 .container {
    justify-content: center;
  }
}
.spot02 .item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  margin: 0em;
  width: 48vw;
  max-width: 9.05em;
  height: 48vw;
  max-height: 9.05em;
  background-color: #337ea5;
  position: relative;
  transition: background-color 0.9s ease;
  -webkit-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  -moz-transition-duration: 0.9s;
  transition-duration: 0.9s;
}
.spot02 .item:before {
  content: '';
  position: absolute;
  display: block;
  top: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  right: 0.5em;
  border: 1px solid #fff;
  pointer-events: none;
  -webkit-transition-duration: 0.6s ;
  -o-transition-duration: 0.6s ;
  -moz-transition-duration: 0.6s ;
  transition-duration: 0.6s ;
}
@media only screen and (min-width: 666px) {
  .spot02 .item {
    margin-top: -1.75em;
  }
  .spot02 .item:nth-of-type(1),
  .spot02 .item:nth-of-type(3) {
    margin-right: -0.5em;
  }
}
@media only screen and (min-width: 64em) {
  .spot02 .item:hover {
    background-color: #e8e3e0;
  }
  .spot02 .item:hover img {
    filter: grayscale(0) brightness(100%);
  }
  .spot02 .item:hover:before {
    border-color: #2c749d;
    border-width: 5px;
    box-shadow: 0px 0px 10px #000;
  }
  .spot02 .item:hover h3 {
    color: #2c749d;
  }
}
.spot02 .item:nth-of-type(1) img {
  width: 3.85em;
  height: auto;
}
.spot02 .item:nth-of-type(2) img {
  width: 2.2em;
  height: auto;
}
.spot02 .item:nth-of-type(3) img {
  width: 1.65em;
  height: auto;
}
.spot02 .item:nth-of-type(4) img {
  width: 1.9em;
  height: auto;
}
.spot02 .item img {
  display: block;
  margin: auto;
  margin-bottom: 0.7em;
  filter: grayscale(1) brightness(1000%);
    -webkit-transition: transform 0.9s ease;
  -o-transition: transform 0.9s ease;
  -moz-transition: transform 0.9s ease;
  transition: transform 0.9s ease;
}
.spot02 .item:hover img {
  -webkit-transform: scale(1) rotate(10deg);
  -moz-transform: scale(1) rotate(10deg);
  -ms-transform: scale(1) rotate(10deg);
  -o-transform: scale(1) rotate(10deg);
  transform: scale(1) rotate(10deg);
}
.spot02 .item h3 {
  color: #FFF;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-size: 0.85em;
  text-transform: initial;
  font-weight: 400;
  line-height: 1.05882353;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0;
  transition: color 0.3s;
  margin-bottom: 2.41176471em;
}
.spot02 .item h3 sub {
  transform: translateY(-0.70588235em);
  display: inline-block;
}
.spot02 .item h3 span {
  display: block;
  font-size: 1.64705882em;
  line-height: 0.92857143em;
  font-style: italic;
}
.spot05 {
  padding: 4em 0 4em;
  background: url("../images/spotlight/reviews-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  z-index: 405;
}
.spot05 .cycle-slideshow {
  color: #216890;
  width: 96%;
  max-width: 48em;
  margin: 0 auto;
  display: block;
}
.spot05 .cycle-slideshow:hover {
  color: #174a67;
}
.spot05 .cycle-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .spot05 .cycle-slide {
    flex-direction: row;
    align-items: stretch;
    margin: auto;
    justify-content: center;
    margin-bottom: 2.55em;
    font-size: min(1.4vw, 1em);
  }
}
.spot05 .review-group {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 3.05em;
  padding-bottom: 3.8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 23.25em;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.35);
  position: relative;
}
.spot05 .review-group:before {
  content: '';
  position: absolute;
  display: block;
  top: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  right: 0.5em;
  border: 1px solid #d1d3d9;
  pointer-events: none;
}
.spot05 .review-group img {
  width: 1.6em;
  height: auto;
  margin-bottom: 1.6em;
  display: block;
}
.spot05 .testimony {
  line-height: 1.52631579;
  font-size: 0.95em;
  display: block;
  color: #337ea5;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-style: italic;
  margin-bottom: 0.47368421em;
  max-width: 18.31578947em;
}
.spot05 .testifier {
  line-height: 1.66666667;
  font-size: 0.9em;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  display: block;
  color: #95a0a9;
}
.spot05 .controls {
  line-height: 0;
  width: 96%;
  max-width: 64.5em;
  margin: 1em auto;
  display: block;
}
@media only screen and (min-width: 48em) {
  .spot05 .controls {
    text-align: right;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot05 .controls > a {
  line-height: 2.5;
  font-size: 1em;
  text-align: center;
  color: #fff;
  width: 3.6em;
  height: 3.6em;
  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;
}
.spot05 .controls > a:hover {
  -webkit-transform: scale(1.14);
  transform: scale(1.14);
  opacity: 0.5;
}
.spot05 .controls > a.prev {
  width: 3.6em;
  height: auto;
  margin-right: 1em;
}
@media only screen and (min-width: 48em) {
  .spot05 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot05 .cs-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.spot05 .link {
  display: inline-block;
  color: #fff;
  background-color: #337ea5;
  font-size: 0.6em;
  font-weight: 400;
  width: 8.16666667em;
  line-height: 3.33333333em;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.spot05 .link:hover {
  background-color: #324970;
  color: #fff;
}
.spot05 .link span {
  color: #fff;
  margin-left: 0.41666667em;
  letter-spacing: 0;
}
.spot05 .leave {
  width: 12.33333333em;
}
.spot05 .leave a {
  display: inline-block;
  transition: transform 0.3s;
}
.spot05 .leave a:hover {
  transform: translateY(-0.41666667em);
}
/* ==================================================================
  .spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
  subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #fff;
  padding: 2.1em 0;
  padding-top: 10em;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: url("../images/spotlight/int.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.layout-section-for-patients #subnav {
background-image: url("../images/spotlight/int-fp.jpg");
}
body.layout-section-endodontics #subnav {
background-image: url("../images/spotlight/int-e.jpg");
}
body.layout-section-services #subnav {
background-image: url("../images/spotlight/int-s.jpg");
}
body.layout-section-connect-with-us #subnav {
background-image: url("../images/spotlight/int-c.jpg");
}
@media only screen and (min-width: 1024px) {
  #subnav .container{
    max-width: none;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    padding-top: 20.6em;
    /* desk 1300w */
  }
}
#subnav p {
  line-height: 1.14285714;
  font-size: 1.1em;
  font-size: 0.9em;
  font-weight: bold;
  margin: 0 auto;
/*  max-width: 55em;*/
  padding: 0;
  padding-top: 2.21428571em;
  padding-bottom: 2.42857143em;
  position: relative;
}
#subnav p:before {
  content: '';
  width: 100vw;
  height: 100%;
  background: #95a0a9;
  opacity: 0.9;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  padding: 0.3em 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;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#subnav a:hover,
#subnav a.active {
  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;
  background: #fff;
  position: relative;
  z-index: 401;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3.85em 0 6em;
    /* midTab 768w */
  }
}
#bd .container {
  max-width: 64.5em;
}
#bd h1 {
  color: #337ea5;
  font-size: 2.55em;
  font-weight: 400;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  text-transform: initial;
  margin-bottom: 0.92156863em;
}
#content {
  display: block;
}
@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 */
  }
}
#content .content-text a {
  text-decoration: underline;
}
/* ==================================================================
  .home content
=================================================================== */
/* ==================================================================
  .home content || aka #home-content
=================================================================== */
.home #bd {
  padding: 4.05em 0 4em;
  border-top: 0.5em solid #fff;
}
@media only screen and (min-width: 64em) {
  .home #bd {
    background: url("../images/spotlight/home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.home #bd h1 {
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #337ea5;
  font-size: clamp(2em, 5vw, 2.2em);
}
.home #bd h1:after {
  display: none;
}
.home #bd h1 span {
  color: #95a0a9;
  font-style: italic;
  font-size: 0.68181818em;
  margin-bottom: 0.2em;
}
.home #bd .line {
  width: 14.85em;
  height: 1px;
  background-color: #95a0a9;
  margin: auto;
  margin-top: 1.35em;
  margin-bottom: 1.25em;
}
.home #bd .container {
  max-width: 48em;
}
@media only screen and (min-width: 64em) {
  .home #bd .container {
    background: rgba(255, 255, 255, 0.9);
    padding-top: 3.85em;
    padding-bottom: 2.5em;
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.35);
  }
  .home #bd .container:before {
    content: '';
    position: absolute;
    display: block;
    top: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    right: 0.5em;
    border: 1px solid #95a0a9;
    pointer-events: none;
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 39.75em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .home #bd #content .container {
    padding: 0;
  }
  .home #bd #content .container:before {
    display: none;
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content .content-text {
    width: 100%;
    max-width: 51.25em;
    margin: auto;
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
.home #bd #content .content-text a {
  color: #337ea5;
  text-decoration: underline;
  transition: filter 0.3s;
}
.home #bd #content .content-text a:hover {
  filter: brightness(50%);
}
.spot06 {
  background-color: #fff;
  padding-top: 0em;
  font-size: 20px;
  padding-bottom: 4em;
  z-index: 401;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .spot06 {
    padding-top: 3.85em;
  }
}
@media only screen and (min-width: 1300px) {
  .spot06 {
    font-size: inherit;
  }
}
.spot06 h2 {
  font-size: 1.85em;
  line-height: 1.08108108em;
  color: #337ea5;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 1.21621622em;
}
.spot06 .container {
  max-width: 67.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2.5em;
}
@media only screen and (min-width: 1300px) {
  .spot06 .container {
    justify-content: space-between;
    gap: 0;
    column-gap: 3em;
    row-gap: 1.95em;
  }
}
.spot06 .item {
  max-width: 18em;
  padding-top: 1.5em;
  padding-right: 1.5em;
  padding-left: 1.5em;
  padding-bottom: 1.25em;
  position: relative;
}
.spot06 .item:before {
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.4);
  position: absolute;
  display: block;
  border: 1px solid #e8e3e0;
  top: 0;
  left: 0;
  transition: opacity 0.3s, transform 0.3s;
}
@media only screen and (min-width: 1024px) {
  .spot06 .item:hover:before {
    transform: scale(1);
    opacity: 1;
  }
}
.spot06 .item:nth-of-type(1) img {
  width: 1.75em;
  height: auto;
}
.spot06 .item:nth-of-type(2) img {
  width: 2.9em;
  height: auto;
}
.spot06 .item:nth-of-type(3) img {
  width: 2.65em;
  height: auto;
}
.spot06 .item:nth-of-type(4) img {
  width: 2.95em;
  height: auto;
}
.spot06 .item:nth-of-type(5) img {
  width: 2.1em;
  height: auto;
}
.spot06 .item:nth-of-type(6) img {
  width: 1.5em;
  height: auto;
}
.spot06 .flex-group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.35em;
  margin-bottom: 0.15em;
}
.spot06 h3 {
  font-size: 1.25em;
  line-height: 0.92em;
  color: #95a0a9;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  text-transform: initial;
  font-weight: 400;
  margin: 0;
}
.spot06 h3 span {
  display: block;
}
.spot06 p {
  font-size: 0.65em;
  color: #95a0a9;
  line-height: 1.38461538em;
  text-align: justify;
  margin-bottom: 1.30769231em;
}
.spot06 .link {
  font-size: 0.65em;
  color: #2c749d;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-style: italic;
  line-height: 1.53846154em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.spot06 .link:hover span {
  transform: translateX(0.53846154em);
}
.spot06 .link span {
  margin-left: 0.38461538em;
  order: 2;
  transition: transform 0.3s;
}
.cta {
  position: relative;
  padding-top: 6.95em;
  padding-bottom: 9.5em;
  z-index: 401;
}
.cta h2 {
  font-size: 3.4em;
  line-height: 1.17647059em;
  color: #fff;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 1.04411765em;
}
.cta .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 2.25em;
}
.cta .link {
  display: inline-block;
  color: #337ea5;
  background-color: #fff;
  font-size: 0.8em;
  font-weight: 400;
  width: 8.9375em;
  line-height: 3.4375em;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.cta .link:hover {
  background-color: #324970;
  color: #fff;
}
.cta .link2 {
  width: 13.9375em;
}
.cta .contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.45em;
}
.cta .contact,
.cta .phone {
  font-size: 0.9em;
  line-height: 1.11111111em;
  color: #fff;
}
.cta .contact2:hover {
  text-decoration: underline;
}
.cta .bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Makes img tag act as a background image */
  object-fit: cover;
}
/* ==================================================================
  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: #216890;
  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 */
.financial-information #financial-online-services {
  display: none;
}
/* 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;
}

a.int-btn {
  letter-spacing: normal;
  font-size: .8em;
  line-height: 2;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff !important;
  display: inline-block;
/*  height: 38px;*/
  padding: 0 1.5em;
  background-color: #216890;
  border: 1px solid #216890;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
      text-align: center;
    vertical-align: top;
    padding: 15px;
}
a.int-btn:hover {
  color: #fff;
  border-color: #337ea5 !important;
  background-color: #337ea5 !important;
}
a.int-btn.two-line {
  line-height: 1 ;
}


/* ==================================================================
  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.28;
  font-size: 1.31578947em;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #337ea5;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  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: #4e5a64;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  color: #216890;
  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.65em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 30.46511628%;
    margin: 0 0 1em;
    display: block;
    float: right;
    clear: right;
    /* midTab 768w */
  }
}
/* ===============================================
  sitepics
=============================================== */
#hide-stock {
  position: relative;
  box-shadow: 8px 13px 15px 0px rgba(0, 0, 0, 0.05);
}
#hide-stock:before {
  content: '';
  position: absolute;
  display: block;
  top: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  right: 0.5em;
  z-index: 401;
  border: 1px solid #fff;
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
  show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #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 - */
/* ==================================================================
  #ft
=================================================================== */
#ft {
  padding: 4.05em 0 2em;
  position: relative;
  background-color: #2c749d;
  border-top: 10px solid #fff;
  z-index: 401;
}
#ft .ft-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  max-width: 64.5em;
  margin-bottom: 4.55em;
}
@media only screen and (min-width: 768px) {
  #ft .ft-container {
    flex-direction: row;
    justify-content: center;
    font-size: min(1.5vw, 1em);
    align-items: flex-start;
  }
}
#ft .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#ft .map-wrapper {
  width: 31.5em;
  height: 27.8em;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.1em;
  font-size: min(2.5vw, 1em);
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.35);
}
#ft .map-wrapper:hover .pin {
  transform: scale(1.1);
}
@media only screen and (min-width: 768px) {
  #ft .map-wrapper {
    font-size: min(1.3vw, 1em);
  }
}
#ft .map {
  width: 100%;
  height: 27.8em;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#ft .pin {
  position: absolute;
  width: 4.5em;
  height: auto;
  top: 12.3em;
  left: 14.45em;
  display: block;
  transition: transform 0.3s;
}
#ft .location {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9em;
}
#ft .location h2 {
  font-size: 1.25em;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-weight: 300;
}
#ft .location .address {
  font-size: 1em;
  line-height: 1.5em;
  color: #fff;
  margin-bottom: 0.25em;
  display: block;
}
#ft .location .address:hover {
  text-decoration: underline;
}
#ft .location .phone {
  display: block;
  font-size: 0.85em;
  font-weight: 900;
  color: #fff;
}
/* ==================================================================
    #links
=================================================================== */
#links {
  text-align: center;
  color: #9ac0d6;
  margin: 0;
}
#links .container {
  max-width: 64.5em;
}
#links .util {
  line-height: 1.66666667;
  font-size: 0.6em;
}
#links .util a {
  color: #9ac0d6;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  text-decoration: underline;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/* ===============================================
    sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.66666667em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
  backToTop
=============================================== */
#btt {
  padding: 1.5em 0 1.5em;
  text-align: center;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  z-index: 401;
}
#backtotop {
  line-height: 4.58333333;
  font-size: 0.6em;
  text-align: center;
  color: #fff;
  background-color: #e8e3e0;
  box-sizing: border-box;
  font-family: 'Libre Caslon Text', Helvetica, Arial, sans-serif;
  font-style: italic;
  width: 9.75em;
  height: 4.58333333em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 1024px) {
  #backtotop {
    margin-left: 0;
  }
}
#backtotop:before {
  content: '';
  position: absolute;
  display: block;
  top: 0.41666667em;
  bottom: 0.41666667em;
  left: 0.41666667em;
  right: 0.41666667em;
  border: 1px solid #fff;
}
#backtotop:hover {
  background-color: #216890;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
  success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  color: #fff;
  width: 100%;
  padding: 1rem;
  background: #216890;
  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: #216890;
  border: 1px solid #216890;
  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: #216890;
  background-color: #216890;
}
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: #216890;
  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: #216890;
}
/* ===============================================
  .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.7em;
    margin-top: 1.7em;
    box-shadow: none;
    position: relative;
    top: auto;
    z-index: 2900;
  }
  #main-nav .container {
    max-width: 64.5em;
    transform: translateX(1.5em);
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.7em;
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    float: none;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 0em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
  }
  #main-nav ul li.for-patients {
    margin-right: 22.5em;
  }
  #main-nav ul li.active a[id]:before,
  #main-nav ul li:hover a[id]:before {
    transform: scaleX(1);
  }
  #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.75;
    text-align: center;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:before {
    height: 2.75em;
    top: 0;
    transform: scaleX(0);
  }
  #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.78571429;
    text-align: left;
    white-space: nowrap;
    height: 1.78571429em;
    padding: 0 1.78571429em;
    float: left;
  }
  #main-nav ul ul li a:before {
    z-index: 100;
    height: 99%;
  }
  #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: 0em;
    /*top:37px;*/
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    margin: 0;
    left: auto;
    right: 0em;
  }
  /*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;
    max-width: min( 41.84210526em , 1200px );
    padding: 0;
    display: block;
  }
  .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;
  }
}
