/* 
 Site Manager Version: 14.2.0
 Date Created: June 2025
 Account: smiles-naples
 Written by: Ricky Rivas
 Sesame Communications - All rights reserved. C2025
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
/* ==================================================================
Basic Stylings
These will affect every size of the site.
================================================================== */
html {
  scroll-behavior: smooth;
}

/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
}

form button,
button {
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
}

svg {
  display: inline-block;
}

body {
  color: #000;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
  }
}

/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}

#content a {
  color: #008080;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}

#content a:focus,
#content a:hover {
  color: #7b7979;
}

/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #7b7979;
  text-rendering: auto;
  margin: 0 0 1.44em;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Mandali", sans-serif;
}

.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.55882353em;
}

@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 3.4em;
  }
}

.home h1 {
  font-size: 10vw;
  margin: 0 0 0.5em 0;
  line-height: 0.8;
  text-transform: uppercase;
  font-size: min(3.4em, 12vw);
}

@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3.4em;
  }
}

@media only screen and (min-width: 1024px) {}

.home h1 .trait {
  display: block;
}

.home h1 .trait.top {
  line-height: 1;
  font-size: 0.51470588em;
  text-transform: none;
  color: #1b98a6;
}

h2:not(.topic) {
  font-size: 1.31578947em;
  color: #008080;
}

h3:not(.topic) {
  font-size: 1.21052632em;
}

h4 {
  font-size: 1.10526316em;
}

h5 {
  font-size: 1.05263158em;
}

h6 {
  font-size: 1em;
}

/* ===============================================
	containers
=============================================== */
.container {
  max-width: 64.5em;
}

@media only screen and (min-width: 1300px) {
  .container {
    width: 90%;
  }
}

/* ===============================================
	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;
}

/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  min-height: 44px;
  padding: 0;
  position: absolute;
  z-index: 3000;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 1023px) {
  #masthead {
    height: 95px;
  }

  #masthead.ready:not(.open)::before {
    transform: translate(0%, -100%);
  }
}

@media only screen and (min-width: 1024px) {
  #masthead {
    height: 6.2em;
    position: fixed;
    font-size: min(20px, 10vw);
  }

  #masthead.ready #logo {
    opacity: 0;
  }

  #masthead.ready::before {
    transform: translate(0%, -100%);
  }

  #masthead.ready #main-nav:hover,
  #masthead.ready #main-nav:focus-within {
    z-index: 3100;
  }
}

@media only screen and (min-width: 1300px) {
  #masthead.ready #logo {
    opacity: 0.8;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    margin: 0;
    transform: translate3d(calc(50vw - 5.3em), 10.3em, 0);
  }

  #masthead.ready #logo a {
    transform: scale(2.75);
  }

  #masthead.ready #logo path.logo__tooth {
    opacity: 0.5;
  }
}

#masthead.open #logo {
  opacity: 1;
}

#masthead::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.33s ease;
  background-color: #292929;
}

#masthead .container {
  width: 100%;
  max-width: none;
}

@media only screen and (min-width: 1024px) {
  #masthead .container {
    width: calc(100% - 2.9em);
  }
}

/* ===============================================
TRIGGER/NAVICON
=============================================== */
#trigger {
  line-height: 44px;
  color: #fff;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 12px;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  display: block;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
  text-align: left;
}

#trigger:focus-visible {
  color: #7b7979;
}

@media only screen and (min-width: 1024px) {
  #trigger {
    display: none;
  }
}

.open #trigger {
  color: #008080;
}

.open #trigger .navicon span:nth-child(1) {
  transform: translate(0, 16.5px) scaleX(0) rotate(0deg);
}

.open #trigger .navicon span:nth-child(4) {
  transform: translate(0, -16.5px) scaleX(0) rotate(0deg);
}

.open #trigger .navicon span:nth-child(2) {
  transform: translate(0, 0) scaleX(1) rotate(45deg);
}

.open #trigger .navicon span:nth-child(3) {
  transform: translate(0, 0) scaleX(1) rotate(-45deg);
}

#trigger .navicon {
  width: 54px;
  height: 33px;
  display: inline-block;
  vertical-align: -9px;
  position: relative;
}

#trigger .navicon span {
  width: 100%;
  height: 6px;
  margin: auto;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate(0, 0) scaleX(1) rotate(0deg);
  transition: transform 0.3s ease;
  border-radius: 3px;
}

#trigger .navicon span:nth-child(1) {
  top: 0;
}

#trigger .navicon span:nth-child(2),
#trigger .navicon span:nth-child(3) {
  top: 0;
  bottom: 0;
}

#trigger .navicon span:nth-child(4) {
  bottom: 0;
}

/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 20px;
  text-align: center;
  width: 96px;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  clear: both;
  /* a{ 
		@media only screen and (max-width: 1023px) { visibility:hidden; } 
	} */
}

@media only screen and (min-width: 1024px) {
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.35em;
    margin-top: 2em;
    background: none;
    box-shadow: none;
    top: auto;
    bottom: 0;
    z-index: 2900;
  }
}

#main-nav.open {
  /* a{  
			@media only screen and (max-width: 1023px) { visibility:visible; } 
		} */
}

@media only screen and (max-width: 1023px) {
  #main-nav.open .collapsible {
    transition-duration: 0.33s;
    transition-timing-function: ease;
    transform: translate(0, 0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }
}

#main-nav .collapsible {
  width: 100vw;
}

@media only screen and (min-width: 666px) {
  #main-nav .collapsible {
    width: 320px;
  }
}

@media only screen and (max-width: 1023px) {
  #main-nav .collapsible {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    transition-property: transform, opacity, visibility;
    transition-duration: 0.09s;
    transition-timing-function: linear;
    transform: translate(100%, 0);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
}

@media only screen and (min-width: 1024px) {
  #main-nav .collapsible {
    margin: 0 auto;
    position: relative;
  }
}

@media only screen and (min-width: 480px) {
  #main-nav .mod {
    display: none;
  }
}

#main-nav .container {
  height: 100%;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  #main-nav .container {
    width: calc(100% - 3.8em);
    max-width: right;
  }
}

/* ===============================================
TOP LEVEL ITEMS || top ul
=============================================== */
#main-nav ul {
  margin: 0;
  padding: 40px 0 30px;
  background-color: #292929;
  position: relative;
  z-index: 550;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul {
    height: 2.35em;
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
    position: static;
    float: right;
  }
}

#main-nav ul li {
  clear: both;
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul li {
    margin: 0 1.05em 0 0;
    background: none;
    vertical-align: top;
    clear: none;
  }

  #main-nav ul li a:focus-visible+ul,
  #main-nav ul li ul:focus-within,
  #main-nav ul li:hover>ul {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    pointer-events: auto;
  }

  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }

  #main-nav ul li.contact:focus-visible>ul,
  #main-nav ul li.contact-us:focus-visible>ul,
  #main-nav ul li.contact:focus-within>ul,
  #main-nav ul li.contact-us:focus-within>ul,
  #main-nav ul li.contact.clicked>ul,
  #main-nav ul li.contact-us.clicked>ul,
  #main-nav ul li.contact.active>ul,
  #main-nav ul li.contact-us.active>ul,
  #main-nav ul li.contact:hover ul,
  #main-nav ul li.contact-us:hover ul {
    margin: 0;
    transform: none;
    right: 0;
    left: auto;
  }

  #main-nav ul li.contact ul li a,
  #main-nav ul li.contact-us ul li a {
    text-align: center;
    float: right;
  }
}

#main-nav ul li a[id] {
  line-height: 50px;
  font-size: clamp(12px, 0.85em, 17px);

  text-transform: uppercase;
  color: #fff;
  height: 50px;
  margin: 0;
  transition: color 0.33s ease;
  pointer-events: none;
  font-family: "Mandali", sans-serif;
  outline: none;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id] {
    line-height: 2.66666667;
    text-align: center;
    height: 100%;
    z-index: 3000;
    pointer-events: auto;
  }
}

#main-nav ul li a[id]:after {
  content: '';
  width: 1.2em;
  height: 1.2em;
  mask: url(../images/spotlight/active.svg) center / cover no-repeat;
  -webkit-mask: url(../images/spotlight/active.svg) center / cover no-repeat;
  background-image: linear-gradient(90deg, #c4942f, #f2e29b, #c4942f);
  background-size: 7.2em;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 50%;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, background-position-x 0.33s ease-in-out;
  transform: translate(-50%, 0) rotate(180deg);
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id]:after {
    top: -0.5em;
  }
}

@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:after {
    top: -1em;
  }
}

#main-nav ul li a[id].home {
  pointer-events: auto;
}

#main-nav ul li:focus-within>a[id],
#main-nav ul li.clicked>a[id],
#main-nav ul li.active>a[id],
#main-nav ul li:hover>a[id] {
  text-decoration: none;
  transition-duration: 0.15s;
}

#main-nav ul li:focus-within>a[id]:after,
#main-nav ul li.clicked>a[id]:after,
#main-nav ul li.active>a[id]:after,
#main-nav ul li:hover>a[id]:after {
  background-position-x: 100%;
  transform: translate(-50%, 0) rotate(0deg);
  opacity: 1;
  transition-delay: 0s, 0s, 0.33s;
}

/* ===============================================
Flyout || ul ul
=============================================== */
#main-nav ul ul {
  width: 100%;
  padding: 0;
  background: #292929;
  border: none;
  float: left;
  transition: visibility 0.33s ease-in-out;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul ul {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 1.4em 2.6em 2em;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    clip: rect(0 0 0 0);
    pointer-events: none;
    z-index: 2800;
  }
}

#main-nav ul ul li {
  height: 0;
  background: none;
  opacity: 0;
  overflow: hidden;
  transition-duration: 0.33s;
}

#main-nav ul ul li:focus-within {
  overflow: visible;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul ul li {
    height: 1.75em;
    margin: 0;
    padding: 0;
    opacity: 1;
  }
}

#main-nav ul ul li a {
  line-height: 44px;
  font-size: clamp(12px, 0.75em, 15px);
  color: #fff;
  width: auto;
  height: 44px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: "Mandali", sans-serif;
  text-transform: uppercase;
}

@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a {
    width: 100%;
    line-height: 2.33333333;
    text-align: center;
    white-space: nowrap;
    height: 2.33333333em;
    width: auto;
  }
}

#main-nav ul ul li a::after {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out;
  background: linear-gradient(90deg, #bf953f, #f2e29b, #bf953f);
  transform: translate(0, 0) scale(0);
  transform-origin: center;
}

#main-nav ul ul li a:focus-visible,
#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 ul li a:focus-visible::after,
#main-nav ul ul li a:hover::after,
#main-nav ul ul li a.active::after {
  transform: translate(0, 0) scale(1);
}

/* ===============================================
TERTIARY || if ul ul ul exists
=============================================== */
/* ===============================================
Flyout animation
=============================================== */
@media only screen and (max-width: 1023px) {
  #main-nav.open ul ul {
    visibility: hidden;
  }

  #main-nav.open ul .clicked ul {
    padding: 0 0 1em;
    visibility: visible;
  }

  #main-nav.open ul .clicked ul li {
    height: 44px;
    opacity: 1;
  }
}

/* socialmedia */
.collapsible .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #f00;
  justify-content: center;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .collapsible .socialmedia {
    display: flex;
  }
}

@media only screen and (min-width: 1024px) {
  .collapsible .socialmedia {
    display: none;
  }
}

.collapsible .socialmedia a {
  line-height: 48px;
  font-size: 25px;
  color: #fff;
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: opacity 0.33s ease-in-out, color 0.33s ease-in-out;
}

.collapsible .socialmedia a:focus-visible {
  opacity: 0.5;
  outline: auto;
}

.collapsible .socialmedia a:focus:active {
  outline: transparent;
}

.collapsible .socialmedia a:hover {
  z-index: 400;
}

.collapsible .socialmedia a .icon {
  position: relative;
}

/* ===============================================
	FULLMOB RULES
=============================================== */
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #008080;
  height: 100%;
  padding: 0;
  position: relative;
  pointer-events: none;
}

@media only screen and (min-width: 420px) {
  #hd {
    text-align: right;
  }
}

@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
  }
}

#hd .container {
  height: 100%;
  pointer-events: none;
}

#hd .mod {
  justify-content: center;
  z-index: 420;
}

@media only screen and (max-width: 479px) {
  #hd .mod {
    width: 100%;
    display: none;
    gap: 24px;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s, 0.9s;
    transition-timing-function: ease-in-out;
    transition-delay: 0.24s;
  }

  #hd .mod.mobtron {
    transform: translate(0, -33px);
    transition-duration: 0s;
    transition-delay: 0s;
    pointer-events: none;
    opacity: 0;
  }

  #hd .mod.mobtron * {
    pointer-events: none;
  }

  #hd .mod.mobtron:focus-within {
    transform: translate(0, 0);
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    pointer-events: auto;
    opacity: 1;
  }

  #hd .mod.mobtron:focus-within * {
    pointer-events: auto;
  }
}

@media only screen and (min-width: 480px) {
  #hd .mod {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    height: 100%;
    vertical-align: top;
    padding: 0.8em 0;
    margin: 0 120px 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  #hd .mod {
    margin: 0 0.5em 0 0;
    height: auto;
  }
}

/* ===============================================
	logo
=============================================== */
#logo {
  font-size: 0.8em;
  line-height: 0;
  width: 8.05em;
  margin: 0 auto 0 1.5em;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  pointer-events: auto;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, filter 0.33s ease-in-out;
}

#logo.home {
  opacity: 0;
}

@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
  }

  #logo.home {
    opacity: 1;
  }
}

#logo a {
  display: inline-block;
  vertical-align: top;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}

@media only screen and (max-width: 1023px) {
  #logo a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

#logo a:focus {
  opacity: 0.51;
}

#logo svg {
  width: 8.05em;
  height: 5.15em;
}

#logo svg path.logo__tooth {
  transition: opacity 0.33s ease-in-out;
}

/* ===============================================
	utility-nav
=============================================== */
.utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  vertical-align: top;
  position: relative;
  z-index: 400;
  pointer-events: auto;
  gap: 0.5em;
}

@media only screen and (max-width: 479px) {
  .utilitynav {
    background: #292929;
    border-top: 1px solid #545454;
    width: 100vw;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .utilitynav {
    gap: 1.45em;
  }
}

.utilitynav ul {
  display: contents;
}

.utilitynav ul li {
  display: contents;
}

.utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}

.utilitynav a {
  text-align: center;
  color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  letter-spacing: 0.01em;
}

@media only screen and (max-width: 1023px) {
  .utilitynav a {
    line-height: 44px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 1023px) {
  .utilitynav a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 25px;
  }

  .utilitynav a .cta {
    white-space: nowrap;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media only screen and (min-width: 1024px) {
  .utilitynav a {
    font-size: clamp(12px, 0.75em, 15px);
    line-height: 2.5;
  }
}

.utilitynav a .icon {
  color: #2e94a9;
  transition: color 0.33s ease-in-out;
}

@media only screen and (min-width: 480px) and (max-width: 1023px) {
  .utilitynav a .icon {
    color: #fff;
  }
}

.utilitynav a:focus,
.utilitynav a:hover {
  color: #daa923;
}

.utilitynav a:focus .icon,
.utilitynav a:hover .icon {
  color: #2e94a9;
  animation: fa-bounce 1s ease;
}

/* ===============================================
	socialmedia
=============================================== */
#hd .socialmedia,
#masthead>.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
  position: absolute;
  top: 100%;
  right: 0;
  pointer-events: auto;
}

@media only screen and (min-width: 1024px) {

  #hd .socialmedia,
  #masthead>.socialmedia {
    width: 2.2em;
    margin: 0;
    flex-direction: column;
    top: 12.5em;
    right: 1em;
  }
}

@media only screen and (min-width: 1300px) {

  #hd .socialmedia,
  #masthead>.socialmedia {
    position: fixed;
  }
}

#hd .socialmedia a,
#masthead>.socialmedia a {
  font-size: clamp(12px, 0.55em, 11px);
  color: #fff;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background: rgba(0, 128, 128, 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 (max-width: 1023px) {

  #hd .socialmedia a,
  #masthead>.socialmedia a {
    line-height: 44px;
    width: 44px;
    height: 44px;
  }
}

@media only screen and (min-width: 1024px) {

  #hd .socialmedia a,
  #masthead>.socialmedia a {
    line-height: 4;
    width: auto;
    height: 4em;
  }
}

#hd .socialmedia a:focus,
#masthead>.socialmedia a:focus,
#hd .socialmedia a:hover,
#masthead>.socialmedia a:hover {
  color: #fff;
  background: #7b7979;
  z-index: 400;
  transform: translate(0, 0) scale(1.44);
}

#hd .socialmedia a .icon,
#masthead>.socialmedia a .icon {
  position: relative;
}

/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  min-height: 490px;
  background: #000;
  position: relative;
  z-index: 400;
}

@media only screen and (min-width: 768px) {
  #slideshow {
    font-size: min(20px, 10vw);
    min-height: 700px;
  }
}

@media only screen and (min-width: 2000px) {
  #slideshow {
    font-size: 1vw;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1999px) {
  #slideshow {
    height: 700px;
    height: auto;
    min-height: 700px;
    min-height: unset;
  }
}

#slideshow::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(19, 21, 22, 0.3);
  z-index: 400;
}

#slideshow::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 401;
}

#slideshow picture img {
  width: 50em;
  margin: 0 calc(-25em + 50vw);
  max-width: none;
  position: relative;
}

@media only screen and (min-width: 768px) {
  #slideshow picture img {
    width: 2000px;
    width: 100%;
    margin: 0 calc(-1000px + 50vw);
    margin: auto;
  }
}

#slideshow .ssoverlay {
  width: 100%;
  padding: 0 3%;
  display: block;
  position: absolute;
  left: 0;
  z-index: 420;
  transform: translate(0, -50%);
  top: calc(50% + 40px);
}

@media only screen and (min-width: 666px) {
  #slideshow .ssoverlay {
    top: 55%;
  }
}

@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay {
    top: 60%;
  }
}

@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay {
    /* top: calc(50% + 170px); */
    top: calc(50% + 10em);
  }
}

#slideshow .sslogo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1em;
  width: 100%;
  display: block;
  transition: opacity 0.33s ease-in-out;
  max-width: 283px;
}

@media only screen and (min-width: 480px) {
  #slideshow .sslogo {
    max-width: 22.05em;
    margin: 0 auto 2em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1300px) {
  #slideshow .sslogo {
    max-width: 33vw;
  }
}

@media only screen and (min-width: 1300px) {
  #slideshow .sslogo {
    display: none;
  }
}

#slideshow .sslogo:focus {
  opacity: 0.51;
}

#slideshow .sslogo svg {
  width: 100%;
  height: auto;
}

#slideshow .spotbtn {
  font-size: clamp(15px, 0.75em, 15px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: "Mandali", sans-serif;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  border-radius: 1.16666667em;
  outline-color: #fff;
  margin: 0.5em 0.2em;
}

@media only screen and (max-width: 1023px) {
  #slideshow .spotbtn {
    line-height: 48px;
    min-width: 44px;
    border-radius: 2.66666667em;
  }
}

@media only screen and (min-width: 1024px) {
  #slideshow .spotbtn {
    line-height: 2.33333333;
  }
}

@media only screen and (min-width: 1300px) {}

#slideshow .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #008080;
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}

#slideshow .spotbtn--tel {
  width: 7.6em;
}

#slideshow .spotbtn--requestapt {
  width: 17.33333333em;
}

#slideshow .spotbtn:hover,
#slideshow .spotbtn:focus {
  transform: scale(1.1);
}

#slideshow .spotbtn:hover .icon,
#slideshow .spotbtn:focus .icon {
  animation: fa-bounce 1s ease;
}

#slideshow .spotbtn:hover::before,
#slideshow .spotbtn:focus::before {
  opacity: 1;
}

/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}

.spotlight--z500 {
  z-index: 500;
}

.spotlight--bd-03 {
  background: #ccc url(../images/spotlight/bd-mobile.jpg) center / cover no-repeat;
}

@media only screen and (min-width: 666px) {
  .spotlight--bd-03 {
    background-image: url(../images/spotlight/bd.jpg);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1999px) {
  .spotlight--bd-03 {
    background-size: auto;
  }
}

.spotlight>div {
  position: relative;
}

/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot01 {
  color: #504e4f;
  padding: 5em 0 6.5em;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-direction: column;
}

@media only screen and (min-width: 1024px) {
  .spot01 {
    font-size: min(5vw, 20px);
    padding: 5em 0;
    flex-direction: row;
    gap: 3.4em;
  }
}

@media only screen and (min-width: 1300px) {
  .spot01 {
    padding-right: 1.6em;
  }
}

.spot01 .decoration {
  width: 90%;
  max-width: 371px;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (min-width: 1024px) {
  .spot01 .decoration {
    max-width: 18.55em;
  }
}

.spot01 .mod {
  width: 90%;
  max-width: 22.25em;
  display: contents;
  vertical-align: middle;
  text-align: left;
}

@media only screen and (min-width: 1024px) {
  .spot01 .mod {
    margin-bottom: 1.7em;
    width: 90%;
    display: inline-block;
  }
}

.spot01 .mod__inner {
  width: 90%;
  max-width: 371px;
}

@media only screen and (min-width: 1024px) {
  .spot01 .mod__inner {
    max-width: 22.25em;
    width: 100%;
  }
}

.spot01 h2.topic {
  font-size: min(51px, 20vw);
  font-weight: 400;
  color: #008080;
  margin: 0;
  order: -1;
  width: 90%;
  max-width: 371px;
  transition: background-position 0.33s ease;
}

@media only screen and (min-width: 1024px) {
  .spot01 h2.topic {
    font-size: min(2.55em, 5.75vw);
    line-height: 1.11764706;
    width: 100%;
    max-width: none;
    margin: 0 0 0.5em -0.1em;
  }
}

.spot01 h2.topic:hover {
  background-position: 50% 100%;
}

.spot01 .info {
  line-height: 1.2;
  font-size: clamp(12px, 1em, 20px);
  margin: 0 0 2.9em;
  font-family: "Mandali", sans-serif;
}

.spot01 .spotbtn {
  font-size: clamp(12px, 0.7em, 14px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  width: 10.85714286em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  border-radius: 1.42857143em;
}

@media only screen and (max-width: 1299px) {
  .spot01 .spotbtn {
    line-height: 44px;
    min-width: 44px;
    border-radius: 2em;
  }
}

@media only screen and (min-width: 1300px) {
  .spot01 .spotbtn {
    line-height: 2.85714286;
  }
}

.spot01 .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #008080;
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}

.spot01 .spotbtn:hover,
.spot01 .spotbtn:focus {
  transform: scale(1.1);
}

.spot01 .spotbtn:hover::before,
.spot01 .spotbtn:focus::before {
  opacity: 1;
}

/* ===============================================
	spot00 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot02 {
  font-size: min(4vw, 1em);
  padding: 6em 0;
  background-color: #008081;
}

@media only screen and (min-width: 768px) {
  .spot02 {
    padding: 6em 0 3.4em;
    min-height: 23.75em;
  }
}

@media only screen and (min-width: 1024px) {
  .spot02 {
    padding-top: 3.6em;
  }
}

.spot02 .spot02__quotes {
  position: absolute;
  width: 20em;
  height: auto;
  pointer-events: none;
}

@media only screen and (max-width: 1023px) {
  .spot02 .spot02__quotes {
    width: 17.5em;
  }
}

.spot02 .spot02__quotes--left {
  top: 0;
  right: calc(50% + 22.1em);
  transform: translate(0, -50%);
}

@media only screen and (max-width: 1299px) {
  .spot02 .spot02__quotes--left {
    left: -7.5em;
    right: auto;
  }
}

.spot02 .spot02__quotes--right {
  bottom: 0;
  left: calc(50% + 22.3em);
  transform: translate(0, 50%);
}

@media only screen and (max-width: 1299px) {
  .spot02 .spot02__quotes--right {
    left: auto;
    right: -7.5em;
  }
}

.spot02 .cycle-slideshow {
  color: #fff;
  width: 90%;
  max-width: 38.25em;
  margin: 0 auto;
  display: block;
  font-family: "Mandali", sans-serif;
}

.spot02 .cycle-slideshow:focus,
.spot02 .cycle-slideshow:hover {
  color: #f2e29b;
  transform: translate(0, 0) scale(1);
}

.spot02 .cycle-slideshow .slide {
  position: absolute;
  top: 0;
  opacity: 0;
}

.spot02 .cycle-slide {
  width: 100%;
  display: block;
  transition: color 0.33s ease-in-out;
}

.spot02 .testimony {
  line-height: 1.2;
  font-size: clamp(12px, 1.75em, 35px);
  margin: 0 auto 0.88571429em;
  display: block;
}

.spot02 .testifier {
  line-height: 1.86956522;
  font-size: clamp(12px, 1.15em, 23px);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

/* ==================================================================
	subnav
=================================================================== */
#subnav {
  text-align: center;
  color: #000;
  padding: 3.05em 0;
  position: relative;
  overflow: hidden;
  background: #ccc url(../images/spotlight/subnav.jpg) center / cover no-repeat;
}

@media only screen and (max-width: 767px) {
  #subnav {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  #subnav {
    margin-top: 100px;
  }
}

@media only screen and (min-width: 1300px) {
  #subnav {
    text-align: left;
    padding-top: 11.2em;
    margin-top: 0;
  }
}

#subnav .container {
  max-width: 65.9em;
}

@media only screen and (max-width: 1299px) {
  #subnav nav {
    width: 100vw;
    display: none;
  }
}

#subnav p {
  font-size: clamp(12px, 0.75em, 15px);
  margin: 0;
  padding: 0;
  font-family: "Mandali", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

@media only screen and (max-width: 1299px) {
  #subnav p {
    line-height: 44px;
    white-space: nowrap;
    padding-right: 9%;
    scroll-snap-type: x;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #subnav p::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (min-width: 1300px) {
  #subnav p {
    line-height: 2.33333333;
    width: 60.58421851%;
  }
}

#subnav a {
  color: #333;
  margin: 0 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
  }
}

#subnav a::after {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out;
  background: linear-gradient(90deg, #bf953f, #f2e29b, #bf953f);
  transform: translate(0, 0) scale(0);
  transform-origin: center;
}

#subnav a:focus,
#subnav a:hover,
#subnav a.active {
  text-decoration: none;
}

#subnav a:focus:after,
#subnav a:hover:after,
#subnav a.active:after {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

#subnav .divider {
  margin: 0 0.8em;
  display: inline-block;
  vertical-align: top;
}

/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 8em 0 3em;
  background: #fff;
  position: relative;
  z-index: 400;
}

@media only screen and (min-width: 768px) {
  #bd {
    padding: 5em 0 3em;
  }
}

@media only screen and (min-width: 1300px) {
  #bd {
    padding-top: 4.5em;
  }
}

#bd .container {
  width: 90%;
  max-width: 65.9em;
}

@media only screen and (min-width: 1300px) {
  #bd .container {
    width: 96%;
  }
}

#content {
  max-width: 798.5px;
  display: block;
}

@media only screen and (min-width: 768px) {
  #content {
    width: 60.58421851%;
    max-width: 39.925em;
    float: left;
  }
}

@media only screen and (min-width: 1300px) {
  #content {
    width: 60.58421851%;
  }
}

#content .content-text {
  line-height: 1.68421053;
}

@media only screen and (min-width: 666px) {
  #content .content-text {
    font-size: min(2.3vw, 19px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
  #content .content-text {
    max-width: 70ch;
  }
}

@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 19px;
  }
}

/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 6em 0 3em;
  text-align: left;
  background: none;
}

@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 4em 0 5em;
  }
}

@media only screen and (min-width: 1024px) {
  .home #bd {
    padding: 7.5em 0 0em;
    min-height: 55em;
  }
}

.home #bd .container {
  width: 90%;
  max-width: 1016px;
  /* @media only screen and (min-width: 768px) and (max-width: 1299px) { 
			max-width:70ch; 
		} */
}

.home #bd .circle-shape {
  width: 943px;
  height: 943px;
  border-radius: 50%;
  shape-outside: circle(58.68% at 525px 413px);
  float: right;
  margin-right: -18em;
  pointer-events: none;
  display: none;
}

@media only screen and (min-width: 1024px) {
  .home #bd .circle-shape {
    display: inline-block;
  }
}

.home #bd #content {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media only screen and (min-width: 1024px) {
  .home #bd #content {
    max-width: 35em;
    width: 68.8976378%;
    margin-left: 0;
  }
}

.home #bd #content .content-text {
  line-height: 1.75;
}

@media only screen and (min-width: 666px) {
  .home #bd #content .content-text {
    font-size: min(2.3vw, 16px);
  }
}

@media only screen and (min-width: 1300px) {}

.home #bd #content .content-text h2 {
  font-size: 1.375em;
  line-height: 1.27272727;
  text-transform: uppercase;
  margin-bottom: 0.8em;
}

/*.home #bd #content .content-text ol li,
.home #bd #content .content-text ul li {
  margin: 0 0 1.5em 0;
}*/
.home #bd #content .content-text ol li:nth-last-of-type(1),
.home #bd #content .content-text ul li:nth-last-of-type(1) {
  margin: 0;
}

.home #bd #content p {
  text-align: justify;
  margin: 0 0 1.4em;
}

.home #bd .decoration {
  width: 100%;
  max-width: 47.15em;
  border-radius: 50%;
  margin-bottom: 2em;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

@media only screen and (min-width: 1024px) {
  .home #bd .decoration {
    position: absolute;
    top: 0em;
    left: auto;
    right: -56vw;
    width: 47.15em;
    margin: 0;
  }
}

@media only screen and (min-width: 1121px) {
  .home #bd .decoration {
    left: calc(100% - 4.6em);
    right: auto;
  }
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration {
    top: -47px;
    left: 608px;
    font-size: min(1em, 1.25vw);
  }
}

.home #bd .decoration .gsap-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-image: linear-gradient(0deg, #f2e29b, #c4942f);
  z-index: 1;
  opacity: 0;
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration .gsap-overlay {
    opacity: 1;
  }
}

.home #bd .decoration img {
  width: 100%;
  border-radius: inherit;
  position: relative;
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration img {
    transform: scale(1.2);
  }
}

/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
  max-width: calc(100% - 88px);
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.mediaslider button {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  pointer-events: auto;
}

.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
  pointer-events: none;
  z-index: 400;
}

.mediaslider .cycle-slideshow>button {
  font-size: 2.8em;
  color: #008080;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: opacity 0.35s ease;
  pointer-events: auto;
}

.mediaslider .cycle-slideshow>button.cycle-prev {
  text-align: left;
  left: auto;
  right: 100%;
}

.mediaslider .cycle-slideshow>button.cycle-next {
  text-align: right;
  direction: rtl;
  right: auto;
  left: 100%;
}

.mediaslider .cycle-slideshow>button:focus,
.mediaslider .cycle-slideshow>button:hover {
  opacity: 0.69;
}

.mediaslider .cycle-slideshow>button .icon {
  transform-origin: 50% 50%;
}

.mediaslider .cycle-slideshow .name {
  display: block;
  font-weight: 700;
}

.mediaslider.ba .cycle-slideshow:before,
.mediaslider.ba.top .cycle-slideshow:before,
.mediaslider.ba .cycle-slideshow:after,
.mediaslider.ba.top .cycle-slideshow:after {
  width: 50%;
  padding: 0.66em 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  z-index: 420;
}

.mediaslider.ba .cycle-slideshow:before,
.mediaslider.ba.top .cycle-slideshow:before {
  content: 'Before';
  left: 0;
}

.mediaslider.ba .cycle-slideshow:after,
.mediaslider.ba.top .cycle-slideshow:after {
  content: 'After';
  right: 0;
}

.mediaslider.ba.bottom .cycle-slideshow:before,
.mediaslider.ba.bottom .cycle-slideshow:after {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  top: auto;
  bottom: 0;
}

.mediaslider.multi .cycle-slide {
  display: flex !important;
}

.mediaslider.multi .cycle-slide img {
  width: 50%;
}

.mediaslider .custompager {
  margin-bottom: 1.58em;
  display: block;
  position: relative;
}

.mediaslider .custompager>button {
  height: 44px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

@media only screen and (max-width: 1299px) {
  .mediaslider .custompager>button {
    width: 44px;
  }
}

@media only screen and (min-width: 1300px) {
  .mediaslider .custompager>button {
    width: 1rem;
    margin: 0 6px;
    cursor: pointer;
  }
}

.mediaslider .custompager>button:before {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #008080;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background-color 0.33s ease-in-out;
}

.mediaslider .custompager>button:focus:before,
.mediaslider .custompager>button:hover:before,
.mediaslider .custompager>button.cycle-pager-active:before {
  background-color: #7b7979;
}

.mediaslider .cycle-caption.large,
.mediaslider .cycle-caption {
  font-size: min(1rem, 1em);
  white-space: normal;
  padding: 0.66em;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 420;
}

.mediaslider .cycle-caption.large:after,
.mediaslider .cycle-caption:after {
  content: '';
  width: auto;
  height: auto;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  display: block;
  position: absolute;
  top: -1.68em;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.mediaslider .cycle-caption.large {
  position: relative;
}

.mediaslider .cycle-caption.large:after {
  background: #7b7979;
  top: 0;
}

/* content centered for slideshow, video-centric, and/or full width 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,
.before-and-after .img-right,
.office-tour .img-right,
.smile-gallery .img-right,
.invisalign-videos .img-right {
  margin: 0 auto;
  float: none;
}

/* 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;
}

/* 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%;
  }
}

@media only screen and (min-width: 768px) {

  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}

/* common procedures */
@media only screen and (min-width: 1300px) {

  #content,
  #content h2[id],
  .common-procedures #content h2[id] {
    scroll-margin-top: 200px;
  }
}

/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}

/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.84em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}

@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
  }
}

/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}

.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}

/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column>ul>li {
  margin-bottom: 1.45em;
}

.sitemap #content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.sitemap #content ul a {
  line-height: 1.4;
  font-size: clamp(12px, 1.25em, 25px);
  font-weight: 400;
  font-family: "Mandali", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #1b98a6;
  transition-duration: 0s;
}

.sitemap #content ul ul li a {
  line-height: 1.68421053;
  font-size: 1em;
  font-style: normal;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #000;
  margin-left: 0;
}

.sitemap #content a:focus,
.sitemap #content a:hover {
  color: #7b7979;
  text-decoration: none;
}

body.sitemap #bd ul li {
  list-style: none;
}

body.sitemap #bd ul ul li {
  list-style: none;
  margin-left: 0;
}

body.sitemap #content .width1 {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
  }

  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}

/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 90%;
  max-width: 400px;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
  aspect-ratio: 818 / 1480;
}

@media only screen and (min-width: 768px) {
  #sidebar {
    background-color: #008080;
    display: block;
    margin: 0;
    max-width: none;
    width: 100%;
    position: absolute;
    top: -3px;
    left: calc(50% + 12.6%);
    width: calc(50% - 12.6%);
    min-height: 100vh;
    height: calc(100% + 3px);
  }

  #sidebar::after {
    content: '';
    background: linear-gradient(to bottom, rgba(0, 128, 128, 0) 0em, #008080 2em, #008080 100%);
    position: absolute;
    top: 63vw;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
}

@media only screen and (min-width: 1024px) {
  #sidebar {
    position: fixed;
    top: 124px;
  }
}

@media only screen and (min-width: 1300px) {
  #sidebar {
    opacity: 0;
  }
}

.meet-dr-garrett-dennis #sidebar {
  margin-top: -10em;
}

@media only screen and (min-width: 768px) {
  .meet-dr-garrett-dennis #sidebar {
    margin-top: -10vw;
  }
}

/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}

.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 */
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot03 {
  text-align: center;
  color: #7b7979;
  margin: 0;
  padding: 0em 0 3em;
  position: relative;
  z-index: 410;
}

@media only screen and (min-width: 1024px) {
  .spot03 {
    padding: 4em 0 5.1em;
  }
}

.spot03 a {
  color: #fff;
  width: 90%;
  max-width: 14.95em;
  padding: 0;
  line-height: 0;
  position: relative;
  transition: color 0.33s ease-in-out;
  border-radius: 50%;
  margin: 4% auto;
  display: block;
}

@media only screen and (min-width: 666px) {
  .spot03 a {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 3em);
    max-width: 20em;
    margin: 2%;
  }
}

@media only screen and (min-width: 1024px) {
  .spot03 a {
    width: 14.95em;
    margin: 0 0.25em;
  }
}

.spot03 a svg {
  width: 100%;
  height: auto;
}

.spot03 a svg .base-wrap {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}

.spot03 a h2.topic {
  line-height: 1;
  font-size: clamp(12px, 1.65em, 33px);
  color: currentcolor;
  width: 100%;
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-family: "Mandali", sans-serif;
}

.spot03 a h2.topic .trait {
  text-transform: uppercase;
  display: block;
}

.spot03 a:focus,
.spot03 a:hover {
  color: #008080;
  z-index: 400;
}

.spot03 a:focus svg .base-wrap,
.spot03 a:hover svg .base-wrap {
  transform: scale(0.5) rotate(45deg);
  opacity: 0;
}

/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot04 {
  color: #008080;
  padding: 3em 0;
  background-color: #fff;
  font-size: min(3vw, 1em);
}

@media only screen and (min-width: 768px) {
  .spot04 {
    font-size: min(1.5vw, 1em);
    padding: 5em 0;
  }
}

.spot04__decoration {
  width: 90%;
  max-width: 34.7em;
  display: inline-block;
  vertical-align: middle;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.spot04__decoration-gsap-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-image: linear-gradient(0deg, #f2e29b, #c4942f);
  z-index: 1;
  opacity: 0;
  z-index: 777;
}

@media only screen and (min-width: 1300px) {
  .spot04__decoration-gsap-overlay {
    opacity: 1;
  }
}

@media only screen and (min-width: 1300px) {
  .spot04__decoration-cycle-slideshow {
    transform: scale(1.2);
  }
}

.spot04__decoration img {
  position: absolute;
  top: 0;
  opacity: 0;
}

.spot04__pager {
  width: 90%;
  max-width: 26.95em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 400;
}

@media only screen and (min-width: 768px) {
  .spot04__pager {
    text-align: left;
    padding: 0;
    margin-left: -4.35em;
    margin-right: 0.25em;
  }
}

.spot04__pager-spotbtn {
  font-size: clamp(12px, 2.25em, 45px);
  color: #fff;
  width: 100%;
  background-color: #1b98a5;
  display: block;
  position: relative;
  z-index: 420;
  transition: padding 0.33s ease-in-out;
  min-width: 44px;
  border-radius: 0.7em;
  max-width: 10.84444444em;
  text-align: left;
}

.spot04__pager-spotbtn:not(:nth-last-of-type(1)) {
  margin-bottom: 0.95555556em;
}

@media only screen and (max-width: 767px) {
  .spot04__pager-spotbtn {
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {

  .spot04__pager-spotbtn:nth-child(2),
  .spot04__pager-spotbtn:nth-child(3) {
    margin-left: auto;
  }
}

.spot04__pager-spotbtn sup {
  font-size: 0.55em;
  top: -0.55em;
}

.spot04__pager-spotbtn .cta {
  display: inline-block;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(2.15em, 0%);
}

.spot04__pager-spotbtn .icon {
  position: absolute;
  top: 50%;
  width: 2.28888889em;
  height: auto;
  left: -0.51111111em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(0, -50%);
}

.spot04__pager-spotbtn:focus .cta,
.spot04__pager-spotbtn:hover .cta,
.spot04__pager-spotbtn.cycle-pager-active .cta {
  transform: translateX(calc(10.84em - calc(100% + 1.2em)));
}

.spot04__pager-spotbtn:focus .icon,
.spot04__pager-spotbtn:hover .icon,
.spot04__pager-spotbtn.cycle-pager-active .icon {
  transform: translate(455%, -50%);
}

/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #292929;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}

#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}

#ft a:focus,
#ft a:hover {
  color: #7b7979;
}

/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 3em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  #location {
    flex-direction: row;
  }
}

@media only screen and (min-width: 1024px) {
  #location {
    padding: 7em 0 6.65em;
    padding-left: 0.3em;
    gap: 5.5em;
  }
}

#location .mod {
  text-align: center;
  width: 90%;
  max-width: 12.1em;
  display: block;
  /*font-family: "Mandali", sans-serif;*/
}

@media only screen and (min-width: 768px) {
  #location .mod {
    text-align: right;
    margin-top: 0.5em;
  }
}

@media only screen and (min-width: 1024px) {
  #location .mod {
    padding-right: 1em;
  }
}

#location .logo {
  line-height: 0;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 767px) {
  #location .logo {
    order: -1;
  }
}

#location .logo:focus {
  opacity: 0.51;
}

#location .logo svg {
  width: 17.05em;
  height: 10.9em;
}

#location .phone {
  font-size: clamp(12px, 0.85em, 17px);
  display: block;
  margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
  #location .phone {
    line-height: 44px;
  }
}

@media only screen and (min-width: 768px) {
  #location .phone {
    line-height: 1.35294118;
  }
}

#location .address {
  font-size: clamp(12px, 0.85em, 17px);
  margin: 0 auto;
  display: block;
}

@media only screen and (max-width: 1023px) {
  #location .address {
    line-height: 22px;
  }
}

@media only screen and (min-width: 1024px) {
  #location .address {
    line-height: 1.35294118;
  }
}

#location .officehours {
  line-height: 0;
  text-align: center;
  width: 12.1em;
  display: block;
  /*font-family: "Mandali", sans-serif;*/
}

@media only screen and (min-width: 768px) {
  #location .officehours {
    text-align: left;
    padding-left: 0.15em;
    margin-top: -0.5em;
  }
}

#location .officehours .days,
#location .officehours .hours {
  line-height: 1.35294118;
  font-size: clamp(12px, 0.85em, 17px);
  display: inline-block;
  vertical-align: top;
}

#location .officehours .days {
  text-align: right;
  width: 3em;
  margin-right: 0.94117647em;
}

#location .officehours .hours {
  text-align: left;
  width: 9.5em;
}

#location .socialmedia {
  line-height: 0;
  text-align: center;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #location .socialmedia {
    margin-right: -0.8em;
  }
}

#location .socialmedia a {
  font-size: clamp(12px, 0.55em, 11px);
  min-width: 24px;
  min-height: 24px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}

@media only screen and (max-width: 1023px) {
  #location .socialmedia a {
    line-height: 44px;
    font-size: 20px;
    width: 44px;
    height: 44px;
  }
}

@media only screen and (min-width: 1024px) {
  #location .socialmedia a {
    line-height: 4;
    width: auto;
    height: 4em;
  }
}

#location .socialmedia a .icon {
  position: relative;
}

/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  margin: -1px 0 0;
  background-color: #292929;
  position: relative;
  z-index: 420;
}

@media only screen and (max-width: 1299px) {
  #links {
    padding: 2em 0;
  }
}

@media only screen and (min-width: 1300px) {
  #links {
    height: 3.3em;
    padding: 0.55em 0 0;
  }
}

#links .util {
  font-size: clamp(12px, 0.6em, 12px);
}

@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    display: inline-block;
    vertical-align: top;
  }
}

@media only screen and (max-width: 1299px) {
  #links .util {
    line-height: 44px;
  }
}

@media only screen and (min-width: 1300px) {
  #links .util {
    line-height: 3.66666667;
  }
}

#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}

#links .util a:focus,
#links .util a:hover {
  color: #7b7979;
}

#links .util a,
#links .util .divider {
  display: inline-block;
}

#links .util .divider {
  margin: 0;
}

/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.58333333em;
  display: inline-block;
  vertical-align: middle;
}

a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}

/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}

@media only screen and (min-width: 480px) {
  #btt {
    width: auto;
    display: inline-block;
    vertical-align: top;
    margin-left: 0.5em;
  }
}

a#backtotop {
  font-size: clamp(12px, 0.65em, 13px);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  transition: color 0.33s ease-in-out, transform 0.33s ease-in-out;
}

@media only screen and (max-width: 1299px) {
  a#backtotop {
    height: 44px;
  }
}

@media only screen and (min-width: 1300px) {
  a#backtotop {
    height: 3.38461538em;
  }
}

a#backtotop .icon {
  background: linear-gradient(180deg, #c69431, #efdc95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.92307692em;
  height: 1.92307692em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

a#backtotop .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #c69431, #efdc95);
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}

a#backtotop:focus,
a#backtotop:hover {
  color: #7b7979;
  transform: scale(1.1);
}

a#backtotop:focus::after,
a#backtotop:hover::after {
  opacity: 1;
}

/*superlative*/
/************************************************************************************************************************************************/
/* hr element - div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  width: 100%;
  margin: 1.58em 0;
  height: 1px;
  background: #757474;
  border: none;
  display: block;
}

.brushing-and-flossing .content-text hr {
  float: left;
}

/* ===============================================
	Form Buttons
=============================================== */
form button {
  font-size: clamp(12px, 0.73684211em, 14px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  min-width: 7.14285714em;
  background: none;
  border: none;
  display: block;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  border-radius: 1.42857143em;
  background-image: linear-gradient(90deg, #f2e29b, #c4942f);
  margin: 0;
  padding: 0 1em;
}

@media only screen and (max-width: 1299px) {
  form button {
    line-height: 44px;
    min-width: 44px;
    border-radius: 2em;
  }
}

@media only screen and (min-width: 1300px) {
  form button {
    line-height: 2.85714286;
  }
}

form button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #008080;
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}

form button:hover,
form button:focus {
  transform: scale(1.1);
}

form button:hover::before,
form button:focus::before {
  opacity: 1;
}

form p {
  height: auto;
}

/* ===============================================
	skip link styles
=============================================== */
.skiplink {
  line-height: 2;
  font-size: 12px;
  color: #fff;
  padding: 0.5em 1em;
  background-color: #7b7979;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 6px;
  z-index: 3333;
  transition: transform 0.33s ease-in-out;
  transform: translate(0, -100%);
}

.skiplink:focus {
  transform: translate(0, 0);
}

.skiplink:focus .cta {
  transform: translate(0, 0);
}

.skiplink:focus .icon {
  transform: translate(0, 0);
}

.skiplink.alt .icon .trait {
  display: none;
}

.skiplink .cta {
  display: block;
  transition: transform 0.33s ease-in-out 0.33s;
  transform: translate(0, -44px);
}

.skiplink .icon {
  width: 1.1em;
  height: 1.1em;
  margin: 0 auto;
  display: block;
  transition: transform 0.33s ease-in-out 0.165s;
  transform: translate(0, -44px);
}

/* ===============================================
	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;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #008080;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: background-color 0.33s ease-in-out;
}

a.intbtn:focus,
#content a.intbtn:focus,
a.intbtn:hover,
#content a.intbtn:hover {
  background-color: #7b7979;
}

/* ===============================================
	.screenreader 
	a11y support for descriptive text on vaguely worded buttons
	https://gomakethings.com/hidden-content-for-better-a11y/#hidden-labels
=============================================== */
.screenreader {
  white-space: nowrap;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet || Supports 768px and up
=============================================== */
@media only screen and (min-width: 768px) {

  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #bd .sub__sidebar,
  .layout-full-width #bd .sub__sidebar {
    display: none;
  }

  .sitemap #subnav p,
  .layout-full-width #subnav p {
    text-align: center;
  }

  .sitemap #content,
  .layout-full-width #content,
  .sitemap #subnav p,
  .layout-full-width #subnav p {
    width: 70%;
    /* count out 90-100 characters per line to determine width */
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }

  /* ===============================================
	custom content
=============================================== */
  .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-right: auto;
    margin-left: 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-right: auto;
    margin-left: auto;
    display: block;
  }

  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }

  /*END*/
}

/* ===============================================
	embed-container enhanced support
=============================================== */
@supports (aspect-ratio: 16 / 9) and (object-fit: cover) {
  @media only screen and (max-width: 1299px) {

    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min(42.02631579em, 90%);
    }
  }

  @media only screen and (min-width: 1300px) {

    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min(42.02631579em, 1200px);
    }
  }
}

.onscroll-gradient-y {
  background-image: linear-gradient(0deg, #f2e29b, #c4942f, #f2e29b, #c4942f);
  background-size: 100% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.onscroll-gradient-x {
  background-image: linear-gradient(90deg, #f2e29b 0%, #c4942f 50%, #f2e29b 100%, #c4942f 150%);
  background-size: 200% 100%;
  background-position: center left;
}