/* 
 Site Manager Version: 14.2.0
 Date Created: January 2024
 
 Account: aamodt-john3
 Written by: james stillion
 
 Sesame Communications - All rights reserved. C2024
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
          fonts
=============================================== */
/* allura-400 */
@font-face {
  font-display: swap;
  font-family: 'Allura';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/allura-400.woff2') format('woff2'), url('../fonts/allura-400.ttf') format('truetype');
}
/* montserrat-300 */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat-300.woff2') format('woff2'), url('../fonts/montserrat-300.ttf') format('truetype');
}
/* montserrat-400 */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-400.woff2') format('woff2'), url('../fonts/montserrat-400.ttf') format('truetype');
}
/* montserrat-400i */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/montserrat-400i.woff2') format('woff2'), url('../fonts/montserrat-400i.ttf') format('truetype');
}
/* montserrat-700 */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-700.woff2') format('woff2'), url('../fonts/montserrat-700.ttf') format('truetype');
}
/* montserrat-700i */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/montserrat-700i.woff2') format('woff2'), url('../fonts/montserrat-700i.ttf') format('truetype');
}
.fontA {
  font-family: 'Allura', cursive;
}
.fontM {
  font-family: 'Montserrat', sans-serif;
}
/* ===============================================
          Mixins 
=============================================== */
/*font-mixins*/
.th {
  font-weight: 100;
}
.xlt {
  font-weight: 200;
}
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}
/* use with .trbl */
.grey,
.gray {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
/* ===============================================
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;
}
/* ==================================================================
  main content-text font sizes
=================================================================== */
/* ===============================================
  body 
=============================================== */
body,
input,
select,
textarea,
form button,
button {
  font-family: 'Montserrat', sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #333;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
  links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #8dc892;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
.home #content a {
  color: #fff;
}
#content a:hover {
  color: #457c9a;
  text-decoration: underline;
}
.home #content a:hover {
  color: #8dc892;
}
/* ===============================================
  h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #457c9a;
  margin: 0 0 1.44em;
  text-rendering: auto;
}
.home h1,
.home h2:not(.topic),
.home h3:not(.topic),
.home h4,
.home h5,
.home h6 {
  color: #fff;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #457c9a;
  margin-bottom: 0.98076923em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.6em;
    /* mintab 480w */
  }
}
.home h1 {
  line-height: 1.05769231;
  font-size: 10vw;
  text-align: center;
  margin: 0 0 0.63461538em;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 2.6em;
    /* mintab 480w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 0.88;
  font-size: 0.96153846em;
  font-family: 'Allura', cursive;
  font-weight: 400;
  text-transform: none;
}
.home h1 .trait.bottom {
  font-weight: 400;
  text-transform: uppercase;
}
h2:not(.topic) {
  font-size: 1.31578947em;
  color: #969495;
}
h3:not(.topic) {
  font-size: 1.21052632em;
  color: #8dc892;
}
h4 {
  font-size: 1.10526316em;
}
h5 {
  font-size: 1.05263158em;
}
h6 {
  font-size: 1em;
}
/* ===============================================
  containers
=============================================== */
.container {
  max-width: 64.5em;
}
/* ===============================================
  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;
  /* list-style-image:none; */
}
/* ==================================================================
  masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    padding: 0 0 ;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  #masthead .container {
    max-width: none;
    /* midTab 1024oo */
  }
}
/* ==================================================================
  main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 44px;
  width: 44px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  clear: both;
}
@media only screen and (max-width: 1023px) {
  #main-nav {
    z-index: 600;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav {
    z-index: 2900;
    /* midTab 1024w */
  }
}
#main-nav .trigger {
  line-height: 44px;
  color: #457c9a;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
}
#main-nav .trigger .navicon {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #main-nav .trigger .navicon {
    width: 12px;
    height: 8px;
    top: -0.2em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav .trigger .navicon {
    width: 3.1em;
    height: 2em;
    top: 1.55em;
    right: calc(50vw - 31.2em);
    /* midTab 1024w */
  }
  #main-nav .trigger .navicon:before {
    content: 'Menu';
    line-height: 1;
    font-size: 0.6em;
    text-align: right;
    font-weight: 700;
    color: currentcolor;
    width: 100%;
    display: block;
    position: absolute;
    top: -1.66666667em;
    right: 0;
    transition-property: transform, opacity;
    transition-duration: 0.33s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transform-origin: 0 100%;
    pointer-events: none;
  }
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #8dc892;
}
#main-nav .open .trigger {
  color: #fff;
}
#main-nav .open .trigger .navicon:before {
  opacity: 0;
  transform: scaleY(0);
  transition-duration: 0.39s, 0.6s;
  transition-delay: 0.3s, 0s;
}
#main-nav .open .trigger .navicon span:nth-child(1) {
  transform: translate(50%, 150%) scaleX(0);
}
#main-nav .open .trigger .navicon span:nth-child(4) {
  transform: translate(50%, -150%) scaleX(0);
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate(0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg);
}
#main-nav .open .socially {
  transform: translate(0, 0);
  transition-duration: 1.23s;
  transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
  transition-delay: 0.33s;
  opacity: 1;
}
#main-nav ul {
  width: 100vw;
  position: relative;
  float: right;
  z-index: 550;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul {
    margin: -44px 0 0;
    padding: 8.1em 0 3em;
    background-color: rgba(69, 124, 154, 0.9);
    background-image: -moz-linear-gradient(top, rgba(69, 124, 154, 0) 0%, rgba(69, 124, 154, 0.99) 100%);
    background-image: -webkit-linear-gradient(top, rgba(69, 124, 154, 0) 0%, rgba(69, 124, 154, 0.99) 100%);
    background-image: linear-gradient(to bottom, rgba(69, 124, 154, 0) 0%, rgba(69, 124, 154, 0.99) 100%);
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul {
    text-align: left;
    min-height: 100vh;
    margin: -55px 0 0;
    padding: 9.5em 0 0 calc(50vw - 4.25em );
    background: rgba(69, 124, 154, 0.9);
    /* midTab 1024w */
  }
}
#main-nav ul li {
  clear: both;
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li {
    padding-left: 5.15em;
    /* midTab 1024w */
  }
  #main-nav ul li:before {
    content: '';
    width: 1px;
    height: auto;
    background-color: #ffffff;
    display: block;
    position: absolute;
    top: -0.65em;
    left: 0;
    bottom: -1em;
  }
}
#main-nav ul li a[id] {
  font-size: 1.45em;
  text-transform: uppercase;
  color: #fff;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id] {
    line-height: 1.37931034;
    height: 1.37931034em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id] {
    line-height: 1.72413793;
    height: 1.72413793em;
    /* midTab 1024w */
  }
}
#main-nav ul li a[id]:before {
  content: '';
  width: 1.13793103em;
  height: 1.72413793em;
  display: block;
  position: absolute;
  top: 50%;
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='33' height='50' viewBox='0 0 33 50'><path fill='white' d='M32.579 26.736c-.526-.955.435-3.04-.738-3.403-.804-.143-1.532-.83-2.385-1.046-1.735-.907-3.685-1.503-5.257-2.653-.194-.239-.32-.174-.372.137-.099.82-1.085 1.201-1.023 2.128.584.002.949.307 1.23.801-.355.022-1.507-.168-1.751-.021-.025.144-.079.222-.239.195-.156.309.497-.117.461.339-.649.108-1.255.414-1.938.227-.034-.123.122-.106.137-.223-.226-.091-.582.301-.683.111.167-.119.015-.133-.042-.14-.314-.017-.492.376-.713-.035-.145-.173-.558.045-.582-.219.851-.348 2.088.058 3.068-.161-.158-.535-.684.058-.914-.1-.014-.478-.493.254-.683.008.027-.265-.4-.235-.576-.254-.701.279-1.564-.27-2.154.126-.314.366-.362-.2-.691-.051-.725-.202-1.289.283-2.021.199.468-.356-.709-.136-.828-.014.183.165-.438.169-.548.138.039-.107.169-.057.248-.145-.201-.105-.407.064-.57-.069-4.103.664-8.452 1.191-12.261 3.408-.861-.103.199 2.582.805 2.466 1.661.847 3.369-.414 4.979-.831 3.348-1.174 6.944-1.423 10.382-1.829.007.122-.145.184-.124.31.745-.104 1.54-.091 2.29-.135.364.17.742.112 1.116.069.052-.005.247.075.134-.127.106-.093.389-.02.389.117 0 .073-.013.109.058.107.503.163 1.07-.091 1.534.251-1.234.792-2.731 1.673-2.879 3.294.65-.503.446.458.667.8 2.359-.949 4.585-2.427 7.205-2.362 1.015.035 2.038-.42 3.042-.539.594-.273 2.337.096 2.227-.874zm-14.435-3.594c-.358-.192-.854.207-1.095-.111-.007-.014-.095-.007-.14.005-.952.201-2.113-.112-2.969.3-.187.03-.43.11-.615-.025-.405-.179-.826.326-1.268.051.407-.17 1.199-.508 1.49-.079.016.07.171.055.263.074-.073-.473.669-.258.88-.401.527-.274 1.122.141 1.682-.08.963.071 1.412-.095 2.123-.023-.035.329-.087.385-.351.289zm7.493 1.221c-.416-.148-.872-.093-1.359-.269.291-.057.52-.078.801-.195-.257-.082-.48-.024-.644-.2.086-.087.253-.049.232-.214-.654-.167-1.248-.042-1.896-.25.25-.456.665.134 1.033-.105.387-.12 2.78.464 1.326.754.182.465.675-.25.691.325-.006.102-.055.201-.184.154z'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  transform: translate(10%, -50%) scaleY(0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id]:before {
    right: 100%;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:before {
    left: -1.44827586em;
    /* midTab 1024w */
  }
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  text-decoration: none;
}
#main-nav ul li.open > a[id]:before,
#main-nav ul li.active > a[id]:before,
#main-nav ul li:hover > a[id]:before {
  transform: translate(0, -50%) scaleY(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: inline;
  float: left;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul ul {
    background: rgba(0, 0, 0, 0.1);
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul {
    background: none;
    /* midTab 1024w */
  }
}
#main-nav ul ul li {
  width: 100%;
  padding: 0;
  background: none;
  float: left;
}
#main-nav ul ul li:before {
  content: none;
}
#main-nav ul ul li a {
  font-size: 0.75em;
  font-weight: 700;
  color: #fff;
  width: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul ul li a {
    line-height: 2.66666667;
    height: 2.66666667em;
    padding: 0 5%;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a {
    line-height: 1.66666667;
    height: 1.66666667em;
    padding: 0 0 0 1.66666667em;
    /* midTab 1024w */
  }
}
#main-nav ul ul li a:before {
  content: '';
  width: 1.8em;
  height: 1.66666667em;
  display: block;
  position: absolute;
  top: 50%;
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='27' height='25' viewBox='0 0 27 25'><path fill='white' d='M25.647 11.694c-.587-.585-.753-1.15-1.644-1.339-2.856-.603-5.726-1.14-8.596-1.67-.824-.152-1.651-.299-2.464-.5-.515-.126-1.399.331-1.257.948.109.473.853.73 1.247.888 1.223.49 2.539.854 3.826 1.12.537.111 1.093.196 1.705.482-1.14.036-2.155-.15-3.179-.2-2.072-.1-4.142-.261-6.214-.359-2.558-.12-5.113-.252-7.655-.585-.569-.075-1.112.285-1.087.885.038.874.96.862 1.605.82 1.006-.067 1.985.293 2.978.386.867.081 1.743.145 2.614.171 2.395.071 4.79.1 7.184.168 1.243.035 2.468.21 3.67.445l-.733.166c-.965.216-1.929.437-2.897.644-1.342.289-2.679 1.427-1.153 2.509.584.415 1.466-.081 2.056-.265 2.825-.877 5.794-1.123 8.638-1.92.607-.171 1.211-.356 1.817-.534 1.301-.386.004-1.797-.461-2.26z'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  transform: translate(10%, -50%) scaleY(0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul ul li a:before {
    right: 100%;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul ul li a:before {
    left: -0.66666667em;
    /* midTab 1024w */
  }
}
#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: #fff;
  margin-bottom: 0;
  border: none;
}
#main-nav ul li.active ul li a:hover:before,
#main-nav ul ul li a:hover:before,
#main-nav ul ul li a.active:before {
  transform: translate(0, -50%) scaleY(1);
  opacity: 1;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
/* all about that open class */
#main-nav .open ul {
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  #main-nav .open ul .open ul {
    padding: 1em 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav .open ul .open ul {
    padding: 0.4em 0 1.1em;
    /* midTab 1024w */
  }
}
#main-nav .open ul .open ul li {
  opacity: 1;
  overflow: visible;
}
@media only screen and (max-width: 1023px) {
  #main-nav .open ul .open ul li {
    height: 2em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav .open ul .open ul li {
    height: 1.25em;
    /* midTab 1024w */
  }
}
/* ===============================================
  FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  #main-nav {
    font-size: 1em;
    right: 0;
  }
  #main-nav .collapsible .trigger {
    box-shadow: none;
    display: block;
  }
  nav.horizontal ul li {
    width: 100%;
    float: none;
  }
  nav .collapsible ul {
    display: none;
  }
  nav .open > ul {
    display: block;
  }
  /* midTab 1024w */
}
/* ===============================================
  socialmedia
=============================================== */
.socially {
  color: #fff;
  display: block;
  position: absolute;
  z-index: 3000;
  transform: translate(0, 0) rotateX(-90deg);
  transition-property: transform, opacity;
  transition-duration: 0s;
  transition-timing-function: linear;
  transition-delay: 0;
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  .socially {
    width: 100vw;
    text-align: center;
    top: 3.3em;
    right: 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .socially {
    text-align: right;
    margin-right: 9em;
    top: 10.85em;
    right: 50vw;
    /* midTab 1024w */
  }
}
.socially h2.topic {
  letter-spacing: 0.16em;
  line-height: 2;
  font-size: 0.75em;
  display: block;
  white-space: nowrap;
}
.socialmedia {
  line-height: 0;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
}
.socialmedia a {
  color: #fff;
  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) {
  .socialmedia a {
    line-height: 44px;
    font-size: clamp( 12px, 0.9em , 18px );
    width: 44px;
    height: 44px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .socialmedia a {
    line-height: 2.44444444;
    font-size: 0.9em;
    height: 2.44444444em;
    width: 1.62962963em;
    /* margin:0 0 3px 0; */
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #fff;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
  header
=================================================================== */
#hd {
  text-align: center;
  color: #457c9a;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 666px) {
  #hd .container {
    padding: 0 44px 0 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 1.55em 6em 1.55em 0;
    /* midTab 1024w */
  }
}
/* ===============================================
  logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.6em;
  width: 18.5em;
  margin: 0 auto 0 1%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #logo {
    position: absolute;
    top: 0;
    left: 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    top: 0.42em;
    margin: 0;
    z-index: 3000;
    /* maxTab 1024w */
  }
}
#logo[data-active] {
  z-index: 3000;
}
#logo[data-active] a {
  color: #fff;
}
#logo a {
  color: #457c9a;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  #logo a {
    min-height: 44px;
    display: flex;
    align-items: center;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #logo a {
    transition: color 0.33s ease-in-out;
    /* midTab 1024w */
  }
}
#logo svg {
  width: 18.5em;
  height: 4.2em;
}
/* ===============================================
  contact info
=============================================== */
#contactinfo {
  line-height: 0;
  text-align: center;
  width: 100%;
  margin: 0;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 666px) {
  #contactinfo {
    width: auto;
    display: inline-block;
    vertical-align: top;
    position: relative;
    /* custom 666w */
  }
}
#contactinfo .office {
  line-height: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#contactinfo .office:nth-child(1) {
  margin-right: 1em;
}
@media only screen and (min-width: 480px) {
  #contactinfo .office:nth-child(2) {
    margin-right: 1em;
    /* mintab 480w */
  }
}
#contactinfo .address {
  font-weight: 700;
  width: auto;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .address {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .address {
    line-height: 3.33333333;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
#contactinfo .address:after {
  content: '';
  height: 1.66666667em;
  width: 1px;
  background-color: #457c9a;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #contactinfo .address:after {
    margin: 0 0 0 1em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #contactinfo .address:after {
    margin: 0 0.36em 0 0.2em;
    /* midTab 768w */
  }
}
#contactinfo .address .cta {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#contactinfo .phone {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1023px) {
  #contactinfo .phone {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo .phone {
    line-height: 3.33333333;
    font-size: 0.6em;
    /* midTab 1024w */
  }
}
@media only screen and (max-width: 767px) {
  #contactinfo .phone .icon {
    display: block;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #contactinfo .phone .icon {
    display: none;
    /* midTab 768w */
  }
}
@media only screen and (max-width: 767px) {
  #contactinfo .phone .cta {
    white-space: nowrap;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    /* midTab 768oo */
  }
}
#contactinfo a {
  color: #457c9a;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #8dc892;
}
/* ==================================================================
  slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  min-height: 55vw;
  background: #000;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow {
    min-height: 1125px;
    /* range 1300w - 1999oo */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
  aspect-ratio: 16 / 9;
  opacity: 0.8;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow .welcomevid {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
#slideshow .ssoverlay {
  width: 100%;
  display: block;
  z-index: 420;
}
@media only screen and (max-width: 479px) {
  #slideshow .ssoverlay {
    position: relative;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  #slideshow .ssoverlay {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    left: 0;
    /* mintab 480w */
  }
}
#slideshow .ssoverlay .slogan {
  line-height: 1;
  font-size: 3.35em;
  font-size: clamp( 12px, 3.35em , 67px );
  font-family: 'Allura', cursive;
  margin-bottom: 0.41791045em;
  display: block;
}
@media only screen and (max-width: 479px) {
  #slideshow .ssoverlay .slogan {
    width: 100%;
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: translate(0, -20vw);
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  #slideshow .ssoverlay .slogan {
    /* mintab 480w */
  }
}
#slideshow .ssoverlay .spotbtn {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #8dc892;
  display: inline-block;
  vertical-align: top;
  transition: background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 479px) {
  #slideshow .ssoverlay .spotbtn {
    width: 100%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  #slideshow .ssoverlay .spotbtn {
    width: 12.7826087em;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 1299px) {
  #slideshow .ssoverlay .spotbtn {
    line-height: 44px;
    font-size: clamp( 12px, 1.15em , 23px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay .spotbtn {
    line-height: 2.91304348;
    font-size: 1.15em;
    /* desk 1300w */
  }
}
#slideshow .ssoverlay .spotbtn:hover {
  background-color: #457c9a;
}
/* ==================================================================
  content
=================================================================== */
#bd {
  padding: 0 0 3em;
  background: #fff;
  position: relative;
  z-index: 400;
  /* fractional bg image on subpages */
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 5em 0 6em;
    /* midTab 768w */
  }
}
#bd.sub {
  overflow: hidden;
}
#bd .container {
  max-width: 63.65em;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 62.52945797%;
    max-width: 39.8em;
    float: left;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.68421053;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
/* ==================================================================
  .home content
=================================================================== */
.home #bd {
  color: #fff;
  padding: 3em 0;
  z-index: 420;
}
@media only screen and (min-width: 1300px) {
  .home #bd {
    padding: 4.05em 0 1.55em;
    /* desk 1300w */
  }
}
.home #bd .container {
  max-width: 793px;
  background-color: #457c9a;
  box-shadow: 1.25em 1.25em 1.25em rgba(0, 0, 0, 0.15);
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .home #bd .container {
    width: 100%;
    padding: 2.4em 2.5%;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd .container {
    padding: 4.15em 4em 5.3em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    max-width: 31.5em;
    /* desk 1300w */
  }
}
.home #bd #content .content-text {
  line-height: 1.6875;
}
@media only screen and (min-width: 1300px) {
  .home #bd #content .content-text {
    font-size: 0.8em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd .ornament {
  width: 46.7em;
  height: 44.8em;
  margin: 0 3.3em 0 0;
  background: #6e7874 url(../images/bd.jpg) no-repeat 50% 100%;
  background-size: 100% auto;
  position: absolute;
  top: 6.65em;
  right: 50%;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1299px) {
  .home #bd .ornament {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd .ornament {
    display: block;
    /* desk 1300w */
  }
  .home #bd .ornament.active {
    will-change: background-position;
  }
}
.home #bd .mark {
  color: #e2e2e2;
  width: 45.85em;
  height: 45.85em;
  margin-left: 7.2em;
  display: block;
  position: absolute;
  top: 6.1em;
  left: 50%;
  z-index: 1;
}
/* ==================================================================
  custom content
=================================================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mediaslider .cycle-slideshow .cycle-slide {
    padding: 0 5%;
    /* midTab opt-out 768oo */
  }
}
.mediaslider .cycle-slideshow > button {
  font-size: 2.8em;
  color: #8dc892;
  background: none;
  border: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > button .icon {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > button.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > button.cycle-prev .icon {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > button.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > button.cycle-next .icon {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > button:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > button:hover .icon {
  transform: scale(1.44);
  opacity: 0.68;
}
/* content centered for slideshow and video-centric 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 {
  float: none;
  margin: 0 auto;
}
/* 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;
}
/* office location ancillary image style */
@media only screen and (max-width: 767px) {
  .locationimg {
    margin: 0 auto 1em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .locationimg {
    margin: 0 0 1em 1em;
    float: right;
    /* midTab 768w */
  }
}
/* 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%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
  /* midTab 768w */
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  .common-procedures #content h2[id] {
    scroll-margin-top: 10em;
  }
  /* desk 1300w */
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em!important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
  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.52173913;
  font-size: 1.21052632em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #8dc892;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.68421053;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #8dc892;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #457c9a;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
    /* midTab 768w */
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
  hero
=================================================================== */
.hero {
  width: 100%;
  max-width: none;
  display: block;
  position: relative;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .hero {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
/* ==================================================================
  sidebar
=================================================================== */
#sidebar {
  width: 110%;
  margin: 0 -5% 3em;
  padding: 0;
  display: block;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  #sidebar {
    background-color: rgba(238, 238, 238, 0.5);
    overflow: hidden;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 27.80832679%;
    margin: 0;
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    /* midTab 768w */
  }
}
#sidebar .mark {
  width: 44.3em;
  height: 44.55em;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #sidebar .mark {
    font-size: 2.1vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #sidebar .mark {
    top: -11.95em;
    left: 2.2em;
    /* midTab 768w */
  }
}
/* ===============================================
  sitepics
=============================================== */
#hide-stock {
  width: 100%;
  max-width: 17.7em;
  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;
    /* midTab 768w */
  }
}
.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;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
  SUBNAV || SIDE ORIENTED
=================================================================== */
#subnav {
  text-align: center;
  color: #457c9a;
  margin: 0 0 6%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #subnav {
    padding: 3em 5% 1em;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 768px) {
  #subnav {
    padding: 0;
    order: 2;
    /* midTab 768w */
  }
}
#subnav p {
  font-weight: 700;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 1299px) {
  #subnav p {
    line-height: 44px;
    font-size: clamp( 12px, 0.7em , 14px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav p {
    line-height: 5;
    font-size: 0.7em;
    /* desk 1300w */
  }
}
#subnav a {
  color: #457c9a;
  white-space: nowrap;
  margin: 0 0.8em;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #subnav a {
    width: 100%;
    margin: 0 0 0.71428571em;
    background-color: rgba(238, 238, 238, 0.5);
    float: left;
    clear: left;
    /* midTab 768w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #8dc892;
  text-decoration: none;
}
/* END SIDEBAR - */
/* ==================================================================
  .spotlight
=================================================================== */
.spotlight {
  text-align: center;
  background-color: #ffffff;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
  spot01
=============================================== */
.spot01 {
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0;
  border-bottom: 4em solid #fff;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 1299px) {
  .spot01 {
    font-size: inherit;
    font-size: min(3.2vw, 1em);
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 {
    padding: 4em 0;
    /* desk 1300w */
  }
}
.spot01:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #6c6c6c;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 1299px) {
  .spot01:after {
    right: 0;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01:after {
    margin-right: 3em;
    right: 50%;
    /* desk 1300w */
  }
}
.spot01 h2.topic {
  line-height: 0.984375;
  font-size: 3.2em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 1299px) {
  .spot01 h2.topic {
    padding: 0.609375em 0;
    display: block;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 h2.topic {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    /* desk 1300w */
  }
}
.spot01 h2.topic .trait {
  line-height: 0.81060606;
  font-size: 2.0625em;
  font-family: 'Allura', cursive;
  font-weight: 400;
  text-transform: none;
  display: block;
}
.spot01 .mod {
  background: #718a92 url(../images/spotlight/spot01dec.jpg) no-repeat 50% 30%;
  box-shadow: 1.25em 1.25em 1.25em rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 420;
  overflow: hidden;
}
@media only screen and (max-width: 665px) {
  .spot01 .mod {
    padding: 4.5em 0;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) and (max-width: 1299px) {
  .spot01 .mod {
    padding: 4.5em 6.04166667%;
    /* range 666w - 1300oo */
  }
}
@media only screen and (max-width: 1299px) {
  .spot01 .mod {
    width: 100%;
    display: block;
    background-size: cover;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 .mod {
    width: 48em;
    padding: 12.15em 0 13em;
    margin: 0 0 0 1.65em;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    /* desk 1300w */
  }
}
.spot01 .mod:before {
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 100%);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}
@media only screen and (max-width: 479px) {
  .spot01 .mod:before {
    content: '';
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 .mod:before {
    content: none;
    /* mintab 480w */
  }
}
.spot01 a {
  color: #fff;
  /* max-width:236/20em; */
  padding: 0;
  display: inline-block;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (max-width: 479px) {
  .spot01 a {
    width: 44%;
    height: 40vw;
    margin: 0 2%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 a {
    width: 25%;
    margin: 0;
    /* mintab 480w */
  }
}
.spot01 a:hover .hov .swash {
  transform: rotateX(0deg);
  transition-duration: 0.66s;
  transition-timing-function: ease-in-out;
}
.spot01 a:hover .hov .swash .semi {
  transform: rotate(0deg);
  transition-duration: 1.59s;
  transition-timing-function: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.spot01 a:hover .hov:after {
  transform: scaleY(1);
  transition-duration: 0.69s;
  transition-timing-function: ease-out;
  transition-delay: 0.48s;
}
.spot01 a .icon {
  width: 3.3em;
  height: 2.9em;
  margin: 0 auto 1.2em;
}
.spot01 a h3.topic {
  line-height: 1;
  font-size: 1.35em;
  display: block;
}
.spot01 a .hov {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.spot01 a .hov:after {
  width: 1px;
  height: 11em;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 97.5%;
  right: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition-property: transform, opacity;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
@media only screen and (max-width: 1299px) {
  .spot01 a .hov:after {
    content: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 a .hov:after {
    content: '';
    /* desk 1300w */
  }
}
.spot01 a .hov .swash {
  width: 11.3em;
  height: 11.3em;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transform: rotateX(-90deg);
}
.spot01 a .hov .swash .semi {
  transform: rotate(360deg);
  transform-origin: 50% 50%;
  transition-property: transform;
  transition-duration: 0s;
  transition-timing-function: linear;
}
/* ===============================================
  spot02
=============================================== */
.spot02 {
  color: #457c9a;
  background: #d6d1d5 url(../images/spotlight/spot02bg.jpg) no-repeat center center;
}
@media only screen and (min-width: 1024px) {
  .spot02 {
    font-size: inherit;
    text-align: right;
    height: 30em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 5.2em 50% 3.2em 0;
    background-size: auto 124.66666667%;
    /* midTab 1024w */
  }
}
.spot02 .mod {
  width: 96%;
  max-width: 22.5em;
  padding: 4em 0 2em;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .spot02 .mod {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 28em;
    height: 25em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .spot02 .mod {
    max-width: 40em;
    height: 30em;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .mod {
    padding: 0;
    margin: 0 9.3em 0 0;
    display: inline-block;
    vertical-align: top;
    /* midTab 1024w */
  }
}
.spot02 h2.topic {
  line-height: 0.75675676;
  font-size: 1.85em;
  margin-bottom: 0.81081081em;
  display: block;
}
.spot02 h2.topic .trait {
  line-height: 0.45317221;
  font-size: 4.47297297em;
  font-family: 'Allura', cursive;
  font-weight: 400;
  display: block;
}
.spot02 .info {
  line-height: 1.2;
  font-size: 0.75em;
  color: #6c6c6c;
  width: 29.73333333em;
  margin-bottom: 4.56666667em;
}
@media only screen and (max-width: 1299px) {
  .spot02 .info {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot02 .spotbtn {
  line-height: 1.2;
  font-size: clamp( 12px, 0.75em , 15px );
  text-align: center;
  color: #fff;
  width: 10.26666667em;
  height: 3.93333333em;
  margin: 0 0 0 auto;
  background-color: #8dc892;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .spot02 .spotbtn {
    display: inline-flex;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .spot02 .spotbtn {
    width: 15em;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .spotbtn {
    display: flex;
    /* midTab 1024w */
  }
}
.spot02 .spotbtn:before {
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 100%;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .spot02 .spotbtn:before {
    content: none;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .spotbtn:before {
    content: '';
    transition: background-color 0.33s ease-in-out;
    /* midTab 1024w */
  }
  .spot02 .spotbtn:hover:before {
    background-color: #8dc892;
  }
}
.spot02 .spotbtn:hover {
  background-color: #457c9a;
}
@media only screen and (max-width: 1023px) {
  .spot02 .btn-wrap {
    display: flex;
    align-content: space-between;
  }
  .spot02 .spotbtn .decoration {
    position: absolute;
    top: 4.6em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .spot02 .spotbtn .decoration {
    min-width: 15em;
    height: 15em;
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .spotbtn.top {
    margin-bottom: 0.33333333em;
    /* midTab 1024w */
  }
  .spot02 .spotbtn.bot {
    margin-top: 0.33333333em;
    /* midTab 1024w */
  }
  .spot02 .spotbtn .decoration {
    position: absolute;
    top: -15em;
    transition: scale 0.33s ease-in-out;
    min-width: 20em;
    /* height: 15em; */
  }
  .spot02 .spotbtn.top .decoration {
    left: 15em;
  }
  .spot02 .spotbtn.ja .decoration {
    left: 25em;
  }
  .spot02 .spotbtn.bot .decoration {
    left: 47em;
  }
  .spot02 .spotbtn:hover .decoration {
    scale: 1.1;
  }
}
.spot02 .spotbtn.bb:before {
  width: 11.13333333em;
}
.spot02 .spotbtn.bb .swash {
  right: -15em;
}
.spot02 .spotbtn.ja:before {
  width: 23.066667em;
}
.spot02 .spotbtn.ja .swash {
  right: -26.866667em;
}
.spot02 .spotbtn.ke:before {
  width: 44.06666667em;
}
.spot02 .spotbtn.ke .swash {
  right: -47.86666667em;
}
.spot02 .spotbtn .trait {
  font-weight: 700;
  text-transform: none;
  display: block;
}
.spot02 .spotbtn .swash {
  width: 3.86666667em;
  height: 3.93333333em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1023px) {
  .spot02 .spotbtn .swash {
    display: none;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 .spotbtn .swash {
    display: block;
    /* midTab 1024w */
  }
}
.spot02 .spotbtn .swash .semi {
  stroke: #fff;
  transition: stroke 0.33s ease-in-out;
}
.spot02 .spotbtn:hover .swash .semi {
  stroke: #8dc892;
}
/* ===============================================
  spot03
=============================================== */
.spot03 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  border-top: 4em solid #fff;
  border-bottom: 4em solid #fff;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot03 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot03 {
    font-size: inherit;
    font-size: min(1.7vw, 1em);
    padding: 5em 0;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 {
    /* desk 1300w */
  }
  .spot03[data-ready] a {
    -webkit-filter: grayscale(1);
    filter: grayscale(100%);
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
  }
}
.spot03 a {
  color: #fff;
  max-width: 32.2em;
  width: calc(50% - 2px);
  margin: 1px;
  padding: 0;
  background-color: #457c9a;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .spot03 a {
    /* midTab 768oo */
  }
  .spot03 a[data-index="3"] h2.topic {
    line-height: 1.23913043;
  }
}
@media only screen and (min-width: 768px) {
  .spot03 a {
    /* midTab 768w */
  }
  .spot03 a[data-index="1"] .ornament {
    top: -5.2173913em;
    left: 3.56521739em;
  }
  .spot03 a[data-index="1"] .ornament:before {
    top: 100%;
    bottom: -3em;
  }
  .spot03 a[data-index="1"] h2.topic {
    left: 3.26086957em;
    bottom: 3.30434783em;
  }
  .spot03 a[data-index="2"] .ornament {
    top: -4.69565217em;
    left: 2.86956522em;
  }
  .spot03 a[data-index="2"] .ornament:before {
    top: 100%;
    bottom: -2.47826087em;
  }
  .spot03 a[data-index="2"] h2.topic {
    left: 11.60869565em;
    bottom: 1.26086957em;
  }
  .spot03 a[data-index="3"] .ornament {
    top: -8.26086957em;
    left: 9.26086957em;
  }
  .spot03 a[data-index="3"] .ornament:before {
    top: 100%;
    bottom: -6.04347826em;
  }
  .spot03 a[data-index="3"] h2.topic {
    left: 5.60869565em;
    bottom: 4.34782609em;
  }
  .spot03 a[data-index="4"] .ornament {
    top: -11.26086957em;
    left: 3.2173913em;
  }
  .spot03 a[data-index="4"] .ornament:before {
    top: 100%;
    bottom: -9.04347826em;
  }
  .spot03 a[data-index="4"] h2.topic {
    left: 12.13043478em;
    bottom: 1.73913043em;
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 a {
    transition-property: -webkit-filter, filter;
    transition-duration: 3s;
    transition-timing-function: ease;
    transition-delay: calc(0.24s * var(--index) );
    /* desk 1300w */
  }
}
.spot03 a:hover .decoration,
.spot03 a:hover h2.topic .ornament {
  opacity: 0.2;
}
.spot03 a:hover h2.topic {
  background-color: rgba(69, 124, 154, 0);
}
.spot03 a:hover h2.topic .cta,
.spot03 a:hover h2.topic .arrow {
  transition-duration: 0.66s;
  transition-delay: 0.39s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translate3d(0, -2.60869565em, 0);
  opacity: 1;
}
.spot03 a .decoration {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  transition: opacity 0.99s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .spot03 a .decoration {
    opacity: 0.5;
    /* midTab 768oo */
  }
}
.spot03 a h2.topic {
  line-height: 2.47826087;
  font-size: clamp( 12px, 1.15em , 23px );
  padding: 0 1.23913043em;
  transition: background-color 0.99s ease-in-out;
  position: absolute;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .spot03 a h2.topic {
    height: 44px;
    display: flex;
    align-items: center;
    bottom: 0;
    right: 0;
    /* midTab 768oo */
  }
  .spot03 a h2.topic .trait {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .spot03 a h2.topic {
    background-color: #8dc892;
    white-space: nowrap;
    /* midTab 768w */
  }
}
.spot03 a h2.topic .cta {
  display: block;
  position: relative;
  transition: transform 0.33s ease-in-out;
}
.spot03 a h2.topic .arrow {
  width: 1.04347826em;
  height: 3.04347826em;
  display: block;
  position: absolute;
  bottom: 0;
  left: -0.5em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(50%, 100%, 0) rotate(-90deg);
  opacity: 0;
}
.spot03 a h2.topic .ornament {
  line-height: 0;
  transition: opacity 0.99s ease-in-out;
  position: absolute;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .spot03 a h2.topic .ornament {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot03 a h2.topic .ornament {
    display: block;
    /* midTab 768w */
  }
}
.spot03 a h2.topic .ornament:before {
  content: '';
  width: 1px;
  height: auto;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 50%;
}
.spot03 a h2.topic .ornament .swash {
  width: 2.2173913em;
  height: 2.2173913em;
}
.spot03 a h2.topic .ornament .swash .semi {
  stroke: #fff;
}
/* ==================================================================
  #ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  background: #f4f3f3;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 979px) {
  #ft {
    padding: 2em 0;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #ft {
    padding: 4em 0;
    /* custom 980w */
  }
}
#ft .mark {
  width: 31.47em;
  height: 31.6em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
/* ===============================================
    locations
=============================================== */
#location {
  width: 100%;
  max-width: 64.5em;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 979px) {
  #location {
    display: block;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location {
    display: flex;
    justify-content: space-between;
    /* custom 980w */
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  max-width: 20em;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 479px) {
  #location .mod {
    width: 66%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) and (max-width: 665px) {
  #location .mod {
    width: 44%;
    /* range 480w - 666oo */
  }
}
@media only screen and (min-width: 666px) and (max-width: 979px) {
  #location .mod {
    width: 30%;
    /* range 666w - 980oo */
  }
}
@media only screen and (max-width: 979px) {
  #location .mod {
    margin: 0.5em;
    padding: 1em 0;
    aspect-ratio: 1 / 1;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .mod {
    width: 31.00775194%;
    height: 20em;
    vertical-align: top;
    position: relative;
    /* custom 980w */
  }
}
[data-ready] #location .mod:after,
#location .mod[data-active]:after {
  background-color: #457c9a;
  outline: 2px solid #457c9a;
}
.no-appearance [data-ready] #location .mod:after,
.no-appearance #location .mod[data-active]:after {
  background-color: rgba(69, 124, 154, 0);
  outline: 2px solid #aaa8a8;
}
[data-ready] #location .mod .marker,
#location .mod[data-active] .marker,
[data-ready] #location .mod h2.topic,
#location .mod[data-active] h2.topic,
[data-ready] #location .mod .phone,
#location .mod[data-active] .phone,
[data-ready] #location .mod .address,
#location .mod[data-active] .address {
  color: #fff;
}
.no-appearance [data-ready] #location .mod .marker,
.no-appearance #location .mod[data-active] .marker,
.no-appearance [data-ready] #location .mod h2.topic,
.no-appearance #location .mod[data-active] h2.topic,
.no-appearance [data-ready] #location .mod .phone,
.no-appearance #location .mod[data-active] .phone,
.no-appearance [data-ready] #location .mod .address,
.no-appearance #location .mod[data-active] .address {
  color: #457c9a;
}
#location .mod:after {
  content: '';
  outline: 2px solid #aaa8a8;
  outline-offset: -1px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: outline 0.66s ease-in-out, background-color 0.66s ease-in-out;
}
#location .mod .marker {
  color: #457c9a;
  width: 1.45em;
  height: 1.85em;
  margin: 0 auto 0.6em;
  display: block;
  transition: color 0.66s ease-in-out;
}
#location .mod .marker path {
  stroke: currentcolor;
  stroke-width: 0.66;
}
#location .mod h2.topic {
  letter-spacing: 0.16em;
  line-height: 1;
  font-size: 0.8em;
  color: #6c6c6c;
  display: block;
  transition: color 0.66s ease-in-out;
}
@media only screen and (max-width: 979px) {
  #location .mod h2.topic {
    margin-bottom: 1em;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .mod h2.topic {
    margin-bottom: 2em;
    /* custom 980w */
  }
}
#location .mod .phone {
  font-weight: 300;
  color: #457c9a;
  display: block;
  transition: color 0.66s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #location .mod .phone {
    line-height: 44px;
    font-size: clamp( 12px, 1.4em , 28px );
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .mod .phone {
    line-height: 1.57142857;
    font-size: 1.4em;
    margin-bottom: 0.57142857em;
    /* midTab 768w */
  }
}
#location .mod .address {
  color: #6c6c6c;
  margin: 0 auto;
  display: block;
  transition: color 0.66s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #location .mod .address {
    line-height: 14.66666667px;
    font-size: clamp( 12px, 0.8em , 16px );
    padding: 7.33333333px 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #location .mod .address {
    line-height: 1.5;
    font-size: 0.8em;
    /* midTab 1024w */
  }
}
#location .mod .address:hover {
  color: #fff;
  text-decoration: underline;
}
/* ==================================================================
    #links
=================================================================== */
#links {
  text-align: center;
  color: #979595;
  margin: 0;
}
@media only screen and (max-width: 1299px) {
  #links {
    padding: 2em 0;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links {
    height: 5em;
    padding: 1.4em 0 0;
    /* desk 1300w */
  }
}
#links .util {
  margin-bottom: 0.45em;
}
@media only screen and (max-width: 1299px) {
  #links .util {
    line-height: 44px;
    font-size: clamp( 12px, 0.6em , 12px );
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links .util {
    line-height: 3.66666667;
    font-size: 0.6em;
    /* desk 1300w */
  }
}
#links .util a {
  color: #979595;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #457c9a;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
/* ===============================================
    sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.58333333em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  transition: fill 0.33s ease-in-out;
}
a#sesame-link .sesameicon path.top {
  fill: #D6E03D;
}
a#sesame-link .sesameicon path.bottom {
  fill: #00a5e3;
}
a#sesame-link:hover .sesameicon path {
  fill: currentcolor;
}
/* ===============================================
  backToTop
=============================================== */
#btt {
  text-align: center;
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}
a#backtotop {
  color: #457c9a;
  width: 44px;
  height: 44px;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out;
}
a#backtotop:hover {
  color: #8dc892;
}
a#backtotop:hover .control {
  transform: rotate(360deg);
  transition-duration: 0.66s;
  transition-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56);
  transition-delay: 0s;
}
a#backtotop .control {
  transition: transform 0s linear, opacity 0s linear;
  transform-origin: 50% 50%;
  pointer-events: none;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
  success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  color: #fff;
  width: 100%;
  padding: 1rem;
  background: #8dc892;
  float: left;
}
/* ===============================================
  Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-size: small;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #8dc892;
  border: 1px solid #8dc892;
  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: #457c9a;
  background-color: #457c9a;
}
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;
  height: 44px;
  width: auto;
  text-decoration: none;
  padding: 0 1.5em;
  background-color: #8dc892;
  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: #457c9a;
}
/* ===============================================
  .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 (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%;
    max-width: none;
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
  custom content
=============================================== */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  .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*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* 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( 41.89473684em , 90% );
      /* desk 1300oo */
    }
  }
  @media only screen and (min-width: 1300px) {
    .embed-container,
    .embed-container.ratio16x9 {
      max-width: min( 41.89473684em , 1200px );
      /* desk 1300w */
    }
  }
  .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;
  }
}
@media only screen and (min-width: 768px) {
  @supports (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)) {
    #subnav a {
      transition-property: color, -webkit-backdrop-filter, backdrop-filter;
      transition-duration: 0.33s;
      transition-timing-function: ease-in-out;
      transition-delay: 0s;
      -webkit-backdrop-filter: blur(1px);
      backdrop-filter: blur(1px);
    }
    #subnav a:hover {
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
    }
  }
}
