/* 
 Site Manager Version: 14.2.0
 Date Created: October 2025
 Account: rye-smiles
 Written by: james stillion
 Sesame Communications - All rights reserved. C2025
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
					fonts
=============================================== */
/* bevan-400 */
@font-face {
  font-display: swap;
  font-family: 'Bevan';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bevan-400.woff2') format('woff2');
}
/* open-sans-300 */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-300.woff2') format('woff2');
}
/* open-sans-400 */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-400.woff2') format('woff2');
}
/* open-sans-400i */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-400i.woff2') format('woff2');
}
/* open-sans-600 */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-600.woff2') format('woff2');
}
/* open-sans-700 */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-700.woff2') format('woff2');
}
/* open-sans-700i */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/open-sans-700i.woff2') format('woff2');
}
/* ==================================================================
Basic Stylings
These will affect every size of the site.
================================================================== */
html {
  scroll-behavior: smooth;
}
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea,
form button,
button {
  font-family: 'Open Sans', Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
}
svg {
  display: inline-block;
}
body {
  color: #000;
  background: #fff;
  position: relative;
  overflow: hidden;
}
body.home {
  background-color: #000;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #c73131;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
.home #content a {
  color: #fff;
  font-weight: 700;
}
#content a:focus,
#content a:hover {
  color: #1374d9;
  text-decoration: underline;
}
/* =============================================== 
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #666;
  text-rendering: auto;
  margin: 0 0 1.44em;
}
.home h1,
.home h2:not(.topic),
.home h3:not(.topic),
.home h4,
.home h5,
.home h6 {
  color: #fff;
}
h1 {
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}
header.sub {
  padding: 3em 6%;
  background-color: #c73131;
}
@media only screen and (min-width: 1024px) {
  header.sub {
    height: 199px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 1300px) {
  header.sub {
    padding-top: 6.35em;
    height: 323px;
  }
}
.sub h1 {
  word-spacing: 0.16949153em;
  font-size: 10vw;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.95em;
  }
}
.home h1 {
  font-size: 10vw;
  margin-bottom: 0.39em;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3.1em;
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.45714286;
  font-size: 0.56451613em;
  font-family: 'Open Sans', Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
  font-weight: 300;
  color: #fff;
}
.home h1 .trait.bottom {
  line-height: 1.25;
  font-size: 0.70967742em;
}
h2:not(.topic) {
  font-size: 1.31578947em;
  color: #1374d9;
}
h3:not(.topic) {
  font-size: 1.21052632em;
  color: #c73131;
}
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;
}
.home #content ul li {
  margin-bottom: 1em;
}
.home #content ul li:nth-of-last-type(1) {
  margin-bottom: 0;
}
/* ==================================================================
	marquee
=================================================================== */
.marquee {
  width: 100%;
  background-color: #fff;
  display: block;
}
@media only screen and (min-width: 1300px) {
  .marquee {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
  }
}
/* ==================================================================
	bulletin
=================================================================== */
.bulletin {
  line-height: 1.14285714;
  font-size: 14px;
  min-height: 2.07142857em;
  padding: 9px 6%;
  text-align: center;
  color: #fff;
  background-color: #1374d9;
  width: 100%;
  display: block;
  position: relative;
  z-index: 3300;
  text-transform: uppercase;
}
.bulletin p {
  margin: 0;
}
.bulletin a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
.bulletin a:focus,
.bulletin a:hover {
  color: #feb859;
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  min-height: 44px;
  position: relative;
  z-index: auto;
}
@media only screen and (max-width: 1299px) {
  #masthead {
    height: auto;
    min-height: 102px;
  }
  .home #masthead {
    padding: 0 0 clamp( 148px, 45vw, 235px);
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    height: 4.9em;
    padding: 0 1.5em;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
}
#masthead .container {
  width: 100%;
  max-width: calc(100% - 3.9em);
}
@media only screen and (max-width: 1299px) {
  #masthead .container {
    max-width: none;
  }
}
/* ===============================================
TRIGGER/NAVICON
=============================================== */
#trigger {
  line-height: 44px;
  color: #c73131;
  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, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
  cursor: pointer;
  -webkit-filter: var(--ds-vars, drop-shadow(2px 3px 0 #000));
  filter: var(--ds-vars, drop-shadow(2px 3px 0 #000));
}
#trigger[aria-expanded="true"] {
  --ds-vars: drop-shadow(2px 3px 0 #000) drop-shadow(1px -1px 0 #000) drop-shadow(-1px 1px 0 #000) drop-shadow(1px 1px 0 #000) drop-shadow(-1px -1px 0 #000);
}
#trigger:focus-visible {
  --ds-vars: drop-shadow(-4px 1px 0 #000);
}
@media only screen and (min-width: 1300px) {
  #trigger {
    display: none;
  }
}
.open #trigger .navicon {
  clip-path: polygon(20% 0%, 13% 10%, 43% 50%, 13% 90%, 20% 100%, 50% 60%, 82% 100%, 89% 90%, 57% 50%, 88% 10%, 81% 0%, 50% 40%);
}
.open #trigger .navicon:after {
  opacity: 1;
}
.open #trigger .navicon span {
  transition-duration: 0.12s, 0.15s;
  opacity: 0;
}
.open #trigger .navicon span:nth-child(1) {
  transform: translate(0, 17.5px) scaleX(0) rotate(0deg);
}
.open #trigger .navicon span:nth-child(4) {
  transform: translate(0, -17.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: 46px;
  height: 35px;
  display: inline-block;
  vertical-align: -10px;
  position: relative;
  transition: clip-path 0.33s ease, opacity 0.33s ease;
  clip-path: polygon(0% 0%, 0 0%, 0 50%, 0 100%, 0% 100%, 50% 100%, 100% 100%, 100% 100%, 100% 50%, 100% 0, 100% 0, 50% 0);
}
#trigger .navicon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  opacity: 0;
  transition: opacity 0.33s ease-in-out;
}
#trigger .navicon span {
  color: #000;
  width: 100%;
  height: 6px;
  margin: auto;
  background: currentcolor;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  border: 1px solid #000;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate(0, 0) scaleX(1) rotate(0deg);
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-delay: 0s;
}
#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;
  font-weight: 600;
  text-align: center;
  width: 98px;
  height: 102px;
  margin: 0;
  padding: 0;
  background-color: #c73131;
  position: absolute;
  top: 0;
  right: 0;
  clear: both;
  z-index: 2900;
}
@media only screen and (min-width: 1300px) {
  #main-nav {
    font-size: inherit;
    white-space: nowrap;
    width: auto;
    height: 3.4em;
    margin-top: 1.45em;
    background: none;
    box-shadow: none;
    top: auto;
    bottom: 0;
    position: relative;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #main-nav {
    transition: transform 0.69s ease-in-out 0.3s, opacity 0.69s ease-in-out 0.3s;
  }
  [data-wait] #main-nav {
    transform: translate(0, -9em);
    opacity: 0;
  }
}
@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 (min-width: 1300px) {
  #main-nav .collapsible {
    margin: 0 auto;
    position: relative;
  }
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
@media only screen and (min-width: 1300px) {
  #main-nav .container {
    width: 96%;
    max-width: right;
  }
}
/* ===============================================
TOP LEVEL ITEMS || top ul
=============================================== */
#main-nav ul {
  height: auto;
  margin: 0;
  padding: 20px 0 10px;
  background-color: #f1f2f3;
  position: relative;
  z-index: 550;
}
@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.4em;
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
    position: static;
    float: right;
  }
}
#main-nav ul li {
  clear: both;
  cursor: pointer;
}
@media only screen and (min-width: 1299px) {
  #main-nav ul li {
    margin: 0 1.45em 0 0;
    background: none;
    vertical-align: top;
    clear: none;
  }
  #main-nav ul li a:focus-visible + ul,
  #main-nav ul li ul:focus-within,
  #main-nav ul li:hover > ul {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    pointer-events: auto;
  }
  #main-nav ul li.home {
    display: none;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li.contact:focus-visible > ul,
  #main-nav ul li.contact-us:focus-visible > ul,
  #main-nav ul li.contact:focus-within > ul,
  #main-nav ul li.contact-us:focus-within > ul,
  #main-nav ul li.contact.clicked > ul,
  #main-nav ul li.contact-us.clicked > ul,
  #main-nav ul li.contact.active > ul,
  #main-nav ul li.contact-us.active > ul,
  #main-nav ul li.contact:hover ul,
  #main-nav ul li.contact-us:hover ul {
    margin: 0;
  }
  #main-nav ul li.contact ul li a,
  #main-nav ul li.contact-us ul li a {
    text-align: center;
    float: right;
  }
}
#main-nav ul li a[id] {
  line-height: 50px;
  font-size: 20px;
  color: #000;
  height: 50px;
  margin: 0;
  transition: color 0.33s ease;
  pointer-events: none;
}
@media only screen and (min-width: 1300px) {
  #main-nav ul li a[id] {
    line-height: 2;
    font-size: clamp( 12px, 1em , 20px );
    text-align: center;
    height: 100%;
    z-index: 3000;
    pointer-events: auto;
  }
}
#main-nav ul li a[id]:after {
  content: '';
  width: 15px;
  height: 13px;
  margin: 0 auto;
  /* 	single quotes only || no hex values, only keyword colors or rgba works */
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='32' height='27' viewBox='0 0 32 27'><path fill='rgb(255,255,255)' d='M21.06 25.01c-1.36 0-2.82-.28-4.18-.83-1.93-.78-2.2-.94-2.63-2.51-.11-.4-.3-1.07-.42-1.24-.17-.01-.69.13-.95.19-1.98.53-4.8.5-6.16-.07-2.38-1-3.72-3.25-4.09-6.89-.27-2.6.3-4.7 1.65-6.08 1.27-1.3 3.18-1.89 5.51-1.7 4.18.25 5.66 3.18 6.24 5.46-.13-1.89-.69-4.27-1.55-5.18-.15-.17-.58-.64-.47-1.26.12-.71.8-1.18 2.17-1.91 2.25-1.2 4.17-1.33 5.26-.34l.08.08c2.57 3.19 1.89 9.48-.42 13.68.81-.8 1.67-1.76 2.01-2.25.76-1.1 1.18-1.45 2.35-1.45h.04c2.92.16 3.68 1.84 3.87 2.84.5 2.6-1.86 7.3-5.24 8.87-.87.39-1.93.59-3.06.59Z'/><path fill='rgb(254, 208, 85)' d='M3.77 11.73c0-3.05 2.61-4.64 3.4-4.64s1.18 1.12.72 1.92-1.74.92-1.66 3.8 2.76 5.28 2.76 5.28-5.23-2.83-5.23-6.36Zm12.48-4.44c-.25-2.33 3.16-3.35 3.16-3.35s-.48-.54-1.97-.39c-.92.09-3.17 1.7-3.17 1.7s2.24 4.42 1.99 2.05Zm7.45 13.07c-2 1.54-4 1.38-4 1.38s4.3.89 5.52 0 .94-5.48.94-5.48-.47 2.55-2.47 4.09Z'/><path fill='rgb(11, 11, 11)' d='M31.61 15.61c0 1.67-.58 3.12-2.24 5.62-2.89 4.22-5.9 6.9-10.43 5.19-.9-.25-3.5-2.81-4.12-3.19-.09 0-.6.3-1.14.66-4.3 2.61-10.24-2.82-12.23-6.7-2.57-4.71-.22-10.87 4.39-13.02 1.35-.94 4.81-.67 6.92-.71 3.21-3.64 7.42-4.87 10.78-1.14 2.31 2.28 2.49 4.93 2.44 7.97 3.12.87 5.76 2.38 5.63 5.32m-14.46 7.91c2.31.93 4.95 1.04 6.67.25 3.84-1.78 7.95-10.02 1.63-10.36-.86 0-1.08.14-1.77 1.14a22 22 0 0 1-2.53 2.77c-2.73 2.55-3.64 2.82-1.92.56 3.05-3.61 4.55-11.22 1.72-14.72-.85-.77-2.48-.6-4.45.44-1.85.99-2.14 1.38-1.52 2.07 1.5 1.58 2.19 6.68 1.52 8.23-.37.69-.82.52-.82-.32-.4-3.53-1.65-6.74-5.96-7-4.46-.35-6.88 2.3-6.4 7 .35 3.37 1.54 5.42 3.66 6.31 1.22.51 3.86.53 5.7.04 1.61-.43 1.7-.37 2.23 1.54.35 1.27.4 1.31 2.22 2.05Z'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  transition: transform 0.12s ease, opacity 0.12s ease;
  transform: translate(0, 0.69em) scale(0);
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id]:after {
    top: -3px;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:after {
    top: -3px;
  }
}
#main-nav ul li a[id].home {
  pointer-events: auto;
}
#main-nav ul li:focus-within > a[id],
#main-nav ul li.clicked > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul li:focus-within > a[id]:after,
#main-nav ul li.clicked > a[id]:after,
#main-nav ul li.active > a[id]:after,
#main-nav ul li:hover > a[id]:after {
  transform: translate(0, 0) scale(1.2);
  opacity: 1;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.3, 2.7, 0.6, 1);
}
/* ===============================================
Flyout || ul ul
=============================================== */
#main-nav ul ul {
  width: 100%;
  padding: 0;
  background: none;
  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: 1.4em 0;
    background: #f1f2f3;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    clip: rect(0 0 0 0);
    pointer-events: none;
    z-index: 2800;
  }
}
#main-nav ul ul li {
  height: 0;
  background: none;
  opacity: 0;
  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.75em;
    margin: 0;
    padding: 0;
    opacity: 1;
  }
}
#main-nav ul ul li a {
  line-height: 44px;
  font-size: clamp( 12px, 0.75em , 15px );
  color: #4c4b4b;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1300px) {
  #main-nav ul ul li a {
    line-height: 2.33333333;
    text-align: center;
    white-space: nowrap;
    height: 2.33333333em;
    padding: 0 3.6em;
    float: left;
  }
}
#main-nav ul ul li a:after {
  content: '';
  width: auto;
  height: calc(100% - 3px);
  margin: auto 0;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  border: 1px solid #000;
  box-shadow: 2px 3px 0 #000;
  display: block;
  position: absolute;
  top: 0;
  right: -6px;
  bottom: 0;
  left: -6px;
  transition: transform 0.12s ease, opacity 0.12s ease;
  transform: translate(3px, 3px);
  opacity: 0;
  z-index: -1;
}
#main-nav ul ul li a:focus-visible,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  margin-bottom: 0;
  border: none;
}
#main-nav ul ul li a:focus-visible:after,
#main-nav ul ul li a:hover:after,
#main-nav ul ul li a.active:after {
  transform: translate(0, 0);
  opacity: 1;
  transition-duration: 0.33s;
  transition-timing-function: ease;
}
/* subnav hover override */
/* #main-nav ul ul li  { overflow:visible; }*/
/* ===============================================
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 1em;
    visibility: visible;
  }
  #main-nav.open ul .clicked ul li {
    height: 44px;
    padding: 0 1em;
    opacity: 1;
  }
}
/* #main-nav mod | .collapsible .mod */
.collapsible .mod {
  background-color: #fff;
  padding: 17px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .collapsible .mod {
    display: none;
  }
}
@media only screen and (min-width: 666px) {
  .collapsible .mod .contactinfo {
    display: none;
  }
}
@media only screen and (min-width: 890px) {
  .collapsible .mod .utilitynav {
    display: none;
  }
}
.collapsible .mod .spotbtn--afterhours {
  margin-top: 21px;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: right;
  color: #c73131;
  height: 102px;
  padding: 0;
  position: relative;
  pointer-events: none;
}
@media only screen and (min-width: 1300px) {
  #hd {
    display: contents;
  }
}
#hd .container {
  height: 100%;
  pointer-events: none;
}
@media only screen and (min-width: 1300px) {
  #hd .container {
    display: contents;
  }
}
#hd .mod {
  height: 100%;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
@media only screen and (min-width: 790px) and (max-width: 1299px) {
  #hd .mod {
    margin-right: 120px;
  }
}
@media only screen and (min-width: 1375px) {
  #hd .mod {
    padding-left: 30px;
    border-left: 1px solid #a9aaac;
  }
}
@media only screen and (max-width: 665px) {
  #hd .contactinfo {
    display: none;
  }
}
@media only screen and (min-width: 666px) and (max-width: 789px) {
  #hd .contactinfo {
    margin-right: 120px;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #hd .contactinfo {
    transition: transform 0.69s ease-in-out 0.15s, opacity 0.69s ease-in-out 0.15s;
  }
  [data-wait] #hd .contactinfo {
    transform: translate(0, -9em);
    opacity: 0;
  }
}
@media only screen and (max-width: 889px) {
  #hd .utilitynav {
    display: none;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #hd .utilitynav {
    transition: transform 0.69s ease-in-out, opacity 0.69s ease-in-out;
  }
  [data-wait] #hd .utilitynav {
    transform: translate(0, -9em);
    opacity: 0;
  }
}
#hd .spotbtn--afterhours {
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 3000;
}
@media only screen and (max-width: 1023px) {
  #hd .spotbtn--afterhours {
    display: none;
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  width: 15.95em;
  margin: 0 auto 0 0;
  margin-left: min(3%, 30px);
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
  pointer-events: auto;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, font-size 0.3s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  #logo {
    font-size: clamp( 12px, 3.6vw, 17px);
  }
  #logo.mobtron {
    font-size: clamp(23px, 7.2vw, 36px);
    transform: translate(-21%, 90%);
  }
  #logo.mobtron .mark {
    transform: translate(23.05555556%, -74.6347104%) scale(1.44285714);
    transform-origin: 0 100%;
    transition-timing-function: ease;
    transition-duration: 0.3s;
  }
}
@media only screen and (min-width: 1300px) {
  #logo {
    font-size: inherit;
  }
  .ready #logo {
    font-size: clamp(23px, 2.4vw, 36px);
    transform: translate(-18%, 260px);
  }
  .ready #logo .mark {
    transform: translate(23.05555556%, -74.6347104%) scale(1.44285714);
    transform-origin: 0 100%;
    transition-timing-function: ease;
    transition-duration: 0.3s;
  }
}
@media only screen and (min-width: 1440px) {
  .ready #logo {
    font-size: 36px;
    transform: translate(calc(50vw - 833px), 260px);
  }
}
#logo a {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #logo a {
    min-height: 44px;
  }
}
#logo a:focus {
  opacity: 0.51;
}
#logo svg {
  width: 15.95em;
  height: 4.15em;
}
#logo svg .mark {
  transform: translate(0, 0) scale(1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: 0 100%;
}
#logo svg .pop {
  transform: rotate(90deg) translate(0, -9%);
  transform-origin: 50% 50%;
}
#logo svg .pop.animate > g[class] {
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-timing-function: ease;
}
#logo svg .pop.animate .pop__top {
  animation-name: popTop;
  animation-delay: 0.12s;
}
#logo svg .pop.animate .pop__mid {
  animation-name: popMid;
}
#logo svg .pop.animate .pop__bot {
  animation-name: popBot;
  animation-delay: 0.15s;
}
#logo svg .pop--mini {
  transform: rotate(229deg) translate(-30%, 60%) scale(0.66);
}
#logo svg .pop--mini.animate .pop__top {
  animation-delay: 0.24s;
}
#logo svg .pop--mini.animate .pop__mid {
  animation-delay: 0.36s;
}
#logo svg .pop--mini.animate .pop__bot {
  animation-delay: 0.42s;
}
#logo svg .pop > g[class] {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}
/* ===============================================
	contact info
=============================================== */
.contactinfo {
  text-align: center;
  width: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  pointer-events: auto;
}
.contactinfo .phone {
  font-size: clamp( 16px, 0.7em , 14px );
  vertical-align: top;
}
@media only screen and (max-width: 1299px) {
  .contactinfo .phone {
    font-size: 25px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 11300px) {
  .contactinfo .phone {
    line-height: 3;
  }
}
.contactinfo a {
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.33s ease-in-out;
}
.contactinfo a:focus,
.contactinfo a:hover {
  color: #1374d9;
}
.contactinfo a .icon {
  color: #1374d9;
  width: 1em;
  height: auto;
}
/* ===============================================
	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 {
  line-height: 1.16666667;
  font-size: clamp( 14px, 0.6em , 12px );
  text-align: center;
  color: #fff;
  height: 42px;
  padding: 0 11px;
  background: #c73131;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  /* &.appointmentrequest{ @btnwidth: 169;//width of button
			width:(@btnwidth/@unavfs)*1em;
		}
		&.patient-login{ @btnwidth: 117;//width of button
			width:(@btnwidth/@unavfs)*1em;
		} */
}
.utilitynav a:focus,
.utilitynav a:hover {
  color: #fff;
  background-color: #1374d9;
}
.utilitynav a .cta {
  text-align: left;
}
/* ===============================================
	spotbtn--afterhours
=============================================== */
.spotbtn--afterhours {
  line-height: 1;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #000;
  text-shadow: -2px 2px 0 rgba(0, 0, 0, 0);
  width: 13.125em;
  height: 3.75em;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  border: 1px solid #000;
  box-shadow: -3px -2px 0 #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: color 0.33s ease-in-out, text-shadow 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
  pointer-events: auto;
}
.spotbtn--afterhours:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c73131;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}
.spotbtn--afterhours:focus,
.spotbtn--afterhours:hover {
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  box-shadow: 3px -2px 0 #000;
  transition-duration: 0.45s;
}
.spotbtn--afterhours:focus:after,
.spotbtn--afterhours:hover:after {
  opacity: 0.75;
  transition-duration: 0.45s;
}
.spotbtn--afterhours .cta {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  min-height: 27.33333333vw;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 712px) {
  #slideshow {
    min-height: 409px;
  }
}
@media only screen and (min-width: 713px) and (max-width: 1000px) {
  #slideshow {
    width: 100%;
    margin-top: 0;
    top: 0;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1299px) {
  #slideshow {
    height: 744px;
    min-height: 744px;
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow {
    height: 700px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #slideshow[data-wait] .ssoverlay .tshow {
    transform: translate(0, 18px) rotateY(180deg);
    opacity: 0;
  }
  #slideshow[data-wait] .ssoverlay .slogan .char {
    transform: translate(calc( -1em * var(--char-index) ), 0);
    opacity: 0;
  }
  #slideshow[data-wait] .ornament {
    -webkit-filter: blur(36px) brightness(33%);
    filter: blur(36px) brightness(33%);
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 1000 / 574;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 545px) {
  #slideshow #home-slideshow {
    margin: 0 calc( -440px + 50vw );
  }
}
@media only screen and (min-width: 546px) and (max-width: 712px) {
  #slideshow #home-slideshow {
    margin: 0 calc( -713px  + 100vw );
  }
}
@media only screen and (max-width: 712px) {
  #slideshow #home-slideshow {
    width: 713px;
  }
}
@media only screen and (min-width: 1001px) {
  #slideshow #home-slideshow {
    width: 1000px;
    position: relative;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1299px) {
  #slideshow #home-slideshow {
    margin: 0;
    margin-left: max((100vw - 1000px), 200px);
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow #home-slideshow {
    height: 574px;
    margin-left: 50vw;
  }
}
#slideshow #home-slideshow .hpslide {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow .hpslide {
    width: auto;
    height: 100%;
  }
}
#slideshow .ssoverlay {
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 666px) {
  #slideshow .ssoverlay {
    text-align: left;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1299px) {
  #slideshow .ssoverlay {
    display: contents;
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
  }
}
#slideshow .ssoverlay .tshow {
  line-height: 1.02777778;
  font-size: clamp( 12px, 9vw, 36px );
  text-align: center;
  font-style: italic;
  color: #fff;
  width: 88.4375%;
  max-width: 344px;
  height: 88.4375vw;
  max-height: 344px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  margin-top: max( -31.71875% , -172px );
  background-color: #1374d9;
  border: 20px solid #fff;
  box-shadow: 0.5em 0.58333333em 0.66666667em rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 666px) {
  #slideshow .ssoverlay .tshow {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1299px) {
  #slideshow .ssoverlay .tshow {
    margin: 0 0 0 1em;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    top: 287px;
    z-index: 420;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  #slideshow .ssoverlay .tshow {
    margin: 0;
    right: 820px;
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay .tshow {
    margin-right: auto;
    margin-left: auto;
    transform: translate(0, 18px) rotateY(0deg);
    transition: transform 0.33s cubic-bezier(0.34, 1.56, 0.64, 1) 0.39s, opacity 0.33s cubic-bezier(0.34, 1.56, 0.64, 1) 0.39s;
    transition-property: transform, opacity;
    transition-duration: 0.69s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1), ease;
    transition-delay: 0.39s;
  }
}
#slideshow .ssoverlay .tshow figure {
  margin: 0;
}
#slideshow .ssoverlay .tshow blockquote {
  padding: 0 9%;
  margin: 0;
}
#slideshow .ssoverlay .slogan {
  line-height: 0.98039216;
  font-size: clamp( 23px, 6.6vw, 51px );
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  color: #e1dcdc;
  padding-block: max( 35px,  0.39215686em );
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #slideshow .ssoverlay .slogan {
    margin-left: 54px;
  }
}
@media only screen and (min-width: 740px) {
  #slideshow .ssoverlay .slogan {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay .slogan {
    font-size: clamp( 23px, 3.6vw, 51px );
    width: 96%;
    max-width: 1320px;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
#slideshow .ssoverlay .slogan .trait {
  line-height: 0.39;
  font-size: 1.50980392em;
  color: #c73131;
  display: inline-block;
  vertical-align: baseline;
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #slideshow .ssoverlay .slogan .char {
    display: inline-block;
    position: relative;
    transition: transform 0.39s ease-in-out, opacity 0.39s ease-in-out;
    transition-delay: calc((0.03s * var(--char-index) ) + 0.33s);
  }
}
#slideshow .ornament {
  width: 75%;
  max-width: 31.85em;
  height: auto;
  margin-inline: auto;
  display: block;
  position: absolute;
  top: var(--or-top, 0);
  right: 0;
  left: 0;
  transform: translate(0, var(--or-offset, -100%)) rotate(-37.81deg);
  -webkit-filter: blur(3px) brightness(100%);
  filter: blur(3px) brightness(100%);
  opacity: 0.05;
}
@media only screen and (min-width: 510px) and (max-width: 1299px) {
  #slideshow .ornament {
    --or-top: min(10vw, 76px);
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .ornament {
    --or-top: 51%;
    --or-offset: -50%;
    right: calc(50vw + 120px);
    left: auto;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  #slideshow .ornament {
    transition-property: -webkit-filter, filter;
    transition-duration: 1.23s;
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
    transition-delay: 0.33s;
  }
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 400;
}
.spotlight.top {
  border-bottom: 1em solid #fff;
}
@media only screen and (min-width: 1300px) {
  .spotlight.top {
    border-top: 5em solid #fff;
  }
}
.spotlight > div {
  position: relative;
}
/* general defs for svg economy */
.spotdefs {
  line-height: 0;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
}
/* ===============================================
	spot01
=============================================== */
.spot01 {
  font-size: 3.2vw;
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 2em 0;
  background: #4a0001 url(../images/spotlight/spot01bg.jpg) no-repeat 100% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 665px) {
  .spot01 {
    flex-direction: column;
    background-size: cover;
  }
}
@media only screen and (min-width: 666px) {
  .spot01 {
    font-size: min(1.7vw, 1em);
    padding: 5em 3.9%;
    gap: min(4vw, 80px);
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .spot01 {
    background-position: left calc(50vw - 1560px) top 50%;
  }
}
@media only screen and (min-width: 2000px) {
  .spot01 {
    background-position: 100% 50%;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  .spot01[data-ready]:before {
    opacity: 1;
  }
}
.spot01:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.23s ease;
}
.spot01 .mod {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.spot01 .mod--info {
  width: 90%;
}
@media only screen and (min-width: 666px) {
  .spot01 .mod--info {
    text-align: right;
    max-width: 23em;
    order: 3;
  }
}
.spot01 .mod--cta {
  max-width: 18em;
}
@media only screen and (min-width: 666px) {
  .spot01 .mod--cta {
    width: calc(33% - 2em);
    margin: 0;
  }
}
.spot01 h2.topic {
  line-height: 1;
  font-size: clamp( 39px, 2.55em , 51px );
  font-weight: 400;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  margin-bottom: 0.54901961em;
  z-index: 430;
}
.spot01 .info {
  line-height: 1.54545455;
  font-size: clamp( 14px, 1.1em , 22px );
}
.spot01 a {
  color: #fff;
  padding: 0;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 665px) {
  .spot01 a {
    margin-bottom: 5.4em;
  }
}
.spot01 a:focus,
.spot01 a:hover {
  color: #000;
  z-index: 400;
}
.spot01 a:focus .decoration,
.spot01 a:hover .decoration {
  box-shadow: 1em 1em 0 #000000;
}
.spot01 a:focus .decoration:before,
.spot01 a:hover .decoration:before {
  transform: scale(1);
  opacity: 0.9;
}
.spot01 a:focus .decoration img,
.spot01 a:hover .decoration img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  .spot01 a:focus h3.topic,
  .spot01 a:hover h3.topic {
    transform: translate(0, -50%);
  }
}
.spot01 a .decoration {
  width: 100%;
  border-radius: 50%;
  box-shadow: 1.25em 1.25em 1.25em rgba(0, 0, 0, 0.25);
  position: relative;
  transition: box-shadow 0.33s ease-in-out;
}
.spot01 a .decoration:before {
  content: '';
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  border: 9px solid #000;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot01 a .decoration img {
  width: 100%;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
  transition: -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
.spot01 a h3.topic {
  line-height: 1;
  font-size: clamp( 12px, 1.5em , 30px );
  color: currentcolor;
  white-space: nowrap;
  width: 100%;
  min-height: 2.46666667em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translate(0, 243.24324324%);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  pointer-events: none;
}
/* ==================================================================
	subnav
=================================================================== */
#subnav {
  text-align: center;
  font-weight: 600;
  color: #aeabab;
  padding: 1.2em 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1299px) {
  #subnav {
    display: none;
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    min-height: 6.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#subnav nav {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  /*  
		@bdcontainerwidth: 420*2;//pixel width of interior bd container on proof
		@bdcontentwidth: @bdcontainerwidth;//pixel width of interior content area on proof
		@fractionaldistance: 0;//pixel distance of fractional bg element from center of proof
		*/
}
@media only screen and (max-width: 1299px) {
  #subnav nav {
    width: 100vw;
    display: none;
  }
}
#subnav p {
  font-size: clamp( 12px, 0.75em , 15px );
  margin: 0 auto;
  padding: 0;
}
@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.86666667;
    width: 100%;
  }
}
#subnav a {
  color: #aeabab;
  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:focus,
#subnav a:hover,
#subnav a.active {
  color: #1374d9;
  text-decoration: none;
}
#subnav .divider {
  margin: 0 0.3em;
  display: inline-block;
  vertical-align: top;
}
/* ==================================================================
	welcomevid
=================================================================== */
#welcomevid {
  width: 100%;
  object-fit: cover;
  background-color: #333;
  z-index: -1;
}
@media only screen and (max-width: 1299px) {
  #welcomevid {
    aspect-ratio: 16 / 9;
  }
}
@media only screen and (min-width: 1300px) {
  #welcomevid {
    height: 100vh;
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3.35em 0 5em;
  }
}
#bd .container {
  width: 90%;
  max-width: 42em;
}
#content {
  max-width: 840px;
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 100%;
    max-width: 42em;
    float: left;
  }
}
@media only screen and (min-width: 1300px) {
  #content {
    width: 100%;
  }
}
#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
=================================================================== */
@supports (-webkit-backdrop-filter: blur(9px)) or (backdrop-filter: blur(9px)) {
  .home #bd:before {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
}
.home #bd {
  color: #fff;
  padding: 3em 0;
  background: no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 4em 0 5em;
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd {
    background-color: rgba(0, 0, 0, 0.24);
    min-height: 100vh;
  }
}
.home #bd:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home #bd .container {
  width: 90%;
  max-width: 38em;
  z-index: 420;
  /* @media only screen and (min-width: 768px) and (max-width: 1299px) { 
			max-width:70ch; 
		} */
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    max-width: 38em;
    width: 100%;
  }
}
.home #bd #content .content-text {
  line-height: 1.89473684;
}
@media only screen and (min-width: 666px) {
  .home #bd #content .content-text {
    font-size: min(2.3vw, 19px );
  }
}
/* ==================================================================
	custom content
=================================================================== */
.phone-button {
  margin: 2em auto;
  max-width: 11em;
}

.phone-button a{
  background: linear-gradient(#feb859, #ffe9c9);
  color: #000 !important;
  font-weight: 700;
  padding: 1em 2em;
  line-height: 2;
  margin: 0 auto;
  transition: color 0.33s ease-in-out, background 0.33s ease-in-out, text-shadow 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
}

.phone-button a:hover {
	background: #c73131;
	opacity: 0.75;
	color: #FFF !important;
	text-decoration: none !important;
}

.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: #c73131;
  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: #c73131;
  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: #1374d9;
}
.mediaslider .cycle-caption.large,
.mediaslider .cycle-caption {
  line-height: 1;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  font-size: clamp(12px, 3vw, 18px);
  white-space: normal;
  padding: 0.66em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 420;
}
.mediaslider .cycle-caption.large:after,
.mediaslider .cycle-caption:after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.69);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mediaslider .cycle-caption.large {
  position: relative;
}
.mediaslider .cycle-caption.large:after {
  background: #1374d9;
  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,
.community-events #content {
  text-align: center;
}
.before-and-after #content h1,
.office-tour #content h1,
.smile-gallery #content h1,
.invisalign-videos #content h1,
.community-events #content h1,
.before-and-after #content h2,
.office-tour #content h2,
.smile-gallery #content h2,
.invisalign-videos #content h2,
.community-events #content h2,
.before-and-after #content h3,
.office-tour #content h3,
.smile-gallery #content h3,
.invisalign-videos #content h3,
.community-events #content h3,
.before-and-after #content p,
.office-tour #content p,
.smile-gallery #content p,
.invisalign-videos #content p,
.community-events #content p {
  text-align: center;
}
.before-and-after .img-left,
.office-tour .img-left,
.smile-gallery .img-left,
.invisalign-videos .img-left,
.community-events .img-left,
.before-and-after .img-right,
.office-tour .img-right,
.smile-gallery .img-right,
.invisalign-videos .img-right,
.community-events .img-right {
  margin: 0 auto;
  float: none;
}
/* blockquote styling */
#content blockquote {
  margin: 0 0 1.58em;
  padding: 0 0 0 1em;
  border-left: 0.33em solid #f0f0f0;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  #content,
  #content h2[id],
  .common-procedures #content h2[id] {
    scroll-margin-top: 200px;
  }
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.84em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: clamp( 12px, 1.15em , 23px );
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #c73131;
  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: #c73131;
  margin-left: 0;
}
.sitemap #content a:focus,
.sitemap #content a:hover {
  color: #1374d9;
  text-decoration: none;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  margin-left: 0;
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#hide-stock {
  width: 100%;
  max-width: 15em;
  margin: 0 auto 9%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #hide-stock {
    width: 35.71428571%;
    /* margin:0 0 1em; */
    margin: 0 0 3% 3%;
    display: block;
    float: right;
    clear: right;
  }
}
/* ===============================================
	sitepics
=============================================== */
/* #hide-stock{ 
	.wall;
	position:relative; 
} */
.stock {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #000;
  box-shadow: 12px 12px 0 #000;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'],*/
/*body[class^='meet-our-'],*/
.meet-the-doctor #hide-stock,
body[class*='meet-dr-'] #hide-stock,
body[class*='meet-doctor-'] #hide-stock {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR */
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight.bottom {
  border-bottom: 1em solid #fff;
}
/* ===============================================
	spot02
=============================================== */
.spot02 {
  color: #c73131;
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    padding: 5.025em 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 2000px) {
  .spot02 {
    justify-content: center;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  .spot02[data-ready] .mod a {
    transform: translate(-100%, 0);
    opacity: 0;
  }
}
.spot02 > .ornament {
  width: 90%;
  max-width: 31.85em;
  height: auto;
  margin-inline: auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  right: 0;
  left: 0;
  -webkit-filter: blur(3px) brightness(100%);
  filter: blur(3px) brightness(100%);
  opacity: 0.05;
}
@media only screen and (min-width: 768px) {
  .spot02 > .ornament {
    right: auto;
    left: 50%;
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 > .ornament {
    left: calc(50% + 270px);
    transform-origin: 50% 50%;
    transform: translate(0, -50%) rotate(24deg);
  }
}
.spot02 .decoration {
  width: 80%;
  max-width: 49.1em;
  box-shadow: 0.86206897em 0.86206897em 0.86206897em rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .spot02 .decoration {
    width: 65%;
    height: 36.75em;
  }
}
.spot02 .decoration__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.spot02 .decoration .ornament {
  width: 9.45em;
  height: auto;
  transform: matrix(1, 0, 0, 1, 55, -30);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 420;
  pointer-events: none;
}
@media only screen and (min-width: 1300px) {
  .spot02 .decoration .ornament {
    width: 9.45em;
  }
}
.spot02 .mod {
  width: 90%;
  max-width: 21.25em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .spot02 .mod {
    width: 45%;
    text-align: left;
    padding: 0;
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 .mod {
    margin-bottom: 67px;
  }
}
.spot02 a {
  text-align: left;
  color: #c73131;
  height: 4.65em;
  padding: 0 2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out;
  transition-delay: calc(0.03s * var(--index) );
}
.spot02 a:before,
.spot02 a:after {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform-origin: left;
}
.spot02 a:before {
  height: 1px;
  background-color: #aeacac;
  left: 0;
  bottom: 0;
}
.spot02 a:after {
  height: auto;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  border: 1px solid #000;
  box-shadow: 2px 3px 0 #000;
  left: -1px;
  top: 0.65em;
  bottom: 0.65em;
  transform: scaleX(0);
}
.spot02 a:focus,
.spot02 a:hover {
  z-index: 400;
}
.spot02 a:focus:before,
.spot02 a:hover:before {
  transform: scaleX(0);
  transition-delay: 0.51s;
}
.spot02 a:focus:after,
.spot02 a:hover:after {
  transform: scaleX(1);
  transform-origin: right;
  transition-delay: 0.255s;
}
.spot02 a:focus .ornament,
.spot02 a:hover .ornament {
  transform: translate(0.5em, -0.4em);
  opacity: 1;
}
.spot02 a:focus .ornament .core,
.spot02 a:hover .ornament .core {
  transform: rotate(0deg);
  transition-timing-function: cubic-bezier(0.33, 2.1, 0.63, 1);
  transition-duration: 1.23s;
}
.spot02 a:focus h2.topic,
.spot02 a:hover h2.topic {
  text-shadow: 0 0 0 #000;
  -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.spot02 a:focus h2.topic .trait:before,
.spot02 a:hover h2.topic .trait:before {
  text-shadow: 0 0 0 #000;
}
.spot02 a .ornament {
  width: 3em;
  height: 3em;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(-22.2em, 0);
  opacity: 0;
}
.spot02 a .ornament .core {
  transition: transform 0.99s ease-in-out;
  transform: rotate(-360deg);
  transform-origin: 50% 50%;
}
.spot02 a h2.topic {
  line-height: 1;
  font-size: 1.25em;
  font-weight: 400;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  text-transform: uppercase;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: text-shadow 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
.spot02 a h2.topic .trait:before {
  transition: text-shadow 0.33s ease-in-out;
}
/* ===============================================
	spot03
=============================================== */
.spot03 {
  font-size: min(3.9vw, 20px);
  color: #c73131;
  background: #4a0001 no-repeat 100% 50%;
  border-bottom: 20px solid #fff;
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .spot03 {
    font-size: min(1.4vw, 1em);
    padding: 6.725em 0;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .spot03 {
    background-position: right calc(50vw - 1560px) top 50%;
  }
}
@media only screen and (min-width: 2000px) {
  .spot03 {
    background-position: 0% 50%;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  .spot03[data-ready] h2.topic {
    transform: translate(-75vw, 0);
  }
  .spot03[data-ready] .mod {
    transform: translate(75vw, 0);
  }
}
.spot03 h2.topic {
  line-height: 1.25;
  font-size: clamp( 30px, 2.4em , 48px );
  font-weight: 400;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  text-transform: uppercase;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 420;
  transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .spot03 h2.topic {
    padding: 0 10%;
  }
}
@media only screen and (min-width: 768px) {
  .spot03 h2.topic {
    text-align: right;
    margin: 0 2em 0 0;
  }
}
.spot03 h2.topic .trait {
  position: relative;
  display: block;
}
.spot03 h2.topic .trait__state {
  white-space: nowrap;
  display: block;
}
.spot03 .mod {
  width: auto;
  padding: 2em 0;
  display: inline-flex;
  gap: 1.75em;
  vertical-align: middle;
  position: relative;
  z-index: 420;
  transition: transform 0.66s ease-in-out 0.33s, opacity 0.66s ease-in-out 0.33s;
}
@media only screen and (min-width: 440px) {
  .spot03 .mod {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .spot03 .mod {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) {
  .spot03 .mod {
    padding: 0;
  }
}
.spot03 .mod__group {
  --space: 24px;
  padding-block: 2.1em;
  padding-inline: var(--space, 20px);
  background-color: #262626;
  display: flex;
  gap: var(--space, 20px);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 439px) {
  .spot03 .mod__group {
    flex-direction: column;
  }
}
@media only screen and (min-width: 440px) {
  .spot03 .mod__group {
    transform: rotate(-8.5deg) translateX(6%);
  }
  .spot03 .mod__group--top {
    transform: rotate(6.8deg);
    z-index: 2;
  }
}
.spot03 .mod__group:before,
.spot03 .mod__group:after {
  content: '';
  background: #262626 url(../images/spotlight/sprocketholes.png) repeat-x 0 center;
  display: block;
  position: absolute;
}
@media only screen and (max-width: 439px) {
  .spot03 .mod__group:before,
  .spot03 .mod__group:after {
    width: 2.1em;
    height: auto;
    margin: -10px 0;
    background-repeat: repeat-y;
    background-size: auto 2.1em;
    background-position: -0.54em 0;
    top: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 440px) {
  .spot03 .mod__group:before,
  .spot03 .mod__group:after {
    width: auto;
    height: 2.1em;
    margin: 0 -10px;
    background-size: auto 100%;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 439px) {
  .spot03 .mod__group:before {
    left: 0;
  }
}
@media only screen and (min-width: 440px) {
  .spot03 .mod__group:before {
    top: 0;
  }
}
@media only screen and (max-width: 439px) {
  .spot03 .mod__group:after {
    right: 0;
  }
}
@media only screen and (min-width: 440px) {
  .spot03 .mod__group:after {
    bottom: 0;
    background-position: 98% center;
  }
}
.spot03 a {
  text-align: center;
  color: #262626;
  max-width: 10em;
  aspect-ratio: 200 / 155;
  padding: 0;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  transition: color 0.33s ease-in-out;
}
.spot03 a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d86f6f;
  z-index: 3;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
}
.spot03 a:focus,
.spot03 a:hover {
  color: #fff;
  z-index: 400;
}
.spot03 a:focus:before,
.spot03 a:hover:before {
  opacity: 1;
}
.spot03 a:focus .decoration,
.spot03 a:hover .decoration {
  opacity: 1;
}
.spot03 a:focus .decoration:before,
.spot03 a:hover .decoration:before {
  animation-play-state: running;
}
.spot03 a:focus .decoration__graphic,
.spot03 a:hover .decoration__graphic {
  opacity: 1;
}
.spot03 a:focus h3.topic,
.spot03 a:hover h3.topic {
  color: #fff;
  text-shadow: 0 0 1.2em 0.6em rgba(0, 0, 0, 0.35);
  opacity: 0.9;
}
.spot03 a .decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.33s ease-in-out;
  z-index: 3;
}
.spot03 a .decoration:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0);
  background-color: #c73131;
  animation: countdown 1s infinite;
  animation-play-state: paused;
  animation-timing-function: ease-in;
  opacity: 0.5;
  z-index: 1;
}
.spot03 a .decoration__graphic {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: opacity 0.33s ease-in-out;
  opacity: 0;
  z-index: 4;
}
.spot03 a .decoration .spotnumber {
  font-size: 3.3em;
  font-weight: 600;
  color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spot03 a .decoration .spotnumber:after,
.spot03 a .decoration .spotnumber:before {
  content: "";
  border: #000 solid 3px;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.spot03 a .decoration .spotnumber::before {
  width: 120px;
  height: 120px;
}
.spot03 a .decoration .spotnumber::after {
  width: 102px;
  height: 102px;
}
.spot03 a h3.topic {
  line-height: 1;
  font-size: clamp( 12px, 1.05em , 21px );
  text-align: center;
  text-transform: uppercase;
  color: currentcolor;
  text-shadow: 0 0 1.2em rgba(0, 0, 0, 0);
  width: 100%;
  padding-inline: 9%;
  display: block;
  position: absolute;
  z-index: 420;
  transition: color 0.33s ease-in-out, text-shadow 0.33s ease-in-out;
}
/* ===============================================
	spot04
=============================================== */
.spot04 {
  padding: 0;
  background: #16171c repeat center center;
  z-index: 420;
}
.spot04:before {
  content: '';
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.spot04 .spottop {
  font-size: min(4vw, 1em);
  width: 100%;
  padding: 3em 0;
}
@media only screen and (min-width: 666px) {
  .spot04 .spottop {
    padding: 5em 0;
  }
}
.spot04 .quotes {
  line-height: 1;
  font-size: 5.9em;
  font-weight: 400;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  margin-bottom: -0.23728814em;
  z-index: 430;
}
.spot04 .cycle-slideshow {
  color: #fff;
  width: 90%;
  max-width: 46.05em;
  margin: 0 auto 3em;
  display: block;
}
.spot04 .cycle-slide {
  width: 100%;
  margin: 0;
  display: block;
}
.spot04 .cycle-slide figure {
  margin: 0;
}
.spot04 .testimony {
  line-height: 1.26190476;
  font-style: italic;
  margin: 0 auto 0.71428571em;
  display: block;
}
@media only screen and (max-width: 767px) {
  .spot04 .testimony {
    font-size: clamp( 20px, 6vw, 33px);
  }
}
@media only screen and (min-width: 768px) {
  .spot04 .testimony {
    font-size: clamp( 33px, 3.9vw, 42px );
  }
}
.spot04 .testifier {
  line-height: 1.76666667;
  font-size: clamp( 12px, 1.5em , 30px );
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.spot04 .spotbtn--custom {
  line-height: 0.95238095;
  font-size: 1.05em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
.spot04 .spotbtn--custom:focus .animatron,
.spot04 .spotbtn--custom:hover .animatron {
  transform: rotate(-9deg);
  transition-timing-function: cubic-bezier(0.33, 3, 0.66, 1);
  transition-duration: 0.75s;
}
.spot04 .spotbtn--custom:focus .bg .stick,
.spot04 .spotbtn--custom:hover .bg .stick {
  transform: rotate(0deg);
  transition-timing-function: cubic-bezier(0.33, 0, 0.66, -3);
  transition-duration: 0.45s;
}
.spot04 .spotbtn--custom .animatron {
  width: 6.07571429em;
  height: 4.98809524em;
  padding-top: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.33s ease-in-out;
  pointer-events: none;
}
.spot04 .spotbtn--custom .cta {
  display: block;
  position: relative;
  z-index: 2;
}
.spot04 .spotbtn--custom .bg {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.spot04 .spotbtn--custom .bg .stick {
  transform: rotate(-13deg);
  transition: transform 0.33s cubic-bezier(0.33, 1.8, 0.66, 1);
  transform-origin: 0 1%;
  pointer-events: none;
}
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  font-size: min(3.9vw, 1em);
  padding: 2em 0;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .associationlogos {
    font-size: min(1.8vw, 1em);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.2em;
  }
}
@media only screen and (min-width: 1300px) and (prefers-reduced-motion: no-preference) {
  .associationlogos[data-ready] a {
    transform: translate(0, 9em);
    opacity: 0;
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.69s ease-in-out, opacity 0.69s ease-in-out;
  transition-delay: calc(0.06s * var(--index) );
}
@media only screen and (min-width: 768px) {
  .associationlogos a {
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .associationlogos a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
.associationlogos a:focus img,
.associationlogos a:hover img,
.associationlogos a:focus svg,
.associationlogos a:hover svg {
  transform: scale(0.87);
  opacity: 0.48;
}
.associationlogos a.ada {
  width: 6.75em;
  height: 2.45em;
}
.associationlogos a.abpd {
  width: 11.4em;
  height: 2.5em;
}
.associationlogos a.aapd {
  width: 5.25em;
  height: 5.25em;
}
.associationlogos a.westbest {
  width: 5.45em;
  height: 5.15em;
}
.associationlogos a.topdentist {
  width: 7em;
  height: 4em;
}
.associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
.associationlogos a img {
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  font-size: 20px;
  text-align: center;
  color: #000;
  width: 100%;
  padding: 0;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
#ft a {
  transition: color 0.33s ease-in-out;
}
#ft a:focus,
#ft a:hover {
  color: #1374d9;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 0;
  display: block;
  --mobmapfactor: 150px;
}
@media only screen and (min-width: 768px) {
  #location {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
#location .map {
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  #location .map {
    width: 100%;
    height: calc( var(--mobmapfactor) * 2 );
    margin-bottom: 39px;
  }
}
@media only screen and (min-width: 768px) {
  #location .map {
    max-width: none;
    width: 50%;
    height: 800px;
    margin: 0;
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 767px) {
  #location .mod {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  #location .mod {
    width: 50%;
    margin: 0;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  width: 90%;
  max-width: 29.35em;
  margin: 0 auto 1.25em;
  display: block;
  transition: opacity 0.33s ease-in-out;
}
#location .logo:focus {
  opacity: 0.51;
}
#location .logo svg {
  width: 100%;
  height: auto;
}
#location .phone {
  line-height: 44px;
  font-size: clamp( 12px, 1.45em , 29px );
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  color: #c73131;
  margin-bottom: 10px;
  display: block;
}
#location .address {
  line-height: 1.20833333;
  font-size: clamp( 12px, 1.2em , 24px );
  color: #000;
  margin: 0 auto;
  display: block;
}
#location .address .marker {
  line-height: 1;
  font-size: 2.75em;
  width: 51px;
  height: 68px;
  margin-left: 2.27272727em;
  position: absolute;
  /* top:unit(@mapmarkerYoffset/@mapmarkerfs, em);left:50%; */
  z-index: 400;
  transition: transform 0.33s ease;
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  #location .address .marker {
    margin-right: auto;
    margin-left: auto;
    top: calc( var(--mobmapfactor)  - 44px );
    right: 0;
    left: 9px;
  }
}
@media only screen and (min-width: 768px) {
  #location .address .marker {
    bottom: 393px;
    right: calc( 75vw - 32px);
  }
}
@media only screen and (min-width: 1300px) {
  .home #location .address .marker {
    animation: bouncein 0.84s both;
  }
  .home #location .address .marker[data-stopped] {
    animation: none;
  }
  .home [data-ready] #location .address .marker {
    animation: none;
  }
}
#location .address:focus .marker,
#location .address:hover .marker {
  transform: translate(0, 0) scale(1.3);
  transition-timing-function: cubic-bezier(0.3, 2.1, 0.66, 1);
  transition-duration: 0.45s;
}
#location .officehours {
  line-height: 0;
  text-align: center;
  width: 12em;
  margin: 2.15em auto 0;
  display: block;
}
#location .officehours .days,
#location .officehours .hours {
  line-height: 1.2;
  font-size: clamp( 18px, 0.75em , 15px );
  display: inline-block;
  vertical-align: top;
}
#location .officehours .days {
  text-align: right;
  width: 33%;
  padding-right: 1.46666667em;
}
#location .officehours .hours {
  text-align: left;
  width: 66%;
}
#location .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 3.15em 0 1.75em;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 34px;
  position: relative;
  z-index: 420;
}
#location .socialmedia a {
  line-height: 44px;
  font-size: clamp( 12px, 1.25em , 25px );
  text-align: center;
  width: 44px;
  height: 44px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#location .socialmedia a:focus .custom--icon,
#location .socialmedia a:hover .custom--icon,
#location .socialmedia a:focus .icon,
#location .socialmedia a:hover .icon {
  -webkit-filter: drop-shadow(0 0 9px #feb859);
  filter: drop-shadow(0 0 9px #feb859);
}
#location .socialmedia a.pop .ornament [class^="k"] {
  animation: popcorn 390ms cubic-bezier(0, 0.55, 0.45, 1) forwards;
  will-change: transform, opacity;
}
#location .socialmedia a.pop .ornament .dabox {
  animation: wobble 1s ease forwards;
}
#location .socialmedia a .custom--icon {
  width: 33px;
  height: 33px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
#location .socialmedia a .icon {
  line-height: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}
#location .socialmedia a .icon:after {
  content: '';
  width: 33px;
  height: 33px;
  border-radius: 50%;
  margin: auto;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#location .socialmedia a .ornament {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: -1;
  pointer-events: none;
}
#location .socialmedia a .ornament .dabox {
  transform-origin: 50% 30%;
}
#location .socialmedia a .ornament [class^="k"] {
  transform-origin: 50% 50%;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 420;
}
#links .util {
  line-height: 52px;
  font-size: clamp( 12px, 0.6em , 12px );
}
#links .util a {
  color: #000;
}
#links .util a:focus,
#links .util a:hover {
  color: #1374d9;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.1em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.58333333em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  transition: fill 0.33s ease-in-out;
}
a#sesame-link .sesameicon path.top {
  fill: #D6E03D;
}
a#sesame-link .sesameicon path.bottom {
  fill: #00a5e3;
}
a#sesame-link:focus .sesameicon path,
a#sesame-link:hover .sesameicon path {
  fill: currentcolor;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  width: 100%;
  margin: 0;
  background-color: #fff;
  display: block;
  position: relative;
  z-index: 420;
}
a#backtotop {
  line-height: 64px;
  font-size: 1.25em;
  font-weight: 400;
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  text-transform: uppercase;
  text-shadow: -3px -3px 0 rgba(0, 0, 0, 0);
  transition: text-shadow 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
a#backtotop .trait:before {
  transition: text-shadow 0.33s ease-in-out;
}
a#backtotop:focus,
a#backtotop:hover {
  text-shadow: 0 0 0 #c73131;
  -webkit-filter: drop-shadow(-3px -3px 0 #000);
  filter: drop-shadow(-3px -3px 0 #000);
}
a#backtotop:focus .trait:before,
a#backtotop:hover .trait:before {
  text-shadow: -3px -3px 0 #000;
}
a#backtotop:focus .arrow,
a#backtotop:hover .arrow {
  transform: rotate(0deg) scale(1.1);
}
a#backtotop:focus .arrow .btt__drop,
a#backtotop:hover .arrow .btt__drop {
  transform: translate(-6px, -6px);
}
a#backtotop .arrow {
  transform: rotate(18.6deg) scale(1);
  transition: transform 0.69s cubic-bezier(0.36, 4.5, 0.66, 1);
}
a#backtotop .arrow .btt__drop {
  transition: transform 0.33s ease-in-out;
}
/*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;
}
/* ===============================================
	success message
=============================================== */
.success {
  font-family: 'Bevan', Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
  font-weight: 600;
  text-transform: none;
  color: #000;
  width: 100%;
  padding: 2rem;
  border: 3px solid #000;
  box-shadow: 9px 9px 0 #000;
  background: -webkit-linear-gradient(#feb859, #ffe9c9);
  background: linear-gradient(#feb859, #ffe9c9);
  float: left;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  height: auto;
  padding: 6px 15px;
  background-color: #c73131;
  border: 1px solid #c73131;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
form button:focus,
form button:hover {
  color: #fff;
  border-color: #1374d9;
  background-color: #1374d9;
}
form fieldset button span,
form label button span {
  margin: 0;
}
form p {
  height: auto;
}
/* ===============================================
	skip link styles
=============================================== */
.skiplink {
  line-height: 2;
  font-size: 12px;
  color: #fff;
  padding: 0.5em 1em;
  background-color: #1374d9;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 6px;
  transition: transform 0.33s ease-in-out;
  transform: translate(0, -100%);
}
.skiplink:focus {
  transform: translate(0, 0);
  z-index: 3333;
}
.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: #c73131;
  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: #1374d9;
}
/* ===============================================
	.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,
  .layout-full-width {
    /* #bd.sub:after{ content:none; } */
    /* #content{ 
			width:70%;
			max-width:none;
			margin-right:auto;
			margin-left:auto;
			float:none;
		} */
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
	custom content
=============================================== */
  .patient-forms #content ul li {
    line-height: 2.1;
  }
  .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*/
}
/* ===============================================
	custom animations
=============================================== */
/* custom animations for popcorn blast logo */
/* down-center */
@keyframes popMid {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
    transition-timing-function: linear;
  }
  1% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }
  15% {
    transform: translate(0, -50px) scale(1) rotate(6deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  }
  100% {
    transform: translate(0, 400px) rotate(180deg);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  }
}
/* up-right */
@keyframes popTop {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
    transition-timing-function: linear;
  }
  1% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }
  15% {
    transform: translate(12px, -60px) scale(1) rotate(-30deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  }
  100% {
    transform: translate(247.5px, -350px) rotate(-330deg);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  }
}
/* up-left */
@keyframes popBot {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 0;
    transition-timing-function: linear;
  }
  1% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }
  15% {
    transform: translate(-12px, -60px) scale(1) rotate(6deg);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  }
  100% {
    transform: translate(-300px, -350px) rotate(240deg);
    opacity: 0;
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  }
}
/* keyframes for spot03 count down bg animation */
@keyframes countdown {
  0% {
    clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0);
  }
  12.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0);
  }
  37.5% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 0 100%, 0 0, 50% 0);
  }
  62.5% {
    clip-path: polygon(50% 50%, 0 100%, 0 100%, 0 100%, 0 100%, 0 0, 50% 0);
  }
  87.5% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0, 50% 0);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 0, 50% 0, 50% 0, 50% 0, 50% 0, 50% 0);
  }
}
/* custom animation for popcorn blast social media icons */
/* Smooth “arc”: we step X non-linearly while Y rises */
@keyframes popcorn {
  0% {
    transform: translate(0, 0) rotate(0);
    transition-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
    opacity: 1;
  }
  33% {
    transform: translate(calc(var(--dx) * 0.25), calc(var(--pop-h) * -0.25)) rotate(calc(var(--rot) * 0.35));
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    opacity: 1;
  }
  69% {
    transform: translate(calc(var(--dx) * 0.65), calc(var(--pop-h) * -0.65)) rotate(calc(var(--rot) * 0.75));
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), calc(var(--pop-h) * -1)) rotate(var(--rot));
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
    opacity: 0;
  }
}
/* keyframe animation for popcorn box */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-12.5%, 0, 0) rotate3d(0, 0, 1, -5.1deg);
  }
  30% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-7.5%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-2.5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* keyframe animation for map marker */
.bouncein {
  animation: bouncein 0.84s both;
}
@keyframes bouncein {
  0% {
    transform: translateY(-666px) scaleY(1) scaleX(1);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  39% {
    transform: translateY(0) scaleY(0.9) scaleX(1.5);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  54% {
    transform: translateY(-66px) scaleY(1) scaleX(1);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0) scaleY(0.96) scaleX(1.2);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-33px) scaleY(1) scaleX(1);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0) scaleY(0.99) scaleX(1.1);
    animation-timing-function: ease-out;
  }
  96% {
    transform: translateY(-6px) scaleY(1) scaleX(1);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    animation-timing-function: ease-out;
  }
}
/* ===============================================
	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( 44.21052632em , 90% );
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 44.21052632em , 1200px );
    }
  }
}
.embed-container.reviews-26689001 {
  min-height: 100vh;
  max-height: 1800px;
  max-width: none;
}
@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
  .spot01 h2.topic,
  .spot02 h2.topic,
  .spot03 h2.topic .trait__state,
  #backtotop {
    background: -webkit-linear-gradient(#feb859, #ffe9c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-filter: drop-shadow(3px 3px 0 #000);
    filter: drop-shadow(3px 3px 0 #000);
  }
  .spot04 .quotes {
    background: -webkit-linear-gradient(top, #feb859 0%, #ffe9c9 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #000;
    -webkit-text-stroke-width: 1px;
    -webkit-filter: drop-shadow(3px 3px 0 #000);
    filter: drop-shadow(3px 3px 0 #000);
  }
  h1 {
    background: -webkit-linear-gradient(#feb859, #ffe9c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #000;
    -webkit-text-stroke-width: 1px;
  }
  .sub h1 {
    -webkit-filter: drop-shadow(3px 3px 0 #000);
    filter: drop-shadow(3px 3px 0 #000);
  }
  h1 .trait.top {
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 0;
    -webkit-filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  h1 .trait.sub {
    -webkit-text-stroke-width: 1px;
  }
  h1 .trait.middle,
  h1 .trait.bottom {
    background: -webkit-linear-gradient(#feb859, #ffe9c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    -webkit-filter: drop-shadow(3px 3px 0 #000);
    filter: drop-shadow(3px 3px 0 #000);
  }
}
