/* 
 Site Manager Version: 14.2.0
 Date Created: December 2025
 Account: cd-gainesville
 Written by: Ricky Rivas
 Sesame Communications - All rights reserved. C2025
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
/* ==================================================================
Basic Stylings
These will affect every size of the site.
================================================================== */
html {
  scroll-behavior: smooth;
}
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
form button,
button {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
svg {
  display: inline-block;
}
body {
  color: #333;
  background: #ccc;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #287bc8;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:focus,
#content a:hover {
  color: #90ca3c;
  text-decoration: underline;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #287bc8;
  text-rendering: auto;
  margin: 0 0 1.02857143em;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  margin-bottom: 0.67857143em;
  color: #90ca3c;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.8em;
  }
}
.home h1 {
  font-size: 2.1em;
  text-align: center;
  margin: 0 0 0.65em;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: #373133;
}
@media only screen and (min-width: 1300px) {
  .home h1 {
    font-size: 2.75em;
  }
}
h2:not(.topic) {
  font-size: 1.75em;
}
h3:not(.topic) {
  font-size: 1.55em;
}
h4 {
  font-size: 1.45em;
}
h5 {
  font-size: 1.3em;
}
h6 {
  font-size: 1.2em;
}
/* ===============================================
	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;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (max-width: 1023px) {
  #masthead {
    height: 113px;
  }
}
@media only screen and (max-width: 767px) {
  #masthead {
    height: auto;
    padding: 10px 0 15px;
  }
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: 20px;
    height: 5.8em;
    position: fixed;
    top: 0;
    left: 0;
  }
}
#masthead .container {
  max-width: 51em;
  width: 98%;
}
@media only screen and (max-width: 1023px) {
  #masthead .container {
    width: 100%;
    max-width: none;
  }
}
/* ===============================================
TRIGGER/NAVICON
=============================================== */
#trigger {
  line-height: 44px;
  color: #095093;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
  background-color: #fff;
}
#trigger:focus-visible {
  color: #095093;
}
@media only screen and (min-width: 1024px) {
  #trigger {
    display: none;
  }
}
.open #trigger .navicon span:nth-child(1) {
  transform: translate(0, 7.5px) scaleX(0) rotate(0deg);
}
.open #trigger .navicon span:nth-child(4) {
  transform: translate(0, -7.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: 27px;
  height: 15px;
  display: inline-block;
  position: relative;
}
#trigger .navicon span {
  width: 100%;
  height: 2px;
  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: 44px;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  clear: both;
  z-index: 1000;
}
@media only screen and (min-width: 1024px) {
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 1.45em;
    margin-top: 2em;
    background: none;
    box-shadow: none;
    top: auto;
    bottom: 1.25em;
    z-index: 2900;
    margin-right: 0.85em;
    z-index: auto;
  }
}
@media only screen and (max-width: 1023px) {
  #main-nav.open .collapsible {
    transition-duration: 0.33s;
    transition-timing-function: ease;
    transform: translate(0, 0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }
}
@media only screen and (max-width: 1023px) {
  #main-nav .collapsible {
    width: 100vw;
    max-width: 320px;
    position: absolute;
    top: 0;
    right: 0;
    transition-property: transform, opacity, visibility;
    transition-duration: 0.09s;
    transition-timing-function: linear;
    transform: translate(0%, -100%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
}
@media only screen and (max-width: 767px) {
  #main-nav .collapsible {
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav .collapsible {
    margin: 0 auto;
    position: relative;
  }
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #main-nav .container {
    width: 96%;
    max-width: right;
  }
}
/* ===============================================
TOP LEVEL ITEMS || top ul
=============================================== */
#main-nav ul {
  margin: 0;
  padding: 30px 0 30px;
  background: rgba(44, 125, 201, 0.975);
  position: relative;
  z-index: 550;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul {
    height: 1.45em;
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
    position: static;
    float: right;
  }
}
#main-nav ul li {
  clear: both;
  cursor: pointer;
}
@media (min-width: 1024px) and (max-width: 1299px) and (pointer: coarse) {
  #main-nav ul li {
    /* flyout appear on tablet click event */
  }
  #main-nav ul li.open > ul {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    pointer-events: auto;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li {
    margin: 0 0.05em 0 0;
    background: none;
    vertical-align: top;
    clear: none;
  }
  #main-nav ul li a:focus-visible + ul,
  #main-nav ul li ul:focus-within,
  #main-nav ul li:hover > ul {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    pointer-events: auto;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li.contact:focus-visible > ul,
  #main-nav ul li.contact-us:focus-visible > ul,
  #main-nav ul li.contact:focus-within > ul,
  #main-nav ul li.contact-us:focus-within > ul,
  #main-nav ul li.contact.clicked > ul,
  #main-nav ul li.contact-us.clicked > ul,
  #main-nav ul li.contact.active > ul,
  #main-nav ul li.contact-us.active > ul,
  #main-nav ul li.contact:hover ul,
  #main-nav ul li.contact-us:hover ul {
    margin: 0;
    left: auto;
    right: -0.1em;
    transform: translate(0, 0);
  }
  #main-nav ul li.contact ul li a,
  #main-nav ul li.contact-us ul li a {
    text-align: right;
    float: right;
    padding: 0 1.4em 0 2.8em;
  }
}
#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, background-color 0.33s ease;
  pointer-events: none;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id] {
    line-height: 1.93333333;
    font-size: clamp( 12px, 0.75em , 15px );
    text-align: center;
    height: 100%;
    z-index: 3000;
    pointer-events: auto;
    padding: 0 10px;
    color: #000;
  }
}
@media (min-width: 1024px) and (max-width: 1299px) and (pointer: coarse) {
  #main-nav ul li a[id] {
    /* allows tablet users to access flyouts on desktop style nav */
    z-index: -1;
  }
  #main-nav ul li a[id].home {
    z-index: 1;
  }
}
#main-nav ul li a[id]:after {
  width: 100%;
  height: 100%;
  background-color: #287bc8;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: skewX(-9deg);
  opacity: 0;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:after {
    content: '';
  }
}
#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] {
  color: #fff;
  text-decoration: none;
  transition-duration: 0.15s;
}
@media only screen and (max-width: 1023px) {
  #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] {
    background-color: rgba(5, 5, 5, 0.15);
  }
}
#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 {
  transition-duration: 0.15s;
  transform: skewX(-9deg);
  opacity: 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;
  background: rgba(5, 5, 5, 0.1);
  border-top: 2px solid #287bc8;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 1em 0;
    position: absolute;
    left: -0.1em;
    clip: rect(0 0 0 0);
    pointer-events: none;
    z-index: 2800;
    border-top: 3px solid #fff;
    background: rgba(40, 123, 200, 0.89);
  }
}
#main-nav ul ul li {
  height: 0;
  background: none;
  opacity: 0;
  overflow: hidden;
  transition-duration: 0.33s;
}
#main-nav ul ul li:focus-within {
  overflow: visible;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li {
    height: 1.25em;
    margin: 0;
    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;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a {
    line-height: 1.78571429;
    text-align: left;
    white-space: nowrap;
    height: 1.78571429em;
    padding: 0 2.8em 0 1.4em;
    float: left;
    text-transform: none;
  }
}
#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;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul ul li a:focus-visible,
  #main-nav ul ul li a:hover,
  #main-nav ul ul li a.active {
    background: rgba(5, 5, 5, 0.1);
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a:focus-visible,
  #main-nav ul ul li a:hover,
  #main-nav ul ul li a.active {
    color: #90ca3c;
    background: #fff;
  }
}
/* ===============================================
TERTIARY || if ul ul ul exists
=============================================== */
/* ===============================================
Flyout animation
=============================================== */
@media only screen and (max-width: 1023px) {
  #main-nav.open ul ul {
    visibility: hidden;
  }
  #main-nav.open ul .clicked ul {
    padding: 0 0 1em;
    visibility: visible;
  }
  #main-nav.open ul .clicked ul li {
    height: 44px;
    opacity: 1;
  }
}
/* socialmedia */
.collapsible .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #f00;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .collapsible .socialmedia {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .collapsible .socialmedia {
    display: none;
  }
}
.collapsible .socialmedia a {
  line-height: 48px;
  font-size: 25px;
  color: #fff;
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: opacity 0.33s ease-in-out, color 0.33s ease-in-out;
}
.collapsible .socialmedia a:focus-visible {
  opacity: 0.5;
  outline: auto;
}
.collapsible .socialmedia a:focus:active {
  outline: transparent;
}
.collapsible .socialmedia a:hover {
  z-index: 400;
}
.collapsible .socialmedia a .icon {
  position: relative;
}
/* ===============================================
	FULLMOB RULES
=============================================== */
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #287bc8;
  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;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    max-width: 50em;
    padding-right: 0.9em;
  }
}
#hd .mod {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 420;
  height: 100%;
  width: 96%;
  margin: 0 auto;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  #hd .mod {
    margin: 0;
    margin-right: 67px;
    width: auto;
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
  }
}
@media only screen and (min-width: 1024px) {
  #hd .mod {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
    gap: 27px;
    vertical-align: top;
    height: auto;
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  width: 137px;
  margin: 0 auto 20px;
  display: block;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  #logo {
    margin: 0 auto 0 2%;
    position: absolute;
    top: 47%;
    left: 0;
    transform: translate(0, -50%);
  }
}
@media only screen and (min-width: 1024px) {
  #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-visible {
  opacity: 0.51;
}
#logo img {
  width: 137px;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  margin: 0;
  pointer-events: auto;
  display: block;
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  #contactinfo {
    width: auto;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
}
#contactinfo .address {
  font-size: 16px;
  width: auto;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .address {
    display: block;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .address {
    line-height: 2.25;
    margin-right: 5px;
  }
}
#contactinfo .phone {
  font-size: 17px;
  color: #302d2d;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .phone {
    line-height: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .phone {
    line-height: 2.11764706;
  }
}
#contactinfo a {
  color: #287bc8;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:focus,
#contactinfo a:hover {
  color: #095093;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  flex-wrap: wrap;
  position: relative;
  z-index: 400;
  pointer-events: auto;
  gap: 5px;
}
#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: 13px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0 15px;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out;
  font-weight: 700;
  line-height: 2.76923077;
  position: relative;
}
#utilitynav a:nth-child(1) {
  --accent: #90ca3c;
}
#utilitynav a:nth-child(2) {
  --accent: #287bc8;
}
#utilitynav a:nth-child(3) {
  --accent: #095093;
}
#utilitynav a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--accent);
  z-index: -1;
  transform: skewX(-10deg);
}
#utilitynav a:focus,
#utilitynav a:hover {
  transform: scale(1.13);
  z-index: 1;
}
/* ===============================================
	socialmedia
=============================================== */
#hd .socialmedia,
#masthead > .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
  position: absolute;
  top: 100%;
  right: 0;
  pointer-events: auto;
}
@media only screen and (min-width: 1024px) {
  #hd .socialmedia,
  #masthead > .socialmedia {
    width: 2.2em;
    margin: 0;
    flex-direction: column;
    top: 12.5em;
    right: 1em;
  }
}
@media only screen and (min-width: 1300px) {
  #hd .socialmedia,
  #masthead > .socialmedia {
    position: fixed;
  }
}
#hd .socialmedia a,
#masthead > .socialmedia a {
  font-size: clamp( 12px, 0.55em , 11px );
  color: #fff;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background: rgba(40, 123, 200, 0.7);
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #hd .socialmedia a,
  #masthead > .socialmedia a {
    line-height: 44px;
    width: 44px;
    height: 44px;
  }
}
@media only screen and (min-width: 1024px) {
  #hd .socialmedia a,
  #masthead > .socialmedia a {
    line-height: 4;
    width: auto;
    height: 4em;
  }
}
#hd .socialmedia a:focus,
#masthead > .socialmedia a:focus,
#hd .socialmedia a:hover,
#masthead > .socialmedia a:hover {
  color: #fff;
  background: #095093;
  z-index: 400;
  transform: translate(0, 0) scale(1.44);
}
#hd .socialmedia a .icon,
#masthead > .socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  min-height: 85.71428571vw;
  background: #000;
  position: relative;
  z-index: 400;
  color: #095093;
}
@media only screen and (min-width: 768px) {
  #slideshow {
    min-height: 38.0952381vw;
  }
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    margin-top: 116px;
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
}
#slideshow #home-slideshow .hpslide,
#slideshow #home-slideshow img {
  width: 100%;
  max-width: none;
}
#slideshow .ssoverlay {
  width: 100%;
  padding: 0;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 420;
}
#slideshow .ssoverlay .slogan {
  line-height: 1.8;
  height: 1.8em;
  font-size: min(2em, 5.5vw);
  color: #4b78b2;
  margin: 0 auto;
  display: block;
  font-family: "Permanent Marker", cursive;
  background: rgba(255, 255, 255, 0.8);
}
#slideshow .ssoverlay .slogan .cta {
  display: block;
  position: relative;
  top: -0.075em;
}
#slideshow .spotbtn {
  font-size: clamp( 12px, 2em , 40px );
  text-align: center;
  color: #fff;
  font-family: "Permanent Marker", cursive;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  margin-bottom: 0.6em;
  white-space: nowrap;
}
@media only screen and (max-width: 1299px) {
  #slideshow .spotbtn {
    line-height: 44px;
    min-width: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .spotbtn {
    line-height: 1.2;
  }
}
#slideshow .spotbtn:hover,
#slideshow .spotbtn:focus {
  transform: scale(1.1);
}
#slideshow .spotbtn--two {
  position: absolute;
  z-index: 420;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  text-transform: uppercase;
  font-size: min(1.05em, 4vw);
  color: #287bc8;
  line-height: 2.38095238;
  padding: 0 0.3em;
}
#slideshow .spotbtn--two::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 59, 59, 0.75);
  transform: skew(-10deg);
}
#slideshow .spotbtn--two:hover,
#slideshow .spotbtn--two:focus {
  color: #53a4f0;
  transform: translate(-50%, 0);
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot01 {
  color: #fff;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background-color: #095093;
}
@media only screen and (min-width: 768px) {
  .spot01 {
    padding: 3em 0;
  }
}
.spot01 .decoration {
  width: 90%;
  max-width: 31.75em;
  display: block;
  margin: 0 auto 20px;
}
@media only screen and (min-width: 1024px) {
  .spot01 .decoration {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='635' height='321' fill='none' viewBox='0 0 635 321'%3E%3Cpath fill='%23D9D9D9' d='M0 0h635l-57.462 321H0V0Z'/%3E%3C/svg%3E%0A") center / cover no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1em 0 0;
    width: 45%;
  }
}
.spot01 .mod {
  width: 90%;
  max-width: 550px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 1024px) {
  .spot01 .mod {
    text-align: left;
    max-width: 564px;
    width: 50%;
  }
}
.spot01 h2.topic {
  line-height: 0.87272727;
  font-size: min(55px, 12vw);
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.5em;
}
.spot01 h2.topic .trait {
  line-height: 1;
  font-size: clamp( 12px, 0.72727273em , 40px );
  font-weight: 400;
  display: block;
  color: #90ca3c;
  font-family: "Permanent Marker", cursive;
}
.spot01 .info {
  line-height: 1.6;
  font-size: 20px;
  margin: 0 0 1em;
  font-weight: 300;
}
.spot01 .spotbtns {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .spot01 .spotbtns {
    justify-content: flex-start;
  }
}
.spot01 .spotbtn {
  font-size: min(17px, 3.8vw);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2em;
  background-color: #90ca3c;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  min-width: 44px;
  line-height: 4;
}
.spot01 .spotbtn:focus,
.spot01 .spotbtn:hover {
  transform: scale(1.1);
  background-color: #73ab21;
  z-index: 421;
}
/* ==================================================================
	subnav
=================================================================== */
#subnav {
  text-align: center;
  color: #000;
  padding: 2.55em 0;
  position: relative;
  overflow: hidden;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 1024px) {
  #subnav {
    padding-top: 146px;
  }
}
@media only screen and (max-width: 1299px) {
  #subnav nav {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}
#subnav p {
  font-size: clamp( 12px, 0.6em , 12px );
  margin: 0 auto;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media only screen and (max-width: 1299px) {
  #subnav p {
    line-height: 29.33333333px;
    max-width: 1000px;
    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.58333333;
    width: 60%;
  }
}
#subnav a {
  color: #333;
  margin: 0 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
  }
}
#subnav a:focus,
#subnav a:hover,
#subnav a.active {
  color: #2c7dc9;
  text-decoration: none;
}
#subnav .divider {
  margin: 0 0.8em;
  display: inline-block;
  vertical-align: top;
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 2.65em 0 3em;
  }
}
#bd .container {
  width: 90%;
  max-width: 50em;
}
#content {
  max-width: 600px;
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 60%;
    max-width: 30em;
    float: left;
  }
}
@media only screen and (min-width: 1300px) {
  #content {
    width: 60%;
  }
}
#content .content-text {
  line-height: 1.6;
}
@media only screen and (min-width: 666px) {
  #content .content-text {
    font-size: min(2.3vw, 20px );
  }
}
@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: 20px;
  }
}
#content p {
  text-align: justify;
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 2.35em 0 2.5em;
  }
}
.home #bd .container {
  width: 90%;
  max-width: 50em;
  /* @media only screen and (min-width: 768px) and (max-width: 1299px) { 
			max-width:70ch; 
		} */
}
.home #bd #content {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 70ch;
    float: none;
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    max-width: 50em;
    width: 100%;
  }
}
@media only screen and (min-width: 666px) {
}
@media only screen and (min-width: 1300px) {
}
.home #bd #content .content-text h2 {
  font-size: 2.25em;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: #373133;
  text-transform: none;
}
.home #bd #content p {
  text-align: left;
}
/* ==================================================================
	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: #287bc8;
  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: #287bc8;
  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: #095093;
}
.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: #095093;
  top: 0;
}
/* content centered for slideshow, video-centric, and/or full width content */
.before-and-after #content,
.office-tour #content,
.smile-gallery #content,
.invisalign-videos #content {
  text-align: center;
}
.before-and-after #content h1,
.office-tour #content h1,
.smile-gallery #content h1,
.invisalign-videos #content h1,
.before-and-after #content h2,
.office-tour #content h2,
.smile-gallery #content h2,
.invisalign-videos #content h2,
.before-and-after #content h3,
.office-tour #content h3,
.smile-gallery #content h3,
.invisalign-videos #content h3,
.before-and-after #content p,
.office-tour #content p,
.smile-gallery #content p,
.invisalign-videos #content p {
  text-align: center;
}
.before-and-after .img-left,
.office-tour .img-left,
.smile-gallery .img-left,
.invisalign-videos .img-left,
.before-and-after .img-right,
.office-tour .img-right,
.smile-gallery .img-right,
.invisalign-videos .img-right {
  margin: 0 auto;
  float: none;
}
/* blockquote styling */
#content blockquote {
  margin: 0 0 1.58em;
  padding: 0 0 0 1em;
  border-left: 0.33em solid #f0f0f0;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  #content,
  #content h2[id],
  .common-procedures #content h2[id] {
    scroll-margin-top: 200px;
  }
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.84em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.28;
  font-size: clamp( 12px, 1.25em , 25px );
  font-weight: 400;
  text-decoration: none;
  color: #287bc8;
  transition-duration: 0s;
}
.sitemap #content ul ul {
  margin-left: 1em;
}
.sitemap #content ul ul li a {
  line-height: 1.6;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #287bc8;
  margin-left: 0;
}
.sitemap #content a:focus,
.sitemap #content a:hover {
  color: #90ca3c;
  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;
    max-width: 49%;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 18.55em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 37.1%;
    margin: 0.6em 0 1em;
    display: block;
    float: right;
    clear: right;
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}
.stock {
  width: 100%;
  position: relative;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='371' height='333' fill='none' viewBox='0 0 371 333'%3E%3Cpath fill='%23D9D9D9' d='M37.952 0H371l-38.888 333H0L37.952 0Z'/%3E%3C/svg%3E%0A") center / cover no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='371' height='333' fill='none' viewBox='0 0 371 333'%3E%3Cpath fill='%23D9D9D9' d='M37.952 0H371l-38.888 333H0L37.952 0Z'/%3E%3C/svg%3E%0A") center / cover no-repeat;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'],*/
/*body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR */
/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION REVERSE
=============================================== */
.spot02 {
  color: #fff;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background-color: #90ca3b;
}
@media only screen and (min-width: 666px) {
  .spot02 {
    padding: 2.5em 0;
  }
}
.spot02 h2.topic {
  line-height: 0.73846154;
  font-size: min(65px, 14vw);
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto 30px;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .spot02 h2.topic {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    margin: 0 50px 0 0;
  }
}
.spot02 h2.topic .trait {
  line-height: 1;
  font-size: clamp( 12px, 0.61538462em , 40px );
  font-weight: 400;
  display: block;
  font-family: "Permanent Marker", cursive;
}
.spot02 .info {
  line-height: 1.6;
  font-size: 20px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 530px;
}
@media only screen and (min-width: 1024px) {
  .spot02 .info {
    text-align: left;
  }
}
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot03 {
  color: #fff;
  margin: 0;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background-color: #2c7dc9;
}
@media only screen and (min-width: 768px) {
  .spot03 {
    text-align: left;
    padding: 0 0 2.5em;
  }
}
.spot03 .container {
  max-width: 1000px;
  width: 90%;
}
.spot03 .decoration {
  width: 100%;
  display: block;
  max-width: 910px;
  margin: 0 auto 54px;
}
.spot03 h2.topic {
  line-height: 0.87272727;
  font-size: min(55px, 8vw);
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  font-weight: 300;
  margin-bottom: 37px;
}
.spot03 h2.topic .trait {
  line-height: 1.125;
  font-size: clamp( 12px, 0.72727273em , 40px );
  font-weight: 400;
  font-style: italic;
  display: block;
  font-family: "Permanent Marker", cursive;
  color: #90ca3c;
}
.spot03 .info {
  line-height: 1.6;
  font-size: 20px;
  max-width: 570px;
  font-weight: 300;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .spot03 .info {
    margin-left: auto;
    margin-right: auto;
  }
}
.spot03 .info .trait {
  font-weight: 400;
  color: #fff;
  transition: color 0.33s ease-in-out;
}
.spot03 .info .trait:focus,
.spot03 .info .trait:hover {
  color: #90ca3c;
}
.spot03 .spotbtn {
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  width: 5em;
  background-color: #90ca3c;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  min-width: 44px;
  line-height: 4;
}
.spot03 .spotbtn:hover,
.spot03 .spotbtn:focus {
  transform: scale(1.3);
  background: #73ab21;
}
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot04 {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background: #ccc center / cover no-repeat;
}
@media only screen and (min-width: 1024px) {
  .spot04 {
    font-size: min(2vw, 20px);
    padding: 8.65em 0 6em;
  }
}
.spot04 h2.topic {
  line-height: 1.2;
  font-size: min(40px, 7vw);
  text-transform: uppercase;
  color: currentcolor;
  width: 90%;
  display: block;
  font-weight: 300;
  margin: 0 auto 50px;
  max-width: 1000px;
}
@media only screen and (min-width: 1024px) {
  .spot04 h2.topic {
    text-align: left;
    font-size: clamp( 12px, 5em , 100px );
    line-height: 0.95;
  }
  .spot04 h2.topic .cta {
    display: block;
    max-width: 300px;
  }
}
.spot04 h2.topic .trait {
  font-weight: 400;
  display: block;
  font-family: "Permanent Marker", cursive;
  color: #90ca3c;
}
@media only screen and (min-width: 1300px) {
  .spot04 h2.topic .trait {
    line-height: 1.57142857;
    font-size: clamp( 12px, 0.7em , 70px );
  }
}
.spot04 .mod {
  display: flex;
  flex-direction: column;
  gap: 0em;
  width: 90%;
  position: relative;
  padding: 2.75em 2em;
  max-width: 450px;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .spot04 .mod {
    align-items: flex-start;
    position: absolute;
    top: 9em;
    left: calc(50% + 0em);
    width: calc(50% - 0em);
    max-width: none;
    margin: 0;
    padding: 3em 0 3em;
    gap: 0.5em;
  }
}
.spot04 .mod::before {
  content: "";
  display: block;
  z-index: -1;
  width: calc(100% + 0em);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.58);
}
@media only screen and (min-width: 1024px) {
  .spot04 .mod::before {
    left: -5.75em;
    transform: skewX(-10deg);
    width: calc(100% + 11.5em);
  }
}
.spot04 .spotbtn {
  font-size: min(28px, 5vw);
  text-transform: uppercase;
  color: #fff;
  height: 2.14285714em;
  gap: 5px;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  transform-origin: left;
  min-height: 44px;
}
.spot04 .spotbtn .icon {
  line-height: 0;
  width: 1.89285714em;
}
.spot04 .spotbtn .icon svg {
  width: 100%;
  height: auto;
}
.spot04 .spotbtn:hover,
.spot04 .spotbtn:focus {
  transform: scale(1.1);
}
/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION REVERSE
=============================================== */
.spot05 {
  color: #fff;
  margin: 0;
  padding: 3em 0;
  position: relative;
  z-index: 410;
  background-color: #095093;
}
@media only screen and (min-width: 768px) {
  .spot05 {
    text-align: left;
    padding: 0 0 2.5em;
  }
}
.spot05 .container {
  max-width: 1000px;
  width: 90%;
}
.spot05 .decoration {
  width: 100%;
  display: block;
  max-width: 892px;
  margin: 0 auto 54px;
}
.spot05 h2.topic {
  line-height: 0.87272727;
  font-size: min(55px, 13vw);
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  font-weight: 300;
  margin-bottom: 37px;
}
.spot05 h2.topic .trait {
  line-height: 1.125;
  font-size: clamp( 12px, 0.72727273em , 40px );
  font-weight: 400;
  font-style: italic;
  display: block;
  font-family: "Permanent Marker", cursive;
  color: #90ca3c;
}
.spot05 .info {
  line-height: 1.6;
  font-size: 20px;
  max-width: 650px;
  font-weight: 300;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .spot05 .info {
    margin-left: auto;
    margin-right: auto;
  }
}
.spot05 .info .trait {
  font-weight: 400;
  color: #fff;
  transition: color 0.33s ease-in-out;
}
.spot05 .info .trait:focus,
.spot05 .info .trait:hover {
  color: #90ca3c;
}
.spot05 .testifier {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #62a9eb;
}
.spot05 .spotbtn {
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  width: 5em;
  background-color: #90ca3c;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  min-width: 44px;
  line-height: 4;
}
.spot05 .spotbtn:hover,
.spot05 .spotbtn:focus {
  transform: scale(1.3);
  background: #73ab21;
}
.spot06 {
  display: block;
  position: relative;
  padding: 3em 0;
  background-color: #f1f1f1;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .spot06 {
    padding: 3em 0 4em;
  }
}
.spot06 .mod {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto 40px;
}
@media only screen and (min-width: 1024px) {
  .spot06 .mod {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin-right: 1.1em;
  }
}
.spot06 h2.topic {
  line-height: 0.87272727;
  font-size: min(55px, 20vw);
  text-transform: uppercase;
  color: #287bc8;
  width: 100%;
  display: block;
  font-weight: 300;
  margin-bottom: 0.5em;
}
.spot06 h2.topic .trait {
  line-height: 1.125;
  font-size: clamp( 12px, 0.72727273em , 40px );
  font-weight: 400;
  font-style: italic;
  display: block;
  font-family: "Permanent Marker", cursive;
  color: #90ca3c;
}
.spot06 .socialmedia {
  line-height: 0;
  text-align: center;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .spot06 .socialmedia {
    justify-content: flex-start;
  }
}
.spot06 .socialmedia a {
  font-size: 20px;
  color: #fff;
  min-width: 24px;
  min-height: 24px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: background-color 0.33s ease-in-out, transform 0.33s ease-in-out;
  background-color: #468dce;
  width: 50px;
  height: 50px;
  line-height: 2.5;
}
@media only screen and (min-width: 1024px) {
  .spot06 .socialmedia a {
    line-height: 1.98076923;
    font-size: clamp( 12px, 2.6em , 52px );
    width: 1.98076923em;
    height: 1.98076923em;
  }
}
.spot06 .socialmedia a .icon {
  position: relative;
}
.spot06 .socialmedia a:hover,
.spot06 .socialmedia a:focus {
  background-color: #3179ba;
  transform: scale(1.15);
}
.spot06 iframe {
  display: inline-block;
  vertical-align: top;
  width: 90% !important;
  max-width: 460px;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #ccc no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #ft::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0%;
    background-color: #fff;
    height: 100%;
    width: 23.75em;
    transform: skewX(-10deg);
    z-index: -1;
    pointer-events: none;
  }
}
@media only screen and (min-width: 1040px) {
  #ft::before {
    right: calc(50% + 9em);
    left: auto;
  }
}
@media only screen and (min-width: 1300px) {
  #ft {
    background-size: auto 100%;
  }
  #ft::before {
    right: calc(50% + 7.3em);
    width: 50%;
    left: auto;
    width: 30.5em;
  }
}
#ft a {
  color: #5c5d5d;
  transition: color 0.33s ease-in-out;
}
#ft a:focus,
#ft a:hover {
  color: #095093;
}
.fixed-spotbtn {
  position: fixed;
  z-index: 3001;
  bottom: 0;
  right: 0.5em;
  font-size: 24px;
  padding: 0 15px;
  margin: 2px 1px;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out;
  line-height: 48px;
  color: #fff;
}
.fixed-spotbtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #90c93b;
  transform: skewX(-10deg);
  z-index: -1;
}
.fixed-spotbtn:hover,
.fixed-spotbtn:focus {
  transform: scale(1.13);
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 3em 0 1.65em;
  background-color: #fff;
  display: block;
  font-size: min(20px, 5.75vw);
}
@media only screen and (min-width: 768px) {
  #location {
    width: 17em;
    padding: 3em 0 1.65em;
  }
}
@media only screen and (min-width: 1040px) {
  #location {
    width: calc(50% - 9.2em);
  }
}
@media only screen and (min-width: 1300px) {
  #location {
    margin-right: calc(50% + 183px);
    width: calc(50% - 183px);
    float: right;
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  max-width: 20em;
  display: block;
}
@media only screen and (max-width: 767px) {
  #location .mod {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  #location .mod {
    margin: 0 0 0 auto;
    text-align: left;
    max-width: 15.85em;
  }
}
#location .logo {
  line-height: 1.05263158;
  font-size: clamp( 12px, 0.95em , 19px );
  text-align: center;
  margin-bottom: 0.35em;
  display: inline-block;
  vertical-align: top;
  color: #287bc8;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #location .logo {
    min-height: 24px;
  }
}
#location .phone {
  font-size: clamp( 12px, 1em , 20px );
  display: block;
  color: #8ac730;
  font-weight: 700;
  margin-bottom: 1.05em;
}
@media only screen and (max-width: 767px) {
  #location .phone {
    line-height: 44px;
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 768px) {
  #location .phone {
    line-height: 1.1;
  }
}
#location .address {
  font-size: clamp( 12px, 0.75em , 15px );
  margin: 0 auto 1.65em;
  display: block;
}
@media only screen and (max-width: 767px) {
  #location .address {
    line-height: 22px;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 768px) {
  #location .address {
    line-height: 1.33333333;
  }
}
#location .address .marker {
  line-height: 1;
  font-size: 4.4em;
  color: #287bc8;
  width: 0.75em;
  margin-left: 2.62121212em;
  position: absolute;
  top: 1.92424242em;
  left: 50%;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  #location .address .marker {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #location .address .marker {
    display: block;
  }
}
#location .address .marker:before {
  color: currentcolor;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.svg) no-repeat center center;
  bottom: -0.15em;
  left: 0.2em;
  z-index: -1;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:focus .marker,
#location .address:hover .marker {
  transform: translate(0, 0) scale(2);
}
#location .officehours {
  line-height: 0;
  text-align: left;
  display: inline-block;
  color: #5c5d5d;
  width: 10em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #location .officehours {
    padding-top: 1.15em;
    width: 100%;
  }
  #location .officehours::before {
    content: "";
    position: absolute;
    top: 0;
    right: 1.9em;
    background-color: #dadada;
    width: 200%;
    height: 1px;
  }
}
#location .officehours .days,
#location .officehours .hours {
  line-height: 1.71428571;
  font-size: clamp( 12px, 0.7em , 14px );
  display: inline-block;
  vertical-align: top;
}
#location .officehours .days {
  text-align: left;
  width: 3.57142857em;
  font-weight: 700;
  color: #287bc8;
  text-transform: uppercase;
}
#location .officehours .hours {
  text-align: left;
  width: calc(100% - 5em);
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  margin: 0;
  background-color: #5c5d5d;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  #links {
    padding: 2em 0 3.5em;
  }
}
@media only screen and (min-width: 768px) {
  #links {
    height: 63px;
    padding: 10px 0 0;
  }
}
#links .container {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  position: static;
}
@media only screen and (min-width: 768px) {
  #links .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
#links .container::before,
#links .container::after {
  content: none;
}
#links .util {
  font-size: clamp( 12px, 0.6em , 12px );
}
@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  #links .util {
    line-height: 44px;
  }
}
@media only screen and (min-width: 768px) {
  #links .util {
    line-height: 3.66666667;
  }
}
#links .util a {
  color: #fff;
  transition: opacity 0.33s ease-in-out;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #links .util a {
    display: block;
  }
}
#links .util a:focus,
#links .util a:hover {
  opacity: 0.7;
}
#links .util .divider {
  display: inline-block;
  margin: 0 0.3em;
}
@media only screen and (max-width: 767px) {
  #links .util .divider {
    display: none;
  }
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 2em;
  height: 1.66666667em;
  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%;
  margin: 0;
  display: block;
  position: relative;
}
@media only screen and (min-width: 480px) {
  #btt {
    width: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1330px) {
  #btt {
    position: absolute;
    top: 50%;
    right: 170px;
    transform: translate(0, -50%);
  }
}
a#backtotop {
  font-size: clamp( 12px, 0.85em , 17px );
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.33s ease-in-out, transform 0.33s ease-in-out;
  background-color: #90ca3c;
}
@media only screen and (max-width: 1299px) {
  a#backtotop {
    line-height: 44px;
    width: 44px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  a#backtotop {
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 1300px) {
  a#backtotop {
    line-height: 2.23529412;
    width: 2.23529412em;
  }
}
a#backtotop:focus,
a#backtotop:hover {
  transform: scale(1.13);
  background: #73a628;
}
/*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: 1em;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 51px;
  padding: 0;
  background-color: #90ca3c;
  border: none;
  transition: color 0.33s ease-in-out, transform 0.33s ease-in-out;
  margin: 0 1.5em;
  position: relative;
  z-index: 1;
}
form button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1.5em;
  width: calc(100% + 3em);
  height: 100%;
  background: #90c93b;
  transform: skewX(-10deg);
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
form button:focus,
form button:hover {
  color: #fff;
  transform: scale(1.13);
}
form button:focus::after,
form button:hover::after {
  background-color: #095093;
}
form p {
  height: auto;
}
/* ===============================================
	skip link styles
=============================================== */
.skiplink {
  line-height: 2;
  font-size: 12px;
  color: #fff;
  padding: 0.5em 1em;
  background-color: #095093;
  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;
}
/* ===============================================
	recaptcha
=============================================== */
.grecaptcha-badge {
  visibility: hidden;
  z-index: -1;
}
.grecaptcha-alt {
  line-height: 1.3;
  font-size: 12px;
  font-style: italic;
  text-align: inherit;
  text-wrap: balance;
  color: #ccc;
}
/* ===============================================
	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: #287bc8;
  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: #095093;
}
/* ===============================================
	.screenreader 
	a11y support for descriptive text on vaguely worded buttons
	https://gomakethings.com/hidden-content-for-better-a11y/#hidden-labels
=============================================== */
.screenreader {
  white-space: nowrap;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet || Supports 768px and up
=============================================== */
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #bd.sub:after,
  .layout-full-width #bd.sub:after {
    content: none;
  }
  .sitemap #content,
  .layout-full-width #content {
    width: 100%;
    /* 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( 30em , 90% );
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 30em , 1200px );
    }
  }
}
