/* 
 Site Manager Version: 14.2.0
 Date Created: September 2025
 Account: mueller-graber
 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;
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 75px;
  }
}

@media (min-width: 1300px) {
  html {
    scroll-padding-top: 97px;
  }
}

/* ===============================================
	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 {
  color: #000;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

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

body:not(.home) {
  background-color: #242424;
}

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

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

#content a:focus,
#content a:hover {
  color: #797979;
  text-decoration: none;
}

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

.sub h1 {
  font-size: 10vw;
  text-transform: none;
  margin-bottom: 0.55882353em;
  color: #9e1c20;
}

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

.home h1 {
  font-size: min(2.75em, 8vw);
  margin: 0 0 0.7em;
  color: #9e1c20;
  text-transform: none;
}

@media only screen and (min-width: 1024px) {
  .home h1 {
    font-size: min(2.75em, 3.75vw);
  }
}

.home h1 .trait {
  display: block;
}

.home h1 .trait.top {
  line-height: 1.12121212;
  font-size: 0.6em;
  text-transform: uppercase;
  font-weight: 300;
  color: #000000;
}

.home h1 .trait.bottom {
  font-weight: 700;
}

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

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;
  height: 75px;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: inherit;
    position: fixed;
  }
}

@media only screen and (min-width: 1300px) {
  #masthead {
    height: 4.85em;
    font-size: min(1.4vw, 1em);
  }
}

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

#masthead.mobtron.ready #trigger {
  color: #9e1c20;
  background-color: #fff;
}

#masthead.mobtron.ready #logo path.logo__beige {
  color: #fff;
}

#masthead.mobtron.ready #logo path.logo__crimson {
  color: #fff;
}

#masthead.mobtron.ready .utilitynav a {
  background-color: #fff;
}

#masthead.mobtron.ready .contactinfo a {
  color: #fff;
}

#masthead.mobtron.ready .contactinfo a .icon {
  color: currentColor;
}

#masthead.mobtron.ready #main-nav a[id] {
  color: #fff;
}

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

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

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

#masthead .masthead-mod {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 420;
  flex-direction: column;
  background-color: #ffffff;
  padding: 20px 0 20px;
  gap: 10px;
}

#masthead .masthead-mod--hd {
  display: none;
}

@media only screen and (max-width: 665px) {
  #masthead .masthead-mod {
    transition-property: transform, opacity;
    transition-duration: 0.6s, 0.9s;
    transition-timing-function: ease-in-out;
    transition-delay: 0.24s;
  }

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

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

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

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

@media only screen and (min-width: 666px) {
  #masthead .masthead-mod--hd {
    display: inline-flex;
    margin-right: 100px;
    background: none;
    height: 100%;
    padding: 0px;
  }

  #masthead .masthead-mod--hd .utilitynav {
    display: none;
  }

  #masthead .masthead-mod--mainnav {
    display: flex;
    padding: 30px 0;
  }

  #masthead .masthead-mod--mainnav .contactinfo {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #masthead .masthead-mod {
    flex-direction: row;
    gap: 10px;
  }

  #masthead .masthead-mod--hd {
    margin-right: 90px;
  }

  #masthead .masthead-mod--hd .utilitynav {
    display: inline-flex;
  }

  #masthead .masthead-mod--mainnav {
    display: none;
  }
}

@media only screen and (min-width: 1300px) {
  #masthead .masthead-mod {
    margin: 0;
    padding: 0;
  }
}

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

#trigger:focus-visible {
  color: #797979;
}

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

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

.open #trigger .navicon span:nth-child(4) {
  transform: translate(0, -15.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: 42px;
  height: 31px;
  display: inline-block;
  vertical-align: -9px;
  position: relative;
}

#trigger .navicon span {
  width: 100%;
  height: 4px;
  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;
}

#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: 75px;
  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: 1300px) {
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 3.5em;
    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: 1299px) {
  #main-nav.open .collapsible {
    transition-duration: 0.33s;
    transition-timing-function: ease;
    transform: translate(0, 0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }
}

@media only screen and (max-width: 1299px) {
  #main-nav .collapsible {
    width: 100vw;
    max-width: 320px;
    position: absolute;
    top: 100%;
    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 (max-width: 665px) {
  #main-nav .collapsible {
    max-width: none;
  }
}

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

@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #main-nav .collapsible>ul {
    padding-right: 3em;
  }
}

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

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

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

@media only screen and (max-width: 1299px) {
  #main-nav ul {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (min-width: 1300px) {
  #main-nav ul {
    height: 3.5em;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    position: static;
    float: none;
  }
}

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

@media only screen and (min-width: 1300px) {
  #main-nav ul li {
    margin: 0 0.0375em 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;
    left: 3px;
  }
}

#main-nav ul li a[id] {
  line-height: 50px;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  margin: 0;
  transition: color 0.33s ease;
  pointer-events: none;
  padding: 0 0.6em;
}

@media only screen and (min-width: 1300px) {
  #main-nav ul li a[id] {
    color: #000;
    line-height: 2.66666667;
    font-size: clamp(12px, 0.75em, 15px);
    text-align: center;
    height: 100%;
    z-index: 3000;
    pointer-events: auto;
  }
}

#main-nav ul li a[id]::before,
#main-nav ul li a[id]::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(0, 0) scaleX(0);
  opacity: 0;
}

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

  #main-nav ul li a[id]::before,
  #main-nav ul li a[id]::after {
    height: 2.2em;
    top: 0.25em;
  }
}

#main-nav ul li a[id]::before {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(0deg) scaleX(0);
}

#main-nav ul li a[id]::after {
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(0deg) scaleY(0);
}

#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]::before,
#main-nav ul li.clicked>a[id]::before,
#main-nav ul li.active>a[id]::before,
#main-nav ul li:hover>a[id]::before {
  transform: rotate(0deg) scaleX(1);
  opacity: 1;
}

#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 {
  transform: rotate(0deg) scaleY(1);
  opacity: 1;
}

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

@media only screen and (min-width: 1300px) {
  #main-nav ul ul {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 1em 0;
    position: absolute;
    left: 0em;
    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: 1300px) {
  #main-nav ul ul li {
    height: 1.45em;
    margin: 0 0 0.3em;
    padding: 0;
    opacity: 1;
  }
}

#main-nav ul ul li a {
  line-height: 44px;
  font-size: clamp(12px, 0.7em, 14px);
  color: #fff;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.33s ease-in-out;
}

#main-nav ul ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #211f20;
  z-index: -1;
  transition: transform 0.33s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}

@media only screen and (min-width: 1300px) {
  #main-nav ul ul li a {
    line-height: 2.07142857;
    text-align: left;
    white-space: nowrap;
    height: 2.07142857em;
    padding: 0 2.25em 0 2.05em;
    float: left;
  }
}

#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::before,
#main-nav ul ul li a:hover::before,
#main-nav ul ul li a.active::before {
  transform: scaleX(1);
}

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

  #main-nav.open ul .clicked ul {
    padding: 0 0 0.5em;
    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;
  justify-content: center;
  position: relative;
}

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

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

.collapsible .socialmedia a {
  line-height: 48px;
  font-size: 25px;
  color: #9e1c20;
  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,
.collapsible .socialmedia a:focus {
  color: #000;
  z-index: 400;
}

.collapsible .socialmedia a:hover .icon,
.collapsible .socialmedia a:focus .icon {
  animation: fa-bounce 1s ease;
}

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

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

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

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

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

/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  width: 13.2em;
  margin: 0 auto 0 3%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  pointer-events: auto;
  font-size: 0.85em;
}

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

#logo a {
  display: inline-block;
  vertical-align: top;
  transition: opacity 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: 13.2em;
  height: 2.8em;
}

#logo svg path {
  transition: color 0.33s ease-in-out;
}

#logo svg path.logo__beige {
  color: #F3E0B7;
}

#logo svg path.logo__crimson {
  color: #9D1D20;
}

/* ===============================================
	contact info
=============================================== */
.contactinfo {
  text-align: center;
  width: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  pointer-events: auto;
}

.contactinfo .address {
  font-size: clamp(12px, 1em, 20px);
  width: auto;
  margin-right: 1em;
  display: inline-block;
  vertical-align: top;
}

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

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

.contactinfo .phone {
  font-size: 15px;
  display: inline-block;
  vertical-align: top;
}

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

@media only screen and (min-width: 1024px) {
  .contactinfo .phone {
    line-height: 2;
  }
}

.contactinfo a {
  color: #000000;
  transition: color 0.33s ease-in-out;
}

.contactinfo a .icon {
  color: #9e1c20;
  margin-right: -5px;
  transition: inherit;
}

.contactinfo a:focus,
.contactinfo a:hover {
  color: #9e1c20;
}

.contactinfo a:focus .icon,
.contactinfo a:hover .icon {
  animation: fa-bounce 1s ease;
}

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

.utilitynav ul {
  display: contents;
}

.utilitynav ul li {
  display: contents;
}

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

.utilitynav a {
  font-size: clamp(12px, 0.6em, 12px);
  text-align: left;
  color: #000;
  padding: 0;
  background: #f5e0b6;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, box-shadow 0.33s ease-in-out, transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  line-height: 1.2;
  padding: 0.5em 0.8em 0.5em 0.6em;
  min-width: 6.91666667em;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  .utilitynav a {
    padding: 0.8em 0.8em;
  }
}

.utilitynav a.pay {
  padding-left: 0.65em;
}

.utilitynav a .icon {
  color: #9e1c20;
  display: inline-block;
  vertical-align: top;
  margin-right: -2.5px;
  margin-top: 1px;
  transition: inherit;
}

.utilitynav a .cta {
  display: inline-block;
  vertical-align: top;
}

.utilitynav a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

.utilitynav a:focus,
.utilitynav a:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.utilitynav a:focus::before,
.utilitynav a:hover::before {
  transform: translateY(0%);
}

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

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

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

  #hd .socialmedia,
  #masthead>.socialmedia {
    width: 0.9em;
    margin: 0;
    flex-direction: column;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    background-color: #9e1c20;
    width: 54px;
    padding: 0.75em 0;
    position: fixed;
    display: flex;
  }
}

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

  #hd .socialmedia,
  #masthead>.socialmedia {
    opacity: 0;
  }
}

#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(158, 28, 32, 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;
    font-size: 20px;
  }
}

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

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

#hd .socialmedia a:focus,
#masthead>.socialmedia a:focus,
#hd .socialmedia a:hover,
#masthead>.socialmedia a:hover {
  color: #fff;
  z-index: 400;
}

#hd .socialmedia a:focus .icon,
#masthead>.socialmedia a:focus .icon,
#hd .socialmedia a:hover .icon,
#masthead>.socialmedia a:hover .icon {
  animation: fa-bounce 1s ease;
}

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

/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  min-height: 38.0952381vw;
  background: #000;
  position: relative;
  z-index: 400;
  height: 100vh;
  color: #7A7A7A;
}

@media only screen and (min-width: 1073px) and (max-width: 1299px) {
  #slideshow {
    width: 100%;
    margin-top: 0;
    top: 0;
  }
}

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

  #slideshow .cycle-slideshow,
  #slideshow .mouse {
    opacity: 0;
  }
}

#slideshow::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 420;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3) 100%);
}

#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 / 800;
  height: 100%;
  position: relative;
}

#slideshow #home-slideshow .cycle-slideshow {
  height: 100%;
}

#slideshow #home-slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  #slideshow #home-slideshow img {
    object-position: calc(50% + 8em) 50%;
  }
}

#slideshow #home-slideshow .hpslide {
  width: 100%;
  max-width: none;
}

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

@media only screen and (max-width: 1023px) {
  #slideshow .ssoverlay {
    top: 50%;
  }
}

@media only screen and (max-width: 767px) {
  #slideshow .ssoverlay {
    top: 170px;
  }
}

@media only screen and (min-width: 768px) {
  #slideshow .ssoverlay {
    padding: 0 10%;
  }
}

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

#slideshow .ssoverlay .slogan {
  line-height: 1.04545455;
  /* font-size: clamp(12px, 3.3em, 66px); */
  font-size: min(4em, 15vw);
  color: currentcolor;
  margin: 0 auto;
  display: block;
  font-weight: 400;
  max-width: 6em;
  font-family: "Italianno", cursive;
}

@media only screen and (min-width:768px) {
  #slideshow .ssoverlay .slogan {
    margin: 0 auto;
    font-size: min(3.3em, 5vw);
    text-align: right;
    max-width: 18em;
  }
}

@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay .slogan {
    opacity: 0;
  }
}

#slideshow .ssoverlay .slogan .trait {
  font-weight: 600;
}



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

.spotlight>div {
  position: relative;
}

/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot01 {
  text-align: center;
  color: #797979;
  margin: 0;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background-color: #fff;
}

@media only screen and (min-width: 666px) {
  .spot01 {
    padding: 4.5em 0 4.5em;
  }
}

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

.spot01 h2.topic {
  line-height: 1.2;
  font-size: min(29px, 5.5vw);
  color: #000;
  width: 88%;
  display: block;
  font-weight: 700;
  margin: 0 auto 2.5em;
}

@media only screen and (min-width: 1024px) {
  .spot01 h2.topic {
    margin-bottom: 3.3em;
    width: 90%;
  }
}

@media only screen and (min-width: 1300px) {
  .spot01 h2.topic {
    width: 96%;
  }
}

.spot01 .container {
  max-width: none;
  display: grid;
  place-content: center;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(1, min(400px, 80%));
  gap: 1em;
}

@media only screen and (min-width: 1024px) {
  .spot01 .container {
    grid-template-columns: repeat(2, 400px);
    gap: 60px;
  }
}

@media only screen and (min-width: 1300px) {
  .spot01 .container {
    grid-template-columns: repeat(4, 20em);
    font-size: min(1.05vw, 1em);
    gap: 2.9em;
  }
}

.spot01 a {
  color: #fff;
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  transition: color 0.33s ease-in-out;
}

.spot01 a .decoration {
  width: 100%;
  transition: filter 0.33s ease-in-out;
}

.spot01 a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

.spot01 a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  opacity: 0%;
  transition: opacity 0.33s ease-in-out;
}

.spot01 a h3.topic {
  line-height: 1;
  font-size: min(38px, 7.25vw);
  color: currentcolor;
  display: block;
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0%;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  font-weight: 400;
  transform: translate(1em, -1.2em);
}

@media only screen and (min-width: 1300px) {
  .spot01 a h3.topic {
    font-size: clamp(12px, 1.9em, 38px);
  }
}

.spot01 a h3.topic .cta {
  display: block;
}

.spot01 a h3.topic .trait {
  font-weight: 700;
  text-transform: uppercase;
}

.spot01 a:focus,
.spot01 a:hover {
  z-index: 400;
  color: #9e1c20;
}

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

.spot01 a:focus .decoration,
.spot01 a:hover .decoration {
  filter: grayscale(1) blur(4px);
  -webkit-filter: grayscale(1) blur(4px);
}

.spot01 a:focus h3.topic,
.spot01 a:hover h3.topic {
  transform: translate(calc(5.25em - 50%), calc(-6.15em));
}

/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot02 {
  color: #fff;
  display: flex;
  padding: 3em 0em;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2em;
  background-color: #7A7A7A;
}

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

@media only screen and (min-width: 1024px) {
  .spot02 {
    font-size: min(1.7vw, 1em);
    flex-direction: row;
    gap: 4.2em;
    padding: 5em 0em 6em 4.3em;
  }
}

.spot02 .decoration {
  width: 84%;
  max-width: 518px;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
}

@media only screen and (max-width: 590px) {
  .spot02 .decoration {
    margin-left: -5%;
  }
}

@media only screen and (min-width: 1024px) {
  .spot02 .decoration {
    max-width: 25.9em;
    margin: 0;
  }
}

.spot02 .decoration .borders {
  display: block;
  position: absolute;
  height: 100%;
  width: 99.85%;
  top: 4.25%;
  left: 4.15%;
  z-index: 1;
}

.spot02 .decoration .borders span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.spot02 .decoration .borders span:nth-child(1) {
  border-left: 4px solid #9e1c20;
  border-right: 4px solid #9e1c20;
}

.spot02 .decoration .borders span:nth-child(2) {
  border-top: 4px solid #9e1c20;
  border-bottom: 4px solid #9e1c20;
}

.spot02 .decoration img {
  width: 100%;
}

.spot02 .mod {
  width: 90%;
  max-width: 560px;
  text-align: left;
  position: relative;
  z-index: 1;
  display: contents;
}

@media only screen and (max-width: 1023px) {
  .spot02 .mod__inner {
    max-width: 518px;
    width: 90%;
  }
}

@media only screen and (min-width: 1024px) {
  .spot02 .mod {
    display: block;
    max-width: 28em;
    margin-bottom: 0.8em;
  }
}

.spot02 h2.topic {
  line-height: 1;
  font-size: min(3.8em, 12.5vw);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0em -8px;
  order: -1;
  font-weight: 300;
}

@media only screen and (max-width: 1023px) {
  .spot02 h2.topic {
    max-width: 518px;
    width: 90%;
  }
}

@media only screen and (min-width: 1024px) {
  .spot02 h2.topic {
    margin-bottom: 0.5em;
    transform: translate(-24.15%, 0%);
  }
}

.spot02 h2.topic .trait {
  font-weight: 600;
}

.spot02 .info {
  line-height: 1.2;
  font-size: clamp(12px, 1em, 20px);
  margin: 0 0 2.25em;
}

@media only screen and (min-width: 1024px) {
  .spot02 .info {
    width: 88%;
  }
}

.spot02 .spotbtns {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}

.spot02 .spotbtn {
  font-size: clamp(12px, 0.8em, 16px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  overflow: hidden;
  background-color: #231f20;
  padding: 0 1.2em;
  min-width: 12.5em;
}

@media only screen and (max-width: 1299px) {
  .spot02 .spotbtn {
    line-height: 44px;
    min-width: 44px;
  }
}

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

.spot02 .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #9e1c20;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

.spot02 .spotbtn:hover,
.spot02 .spotbtn:focus {
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.spot02 .spotbtn:hover::before,
.spot02 .spotbtn:focus::before {
  transform: translateY(0%);
}

/* ==================================================================
	subnav
=================================================================== */
#subnav {
  text-align: center;
  color: #fff;
  padding: 2.5em 0;
  position: relative;
  overflow: hidden;
  background: #000 url(../images/subhero.jpg) center top / cover no-repeat;
  display: flex;
  align-items: center;
  height: 50vw;
  margin-top: 75px;
}

@media only screen and (min-width: 768px) {
  #subnav {
    text-align: left;
    padding-top: 5em;
    height: 20em;
  }
}

@media only screen and (min-width: 1300px) {
  #subnav {
    margin: 0;
    height: 33.3em;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #subnav {
    background-size: auto;
    background-position: top;
  }
}

#subnav::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

@media only screen and (min-width: 1024px) {
  #subnav .container {
    width: 86%;
  }
}

@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-weight: 700;
  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: 1.66666667;
    width: 100%;
  }
}

#subnav a {
  color: #fff;
  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: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(0, 0) scaleX(0);
  opacity: 0;
}

#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) scaleX(1);
  opacity: 1;
}

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

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

@media only screen and (min-width: 768px) {
  #bd {
    background-color: #242424;
    padding: 0.75em 0 3.6em;
  }

  #bd.sub #content {
    min-height: 27.5em;
  }
}

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

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

#content {
  max-width: 798.5px;
  display: block;
  z-index: 1;
  position: relative;
}

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

  #content::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 14.7em);
    height: calc(100% + 8.1em);
    top: -4.45em;
    left: -2em;
    background-color: #fff;
    z-index: -1;
  }
}

@media only screen and (min-width: 1024px) {
  #content::before {
    left: -4em;
    width: calc(100% + 16.7em);
  }
}

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

#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: 3em 0;
  background: #fff;
}

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

@media only screen and (min-width: 1300px) {
  .home #bd {
    padding: 8.75em 0 5em;
    min-height: 37.5em;
  }
}

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

.home #bd .decoration {
  width: 100%;
  max-width: 41.25em;
  position: relative;
  margin-bottom: 2em;
}

@media only screen and (min-width: 1024px) {
  .home #bd .decoration {
    position: absolute;
    top: calc(50% - 1.4em);
    left: calc(50% + 50px);
    width: 41.25em;
    transform: translate(0, -50%);
    font-size: min(1vw, 1em);
    margin: 0;
  }
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration {
    left: calc(50% + 67px);
  }
}

.home #bd .decoration .cycle-slideshow {
  width: 100%;
  display: block;
  position: relative;
  transform: translate3d(0, 0, 0);
  background-color: #000;
}

.home #bd .decoration .cycle-slideshow img {
  width: 100%;
  position: absolute;
  opacity: 0;
  aspect-ratio: 825 / 606;
}

.home #bd .decoration .bdpager {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 777;
  top: calc(50% + 0em);
  transform: translate(0, -50%);
  left: 1em;
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration .bdpager {
    top: calc(50% + 1.65em);
    left: 2.35em;
  }
}

.home #bd .decoration .bdpager span {
  width: 44px;
  height: 29.33333333px;
  padding: 0;
  background: none;
  border: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-appearance: none;
  color: transparent;
}

@media only screen and (min-width: 1300px) {
  .home #bd .decoration .bdpager span {
    width: 27px;
    height: 24px;
  }
}

.home #bd .decoration .bdpager span.cycle-pager-active:before {
  background-color: #fff;
}

.home #bd .decoration .bdpager span:hover:before {
  opacity: 1;
}

.home #bd .decoration .bdpager span:before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: auto;
  border: 2px solid #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background-color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}

.home #bd #content {
  position: static;
}

.home #bd #content::before {
  content: none;
}

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

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

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

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

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

/* ==================================================================
	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: #9e1c20;
  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.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: #9e1c20;
  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: #797979;
}

.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: #797979;
  top: 0;
}

/* content centered for slideshow, video-centric, and/or full width content */
.before-and-after #subnav p,
.office-tour #subnav p,
.smile-gallery #subnav p,
.invisalign-videos #subnav p {
  margin: 0 auto;
  text-align: center;
}

.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
=================================================================== */
@media only screen and (min-width: 768px) {
  .sitemap #content .content-text {
    display: flex;
  }
}

.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: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #353535;
  transition-duration: 0s;
}

.sitemap #content ul ul li a {
  line-height: 1.68421053;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #000;
  margin-left: 0;
}

.sitemap #content a:focus,
.sitemap #content a:hover {
  color: #9e1c20;
  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%;
    float: none;
  }

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

/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 90%;
  max-width: 20em;
  margin: 0 auto 3em;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
  left: 5px;
}

@media only screen and (min-width: 768px) {
  #sidebar {
    width: 30.34901366%;
    margin: 0.5em -2px 1em 0;
    display: block;
    float: right;
    clear: right;
    left: 0;
  }
}

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

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

#hide-stock::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 3.75%;
  right: 5%;
  z-index: 1;
  border: 4px solid #9e1c20;
}

.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 */
.spot03 {
  text-align: center;
  color: #797979;
  margin: 0;
  padding: 0 0 3em;
  position: relative;
  z-index: 410;
  background-color: #fff;
  display: grid;
  place-content: center;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(1, min(400px, 80%));
  gap: 1em;
}

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

@media only screen and (min-width: 1024px) {
  .spot03 {
    gap: 3em;
    padding: 2.5em 0 4.85em;
    grid-template-columns: repeat(2, 400px);
  }
}

@media only screen and (min-width: 1300px) {
  .spot03 {
    padding-top: 1em;
    grid-template-columns: repeat(4, 20em);
    font-size: min(1.05vw, 1em);
  }
}

.spot03 a {
  color: #fff;
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  transition: color 0.33s ease-in-out;
}

.spot03 a .decoration {
  display: block;
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
}

.spot03 a .decoration img {
  width: 100%;
}

.spot03 a .decoration::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.spot03 a .decoration .mod {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 224, 182, 0.9);
  padding: 2.5em 1.25em 2.1em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(0, 100%);
  z-index: 2;
}

.spot03 a .decoration .mod .info {
  line-height: 1.2;
  font-size: clamp(12px, 0.75em, 15px);
  margin: 0 auto 1em;
}

.spot03 a .decoration .mod .spotbtn {
  font-size: clamp(12px, 0.65em, 13px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  border: 1px solid #9e1c20;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  overflow: hidden;
  background-color: #9e1c20;
  width: 7.76923077em;
}

@media only screen and (max-width: 1299px) {
  .spot03 a .decoration .mod .spotbtn {
    line-height: 44px;
    min-width: 44px;
  }
}

@media only screen and (min-width: 1300px) {
  .spot03 a .decoration .mod .spotbtn {
    line-height: 2.46153846;
  }
}

.spot03 a .decoration .mod .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

.spot03 a .decoration .mod .spotbtn:hover,
.spot03 a .decoration .mod .spotbtn:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.spot03 a .decoration .mod .spotbtn:hover::before,
.spot03 a .decoration .mod .spotbtn:focus::before {
  transform: translateY(0%);
}

.spot03 a h2.topic {
  line-height: 1;
  font-size: min(22px, 4.35vw);
  color: currentcolor;
  display: block;
  z-index: 2;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0%;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  font-weight: 600;
  transform: translate(calc(9.25em - 50%), -3.5em);
}

@media only screen and (min-width: 1300px) {
  .spot03 a h2.topic {
    font-size: clamp(12px, 1.1em, 22px);
  }
}

.spot03 a h2.topic .cta {
  display: block;
}

.spot03 a h2.topic sup {
  font-size: 0.65em;
  top: -0.5em;
}

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

.spot03 a:focus h2.topic,
.spot03 a:hover h2.topic {
  transform: translate(-1.45em, calc(-23.25em - 0%));
}

.spot03 a:focus .decoration .mod,
.spot03 a:hover .decoration .mod {
  transform: translate(0, 0);
}

/* ===============================================
	spot00 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot04 {
  font-size: min(4vw, 1em);
  padding: 3em 0 4em;
  background-color: #f9f8f6;
  border-bottom: 20px solid #ffffff;
}

@media only screen and (min-width: 666px) {
  .spot04 {
    padding: 4.6em 0 5.95em;
  }
}

.spot04 h2.topic {
  line-height: 1;
  font-size: clamp(12px, 2.85em, 57px);
  text-transform: uppercase;
  color: currentcolor;
  width: 90%;
  display: block;
  font-weight: 300;
  max-width: 18.77192982em;
  margin: 0 auto -0.45em;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1024px) {
  .spot04 h2.topic {
    text-align: left;
  }
}

.spot04 .container {
  max-width: 66em;
  background: #ccc center / cover no-repeat;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.15);
  padding: 5em 0;
  width: 90%;
}

@media only screen and (min-width: 1024px) {
  .spot04 .container {
    padding: 8.25em 0 6.65em;
  }
}

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

.spot04 .cycle-slideshow {
  color: #000;
  width: 90%;
  max-width: 53.5em;
  margin: 0 auto;
  display: block;
  min-height: 9em;
}

.spot04 .cycle-slideshow div {
  position: absolute;
  opacity: 0;
}

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

.spot04 .cycle-slide figure {
  margin: 0;
}

.spot04 .testimony {
  line-height: 1.2;
  font-size: clamp(12px, 1.9em, 38px);
  margin: 0 auto 1.21052632em;
  display: block;
}

.spot04 .testifier {
  line-height: 1.72;
  font-size: clamp(12px, 1.25em, 25px);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3em;
  display: block;
}

.spot04 .spotbtn {
  font-size: clamp(12px, 0.8em, 16px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #9e1c20;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: box-shadow 0.33s ease-in-out;
  overflow: hidden;
  background-color: #9e1c20;
  width: 9.4375em;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
}

@media only screen and (max-width: 1299px) {
  .spot04 .spotbtn {
    line-height: 44px;
    min-width: 44px;
  }
}

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

.spot04 .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

.spot04 .spotbtn:hover,
.spot04 .spotbtn:focus {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.spot04 .spotbtn:hover::before,
.spot04 .spotbtn:focus::before {
  transform: translateY(0%);
}

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

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

#ft a:focus,
#ft a:hover {
  color: #f0666a;
}

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

@media only screen and (min-width: 768px) {
  #location {
    flex-direction: row;
    padding: 5.15em 0 3.45em;
    gap: 6%;
    padding-left: 0.5em;
  }
}

@media only screen and (min-width: 1024px) {
  #location {
    gap: 10%;
  }
}

@media only screen and (min-width: 1300px) {
  #location {
    gap: 9.25em;
  }
}

#location .mod {
  text-align: center;
  width: 100%;
  max-width: 15em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  #location .mod--first {
    align-items: flex-end;
    text-align: right;
  }

  #location .mod--last {
    text-align: left;
    align-items: flex-start;
    padding-left: 0.4em;
  }

  #location .mod--last .officehours {
    margin: 0;
    text-align: left;
  }
}

@media only screen and (min-width: 1300px) {
  #location .mod--first {
    margin-bottom: 1em;
  }

  #location .mod--last {
    margin-bottom: 4.2em;
  }
}

#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0;
  display: block;
  width: 90%;
  max-width: 19.65em;
}

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

#location .logo::after {
  content: none;
}

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

#location .logo svg {
  width: 100%;
  height: auto;
}

#location .phone {
  font-size: clamp(12px, 1.15em, 23px);
  display: block;
  font-weight: 700;
  margin-bottom: 0.8em;
}

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

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

#location .address {
  font-size: clamp(12px, 1.15em, 23px);
  margin: 0;
  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.26086957;
  }
}

#location .officehours {
  line-height: 0;
  text-align: center;
  width: 270px;
  margin: 0 auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  #location .officehours {
    width: 15em;
  }
}

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

#location .officehours .days {
  text-align: right;
  width: 16%;
}

#location .officehours .hours {
  text-align: left;
  width: 70%;
  padding-left: 0.65em;
}

#location .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 1.75em 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  #location .socialmedia {
    justify-content: flex-end;
    margin: 1.75em -12px 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  #location .socialmedia {
    margin: 1em -5px 0 0;
  }
}

#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::after {
    bottom: 1em;
  }
}

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

#location .socialmedia a:hover,
#location .socialmedia a:focus {
  transform: scale(1.1);
}

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

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

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

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

@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    margin: 0;
    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;
  display: inline-block;
}

@media only screen and (max-width: 479px) {
  #links .util a {
    display: block;
  }
}

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

#links .util .divider {
  margin: 0 0.5em;
  display: inline-block;
}

@media only screen and (max-width: 479px) {
  #links .util .divider {
    display: none;
  }
}

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

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

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

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

a#backtotop {
  color: #797979;
  display: inline-flex;
  vertical-align: top;
  transition: color 0.33s ease-in-out;
  height: 44px;
  justify-content: center;
  align-items: center;
}

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

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

a#backtotop svg {
  width: 100%;
  height: auto;
  transition: transform 0.33s ease-in-out;
}

a#backtotop:focus,
a#backtotop:hover {
  color: #9e1c20;
}

a#backtotop:focus svg,
a#backtotop:hover svg {
  transform: rotate(360deg) scale(1.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: #666;
  border: none;
  display: block;
}

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

/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: clamp(12px, 0.95em, 19px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 44px;
  padding: 0 1em;
  background-color: #9e1c20;
  border: 1px solid #9e1c20;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  overflow: hidden;
}

form button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 0.33s ease-in-out;
}

form button:focus,
form button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

form button:focus::before,
form button:hover::before {
  transform: translateY(0%);
}

form p {
  height: auto;
}

/* ===============================================
	skip link styles
=============================================== */
.skiplink {
  line-height: 2;
  font-size: 12px;
  color: #fff;
  padding: 0.5em 1em;
  background-color: #797979;
  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: #9e1c20;
  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: #797979;
}

/* ===============================================
	.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 #content,
  .layout-full-width #bd #content {
    min-height: auto;
  }

  .sitemap #subnav .container nav,
  .layout-full-width #subnav .container nav {
    width: 80%;
    margin: 0 auto;
  }

  .sitemap #subnav .container nav p,
  .layout-full-width #subnav .container nav p {
    width: 100%;
  }

  .sitemap #bd #content::before,
  .layout-full-width #bd #content::before {
    left: -4em;
    width: calc(100% + 8em);
  }

  .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-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);
    }
  }
}