/* 
 Site Manager Version: 14.2.0
 Date Created: February 2025
 Account: milford-implantcenter
 Written by: Ryan Postell
 Sesame Communications - All rights reserved. C2025
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
/* open-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v40-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v40-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ===============================================
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;
}
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
form button,
button {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #545252;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #0093d4;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  color: #001268;
  text-decoration: underline;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #0093d4;
  text-transform: uppercase;
  text-rendering: auto;
  margin: 0 0 1.44em;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.76em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.5em;
  }
}
.home h1 {
  font-size: 10vw;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3em;
  }
}
.home h1:after {
  content: '';
  width: 2.5em;
  height: 2px;
  margin: 0.33333333em auto 0.7em;
  background: #001268;
  display: block;
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.2;
  font-size: 0.41666667em;
  text-transform: none;
}
.home h1 .trait.bottom {
  font-weight: 700;
}
h2:not(.topic) {
  font-size: 1.5625em;
  color: #0093d4;
}
h3:not(.topic) {
  font-size: 1.4375em;
  color: #545252;
}
h4 {
  font-size: 1.3125em;
  color: #545252;
}
h5 {
  font-size: 1.3125em;
  color: #545252;
}
h6 {
  font-size: 1.3125em;
  color: #545252;
}
/* ===============================================
	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;
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 44px;
  width: 44px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(0, 147, 212, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 44px;
  color: #0093d4;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.3em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #0093d4;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #000;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -44px 0 0;
  padding: 1em 0;
  background-color: #0093d4;
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #001268;
  font-weight: 700;
  text-transform: uppercase;
  width: auto;
  height: 2.66666667em;
  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: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0093d4;
  display: block;
  position: absolute;
  left: 50%;
  top: -8px;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translateX(-50%) 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] {
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul li.open > a[id]:after,
#main-nav ul li.active > a[id]:after,
#main-nav ul li:hover > a[id]:after {
  transition-duration: 0.15s;
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #0093d4;
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  text-transform: initial;
  font-weight: 700;
  letter-spacing: 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 {
  color: #0093d4;
  background-color: #fff;
  text-decoration: none;
  margin-bottom: 0;
  border: none;
}
/* Toggle Button */
@media only screen and (max-width: 1023px) {
  #main-nav {
    box-shadow: none;
    width: 67px;
    height: 105px;
    background-color: #0093d4;
  }
  #main-nav .trigger {
    line-height: 105px;
    color: #0093d4;
    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: 40px;
    height: 34px;
    display: inline-block;
    position: relative;
    top: 10px;
  }
  #main-nav .trigger .navicon span {
    width: 100%;
    height: 4px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    opacity: 1;
    transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s, opacity 0.3s, bottom 0.3s;
  }
  #main-nav .trigger .navicon span:nth-child(1) {
    width: 100% !important;
    top: 0px;
    transform-origin: center;
  }
  #main-nav .trigger .navicon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
  }
  #main-nav .trigger .navicon span:nth-child(3) {
    top: auto;
    bottom: 0;
  }
  #main-nav .trigger .navicon span:nth-child(4) {
    display: none;
  }
  #main-nav .trigger:hover {
    color: #0093d4;
  }
  #main-nav .trigger:hover .navicon span {
    /* background:@color1; */
  }
  #main-nav .open .trigger {
    color: #001268;
  }
  #main-nav .open .trigger .navicon span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    left: 50%;
  }
  #main-nav .open .trigger .navicon span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    left: 50%;
  }
  #main-nav .open .trigger .navicon span:nth-child(3) {
    bottom: 100%;
    opacity: 0;
  }
}
/* Dropdown */
@media only screen and (max-width: 1023px) {
  #main-nav:before {
    content: '';
    width: 0vw;
    height: 100%;
    background: #0093d4;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 99%;
    z-index: -1;
    transition: width 0.3s;
  }
  #main-nav ul {
    margin-top: 0px;
    max-width: 320px;
  }
  #main-nav ul li {
    text-align: center;
    margin-bottom: 10px;
  }
  #main-nav ul li:last-of-type {
    margin: 0;
  }
  #main-nav ul li a[id] {
    text-align: right;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
  }
  #main-nav ul li a[id]:after {
    background-color: #fff;
    bottom: 4px;
  }
  #main-nav ul li.open > a[id],
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #fff;
  }
  #main-nav ul ul li {
    margin: 0;
  }
  #main-nav ul ul li a {
    text-align: center;
    line-height: 26px;
    height: 26px;
    font-size: 12px;
  }
  #main-nav .nav-wrapper {
    position: relative;
    z-index: 1;
  }
  #main-nav .collapsible.open #navcontact-2160 {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 44px;
  opacity: 1;
}
/* ===============================================
main-nav - Desktop Stylings
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  #main-nav {
    font-size: inherit;
    width: auto;
    display: inline-block;
    height: 3.5625rem;
    margin-top: 1.45em;
    box-shadow: none;
    position: relative;
    top: auto;
    margin-left: auto;
    margin-right: 11.3125rem;
    z-index: 3100;
  }
  #main-nav .container {
    max-width: 66em;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.35em;
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    border-radius: 0 0 1.25rem 1.25rem;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 0.95em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
  }
  #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: 2.86666667em;
  }
  #main-nav ul li.contact ul {
    right: 0;
    left: auto !important;
    transform: none;
  }
  #main-nav ul li.contact ul li a {
    text-align: right;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    left: 50% !important;
    right: auto;
    transform: translateX(-50%);
    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: center;
    white-space: nowrap;
    height: 1.66666667em;
    padding: 0 30px 0 30px;
    float: left;
  }
  #main-nav ul li:hover ul {
    display: block;
    left: 0em;
    /*top:37px;*/
  }
  /*END*/
}
@media only screen and (min-width: 1300px) {
  #main-nav {
    height: 3.35em;
  }
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
}
#masthead {
  height: 105px;
  width: 100%;
  padding: 0;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
  max-width: 66em;
}
@media only screen and (max-width: 1023px) {
  #masthead .container {
    max-width: none;
    /* midTab 1024oo */
  }
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #0093d4;
  padding: 0;
  position: relative;
  padding-left: 1rem;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    padding-right: 2rem;
    padding-left: 2rem;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* maxTab 1024w */
  }
}
#hd .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 83px;
  height: 105px;
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 137px;
  display: block;
  margin-right: auto;
  position: relative;
  z-index: 10000;
}
@media only screen and (min-width: 1024px) {
  #logo {
    width: 11.375rem;
    margin-bottom: 0.25rem;
  }
}
#logo a {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  #logo .cs-mobile {
    display: none;
  }
}
#logo .cs-desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #logo .cs-desktop {
    display: block;
  }
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: auto;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  vertical-align: top;
}
@media only screen and (min-width: 1024px) {
  #contactinfo {
    margin: 0;
    font-size: min(1.4vw, 1em);
  }
}
#contactinfo .address {
  font-size: 12px;
  width: 48px;
  height: 48px;
  background-color: #0093d4;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
#contactinfo .address:hover {
  background-color: #000755;
}
@media only screen and (min-width: 776px) {
  #contactinfo .address {
    width: 8.6875rem;
    height: 2.625rem;
    border-radius: 3.125rem;
    /* mintab 480w */
  }
}
#contactinfo .address .icon {
  font-size: 25px;
}
@media only screen and (min-width: 776px) {
  #contactinfo .address .icon {
    font-size: 0.75rem;
    margin-right: 5px;
  }
}
#contactinfo .address .remove {
  display: none;
}
@media only screen and (min-width: 776px) {
  #contactinfo .address .remove {
    display: inline-block;
    /* mintab 480w */
  }
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  color: #fff;
  min-height: 128vw;
  max-height: 794px;
  background: #000;
  position: relative;
  z-index: 400;
  background: url("../images/spotlight/slide1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#slideshow:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 401;
}
@media only screen and (min-width: 768px) {
  #slideshow {
    width: 100%;
    margin-top: 0;
    top: 0;
    min-height: auto;
    height: 88vh;
  }
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    max-height: 46.7em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow {
    min-height: 900px;
    /* range 1300w - 1999oo */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute !important;
  left: 0;
  top: 0;
  object-fit: cover;
}
#slideshow #home-slideshow .cycle-slideshow {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute !important;
  left: 0;
  top: 0;
  object-fit: cover;
  display: none;
}
@media only screen and (min-width: 1300px) {
  #slideshow #home-slideshow .cycle-slideshow {
    display: block;
  }
}
#slideshow #home-slideshow .hpslide {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  max-width: none;
  display: block;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow #home-slideshow {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
#slideshow .ssoverlay {
  font-size: min(3.4vw, 1em);
  max-width: 66em;
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 22px;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 501;
}
@media only screen and (min-width: 665px) {
  #slideshow .ssoverlay {
    justify-content: flex-start;
    font-size: 20px;
  }
}
@media only screen and (min-width: 1299px) {
  #slideshow .ssoverlay {
    bottom: 5.15em;
    font-size: inherit;
  }
}
#slideshow .ssoverlay .content {
  width: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 0.5em;
}
@media only screen and (min-width: 665px) {
  #slideshow .ssoverlay .content {
    width: 100%;
    max-width: 25em;
    font-size: min(9.4vw, 1em);
  }
}
#slideshow .ssoverlay .content .overlay {
  display: none;
}
@media only screen and (min-width: 665px) {
  #slideshow .ssoverlay .content .overlay {
    display: block;
    width: 90%;
    max-width: 25rem;
    margin-bottom: 2.15em;
  }
}
#slideshow .ssoverlay .content .tagline {
  display: block;
  text-align: center;
  font-size: 1.3125rem;
  line-height: 1.19047619em;
  text-transform: uppercase;
}
@media only screen and (min-width: 665px) {
  #slideshow .ssoverlay .content .tagline {
    white-space: nowrap;
  }
}
.spot08 {
  background-color: #e9e9e9;
  color: #fff;
  padding: 2.5625rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.spot08:before {
  content: '';
  width: clamp(10%, 13vw, 40%);
  height: 500vw;
  background: #fff;
  opacity: 1;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (min-width: 630px) {
  .spot08:before {
    width: 50vw;
    left: auto;
    right: 50%;
    margin-right: 12.5em;
  }
}
@media only screen and (min-width: 1300px) {
  .spot08:before {
    width: 50vw;
    left: auto;
    right: 50%;
    margin-right: 18.15em;
  }
}
@media only screen and (min-width: 778px) {
  .spot08 {
    font-size: inherit;
    font-size: min(1.4vw, 1em);
    padding: 4.95em 0 5em;
  }
}
.spot08 .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  max-width: 104.625rem;
  align-items: center;
}
@media only screen and (min-width: 778px) {
  .spot08 .container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4.6rem;
  }
}
.spot08 .decoration {
  width: 96%;
  max-width: 36.15em;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 13px 22px 25px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.spot08 .decoration:after {
  content: '';
  position: absolute;
  display: block;
  top: 1em;
  bottom: 1em;
  left: 1em;
  right: 1em;
  border: 2px solid #fff;
  z-index: 1000;
}
@media only screen and (min-width: 778px) {
  .spot08 .decoration {
    width: 60%;
    max-width: 49.25em;
    height: auto;
    z-index: 1;
    display: block;
    flex: none;
    order: 1;
  }
  .spot08 .decoration img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (min-width: 1300px) {
  .spot08 .decoration {
    min-height: 34.05em;
  }
}
.spot08 .cs-wrapper {
  width: 96%;
  max-width: 17.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 778px) {
  .spot08 .cs-wrapper {
    padding: 3.2em 0;
    align-items: flex-start;
    justify-content: center;
    order: 2;
  }
}
.spot08 .header {
  font-size: 3.05em;
  line-height: 0.93442623em;
  color: #001268;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0em;
}
@media only screen and (min-width: 630px) {
  .spot08 .header {
    transform: translateX(-40px);
  }
}
@media only screen and (min-width: 778px) {
  .spot08 .header {
    transform: translateX(-4px);
  }
}
.spot08 .header span {
  display: block;
  font-weight: 400;
  font-size: 0.86885246em;
  line-height: 0.96226415em;
}
@media only screen and (min-width: 778px) {
  .spot08 .cs-mobile {
    display: none;
  }
}
.spot08 .cs-desktop {
  display: none;
}
@media only screen and (min-width: 778px) {
  .spot08 .cs-desktop {
    display: block;
    margin-bottom: 1.13114754em;
  }
}
.spot08 .mod {
  width: 100%;
  max-width: 14.8125rem;
  margin: auto;
  display: inline-flex;
  gap: 0.5rem;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
@media only screen and (min-width: 778px) {
  .spot08 .mod {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .spot08 .mod {
    margin-bottom: 4.7em;
  }
}
.spot08 a {
  color: #fff;
  background-color: #001268;
  width: 100%;
  padding: 0;
  padding-left: 1.4375rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.13s;
  z-index: 1;
}
.spot08 a:hover,
.spot08 a.cycle-pager-active {
  background-color: #0093d4;
}
.spot08 a h3.topic {
  text-align: left;
  line-height: 4.13333333;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  font-weight: 600;
  display: block;
  font-size: 0.9375rem;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	subnav
=================================================================== */
#subnav {
  text-align: center;
  color: #fff;
  padding: 2.95em 0;
  position: relative;
  overflow: hidden;
  background-color: #001268;
  display: none;
  z-index: 420;
}
#subnav .sub h1 {
  font-size: clamp(2em, 6vw, 3.4em);
  line-height: 0.95588235em;
  color: #fff;
  text-align: inherit;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.52941176em;
}
@media only screen and (min-width: 1024px) {
  #subnav {
    display: block;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1024px) {
  #subnav {
/*    padding-top: 5em;*/
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    padding-top: 8.4em;
    /* desk 1300w */
  }
}
#subnav .container {
  max-width: 64.5em;
}
#subnav p {
  line-height: 1.85714286;
  font-size: 0.7em;
  margin: 0 auto;
  padding: 0;
  font-weight: 700;
  text-align: left;
  max-width: 54.28571429em;
}
@media only screen and (min-width: 768px) {
  #subnav p {
    text-align: center;
  }
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  padding: 0 8px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
}
#subnav a:before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  display: block;
  border-radius: 3.125rem;
  top: 100%;
  left: 0;
  opacity: 0;
  border: 1px solid #fff;
  transition: opacity 0.3s, top 0.3s;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:hover:before,
#subnav a.active:before {
  top: 0;
  opacity: 1;
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #subnav .divider {
    margin: 0 0.9em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 4.45em 0 6em;
  }
}
#bd.sub h1 {
  font-size: 10vw;
  color: #000755;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.57352941em;
}
@media only screen and (min-width: 30em) {
  #bd.sub h1 {
    font-size: 3.4em;
  }
}
#bd.sub:after {
  content: none;
  background: #e9e9e9;
  display: block;
  position: absolute;
  top: 0;
  bottom: 13.4em;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  #bd.sub:after {
    content: '';
    width: 24%;
  }
}
@media only screen and (min-width: 1300px) {
  #bd.sub:after {
    width: auto;
    left: calc(50% + 12.65em );
  }
}
#bd .container {
  width: 90%;
  max-width: 66em;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 60.60606061%;
    max-width: 40em;
    float: left;
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.68421053em;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 0.95em;
  }
}
#content .content-text a {
  color: #0093d4;
  text-decoration: underline;
}
#content .content-text a:hover {
  color: #001268;
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 4.05em 0 4.05em;
  position: relative;
  background-color: #0093d4;
  z-index: 100;
}
.home #bd:before {
  content: '';
  width: 100vw;
  height: 7.5em;
  background: #f6f6f6;
  opacity: 1;
  position: absolute;
  display: none;
  bottom: 0;
  right: 50%;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .home #bd:before {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding-top: 5.05em;
    padding-bottom: 0em;
    font-size: min(1.2vw, 1em);
    background-color: #fff;
  }
}
.home #bd h2,
.home #bd h3,
.home #bd h4,
.home #bd h5,
.home #bd h6 {
  color: #fff;
}
.home #bd h1 {
  text-align: center;
  font-size: 12vw;
  line-height: 1;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.home #bd h1:after {
  display: none;
}
@media only screen and (min-width: 30em) {
  .home #bd h1 {
    font-size: 2.1em;
  }
}
@media only screen and (min-width: 768px) {
  .home #bd h1 {
    white-space: nowrap;
  }
}
.home #bd h1 .trait {
  display: block;
  text-transform: initial;
  font-size: 0.83333333em;
  line-height: 1.05714286;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1px;
}
.home #bd h1 .trait.bottom {
  font-size: inherit;
  display: inline-block;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.home #bd .container {
  max-width: 82.5rem;
}
.home #bd #content:before {
  display: none;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    margin-left: 0;
    width: 50vw;
    max-width: 45rem;
    padding-left: 4em;
    padding-right: 4em;
    padding-top: 3.75em;
    padding-bottom: 2.4em;
    margin-top: 4.05em;
    background-color: #0093d4;
    box-shadow: 13px 22px 25px 0px rgba(0, 0, 0, 0.15);
  }
}
.home #bd #content .content-text {
  color: #fff;
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.8em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd #content a {
  text-decoration: underline;
  color: #fff;
}
.home #bd #content a:hover {
  color: #000755;
}
.home-image {
  display: none;
}
body.home .home-image {
  display: none;
}
body.home .home-image .home-image1 {
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  body.home .home-image {
    display: block;
    position: absolute;
    top: 0em;
    bottom: 4.1em;
    bottom: 5.7em;
    left: 50%;
    width: 56.9em;
    margin-left: -7em;
    z-index: -1;
  }
  body.home .home-image:before {
    content: '';
    position: absolute;
    display: block;
    top: 1em;
    bottom: 1em;
    left: 1em;
    right: 1em;
    border: 2px solid #fff;
    z-index: 1000;
  }
  body.home .home-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    margin: 0;
  }
}
.spot09 {
  background-color: #f6f6f6;
  padding: 2.5625rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.spot09:before {
  content: '';
  width: 100vw;
  background: #fff;
  opacity: 1;
  position: absolute;
  display: none;
  top: 0;
  left: 50%;
  bottom: 7.3em;
  z-index: 1;
}
@media only screen and (min-width: 778px) {
  .spot09:before {
    display: block;
  }
}
@media only screen and (min-width: 778px) {
  .spot09 {
    padding: 3.85em 0 4.9em;
  }
}
.spot09 .container {
  width: 90%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  max-width: 82.5rem;
  align-items: center;
}
@media only screen and (min-width: 778px) {
  .spot09 .container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4em;
  }
}
.spot09 .decoration {
  width: 96%;
  max-width: 45rem;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 13px 22px 25px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 778px) {
  .spot09 .decoration {
    width: 50vw;
    height: auto;
    min-height: 26.3em;
    z-index: 1;
    flex: none;
    display: block;
    order: 1;
  }
  .spot09 .decoration img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}
.spot09 .cs-wrapper {
  width: 96%;
  max-width: 32.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 778px) {
  .spot09 .cs-wrapper {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    align-self: center;
    justify-content: center;
    order: 2;
    padding: 3rem 0;
    bottom: 1.4em;
  }
}
.spot09 .header {
  text-align: inherit;
  font-size: 2.25rem;
  line-height: 1.25em;
  color: #001268;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.44444444em;
}
.spot09 .cs-text {
  font-size: 0.9375rem;
  line-height: 1.2em;
  color: #545252;
  text-align: inherit;
  margin-bottom: 1.8em;
}
.spot09 .mod {
  width: 100%;
  max-width: 20.625rem;
  margin: auto;
/*  display: grid;*/
  display: flex;
  flex-direction: column;
/*  grid-template-columns: 1fr 1fr;*/
  gap: 0.875rem;
  position: relative;
  z-index: 100;
}
@media only screen and (min-width: 778px) {
  .spot09 .mod {
    margin: 0;
  }
}
.spot09 a {
  max-width: 10rem;
  color: #fff;
  text-align: center;
  background-color: #001268;
  padding: 0 0.4em;
  display: flex;
  border-radius: 3.125rem;
  align-items: center;
  grid-column: span 1;
  position: relative;
  transition: color 0.13s;
  z-index: 1;
}
.spot09 a:hover,
.spot09 a.cycle-pager-active {
  background-color: #0093d4;
}
.spot09 a h2.topic {
  height: 2.875rem;
  line-height: 1;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  padding-top: 1px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6em;
}
.spot02 {
  padding: 3em 0;
  background-color: #001268;
}
@media only screen and (min-width: 1024px) {
  .spot02 {
    padding-top: 5.25em;
    padding-bottom: 5.25em;
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot02 .container {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  max-width: 66em;
}
@media only screen and (min-width: 64em) {
  .spot02 .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 4em;
  }
}
.spot02 .wrapper {
  width: 100%;
  max-width: 32em;
  height: 80vw;
  max-height: 19.5em;
  position: relative;
  margin: auto;
  z-index: 10;
}
@media only screen and (min-width: 64em) {
  .spot02 .wrapper {
    margin: 0;
    min-height: 19.5em;
    max-height: none;
    height: auto;
  }
}
.spot02 .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spot02 .mod {
  width: 96%;
  max-width: 30em;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .spot02 .mod {
    text-align: left;
    align-self: center;
    padding: 0;
    transform: translateY(5px);
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  width: 100%;
  text-align: center;
  line-height: 1.15384615;
  font-size: 1.3em;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.84615385em;
}
@media only screen and (min-width: 64em) {
  .spot02 h2.topic {
    text-align: left;
    white-space: nowrap;
  }
}
.spot02 h2.topic span {
  display: block;
}
@media only screen and (max-width: 470px) {
  .spot02 h2.topic {
    font-size: 10vw;
  }
}
.spot02 .info {
  line-height: 1.21052632;
  font-size: 0.95em;
  margin: 0 0 2.26315789em;
  color: #fff;
  display: block;
}
.spot02 .flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2.65em;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .spot02 .flex-group {
    justify-content: flex-start;
  }
}
.spot02 .spotbtn {
  line-height: 3.91666667;
  font-size: 0.6em;
  color: #fff;
  text-align: center;
  border-radius: 2.5em;
  text-transform: uppercase;
  background-color: #0093d4;
  display: inline-block;
  vertical-align: top;
  width: 12.41666667em;
  font-weight: 800;
  transition: background-color 0.3s, color 0.3s;
}
.spot02 .spotbtn:hover {
  color: #0093d4;
  background-color: #fff;
}
.spot02 .logos {
  font-size: min(4vw, 1em);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 3em;
  width: 96%;
  max-width: 31.5em;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .spot02 .logos {
    width: 100%;
    font-size: min(1.6vw, 1em);
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .logos {
    font-size: min(1.4vw, 1em);
    justify-content: space-between;
    gap: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 .logos {
    font-size: inherit;
    margin-left: 0;
  }
}
.spot02 .logos a {
  margin-bottom: 1.5em;
  transition: transform 0.3s;
}
.spot02 .logos a:nth-of-type(1) {
  width: 6.15em;
  height: auto;
}
.spot02 .logos a:nth-of-type(2) {
  width: 5.35em;
  height: auto;
}
.spot02 .logos a:nth-of-type(3) {
  width: 5.2em;
  height: auto;
}
.spot02 .logos a:nth-of-type(4) {
  width: 9.05em;
  height: auto;
}
.spot02 .logos a img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .spot02 .logos a {
    margin-bottom: 0;
  }
  .spot02 .logos a:hover {
    transform: scale(1.2);
  }
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
  max-width: 84%;
  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 .cycle-slide {
  margin-top: 0!important;
}
.mediaslider .cycle-slideshow > button {
  font-size: 2.8em;
  color: #0093d4;
  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:hover {
  opacity: 0.68;
}
.mediaslider .cycle-slideshow > button .icon {
  transform-origin: 50% 50%;
}
.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 {
  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: #0093d4;
  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:hover:before,
.mediaslider .custompager > button.cycle-pager-active:before {
  background-color: #001268;
}
.mediaslider .cycle-caption.large,
.mediaslider .cycle-caption {
  font-size: min(1rem, 1em);
  padding: 0.66em;
  z-index: 420;
  white-space: normal;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.mediaslider .cycle-caption.large:after,
.mediaslider .cycle-caption:after {
  content: '';
  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%);
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: -1.68em;
  z-index: -1;
}
.mediaslider .cycle-caption.large {
  position: relative;
}
.mediaslider .cycle-caption.large:after {
  background: #001268;
  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 h2[id],
  .common-procedures #content h2[id] {
    scroll-margin-top: 8em;
  }
}
/* 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: 1.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: #0093d4;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.75;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #545252;
  margin-left: 0;
}
.sitemap #content a:hover {
  color: #001268;
  text-decoration: underline;
}
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: 100%;
  max-width: 23.75em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 35.98484848%;
    margin: 0.5em 0 1em;
    display: block;
    float: right;
    clear: right;
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.1);
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'],*/
/*body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR */
/* ==================================================================
	#ft
=================================================================== */
.ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background-color: #f3f3f3;
  display: inline-block;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.1);
  vertical-align: top;
  position: relative;
  z-index: 500;
}
@media only screen and (min-width: 81.25em) {
  .ft {
    background-size: auto 100% /* desk 1300w */;
  }
}
.ft a {
  color: #fff;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
.ft a:hover {
  color: #001268;
}
@media only screen and (min-width: 48em) {
  .ft {
    height: 40em;
    font-size: min(1.4vw, 1em);
  }
}
.ft .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  max-width: 100em;
}
@media only screen and (min-width: 48em) {
  .ft .bg {
    width: 125rem;
    transform: translateX(-42.5%);
  }
}
@media only screen and (min-width: 1300px) {
  .ft .bg {
    width: 125rem;
    transform: translateX(-50%);
  }
}
.ft .marker {
  line-height: 1;
  font-size: 3.3em;
  color: #0093d4;
  margin-left: -5.6em;
  position: absolute;
  top: 5.12121212em;
  left: 50%;
  z-index: 400;
  transition: transform 0.33s ease-in-out, color 0.3s;
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  .ft .marker {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .ft .marker {
    display: block;
  }
}
@media only screen and (min-width: 1300px) {
  .ft .marker {
    margin-left: -7.93939394em;
    top: 5.12121212em;
  }
}
.ft .marker:hover {
  transform: scale(1.2);
  color: #001268;
}
.ft .marker:before {
  color: currentcolor;
}
.ft .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.svg) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location-2312 {
  width: 100%;
  padding: 3em 0 4em;
  display: block;
  position: relative;
  z-index: 1;
}
#location-2312:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 147, 212, 0.9);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 48em) {
  #location-2312 {
    text-align: right;
    width: 50%;
    max-width: 42.9em;
    margin-left: auto;
    height: 100%;
    padding-top: 2.7em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  #location-2312 {
/*    padding-top: 10.15em;*/
    /* midTab 768w */
  }
}
#location-2312 .mod {
  text-align: center;
  width: 90%;
  max-width: 30em;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  #location-2312 .mod {
    margin: 0 auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location-2312 .mod {
    margin: auto;
    /* midTab 768w */
  }
}
#location-2312 .logo {
  width: 100%;
  line-height: 0;
  max-width: 18.5em;
  height: auto;
  text-align: center;
  margin: 0 auto 3.2em;
  display: block;
}
#location-2312 .logo img {
  width: 18.5em;
  height: auto;
}

#location-2312 hr{
  background: #fff;
}
#location-2312 .title {font-size: 1.2em;}
#location-2312 .address {
  line-height: 1.31818182;
  font-size: 1.1em;
  margin: 0 auto 2.13636364em;
  display: block;
  color: #fff;
}
#location-2312 .address:hover {
  text-decoration: underline;
}
#location-2312 .address:hover .pin {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
#location-2312 .phone {
  line-height: 1.18181818;
  font-size: 1.1em;
  display: block;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.77272727em;
}
#location-2312 .socialmedia {
  margin: 0 0 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
@media only screen and (min-width: 48em) {
  #location-2312 .socialmedia {
/*    margin-bottom: 8.45em;*/
  }
}
#location-2312 .socialmedia a {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  color: #fff;
  transition: color 0.3s;
}
@media only screen and (min-width: 48em) {
  #location-2312 .socialmedia a {
    width: auto;
    height: auto;
  }
}
#location-2312 .socialmedia a:hover {
  color: #001268;
}
#location-2312 .cs-request {
  font-size: 0.6em;
  width: 14.41666667em;
  line-height: 3.33333333em;
  background-color: #2e76a9;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
}
#location-2312 .cs-request:hover {
  color: #2e76a9;
  background-color: #fff;
}
#location-2312 .cs-request span {
  margin-right: 0.41666667em;
}




/* ==================================================================
		#links
=================================================================== */
#links-2312 {
  text-align: center;
  color: #c6bdba;
  margin: 0;
  position: relative;
  z-index: 420;
}
#links-2312 .util {
  font-size: clamp( .5rem, 0.75rem , 12px );
}
@media only screen and (min-width: 480px) {
  #links-2312 .util {
    width: auto;
    margin: 0;
  }
}
#links-2312 .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links-2312 .util a:hover {
  color: #001268;
}
#links-2312 .util a,
#links-2312 .util .divider {
  display: inline-block;
}
#links-2312 .util .divider {
  margin: 0 0.1em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link-2312 .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.66666667em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link-2312 .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
	backToTop
=============================================== */
/* ===============================================
	backToTop
=============================================== */
#btt {
  padding: 1.5em 0 1.5em;
  text-align: center;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
}
#backtotop {
  line-height: 3.33333333;
  font-size: 0.6em;
  color: #fff;
  text-align: center;
  border-radius: 2.5em;
  text-transform: uppercase;
  background-color: #0093d4;
  display: inline-block;
  vertical-align: top;
  width: 10em;
  font-weight: 800;
  transition: background-color 0.3s, color 0.3s;
}
#backtotop:hover {
  background-color: #001268;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hr element - div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  color: #fff;
  width: 100%;
  padding: 1rem;
  background: #0093d4;
  float: left;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: clamp( 12px, 0.8em , 16px );
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  height: 44px;
  padding: 0 1.5em;
  background-color: #0093d4;
  border: 1px solid #0093d4;
  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: #001268;
  background-color: #001268;
}
form p {
  height: auto;
}
/* ===============================================
	chat widget resize for mobile use comfort
=============================================== */
#bc-chat-container {
  font-size: 0.8em !important;
}
.bc-minimize-state {
  width: 11.8em !important;
  height: 7.7em !important;
}
/* ===============================================
	blog sidebar sharethiswidget styles
=============================================== */
#blog_search label,
p.share-text {
  margin-bottom: 10px;
}
/* ===============================================
	generic button for quick use by PM/PAs
=============================================== */
a.intbtn,
#content a.intbtn {
  line-height: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #0093d4;
  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: #001268;
}
/* ===============================================
	.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 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: 70%;
    /* count out 90-100 characters per line to determine width */
    max-width: none;
    margin-left: auto;
    margin-right: 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-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*/
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    transform: translate(100%, 0);
    opacity: 0;
    pointer-events: none;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
}
/* ===============================================
	embed-container enhanced support
=============================================== */
@supports (aspect-ratio: 16 / 9) and (object-fit: cover) {
  .embed-container,
  .embed-container.ratio16x9 {
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    display: block;
  }
  @media only screen and (max-width: 1299px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 50em , 90% );
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 50em , 1200px );
    }
  }
  .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;
  }
}
