/* 
 Site Manager Version: 14.2.0
 Date Created: December 2023
 Account: pauly-katherine
 Written by: KVanSant
 Sesame Communications - All rights reserved. C2023
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
          fonts
=============================================== */
.fontH {
  font-family: 'Noto 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: 'Noto Sans', sans-serif;
}
form button,
button {
  font-family: 'Noto Sans', sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #313131;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
  links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #799943;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  color: #133874;
}
/* ===============================================
  h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #313131;
  margin: 0 0 1.44em;
  text-rendering: auto;
  font-weight: 400;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 700;
  margin-bottom: 0.79166667em;
  color: #133874;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.4em;
    /* mintab 480w */
  }
}
.home h1 {
  font-size: 10vw;
  text-align: center;
  margin: 0 0 0.8em;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 2.2em;
    /* mintab 480w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 0.85714286;
  font-size: 0.79545455em;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 0.1em;
}
h2:not(.topic) {
  color: #799943;
  font-size: 1.31578947em;
}
h3:not(.topic) {
  color: #042151;
  font-size: 1.21052632em;
}
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;
  position: relative;
  z-index: 3000;
  background-color: #fff;
}
#masthead:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #8ab2e3 0%, #ffffff 100%);
  opacity: 1;
  top: 0;
  transition: 0.33s ease-in-out;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    position: fixed;
    top: 0;
    z-index: 3000;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0);
    height: 12.05em;
    height: 9.35em;
    /* maxTab 1024w */
  }
  #masthead.ready:after {
    opacity: 0;
  }
  #masthead.ready a,
  #masthead.ready span {
    color: #fff;
    transition: 0.33s ease-in-out;
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 97%;
}
@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;
  height: 55px;
  width: 55px;
  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: 55px;
  color: #133874;
  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: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
  top: -0.3em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 3.5px;
  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: #799943;
}
#main-nav .open .trigger {
  color: #133874;
}
#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: -55px 0 0;
  padding: 1em 0;
  background-image: linear-gradient(to top, #8ab2e3 0%, #ebf1fb 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;
  font-weight: 500;
  color: #133874;
  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 a[id]:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.6em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #fff;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #133874;
  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;
  font-weight: 400;
  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;
  margin-bottom: 0;
  background: #0095A8;
  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: #799943;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 690px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 690px) and (max-width: 1023px) {
  #hd .container {
    padding: 0.2em 55px 1.3em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: -78.34em 0 0;
    /* midTab 1024w */
  }
}
/* ===============================================
  logo
=============================================== */
@media only screen and (min-width: 1024px) {
  .ready svg .logo-1,
  .ready svg .logo-2 {
    fill: #fff;
    transition: 0.33s ease-in-out;
  }
}
#logo {
  line-height: 0;
  font-size: 0.5em;
  width: 27.075em;
  margin: 0.75em auto 0.75em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 690px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: .77em;
    margin: 0;
    top: 1.45em;
    left: -1em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #logo {
    font-size: .85em;
    left: 0;
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 27.075em;
  height: 6.825em;
  transition: 0.33s ease-in-out;
}
#logo svg path {
  transition: 0.33s ease-in-out;
}
/* ===============================================
  contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 690px) {
  #contactinfo {
    width: auto;
    margin: 0 0.5em 0 0;
    text-align: right;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
   #contactinfo .btn-wrap{
    margin: 0 0 0 1em;
   }

}
#contactinfo .address {
  line-height: 2.54;
  font-size: 0.8em;
  color: #133874;
  width: auto;
  margin-bottom: 0.3em;
  display: block;
  vertical-align: top;
}
@media only screen and (min-width: 380px) {
  #contactinfo .address {
    font-size: 1em;
  }
}
@media only screen and (min-width: 666px) {
}
@media only screen and (min-width: 978px) {
  #contactinfo .address {
    display: block;
    margin: 0;
  }
}
#contactinfo .address:hover {
  color: #799943;
  transform: scale(1);
}
#contactinfo .phone {
  line-height: 2.77777778;
  font-size: 0.9em;
  color: #fff;
  background: #133874;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 9.38888889em;
  height: 2.77777778em;
}
@media only screen and (min-width: 1024px) {
  #contactinfo .phone {
     display: block; 
    margin: 0.2em 0 0 auto;
    height: 1.777778em;
    line-height: 1.777778;
  }
}
#contactinfo .referralform {
  line-height: 2.77777778;
  font-size: 0.9em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  background: #799943;
  text-align: center;
  width: 9.38888889em;
  height: 2.77777778em;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  #contactinfo .referralform {
    display: block;
    margin: .2em 0 0 auto;
    height: 1.777778em;
    line-height: 1.777778;
  }
}

#contactinfo .patientlogin {
  line-height: 2.77777778;
  font-size: 0.9em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  background: #799943;
  text-align: center;
  width: 9.38888889em;
  height: 2.77777778em;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  #contactinfo .patientlogin {
    display: block;
    margin: .2em 0 0 auto;
    height: 1.777778em;
    line-height: 1.777778;
  }
}


#contactinfo a {
  transition: 0.33s ease-in-out;
}
#contactinfo a:hover {
  transform: scale(1.1);
}
/* ===============================================
  socialmedia
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 0;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 1023px) {
  .socialmedia {
    display: flex;
    justify-content: center;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .socialmedia {
    width: 2.4em;
    margin: 0;
    display: block;
    position: absolute;
    right: 1em;
    top: 12.5em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  .socialmedia {
    position: fixed;
    /* desk 1300w */
  }
}
.socialmedia a {
  line-height: 3;
  font-size: 0.8em;
  color: #fff;
  height: 3em;
  width: 3em;
  border-radius: 50%;
  margin: 0 2px 0 0;
  background: rgba(121, 153, 67, 0.7);
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .socialmedia a {
    margin: 0 0 3px 0;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #fff;
  background: #133874;
  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: #131516;
  position: relative;
  z-index: 400;
}
@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: 1024px) and (max-width: 1999px) {
  #slideshow {
    min-height: 800px;
    /* range 1300w - 1999oo */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 / 800;
  opacity: 0.8;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow {
    position: relative;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) 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: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 420;
}
@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay {
    top: 57.5%;
  }
}
#slideshow .ssoverlay p {
  font-size: 3.1em;
  line-height: 1;
  color: currentcolor;
  margin-bottom: 1.33em;
}
#slideshow .ssoverlay p span {
  font-size: 0.4516129em;
  display: block;
  margin: 1.8em auto 0;
}
#slideshow .ssoverlay a {
  display: inline-block;
  font-size: 0.95em;
  color: currentcolor;
  border: 1px solid #fff;
  text-transform: uppercase;
  height: 3.52631579em;
  line-height: 3.36842105;
  padding: 0 1em;
  margin: 0 auto;
  transition: 0.33s ease-in-out;
}
#slideshow .ssoverlay a:hover {
  background-color: #0095A8;
  color: #fff;
  transform: scale(1.1);
}
/* ==================================================================
  .spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
  spot01 || Intro
=============================================== */
.spot01 {
  text-align: center;
  padding: 4em 2em 0;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 429.9px) {
  .spot01 {
    font-size: 2.8vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 530px) {
  .spot01 {
    font-size: 1.4vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 979px) {
  .spot01 {
    font-size: inherit;
    padding: 4em 0 0;
    /* custom 979w */
  }
}
.spot01 h2 {
  text-align: center;
  font-size: 1.8em;
  line-height: 1.1627907;
  text-transform: uppercase;
  color: #133874;
  margin-bottom: 0.69767442em;
  font-weight: 700;
}
@media only screen and (min-width: 48em) {
.spot01 h2 {
  
  font-size: 2.15em;

}}


.spot01 h2.doc {
  color: #799943;
  margin-bottom: 0.19767442em;
}
.spot01 p {
  font-size: 0.95em;
  line-height: 1.47368421;
  max-width: 50.52631579em;
  margin: 0 auto;
  text-align: justify;
  /* hyphens: auto; */
  text-align-last: center;
}
/* ===============================================
  spot02 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot02 {
  text-align: center;
  padding: 3.6em 0 3.17em;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 429.9px) {
  .spot02 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 530px) {
  .spot02 {
    font-size: 1.4vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1350px) {
  .spot02 {
    font-size: inherit;
    /* custom 979w */
  }
}
.spot02 .flip-card {
  background-color: transparent;
  width: 13.85em;
  height: 13em;
  perspective: 1000px;
  display: inline-block;
  margin: 1em 1.25em;
}
@media only screen and (min-width: 530px) {
  .spot02 .flip-card {
    margin: 0 1.1em;
  }
}
.spot02 .flip-card h2 {
  text-align: center;
  color: #042151;
  font-weight: 400;
  margin-top: 1.2em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: .9em;
}
.spot02 .flip-card p {
  color: #133874;
  font-size: 0.65em;
  line-height: 1.25;
  text-align: center;
  max-width: 23.07692308em;
  margin: 1.156em auto 2.9em;
}
.spot02 .flip-card span {
  color: #799943;
  font-size: 1.3em;
}
.spot02 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.spot02 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.spot02 .flip-card-front,
.spot02 .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.spot02 .flip-card-back {
  transform: rotateY(180deg);
}
.spot02 .flip-card-back div {
  border: 2px solid #133874;
  height: 11.19em;
  width: 13.85em;
  padding: .74em .6em 0;
  background: rgba(255, 255, 255, 0.81);
}
/* ==================================================================
  content
=================================================================== */
#bd {
  padding: 0 0 3em;
  background: #fff;
  position: relative;
  z-index: 300;
  /* fractional bg image on subpages */
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3em 0 3em;
  }
}
@media only screen and (min-width: 1024px) {
  #bd {
    padding: 17.5em 0 6em;
    /* midTab 768w */
  }
}
#bd.sub:after {
  content: none;
  height: 100%;
  display: block;
  background: #2c2c38 url(../images/sidebar.jpg) no-repeat 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  #bd.sub:after {
    content: '';
    width: 33%;
    /* adjust to maintain aesthetic spacing between sidebar and content area  */
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  #bd.sub:after {
    width: auto;
    left: calc(50% + 9em);
    position: fixed;
    /* desk 1300w */
  }
}
#bd .container {
  max-width: 64.5em;
}
#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: left;
  }
}
#content .content-text {
  line-height: 1.68421053;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
/* ==================================================================
  .home content
=================================================================== */
.home #bd {
  padding: 4em 0 3em;
  background: #133874;
}
.home #bd video {
  display: none;
}
@media only screen and (min-width: 978px) {
  .home #bd {
    padding: 4.03em 0 4em;
    background: none;
    /* midTab 768w */
  }
  .home #bd video {
    display: block;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.home #bd .container {
  max-width: 38.25em;
}
.home #bd .container * {
  color: #fff;
}
.home #bd .container a {
  text-decoration: underline;
}
.home #bd .container a:hover {
  opacity: 0.75;
}
@media only screen and (min-width: 978px) {
  .home #bd .container {
    background: rgba(19, 56, 116, 0.9);
    padding: 4em 0 2.23em;
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 978px) {
  .home #bd #content {
    max-width: 31.5em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content .content-text {
    font-size: 1em;
    line-height: 1.75;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content p {
    text-align: left;
    /* midTab 768w */
  }
}
/* ==================================================================
  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: #799943;
  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: 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;
}
/* ==================================================================
  sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.21052632em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #799943;
  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: #799943;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #133874;
}
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: 110%;
  margin: 0 -5% 3em;
  padding: 0;
  display: block;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 30.62015504%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    /* midTab 768w */
  }
}




#sidebar .sb-wrap{
  background: #efefef;  
    padding: 2em 1.25em;
    text-align: center;
}

#sidebar .sb-wrap .sb-set{
  text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1em;
}
#sidebar .sb-wrap .icon {
  display: block;
    font-size: 1.3em;
    width: 30px;
    margin-right: 0.5em;
}
#sidebar .sb-wrap .phone,
#sidebar .sb-wrap a {
  line-height: 1.4;
  font-size: 0.9em;
/*  margin: 0.5em auto 0;*/
/*  margin: 0 0 0 0.5em;*/
  display: block;
  color: #133874;
}
#sidebar .sb-wrap a.review{
  padding: 5px 10px;
    color: #fff;
    background: #133874;
    display: inline-block;  
}


/* ===============================================
  sitepics
=============================================== */
#hide-stock {
  position: relative;
  width: 100%;
  max-width: 19.75em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  #hide-stock {
    margin-bottom: 1em;
    display: block;
    order: 1;
    /* midTab 768w */
  }
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
  show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #hide-stock,
body[class*='meet-dr-'] #hide-stock,
body[class*='meet-doctor-'] #hide-stock {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
  SUBNAV || SIDE ORIENTED
=================================================================== */
#subnav {
  color: #fff;
  margin: 0 0 6%;
  background: #133874;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #subnav {
    text-align: center;
    padding: 2em 10% 3em;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 768px) {
  #subnav {
    text-align: center;
    padding: 3em 1em 4em;
    order: 2;
    background: none;
    /* midTab 768w */
  }
}
#subnav h2.topic {
  line-height: 1.06666667;
  font-size: 1.5em;
  text-align: inherit;
  font-weight: 700;
  color: #fff;
  height: 1.06666667em;
  width: 100%;
  margin: 0 auto 0.65em;
  display: block;
  position: relative;
  z-index: 400;
}
#subnav p {
  line-height: 1.2;
  font-size: 0.75em;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #subnav p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  padding: 0.6em 0;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #subnav a {
    margin: 0;
    padding: 0.6em 0 0.35em 0;
    /* midTab 768w */
  }
}
#subnav a:before {
  content: "\f324";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 0.93333333em;
  opacity: 0;
  transform: translateX(-2.5em);
  transition: 0.33s ease-in-out;
}
#subnav a:hover,
#subnav a.active {
  color: #fff;
  text-decoration: none;
}
#subnav a:hover:before,
#subnav a.active:before {
  opacity: 1;
  transform: translateX(-1.5em);
}
/* END SIDEBAR - */
/* ===============================================
  spot03 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot03 {
  text-align: center;
  padding: 0;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 410;
  font-size: 2.5vw;
}
@media only screen and (min-width: 978px) {
  .spot03 {
    font-size: 1.7vw;
  }
}
@media only screen and (min-width: 1024px) {
  .spot03 {
    font-size: 1vw;
    /* custom 979w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 {
    font-size: inherit;
    /* custom 979w */
  }
}
.spot03 h2 {
  font-size: 2.75em;
  line-height: 3.09090909;
  color: #133874;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  background: #fff;
}
.spot03 .mod {
  background: #000000 url('../images/spotlight/spot03.jpg') center no-repeat;
  background-size: cover;
  padding: 2em 0 1em;
}
@media only screen and (min-width: 1024px) {
  .spot03 .mod {
    height: 35.5em;
    padding: 0;
  }
}
.spot03 a {
  color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out;
  margin: 5% 2%;
}
@media only screen and (min-width: 1024px) {
  .spot03 a {
    height: 100%;
    margin: 0 0;
    width: 20%;
    padding: 0 1em;
    /* midTab 768w */
  }
  .spot03 a:nth-of-type(even) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
@media only screen and (min-width: 1024px) {
  .spot03 a:hover h3 {
    margin-top: 7.25em;
  }
  .spot03 a:hover p,
  .spot03 a:hover span {
    opacity: 1;
  }
}
.spot03 a h3 {
  font-size: 1.4em;
  color: currentcolor;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 1.82em;
  transition: 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .spot03 a h3 {
    margin-top: 13.03571429em;
  }
}
.spot03 a p {
  color: currentcolor;
  font-size: 1.0em;
  line-height: 1.19;
  text-align: center;
  text-align-last: center;
  display: block;
  max-width: 22em;
  margin: 0 auto 1.75em;
  transition: 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .spot03 a p {
    opacity: 0;
  }
}
.spot03 a .fa {
  display: block;
  font-size: 1.65em;
  color: currentcolor;
  transition: 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .spot03 a .fa {
    opacity: 0;
  }
}
/* ===============================================
  spot00 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot04 {
  padding: 3em 0;
  background: #133874 url('../images/spotlight/spot04.jpg') center no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .spot04 {
    padding: 8.6em 0 7.65em;
    /* midTab 768w */
  }
}
.spot04 .cycle-slideshow {
  color: #fff;
  width: 96%;
  max-width: 44.75em;
  margin: 0 auto;
  display: block;
}
.spot04 .cycle-slide {
  width: 100%;
  display: block;
  transition: color 0.33s ease-in-out;
}
.spot04 .testimony {
  line-height: 1.17;
  font-size: 1.55em;
  display: block;
  font-weight: 300;
}
.spot04 .testifier {
  line-height: 1.79166667;
  font-size: 1.2em;
  font-weight: 700;
  display: block;
  margin-top: 0.8em;
  margin-bottom: 2.77em;
}
.spot04 .controls {
  line-height: 0;
  width: 96%;
  max-width: 64.35em;
  margin: 1em auto;
  display: block;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .spot04 .controls {
    text-align: right;
    margin: 0 auto;
    position: absolute;
    top: 51.5%;
    right: 0;
    left: 0;
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot04 .controls > button {
  line-height: 1;
  font-size: 2.05em;
  text-align: center;
  color: #fff;
  background: none;
  font-weight: 400;
  width: 1em;
  height: 1em;
  padding: 0;
  border: none;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
}
.spot04 .controls > button:hover {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.5;
}
.spot04 .controls > button.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 768px) {
  .spot04 .controls > button.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot04 .spotbtn {
  color: #fff;
  font-size: 0.6em;
  text-transform: uppercase;
  vertical-align: top;
  height: 2.91666667em;
  line-height: 2.91666667;
  padding: 0 1.04166667em;
  display: inline-block;
  border: 1px solid #fff;
  margin: 0 0.17em;
  transition: 0.33s ease-in-out;
}
.spot04 .spotbtn:hover {
  background-color: #fff;
  color: #133874;
  transform: scale(1.1);
}
.spot04 .spotbtn:first-of-type {
  padding: 0 1.325em;
}
@media only screen and (min-width: 768px) {
  .spot04 .spotbtn:first-of-type {
    margin-left: 2.5em;
  }
}
/* ==================================================================
  #ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
  background-color: #2c2c38;
/*  background-color: #799943;*/
}
@media only screen and (min-width: 978px) {
  #ft .map-mod {
    background: #e7eaec url(../images/footer/map.png) no-repeat center center;
    background-size: cover;
    display: none;
    display: block;
    height: 42.05em;
  }
}
@media only screen and (min-width: 1300px) {
  #ft .map-mod {
    background-size: auto 100%;
    /* desk 1300w */
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #799943;
}
/* ===============================================
    locations
=============================================== */
#location {
  width: 100%;
  max-width: 47.6em;
  margin: 0 auto;
  padding: 3em 0;
  display: block;
}
@media only screen and (min-width: 768px) {
  #location {
    text-align: left;
    padding: 6.85em 0 4.6em 0;
    padding: 1.85em 0 0.6em 0;
    white-space: nowrap;
  }
}
#location .mod {
  text-align: center;
  display: block;
  white-space: wrap;
}
@media only screen and (max-width: 767px) {
  #location .mod {
    margin: 0 auto 2em;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .mod {
    margin: 0 0 0;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    /* midTab 768w */
  }
  #location .mod:nth-of-type(2) {
    margin: 0 3.05em 0 2.6em;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0.55em auto 1em;
  display: block;
}
#location .logo svg {
  width: 18.95em;
  height: 5.3em;
}
#location .logo svg path {
  fill: #fff;
}
#location .phone {
  line-height: 1.4;
  font-size: 0.9em;
  display: block;
}
#location .phone span {
  display: inline-block;
  margin-right: 0.5em;
}
#location .fa-location-dot {
  font-size: 1.3em;
}
#location .address {
  line-height: 1.4;
  font-size: 0.9em;
  margin: 0.5em auto 0;
  display: block;
  color: #fff;
}
#location .email {
  line-height: 1.4;
  font-size: 0.9em;
  margin: 0.1em auto 0;
  display: block;
  color: #fff;
}
#location .address .marker {
  line-height: 1;
  font-size: 4.4em;
  color: #cd0e0e;
  margin-left: -0.35em;
  position: absolute;
  left: 50%;
  top: 3.6em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  #location .address .marker {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
  }
}
#location .address .marker:before {
  color: #cd0e0e;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  -webkit-filter: blur(0.04125em);
  filter: blur(0.04125em);
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:hover .marker {
  transform: translate3d(0, 0, 0) scale(2);
}
#location .officehours {
  line-height: 1.2;
  font-size: 0.9em;
  width: 13.33333333em;
  margin: 0 auto 0;
  display: block;
}
#location .icon {
  display: block;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
#location .officehours span {
  display: block;
  font-size: 1.73333333em;
  margin-bottom: 0.5em;
}
#location .officehours .days,
#location .officehours .hours {
  width: 75%;
  display: inline-block;
  vertical-align: top;
}
#location .officehours .days {
  width: 16%;
  text-align: right;
  margin-right: 7.5%;
}
/* ==================================================================
    #links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  position: relative;
  z-index: 400;
  background-color: #2c2c38;
/*  background-color: #799943;*/

}
@media only screen and (min-width: 768px) {
  #links {
    height: 4.15em;
    padding: 1.325em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #799943;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0em;
}
#links #btt {
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  height: 2.2em;
  width: 2.2em;
  background-color: #0095A8;
  transition: 0.33s ease-in-out;
}
#links #btt span {
  font-size: 1.3em;
  line-height: 1.62962963;
  color: #fff;
}
#links #btt:hover {
  transform: scale(1.3);
}
/* ===============================================
    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;
}
/*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: #757474;
  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: #799943;
  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: #799943;
  border: 1px solid #799943;
  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: #133874;
  background-color: #133874;
}
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: 55px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  height: 55px;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #799943;
  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: #133874;
}
/* ===============================================
  .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: 2.105em;
    margin-top: 0.875em;
    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: 2.105em;
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.605em 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 li a[id]:after {
    bottom: 0.8em;
  }
  #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 2.66666667em;
    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: -2em;
    /*top:37px;*/

  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    margin: 0;
    left: auto;
    right: -2em;
  }
  /*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;
  }
}

@media only screen and (min-width: 1024px) {
  body.meet-katherine-pauly-dds-msd .img-right, body.meet-stephen-lyon-dds .img-right {
    max-width: 480px;
  }
}

@media only screen and (max-width: 530px) {
.mob-hide{display: none;}}

@media only screen and (min-width: 530px) {
.desk-hide{display: none;}}