/* 
 Site Manager Version: 14.2.0
 Date Created: November 2024
 Account: kur-benjamin
 Written by: Ricky Rivas
 Sesame Communications - All rights reserved. C2024
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2');
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v32-latin-700.woff2') format('woff2');
}
/* roboto-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v32-latin-italic.woff2') format('woff2');
}
/* roboto-condensed-200 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/roboto-condensed-v27-latin-200.woff2') format('woff2');
}
/* roboto-condensed-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2');
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2');
}
/* roboto-condensed-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v27-latin-italic.woff2') format('woff2');
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-condensed-v27-latin-500.woff2') format('woff2');
}
/* roboto-condensed-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-condensed-v27-latin-600.woff2') format('woff2');
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2');
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/* resets */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* GLOBAL OVERRIDES */
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: "Roboto", sans-serif;
}
form button,
button {
  font-family: "Roboto", sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #505050;
  background: #fff url(../images/spotlight/pattern.png) center / auto;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #44a7c2;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
  font-weight: 700;
}
#content a:hover {
  color: #1d6484;
  text-decoration: underline;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #505050;
  text-rendering: auto;
  margin: 0 0 1.44em;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
.sub h1 {
  font-size: 10vw;
  margin-bottom: 0em;
  color: #fff;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 3.4em;
  }
}
.home h1 {
  font-size: min(7vw, 2.9em);
  margin: 0 0 0.55em;
  color: #44a7c2;
  font-weight: 500;
  line-height: 0.85294118;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
@media only screen and (min-width: 900px) {
  .home h1 {
    font-size: 3.4em;
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.14285714;
  color: #505050;
  font-weight: 200;
  letter-spacing: 0.025em;
  font-size: clamp( 15px, 0.51470588em , 35px );
}
h2:not(.topic) {
  font-size: 1.31578947em;
  color: #1d6484;
}
h3:not(.topic) {
  font-size: 1.21052632em;
}
h4 {
  font-size: 1.10526316em;
}
h5 {
  font-size: 1.05263158em;
}
h6 {
  font-size: 1em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 64.5em;
}
@media only screen and (min-width: 1300px) {
  .container {
    width: 90%;
  }
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  min-height: 44px;
  padding: 0;
  background-color: #fff;
  position: relative;
  z-index: 3000;
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: min(20px, 1.7vw);
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    left: 0;
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: right;
  height: 72px;
  width: 72px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
@media only screen and (min-width: 666px) {
  #main-nav {
    width: 145px;
    height: 100%;
  }
}
#main-nav .container,
#main-nav .collapsible {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 44px;
  color: #fff;
  width: 72px;
  height: 72px;
  padding: 0;
  margin: 0 auto 73px;
  background: #505050;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 666px) {
  #main-nav .trigger {
    width: 145px;
    height: 145px;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav .trigger {
    display: none;
  }
}
#main-nav .trigger .navicon {
  width: 50px;
  height: auto;
  display: inline-block;
  position: relative;
  transition: transform 0.33s ease;
}
@media only screen and (min-width: 666px) {
  #main-nav .trigger .navicon {
    width: 88px;
    height: 88px;
  }
}
#main-nav .trigger .navicon circle {
  transition: opacity 0.33s ease;
}
#main-nav .trigger .navicon .hover circle {
  opacity: 0;
  transition-duration: 0s;
}
#main-nav .open .trigger .navicon {
  transform: rotate(180deg);
}
#main-nav .open .trigger .navicon .idle circle {
  opacity: 0;
  transition-duration: 0s;
}
#main-nav .open .trigger .navicon .hover circle {
  opacity: 1;
  transition-duration: 0.33s;
}
@media only screen and (max-width: 1023px) {
  #main-nav .collapsible > ul {
    border-top: 1px solid #fff;
  }
}
#main-nav ul {
  width: 100vw;
  margin: 0;
  padding: 2em 0;
  background-color: #44a7c2;
  position: relative;
  float: right;
  z-index: 550;
}
@media only screen and (min-width: 666px) {
  #main-nav ul {
    width: 334px;
  }
}
#main-nav ul li {
  clear: both;
  padding: 0 70px 0 0;
}
#main-nav ul li a[id] {
  line-height: 50px;
  text-transform: uppercase;
  width: auto;
  height: 50px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id] {
    color: #fff;
    font-size: 19px;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id] {
    font-size: clamp( 12px, 0.95em , 19px );
    color: #505050;
  }
}
#main-nav ul li a[id]:after {
  content: '';
  width: 100%;
  background-color: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate(0, 0) scaleX(0);
  opacity: 0;
  bottom: 0;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id]:after {
    height: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:after {
    height: 14px;
  }
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  text-decoration: none;
  transition-duration: 0.15s;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li.open > a[id],
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #505050;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li.open > a[id],
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #44a7c2;
  }
}
#main-nav ul li.open > a[id]:after,
#main-nav ul li.active > a[id]:after,
#main-nav ul li:hover > a[id]:after {
  transition-duration: 0.15s;
  transform: translate(0, 0) scaleX(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0px 25px 0 40px;
  background: #44a8c2;
  display: inline;
  float: left;
  transition: padding 0.33s ease;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
  padding: 0;
}
#main-nav ul ul li a {
  line-height: 1.06666667;
  font-size: 15px;
  color: #fff;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.33s ease;
  letter-spacing: 0.025em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  #main-nav ul ul li a span {
    display: contents;
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a {
    font-size: clamp( 12px, 0.75em , 15px );
  }
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #505050;
  margin-bottom: 0;
  border: none;
}
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 15px 25px 15px 50px;
}
#main-nav .open ul .open ul li {
  height: 48px;
  opacity: 1;
}
/* ===============================================
main-nav - Desktop Stylings
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  #main-nav {
    font-size: inherit;
    width: auto;
    display: inline-block;
    vertical-align: top;
    height: 7.25em;
    margin-top: 0em;
    background: none;
    box-shadow: none;
    position: relative;
    top: auto;
    z-index: 2900;
    margin-right: 1.2em;
  }
  #main-nav .container {
    width: 100%;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 7.25em;
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.0875em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
    padding: 0;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    line-height: 7.89473684;
    text-align: center;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1.2em 0 1.4em;
    position: absolute;
    display: none;
    z-index: 2800;
  }
  #main-nav ul ul li {
    height: 1.75em;
    margin: 0;
    padding: 0;
    float: left;
    opacity: 1;
  }
  #main-nav ul ul li a {
    line-height: 2.33333333;
    text-align: left;
    white-space: nowrap;
    height: 2.33333333em;
    padding: 0 2.7em 0 2.2em;
    float: left;
  }
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  #main-nav ul li:hover ul {
    display: block;
    left: 0em;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    margin: 0;
    left: auto;
    right: 0em;
  }
  /*END*/
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  color: #44a7c2;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
  }
}
#hd .container {
  padding: 0;
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 1.3em;
  width: 6.25em;
  margin: 0;
  display: block;
  position: absolute;
  top: 0.6em;
  left: 1em;
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 0.5em;
    left: 2.3em;
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  #logo a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
#logo svg {
  width: 6.25em;
  height: 6.3em;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 73px 0 00;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 666px) {
  #utilitynav {
    margin: 0 146px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav {
    margin: 0;
  }
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: 0;
  background: #44a7c2;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  letter-spacing: 0.03em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (max-width: 665px) {
  #utilitynav a {
    line-height: 72px;
    font-size: 35px;
    width: 72px;
    height: 72px;
  }
  #utilitynav a .cta {
    white-space: nowrap;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
@media only screen and (min-width: 666px) {
  #utilitynav a {
    line-height: 145px;
    font-size: 25px;
    padding: 0 0.84em;
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a {
    font-size: clamp( 12px, 1.25em , 25px );
    line-height: 5.8;
  }
}
#utilitynav a .icon {
  letter-spacing: normal;
  margin-right: -0.05em;
}
#utilitynav a:hover {
  background-color: #1d6484;
}
#utilitynav a:hover .icon {
  --fa-bounce-height: -0.2em;
  animation: fa-bounce 1s ease;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  min-height: 30.47619048vw;
  background: #000;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 1023px) {
  #slideshow {
    height: 500px;
  }
  #slideshow #home-slideshow {
    height: 100%;
  }
  #slideshow #home-slideshow .cycle-slideshow {
    height: 100%;
  }
  #slideshow #home-slideshow .cycle-slideshow img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  #slideshow {
    height: 330px;
  }
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow {
  /*    min-height: 640px;*/
  margin-top: 145px;
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 / 640;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow {
    position: relative;
  }
  #slideshow #home-slideshow .hpslide {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow #home-slideshow {
/*    width: 2000px;*/
/*    margin: 0 calc(-1000px + 50vw);*/
  }
}
/* ==================================================================
	.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;
  background: #ccc url(../images/spotlight/spot01-mobile.jpg) center / cover no-repeat;
}
@media only screen and (min-width: 768px) {
  .spot01 {
    background-image: url(../images/spotlight/spot01.jpg);
    font-size: min(1.9vw, 1.2em);
    padding: 3.9em 0 4em;
  }
  }

@media only screen and (max-width: 767px) {
  .spot01:nth-child(2) .mod {
    margin: 0 2em;
    padding-top: 36em;
  }
  .spot01:nth-child(2) .decoration {
    position: absolute;
    top: 3em;
    left: 0;
    right: 0;
  }
} 

@media only screen and (min-width: 768px) {
.spot01:nth-child(2) .mod {
  margin:0 1em; 
}

.spot01:nth-child(2) .decoration {
  margin:0;
}
} 

@media only screen and (max-width: 450px) {
  .spot01:nth-child(2) .mod {
    padding-top:120%;
  }

}

@media only screen and (min-width: 1024px) {
  .spot01 {
    font-size: inherit;
    padding-left: 3em;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1999px) {
  .spot01 {
    background-size: auto;
  }
}
.spot01 .decoration {
  width: 80%;
  max-width: 24em;
  display: block;
  margin: 0 auto 2em;
}
@media only screen and (min-width: 768px) {
  .spot01 .decoration {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2em 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .spot01 .decoration {
    margin-right: 3.75em;
  }
}
.spot01 .mod {
  width: 80%;
  max-width: 24em;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .spot01 .mod {
    max-width: 22.5em;
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 .mod {
    padding: 2em 0 0;
    max-width: 25em;
  }
}
.spot01 .mod ul {
  line-height: 1.64285714;
  font-size: clamp( 14px, 0.7em , 14px );
  font-size: clamp( 16px, 1em , 16px );
  font-family: "Roboto Condensed", sans-serif;
  margin: 0 10% 2em 10%;
}
@media only screen and (min-width: 1024px) {
  .spot01 .mod ul {
    margin: 0 0 4.3em 6.5%;
  }
}
.spot01 h2.topic {
  line-height: 0.96153846;
  font-size: min(4.2em, 18vw);
  font-weight: 200;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.25em -0.05em;
  letter-spacing: 0.025em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (min-width: 666px) {
  .spot01 h2.topic {
    line-height: 1.05769231;
    font-size: clamp( 12px, 2.6em , 52px );
  }
}
.spot01 h2.topic .trait {
  font-weight: 400;
}
.spot01 .info {
  line-height: 1.36363636;
  font-size: 22px;
  margin: 0 0 1em;
}
@media only screen and (min-width: 1024px) {
  .spot01 .info {
    margin: 0 0 2.86363636em;
    margin: 0 0 0.86363636em;
    line-height: 1.63636364;
    font-size: clamp( 12px, 1.1em , 22px );
  }
}
.spot01 .spotbtn {
  font-size: clamp( 14px, 0.7em , 14px );
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #44a7c2;
  width: 11.07142857em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  z-index: 1;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1023px) {
  .spot01 .spotbtn {
    line-height: 57px;
    min-width: 44px;
  }
}
@media only screen and (min-width: 1024px) {
  .spot01 .spotbtn {
    line-height: 4.07142857;
  }
}
.spot01 .spotbtn::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1d6484;
  transition: transform 0.33s ease;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: top;
}
.spot01 .spotbtn:hover::before {
  transform: scaleY(1);
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 4.6em 0 3em;
  }
}
#bd.sub:after {
  content: none;
  height: 100%;
  background: #44a8c2;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  #bd.sub:after {
    content: '';
    width: 24%;
  }
}
@media only screen and (min-width: 1300px) {
  #bd.sub:after {
    left: 70%;
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  #bd.sub:after {
    width: auto;
    left: calc(50% + 15.1em );
  }
}
#bd .container {
  width: 90%;
  max-width: 65.75em;
}
#content {
  display: block;
  max-width: 550px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #content {
    max-width: 770px;
    width: 58.55513308%;
    float: left;
  }
}
@media only screen and (min-width: 1300px) {
  #content {
    width: 58.55513308%;
  }
}
#content .content-text {
  line-height: 1.68421053;
}
@media only screen and (min-width: 768px) {
  #content .content-text {
    font-size: 19px;
  }
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 4.9em 0;
  }
}
@media only screen and (min-width: 1024px) {
  .home #bd {
    padding-bottom: 2.45em;
    min-height: 50em;
  }
}
.home #bd .container {
  width: 90%;
  max-width: 61.75em;
}
.home #bd #content {
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 560px;
    float: none;
  }
}
@media only screen and (min-width: 900px) {
  .home #bd #content {
    max-width: 28em;
    width: 45.34412955%;
    margin-left: 0;
  }
}
.home #bd #content .content-text {
  line-height: 1.6875;
}
@media only screen and (min-width: 768px) {
  .home #bd #content .content-text {
    font-size: 16px;
  }
}
.home #bd #content .content-text h2 {
  font-size: 1.375em;
  line-height: 1.13636364;
  margin-bottom: 0.7em;
  font-family: "Roboto Condensed", sans-serif;
}
.home #bd #content .content-text ol li,
.home #bd #content .content-text ul li {
  margin: 0 0 1.55em 0;
}
.home #bd #content .content-text ol li:nth-last-of-type(1),
.home #bd #content .content-text ul li:nth-last-of-type(1) {
  margin: 0;
}
.home #bd #content p {
  text-align: justify;
}
.spot00 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  vertical-align: top;
  gap: 2em;
  text-align: center;
  width: 90%;
  margin: 3em auto 0;
  font-size: min(2.9vw,1em);
}
@media only screen and (min-width: 360px) {
  .spot00 {
    width: 32em;
    height: 32em;
  }
}
@media only screen and (min-width: 900px) {
  .spot00 {
    font-size: min(1.5vw, 1em);
    display: inline-flex;
    margin: 0;
    position: absolute;
    top: 225px;
    left: calc(50% - 0.95em);
  }
}
@media only screen and (min-width: 1024px) {
  .spot00 {
    top: 14.9em;
  }
}
@media only screen and (min-width: 1300px) {
  .spot00.ready a {
    transition-delay: 0s;
    width: 100%;
    height: 3em;
  }
  .spot00.ready a h2.topic {
    opacity: 0;
  }
  .spot00.ready a::before {
    background-color: #44a7c2;
  }
}
.spot00 a {
  color: #fff;
  width: 15em;
  height: 15em;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: background-color 0.33s ease, opacity 1s ease;
  will-change: transform, opacity;
  overflow: hidden;
}
@media only screen and (max-width: 359px) {
  .spot00 a {
    width: 100%;
    font-size: 2em;
  }
}
.spot00 a .decoration {
  transition: filter 0.33s ease;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.spot00 a::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: opacity 0.33s ease, background-color 0.33s ease;
}
.spot00 a::after {
  content: '';
  background-color: rgba(68, 167, 194, 0.8);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: transform 0.33s ease, opacity 0.33s ease;
  transform: scale(0) rotate(180deg);
  opacity: 0;
}
.spot00 a h2.topic {
  line-height: 1.10526316;
  font-size: clamp( 12px, 0.95em , 19px );
  text-transform: uppercase;
  color: currentcolor;
  width: max-content;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  position: absolute;
  left: 1.47368421em;
  bottom: 2.05263158em;
  z-index: 3;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.33s ease, bottom 0.33s ease, left 0.33s ease, opacity 0.33s ease;
}
.spot00 a:hover .decoration {
  filter: grayscale(1);
}
.spot00 a:hover::before {
  opacity: 0;
}
.spot00 a:hover::after {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.spot00 a:hover h2.topic {
  transform: translate3d(-50%, 50%, 0);
  left: 50%;
  bottom: 50%;
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
  max-width: 84%;
  max-width: calc(100% - 88px );
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.mediaslider button {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  pointer-events: auto;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
  pointer-events: none;
  z-index: 400;
}
.mediaslider .cycle-slideshow .cycle-slide {
  margin-top: 0 !important;
}
.mediaslider .cycle-slideshow > button {
  font-size: 2.8em;
  color: #44a7c2;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: opacity 0.35s ease;
  pointer-events: auto;
}
.mediaslider .cycle-slideshow > button.cycle-prev {
  text-align: left;
  left: auto;
  right: 100%;
}
.mediaslider .cycle-slideshow > button.cycle-next {
  text-align: right;
  direction: rtl;
  right: auto;
  left: 100%;
}
.mediaslider .cycle-slideshow > button:hover {
  opacity: 0.68;
}
.mediaslider .cycle-slideshow > button .icon {
  transform-origin: 50% 50%;
}
.mediaslider.ba .cycle-slideshow:before,
.mediaslider.ba.top .cycle-slideshow:before,
.mediaslider.ba .cycle-slideshow:after,
.mediaslider.ba.top .cycle-slideshow:after {
  width: 50%;
  padding: 0.66em 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  z-index: 420;
}
.mediaslider.ba .cycle-slideshow:before,
.mediaslider.ba.top .cycle-slideshow:before {
  content: 'Before';
  left: 0;
}
.mediaslider.ba .cycle-slideshow:after,
.mediaslider.ba.top .cycle-slideshow:after {
  content: 'After';
  right: 0;
}
.mediaslider.ba.bottom .cycle-slideshow:before,
.mediaslider.ba.bottom .cycle-slideshow:after {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  top: auto;
  bottom: 0;
}
.mediaslider.multi .cycle-slide {
  display: flex !important;
}
.mediaslider.multi .cycle-slide img {
  width: 50%;
}
.mediaslider .custompager {
  display: block;
  position: relative;
}
.mediaslider .custompager > button {
  height: 44px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1299px) {
  .mediaslider .custompager > button {
    width: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  .mediaslider .custompager > button {
    width: 1rem;
    margin: 0 6px;
    cursor: pointer;
  }
}
.mediaslider .custompager > button:before {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #44a7c2;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background-color 0.33s ease-in-out;
}
.mediaslider .custompager > button:hover:before,
.mediaslider .custompager > button.cycle-pager-active:before {
  background-color: #1d6484;
}
.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: '';
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: -1.68em;
  z-index: -1;
}
.mediaslider .cycle-caption.large {
  position: relative;
}
.mediaslider .cycle-caption.large:after {
  background: #1d6484;
  top: 0;
}
/* content centered for slideshow, video-centric, and/or full width content */
.before-and-after #content,
.office-tour #content,
.smile-gallery #content,
.invisalign-videos #content {
  text-align: center;
}
.before-and-after #content h1,
.office-tour #content h1,
.smile-gallery #content h1,
.invisalign-videos #content h1,
.before-and-after #content h2,
.office-tour #content h2,
.smile-gallery #content h2,
.invisalign-videos #content h2,
.before-and-after #content h3,
.office-tour #content h3,
.smile-gallery #content h3,
.invisalign-videos #content h3,
.before-and-after #content p,
.office-tour #content p,
.smile-gallery #content p,
.invisalign-videos #content p {
  text-align: center;
}
.before-and-after .img-left,
.office-tour .img-left,
.smile-gallery .img-left,
.invisalign-videos .img-left,
.before-and-after .img-right,
.office-tour .img-right,
.smile-gallery .img-right,
.invisalign-videos .img-right {
  margin: 0 auto;
  float: none;
}
/* blockquote styling */
#content blockquote {
  margin: 0 0 1.58em;
  padding: 0 0 0 1em;
  border-left: 0.33em solid #f0f0f0;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  #content h2[id],
  .common-procedures #content h2[id] {
    scroll-margin-top: 8em;
  }
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.84em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.sitemap #content ul a {
  line-height: 1.4;
  font-size: clamp( 12px, 1.25em , 25em );
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #1d6484;
  font-family: "Roboto Condensed", sans-serif;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.68421053;
  font-size: clamp( 12px, 0.95em , 19em );
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #505050;
  margin-left: 0;
  font-family: "Roboto", sans-serif;
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #44a7c2;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  margin-left: 0;
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 84%;
  margin: 0 auto 3em;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 39.30798479%;
    max-width: 438px;
    margin: -9.6em -0.2em 1em 0;
    display: flex;
    flex-direction: column;
    float: right;
    clear: right;
  }
}
#sidebar.no-stock {
  margin-top: 0;
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  width: 100%;
  max-width: 21.9em;
  margin: 0 auto 6%;
  padding: 0;
  position: relative;
  display: none;
}
@media only screen and (min-width: 768px) {
  #hide-stock {
    margin-bottom: 1em;
    display: block;
    order: 1;
  }
}
.stock {
  width: 100%;
  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;
}
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: flex;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
	SUBNAV || SIDE ORIENTED
=================================================================== */
#subnav {
  color: #fff;
  margin: 0 0 6%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #subnav {
    text-align: center;
    padding: 3em 10%;
  }
}
@media only screen and (min-width: 768px) {
  #subnav {
    text-align: left;
    padding: 1.1em 0 4em 6.2em;
    order: 2;
  }
}
@media only screen and (max-width: 1299px) {
  #subnav {
    display: none;
  }
}
#subnav h2.topic {
  line-height: 1.2962963;
  font-size: 1.35em;
  text-align: inherit;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  height: 1.2962963em;
  width: 100%;
  margin: 0 auto 1.4em -0.1em;
  display: block;
  position: relative;
  z-index: 400;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.03em;
}
#subnav h2.topic .trait {
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  #subnav nav {
    width: 100vw;
  }
}
@media only screen and (min-width: 768px) {
  #subnav nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
#subnav p {
  font-size: clamp( 12px, 0.75em , 15px );
  text-transform: uppercase;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 767px) {
  #subnav p {
    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 (max-width: 1299px) {
  #subnav p {
    line-height: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  #subnav p {
    line-height: 2.33333333;
  }
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #subnav a {
    margin: 0;
    float: left;
    clear: left;
  }
}
#subnav a:hover,
#subnav a.active {
  color: #505050;
  text-decoration: none;
}
.subhero {
  display: block;
  position: relative;
  background: url(../images/spotlight/subnav.jpg) center / cover no-repeat;
  padding: 3.3em 0 3em;
  z-index: 400;
}
@media only screen and (min-width: 1300px) {
  .subhero {
    padding: 26.85em 0 1.9em;
  }
}
.subhero::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.subhero header {
  width: 90%;
  margin: 0 auto;
  max-width: 66.25em;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .subhero header {
    max-width: 550px;
  }
}
.subhero header h1 {
  max-width: 11.17647059em;
}
/* END SIDEBAR */
/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION REVERSE
=============================================== */
.spot02 {
  color: #1d6484;
  padding: 0 0 3em;
  background-color: #d7e0e3;
  font-size: min(3.5vw, 1em);
}
@media only screen and (min-width: 666px) {
  .spot02 {
    font-size: min(1.7vw, 1em);
    padding: 0em 0;
    text-align: right;
    direction: rtl;
  }
}
@media only screen and (min-width: 1300px) {
  .spot02.ready .decoration::before {
    transform-origin: right;
    transform: scaleX(1);
  }
  .spot02.ready .decoration img {
    transform: scale(1.5);
  }
  .spot02.ready .spotbtn .icon {
    opacity: 0;
    transform: translate(200%, 0%);
    transition-duration: 0s;
    transition-delay: 0s;
  }
  .spot02.ready .spotbtn h3.topic {
    opacity: 0;
    transform: translate(-100%, 0%);
    transition-duration: 0s;
    transition-delay: 0s;
  }
}
.spot02 .decoration {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}
.spot02 .decoration::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1d6484;
  z-index: 1;
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: right;
  transform: scaleX(0);
}
.spot02 .decoration img {
  width: 100%;
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (min-width: 666px) {
  .spot02 .decoration {
    max-width: 40em;
    margin: 0 0 0 1em;
    width: calc(50% - 10em);
    background-color: palegoldenrod;
    min-height: 32.8em;
  }
  .spot02 .decoration img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .decoration img {
    object-position: 40% 50%;
  }
}
@media only screen and (min-width: 2000px) {
  .spot02 .decoration {
    max-width: none;
  }
  .spot02 .decoration img {
    position: relative;
  }
}
.spot02 .mod {
  width: 96%;
  max-width: 31.5em;
  padding: 3em 0 0;
  display: inline-block;
  vertical-align: middle;
  direction: ltr;
}
@media only screen and (min-width: 666px) {
  .spot02 .mod {
    text-align: right;
    padding: 1.6em 0 0;
    margin-right: 8%;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .mod {
    margin-right: 7.6em;
  }
}
.spot02 h2.topic {
  line-height: 0.96153846;
  font-size: min(4em, 15vw);
  font-weight: 200;
  text-transform: uppercase;
  color: #1d6484;
  margin: 0 0 0.55em;
  letter-spacing: 0.03em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (min-width: 666px) {
  .spot02 h2.topic {
    line-height: 1.05769231;
    font-size: clamp( 12px, 2.6em , 52px );
  }
}
.spot02 h2.topic .trait {
  font-weight: 400;
}
@media only screen and (max-width: 665px) {
  .spot02 h2.topic .trait {
    display: block;
  }
}
.spot02 .spotbtn {
  font-size: clamp( 12px, 1.75em , 35px );
  color: #1d6484;
  width: 100%;
  display: block;
  position: relative;
  padding: 0;
  z-index: 420;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  line-height: 3.02857143;
  --duration: 1s;
  --timing: ease;
}
@media only screen and (min-width: 666px) {
  .spot02 .spotbtn {
    padding-right: 1.6em;
  }
}
.spot02 .spotbtn:nth-child(2) {
  --index: 0;
}
.spot02 .spotbtn:nth-child(3) {
  --index: 1;
}
.spot02 .spotbtn:nth-child(4) {
  --index: 2;
}
.spot02 .spotbtn h3.topic {
  text-transform: none;
  font-weight: 300;
  display: inline-block;
  vertical-align: top;
  font-size: inherit;
  line-height: inherit;
  font-family: "Roboto Condensed", sans-serif;
  color: currentColor;
  transition-property: transform, opacity;
  transition-duration: var(--duration);
  transition-timing-function: var(--timing);
  transition-delay: calc(0.33s + var(--index)*0.33s);
  will-change: transform, opacity;
}
.spot02 .spotbtn .icon {
  width: 1.28571429em;
  display: inline-block;
  vertical-align: -0.1em;
  transition-property: transform, opacity;
  transition-duration: var(--duration);
  transition-timing-function: var(--timing);
  transition-delay: calc(var(--index)*0.33s);
  margin-left: 0.4em;
  line-height: 0;
}
.spot02 .spotbtn .icon svg {
  width: 1.28571429em;
  height: 1.05714286em;
}
.spot02 .spotbtn:hover {
  color: #44a7c2;
}
.spot02 .spotbtn:hover .icon svg {
  --fa-bounce-height: -0.2em;
  animation: fa-bounce 1s ease;
}
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot03 {
  text-align: center;
  color: #44a7c2;
  padding: 2em 0;
  margin: 0;
  position: relative;
  z-index: 410;
}
.spot03::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #ececec;
}
@media only screen and (min-width: 666px) {
  .spot03 {
    font-size: min(1.8vw, 1em);
    padding: 4.9em 0 4.65em;
  }
  .spot03::before {
    left: calc(50% - 15.7em);
    width: 100%;
    height: 100%;
  }
}
.spot03 .spot03-grid {
  display: inline-grid;
  width: 90%;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
@media only screen and (min-width: 666px) {
  .spot03 .spot03-grid {
    width: 50em;
    height: 50em;
    grid-template-columns: 16em 12em 22em;
    grid-template-rows: 22em 12em 16em;
  }
}
.spot03 h2.topic {
  line-height: 0.96428571;
  font-size: min(4em, 12vw);
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  height: 5.35714286em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  background-color: #44a8c2;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  text-align: left;
  grid-column: 1 / 6;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 666px) {
  .spot03 h2.topic {
    font-size: clamp( 12px, 2.8em , 56px );
    height: 6.42857143em;
    width: 6.42857143em;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: end;
  }
}
.spot03 h2.topic .trait {
  line-height: 1.02173913;
  font-size: clamp( 12px, 0.82142857em , 46px );
  display: block;
  font-weight: 200;
  letter-spacing: 0.06em;
}
.spot03 a {
  color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-color: #000;
  width: 100%;
  overflow: hidden;
}
.spot03 a::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: opacity 0.33s ease;
}
.spot03 a.item-1 {
  grid-column: 1 / 6;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-1 {
    height: 22em;
    width: 16em;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: flex-start;
  }
}
.spot03 a.item-2 {
  grid-column: 1 / 3;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-2 {
    height: 16em;
    width: 12em;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: flex-start;
  }
}
.spot03 a.item-3 {
  grid-column: 3 / 6;
}
.spot03 a.item-3 .decoration {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-3 {
    height: 16em;
    width: 22em;
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    align-self: flex-start;
  }
}
.spot03 a.item-4 {
  grid-column: 1 / 6;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-4 {
    height: 12em;
    width: 16em;
    margin-bottom: 6em;
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    align-self: flex-end;
    justify-self: flex-end;
  }
}
.spot03 a.item-5 {
  grid-column: 1 / 6;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-5 {
    height: 22em;
    width: 16em;
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    align-self: flex-end;
    justify-self: flex-end;
  }
}
.spot03 a.item-6 {
  grid-column: 4 / 6;
  grid-row: 6 / 7;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-6 {
    height: 16em;
    width: 12em;
    margin-left: 6em;
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    align-self: flex-end;
  }
}
.spot03 a.item-7 {
  grid-row: 6 / 7;
  grid-column: 1 / 4;
}
.spot03 a.item-7 .decoration {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-7 {
    height: 16em;
    width: 22em;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    align-self: flex-end;
  }
}
.spot03 a.item-8 {
  grid-column: 1 / 6;
  grid-row: 5 / 6;
}
@media only screen and (min-width: 666px) {
  .spot03 a.item-8 {
    height: 12em;
    width: 16em;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: flex-end;
  }
}
.spot03 a .decoration {
  width: 100%;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (min-width: 666px) {
  .spot03 a .decoration {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
.spot03 a h3.topic {
  line-height: 1.17647059;
  font-size: min(1.2em, 5vw);
  text-transform: uppercase;
  color: currentcolor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 3;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.035em;
  transition: background-color 0.33s ease;
  padding: 0 1em;
  width: 100%;
}
@media only screen and (min-width: 666px) {
  .spot03 a h3.topic {
    font-size: clamp( 12px, 0.85em , 17px );
  }
}
.spot03 a h3.topic sup {
  font-size: 0.55em;
}
.spot03 a h3.topic .trait {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  line-height: 1.2;
  height: 4.29411765em;
}
.spot03 a h3.topic .trait::before {
  content: '';
  background-color: rgba(68, 167, 194, 0.9);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  left: -1.75em;
  width: calc(100% + 3.5em);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.33s ease;
}
@media only screen and (max-width: 665px) {
  .spot03 a h3.topic {
    font-size: min(25px, 4.8vw);
  }
  .spot03 a.item-4 h3.topic,
  .spot03 a.item-8 h3.topic {
    padding: 0 2em;
  }
  .spot03 a.item-1 h3.topic,
  .spot03 a.item-5 h3.topic {
    font-size: 35px;
  }
}
.spot03 a:hover::before {
  opacity: 0;
}
.spot03 a:hover h3.topic span::before {
  transform: scaleX(1);
}
/* ===============================================
	socialmedia
=============================================== */
#ft .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 300;
}
#ft .socialmedia a {
  font-size: clamp( 12px, 0.55em , 11px );
  color: #636363;
  min-width: 24px;
  min-height: 24px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #ft .socialmedia a {
    line-height: 44px;
    font-size: 20px;
    width: 44px;
    height: 44px;
  }
}
@media only screen and (min-width: 1024px) {
  #ft .socialmedia a {
    line-height: 4;
    height: 4em;
    width: -2em;
    margin: 0;
  }
}
#ft .socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
#ft .socialmedia a:hover {
  z-index: 400;
  transform: translate(0, 0) scale(1.44);
}
#ft .socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #505050;
  width: 100%;
  padding: 0;
  background: #ccc center / cover no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  #ft {
    font-size: inherit;
  }
}
#ft a {
  color: #505050;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #44a7c2;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 3em 0 2em;
  display: block;
}
@media only screen and (min-width: 1024px) {
  #location {
    padding: 7.5em 0 3.075em;
  }
}
@media only screen and (min-width: 1300px) {
  #location {
    padding-left: 6.15em;
  }
}
#location .map {
  width: 90%;
  max-width: 33.25em;
  display: none;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  #location .map {
    margin: 0;
    display: inline-block;
    vertical-align: top;
  }
}
@media only screen and (min-width: 1300px) {
  #location .map {
    max-width: 27em;
  }
}
#location .mod {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 90%;
  max-width: 18em;
  background-color: #fff;
  padding: 2.5em 0 2.4em;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  #location .mod {
    margin-right: 2.75em;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1.25em;
  display: block;
}
#location .logo svg {
  width: 6.25em;
  height: 6.3em;
}
#location .phone {
  font-size: clamp( 12px, 1em , 20px );
  display: block;
  color: #1d6484;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 0.85em;
}
@media only screen and (max-width: 767px) {
  #location .phone {
    line-height: 44px;
  }
}
@media only screen and (min-width: 768px) {
  #location .phone {
    line-height: 1.1;
  }
}
#location .address {
  font-size: clamp( 14px, 0.85em , 16px );
  margin: 0 auto 1.7em;
  display: block;
}
@media only screen and (max-width: 1023px) {
  #location .address {
    line-height: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  #location .address {
    line-height: 1.38461538;
  }
}
#location .address .marker {
  line-height: 1;
  font-size: 5.07692308em;
  color: #44a7c2;
  position: absolute;
  margin-left: 2.35em;
  top: 5.3em;
  left: 50%;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 1023px) {
  #location .address .marker {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #location .address .marker {
    display: block;
  }
}
@media only screen and (min-width: 1300px) {
  #location .address .marker {
        margin-left: 3.078788em;
        top: 4.527273em;
    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;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:hover .marker {
  transform: translate(0, 0) scale(2);
}
#location .spotbtn {
  font: inherit;
  font-size: clamp( 14px, 0.85em , 16px );
  text-align: center;
  display: block;
  color: #9ca5a4;
  background: none;
  border: 0;
  margin: 0 auto;
  border-radius: 0;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  #location .spotbtn {
    line-height: 44px;
    min-width: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  #location .spotbtn {
    line-height: 1.38461538;
  }
}
#location .spotbtn .icon {
  color: #44a7c2;
  transition: transform 0.33s ease;
  margin-left: 0.2em;
}
#location .spotbtn:hover {
  color: #505050;
}
#location .spotbtn:hover .icon {
  transform: translate(1em, 0);
}
#location #maps-btn {
  margin-bottom: 1.4em;
}
#location .officehours {
  line-height: 0;
  text-align: center;
  display: block;
  margin-bottom: 1em;
}
#location .officehours .days,
#location .officehours .hours {
  line-height: 1.38461538;
  font-size: clamp( 14px, 0.85em , 16px );
  display: block;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 420;
  padding: 0 0 2.2em;
}
#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: 1299px) {
  #links .util {
    line-height: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  #links .util {
    line-height: 3.66666667;
  }
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: skyblue;
}
#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 {
  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;
  }
}
a#backtotop {
  font-size: clamp( 12px, 1em , 20px );
  color: #505050;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 1299px) {
  a#backtotop {
    line-height: 80px;
    font-size: 44px;
  }
}
@media only screen and (min-width: 1300px) {
  a#backtotop {
    line-height: 3.05;
  }
}
a#backtotop:hover {
  color: #44a7c2;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hr element - div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  width: 100%;
  float: left;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: clamp( 12px, 0.95em , 19px );
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 44px;
  padding: 0 1.5em;
  background-color: #44a7c2;
  border: 1px solid #44a7c2;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
}
form button:hover {
  color: #fff;
  border-color: #1d6484;
  background-color: #1d6484;
}
form p {
  height: auto;
}
/* ===============================================
	chat widget resize for mobile use comfort
=============================================== */
#bc-chat-container {
  font-size: 0.8em !important;
}
.bc-minimize-state {
  width: 11.8em !important;
  height: 7.7em !important;
}
/* ===============================================
	blog sidebar sharethiswidget styles
=============================================== */
#blog_search label,
p.share-text {
  margin-bottom: 10px;
}
/* ===============================================
	generic button for quick use by PM/PAs
=============================================== */
a.intbtn,
#content a.intbtn {
  line-height: 44px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #44a7c2;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: background-color 0.33s ease-in-out;
}
a.intbtn:hover,
#content a.intbtn:hover {
  background-color: #1d6484;
}
/* ===============================================
	.screenreader 
	a11y support for descriptive text on vaguely worded buttons
	https://gomakethings.com/hidden-content-for-better-a11y/#hidden-labels
=============================================== */
.screenreader {
  white-space: nowrap;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet || Supports 768px and up
=============================================== */
.sitemap h1,
.layout-full-width h1 {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #bd.sub:after,
  .layout-full-width #bd.sub:after {
    content: none;
  }
  .sitemap .subhero h1,
  .layout-full-width .subhero h1 {
    margin: 0 auto;
    text-align: center;
  }
  .sitemap #content,
  .layout-full-width #content {
    width: 70%;
    /* count out 90-100 characters per line to determine width */
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
	custom content
=============================================== */
  .speed-system img[alt='Speed Braces'] {
    display: block;
  }
  /* ===============================================
	PAGE SPECIFIC
=============================================== */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] {
    text-align: center;
    width: 100%;
    display: block;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  [class^='inovation-chart-'] {
    max-width: 50%;
    display: inline-block;
  }
  .in-ovation-before-after #content p {
    text-align: center;
    margin-bottom: 0;
  }
  .in-ovation-before-after .content-text h3 {
    text-align: center;
  }
  .in-ovation-before-after .content-text .img-left,
  .in-ovation-before-after .content-text .border {
    max-width: 44%;
    margin: 2%;
    display: inline-block;
    float: none;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    transform: translate(100%, 0);
    opacity: 0;
    pointer-events: none;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
}
/* ===============================================
	embed-container enhanced support
=============================================== */
@supports (aspect-ratio: 16 / 9) and (object-fit: cover) {
  .embed-container,
  .embed-container.ratio16x9 {
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    display: block;
  }
  @media only screen and (max-width: 1299px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 40.52631579em , 90% );
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 40.52631579em , 1200px );
    }
  }
  .embed-container embed,
  .embed-container.ratio16x9 embed,
  .embed-container object,
  .embed-container.ratio16x9 object,
  .embed-container iframe,
  .embed-container.ratio16x9 iframe {
    object-fit: cover;
    position: relative;
    top: auto;
    left: auto;
  }
}
table.office-hours td {
  display: inline-block;
  vertical-align: top;
}
table.office-hours tr td:nth-child(1) {
  min-width: 10em;
  margin-right: 1em;
}
#accordion {
  display: block;
  width: 100%;
}
#accordion label {
  display: flex;
  align-items: center;
  width: 100%;
  transition: color 0.33s ease;
  font-weight: 700;
  font-size: 1.31578947em;
  font-family: "Roboto Condensed", sans-serif;
  gap: 0.5em;
  line-height: 1.2;
  background-color: lightgrey;
  padding: 0.5em 3em 0.5em 0.5em;
  position: relative;
  margin-bottom: 1em;
}
#accordion label::before {
  content: '';
  display: block;
  width: 30px;
  min-width: 30px;
  height: 31px;
  background: url(../images/spotlight/logo-icon.svg) center / cover no-repeat;
}
#accordion label::after {
  content: '\2b';
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(0, -50%) rotate(0deg);
  transition: transform 0.33s ease;
}
#accordion input[type='checkbox'] {
  display: none;
}
#accordion .panel {
  display: none;
  padding: 1em;
  overflow: hidden;
  background-color: #fff;
}
#accordion input[type='checkbox']:checked + label + .panel {
  display: block;
}
#accordion input[type='checkbox']:checked + label,
#accordion input[type='checkbox']:hover + label {
  color: #44a7c2;
}
#accordion input[type='checkbox']:checked + label {
  margin: 0;
}
#accordion input[type='checkbox']:checked + label::after {
  transform: translate(0, -50%) rotate(225deg);
}
#accordion input[type='checkbox']:checked + label + .panel {
  margin-bottom: 1em;
}
#content .int-association-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em 4em;
  font-size: min(2.3vw, 1em);
}
@media only screen and (min-width: 768px) {
  #content .int-association-logos {
    font-size: 1.2vw;
    gap: 1.5em;
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 1300px) {
  #content .int-association-logos {
    font-size: inherit;
  }
}
#content .int-association-logos a[class] {
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease;
}
#content .int-association-logos a[class] img {
  width: 100%;
}
#content .int-association-logos a[class]:hover {
  transform: scale(0.8);
}
#content .int-association-logos .adsa {
  width: 10.52631579em;
  height: 3.42105263em;
}
#content .int-association-logos .aboms {
  width: 8.05263158em;
  height: 5.47368421em;
}
#content .int-association-logos .ada {
  width: 9.78947368em;
  height: 4.47368421em;
}
#content .int-association-logos .aaoms {
  width: 7.94736842em;
  height: 6.63157895em;
}
#content .int-association-logos .nyss {
  width: 8.21052632em;
  height: 5.10526316em;
}
#custom-referral-form .item {
  width: 100%;
}
#custom-referral-form .item input {
  width: 100%;
}
#custom-referral-form textarea {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #custom-referral-form .items {
    display: flex;
    gap: 2em;
  }
}
#custom-referral-form .radio-group.procedures label input {
  vertical-align: top;
  margin-top: 0.15em;
}
@media only screen and (min-width: 1024px) {
  #custom-referral-form .radio-group.procedures label {
    display: inline-block;
    vertical-align: top;
    width: 45%;
  }
  #custom-referral-form .radio-group.procedures label span {
    width: calc(100% - 2em);
  }
}
#custom-referral-form .teeth-selection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.7em;
  position: relative;
  margin: 2em 0;
  width: 100%;
}
#custom-referral-form .teeth-selection .key {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#custom-referral-form .teeth-selection .key span {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  #custom-referral-form .teeth-selection .key {
    position: absolute;
    top: 50%;
    left: -65px;
    width: calc(100% + 120px);
    pointer-events: none;
    transform: translateY(-50%);
  }
}
#custom-referral-form .teeth-selection .row {
  display: grid;
  place-items: center;
  gap: 5px;
  width: 100%;
}
#custom-referral-form .teeth-selection .row.letters {
  grid-template-columns: repeat(10, 1fr);
}
#custom-referral-form .teeth-selection .row.numbers {
  grid-template-columns: repeat(8, 1fr);
}
@media only screen and (min-width: 1024px) {
  #custom-referral-form .teeth-selection .row {
    gap: 0.7em;
    width: auto;
  }
  #custom-referral-form .teeth-selection .row.letters {
    grid-template-columns: repeat(10, minmax(1em, 37px));
  }
  #custom-referral-form .teeth-selection .row.numbers {
    grid-template-columns: repeat(16, minmax(1em, 37px));
  }
}
#custom-referral-form .teeth-selection .row::before,
#custom-referral-form .teeth-selection .row::after {
  content: none;
}
#custom-referral-form .teeth-selection label {
  line-height: 1.11111111;
  font-size: clamp( 12px, 0.94736842em , 18px );
  width: auto;
  height: 40px;
  border: 1px solid #1d6484;
  text-align: center;
  justify-self: stretch;
  line-height: 40px;
  margin: 0;
  transition: color 0.33s ease, background-color 0.33s ease;
}
#custom-referral-form .teeth-selection input[type='checkbox'] {
  display: none;
}
#custom-referral-form .teeth-selection input[type='checkbox']:checked + label {
  background-color: #1d6484;
  color: #fff;
}
#custom-referral-form label[for='Terms_And_Conditions'] {
  margin-bottom: 1em;
}
#custom-referral-form label[for='Terms_And_Conditions'] span {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  width: calc(100% - 2.5em);
  line-height: 1.5;
}
#custom-referral-form label[for='Terms_And_Conditions'] input[type='checkbox'] {
  width: auto;
  margin-top: 0.4em;
  margin-right: 0.3em;
}
