/* 
 Site Manager Version: 14.2.0
 Date Created: July 2023
 Account: rockford-downtown
 Written by: Ryan Postell
 Sesame Communications - All rights reserved. C2023
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
/* lato-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lato-v24-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ===============================================
					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 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
form button,
button {
  font-family: 'Lato', Helvetica, Arial, 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 */
  }
}
@media only screen and (min-width: 2000px) {
  body {
    font-size: 1vw;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #5ca5cf;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #0099CC;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #5ca5cf;
  margin: 0 0 1.24137931em;
  text-rendering: auto;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.76em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.5em;
    /* mintab 480w */
  }
}
.home h1 {
  font-size: 10vw;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1:after {
  content: '';
  width: 2.5em;
  height: 2px;
  margin: 0.33333333em auto 0.7em;
  background: #0099CC;
  display: block;
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.2;
  font-size: 0.41666667em;
  text-transform: none;
}
.home h1 .trait.bottom {
  font-weight: 700;
}
h2:not(.topic) {
  font-size: 1.52631579em;
  color: #343434;
}
h3:not(.topic) {
  font-size: 1.36842105em;
  color: #4d719f;
}
h4 {
  font-size: 1.15789474em;
  color: #4d719f;
}
h5 {
  font-size: 1.15789474em;
  color: #4d719f;
}
h6 {
  font-size: 1.10526316em;
  color: #4d719f;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 60em;
}
/* ===============================================
	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: #E7E7E7;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
  #masthead.ready #logo {
    opacity: 0;
  }
}
#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;
  box-shadow: -1px 1px 0 rgba(92, 165, 207, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 44px;
  color: #5ca5cf;
  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 {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.3em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, 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: #5ca5cf;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #0099CC;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -44px 0 0;
  padding: 1em 0;
  background-color: #4d719f;
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.5;
  font-size: 0.8em;
  text-transform: initial;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.03em;
  width: auto;
  height: 2.5em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
#main-nav ul li a[id]:after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.6em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #000;
  text-decoration: none;
  transition-duration: 0.15s;
}
#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: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(4, 7, 7, 0.89);
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.85714286;
  font-size: 0.7em;
  color: #fff;
  width: 100%;
  height: 2.85714286em;
  margin: 0;
  padding: 0;
  font-weight: 300;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#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: #39a8d7;
  margin-bottom: 0;
  border: none;
}
/* 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;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 2em;
  opacity: 1;
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  /* midTab 1024w */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #5ca5cf;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    position: absolute;
    width: 98.05%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* maxTab 1024w */
  }
}
#hd .container {
  max-width: 100%;
}
@media only screen and (min-width: 666px) and (max-width: 1023px) {
  #hd .container {
    padding: 0.66em 4em 0.66em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 14.65em;
  margin: 0.75em auto 0.75em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: clamp(10.5em, 17vw, 14.65em);
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #logo {
    opacity: 1;
    transition: opacity 0.3s;
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 14.65em;
  height: 2.2em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 480px) {
  #contactinfo {
    width: auto;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1024px) {
  #contactinfo {
    margin: 0;
    font-size: min(1.4vw, 1em);
  }
}
#contactinfo .address {
  line-height: 1.76470588;
  font-size: 0.85em;
  color: #000;
  width: auto;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-right: 0.70588235em;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .address span {
  font-size: 0.88235294em;
  color: #5ca5cf;
  margin-right: 0.33333333em;
}
#contactinfo .address:hover {
  text-decoration: underline;
  color: #000;
}
#contactinfo .phone {
  line-height: 1.76470588;
  font-size: 0.85em;
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#contactinfo .phone span {
  font-size: 0.88235294em;
  color: #5ca5cf;
  margin-right: 0.33333333em;
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #0099CC;
}
/* ===============================================
	socialmedia
=============================================== */
.socialmedia {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  background-color: #5ca5cf;
  height: 2.9em;
  /* Small Desktop - 1024px */
}
@media only screen and (min-width: 64rem) {
  .socialmedia {
    position: fixed;
    top: 9.15em;
    height: auto;
    width: 2.9em;
    flex-direction: column;
    right: 0;
    padding: 0.75em 0;
  }
}
.socialmedia a {
  font-size: 0.9em;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 0.27777778em;
  transition: transform 0.3s;
}
.socialmedia a:hover {
  transform: scale(1.3);
}
/* ==================================================================
	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;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow .welcomevid {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 1300px) {
  #slideshow.ready .ssoverlay {
    transform: translate3d(-150%, -250%, 0);
  }
}
#slideshow .ssoverlay {
  width: 100%;
  max-width: 30em;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 420;
  transition: transform 0.7s;
}
#slideshow .ssoverlay img {
  width: 100%;
}
.spot01 {
  padding-top: 5.2em;
  padding-bottom: 5.45em;
  background-color: #fff;
}
.spot01 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  /* Small Desktop - 1300px */
}
@media only screen and (min-width: 81.25rem) {
  .spot01 .container {
    max-width: 81em;
    flex-wrap: nowrap;
  }
}
.spot01 .item {
  position: relative;
  display: block;
  width: 100%;
  height: 100vw;
  max-height: 17.5em;
  max-width: 19.1em;
  overflow: hidden;
  background-color: #000;
}
.spot01 .item:hover img {
  transform: scale(1.2);
  opacity: 0.4;
}
.spot01 .item h2 {
  font-size: clamp(0.75em, 1.1vw, 1em);
  position: absolute;
  bottom: 1.2em;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin: 0;
}
.spot01 .item h2 .cs-icon {
  font-size: 1.75em;
  width: 2.2em;
  height: 2.2em;
  background-color: rgba(92, 165, 207, 0.8);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.spot01 .item .header {
  font-size: 1.2em;
  width: 9.375em;
  line-height: 2.70833333em;
  background-color: rgba(77, 113, 159, 0.8);
  color: #fff;
  font-weight: 400;
  padding-left: 0.45833333em;
  margin-left: 0.875em;
  position: relative;
  display: block;
}
.spot01 .item .header:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 1.25em;
  background: url("../images/spotlight/eclipse.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 1;
  top: 0;
  right: 100%;
}
.spot01 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  text-transform: initial;
  transition: opacity 0.3s, transform 0.7s;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #fff;
  padding: 2.15em 0;
  position: relative;
  overflow: hidden;
  background-color: #36a5d6;
}
@media only screen and (min-width: 1300px) {
  #subnav {
    padding-top: 6.3em;
    /* desk 1300w */
  }
}
#subnav p {
  line-height: 1.58333333;
  font-size: 0.6em;
  margin: 0 auto;
  padding: 0;
  max-width: 52.5em;
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  padding: 0.6em 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    padding: 0 0.7em;
    /* maxTab 1024w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #0c0c0c;
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
  overflow: hidden;
  /* fractional bg image on subpages */
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 5.15em 0 6em;
    /* midTab 768w */
  }
}
#bd.sub h1 {
  color: #343434;
  text-transform: initial;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 0.96666667em;
}
@media only screen and (min-width: 768px) {
  #bd.sub h1 {
    font-size: 3em;
  }
}
#bd.sub:before {
  content: none;
  height: 100%;
  background: #e7e7e7;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  #bd.sub:before {
    content: '';
    top: 5.6em;
    width: 18%;
    /* adjust to maintain aesthetic spacing between sidebar and content area  */
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #bd.sub:before {
    width: 40vw;
    right: calc(50% + 29.35em);
    /* desk 1300w */
  }
}
#bd.sub:after {
  content: none;
  height: 100%;
  background: url("../images/spotlight/wood-pattern.png");
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  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: '';
    top: 5.6em;
    width: 20%;
    /* adjust to maintain aesthetic spacing between sidebar and content area  */
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #bd.sub:after {
    width: 40vw;
    right: calc(50% + 29.35em);
    /* desk 1300w */
  }
}
#bd .container {
  max-width: 81em;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    max-width: 37.8em;
    float: left;
    margin-left:1em;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.57894737;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
#content .content-text a {
  color: #3ea5d4;
}
#content .content-text a:hover {
  text-decoration: underline;
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3.75em 0;
  overflow: hidden;
  background-color: #5ca5cf;
}
@media only screen and (min-width: 1024px) {
  .home #bd {
    background: url("../images/spotlight/home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
  }
}
.home #bd .container {
  max-width: 64.5em;
}
.home #bd h1 {
  color: #fff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: initial;
  margin-bottom: 0.75em;
  line-height: 0.90625em;
}
.home #bd h1:after {
  display: none;
}
@media only screen and (min-width: 30em) {
  .home #bd h1 {
    font-size: 3.2em;
  }
}
.home #bd h1 span {
  font-size: 0.421875em;
  line-height: 1.77777778em;
  letter-spacing: 0.07em;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-bottom: -0.07407407em;
}
.home #bd h1 .bottom {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
  text-transform: initial;
}
.home #bd h2,
.home #bd h3,
.home #bd h4,
.home #bd h5,
.home #bd h6,
.home #bd p,
.home #bd li {
  color: #fff;
}
.home #bd #content {
  max-width: 30em;
  margin: auto;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 28.9em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .home #bd #content {
    padding-top: 7.4em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 5em;
    max-width: 28.9em;
    float: left;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }
  .home #bd #content:before {
    content: '';
    width: 50vw;
    height: 100%;
    background: #5ca5cf;
    opacity: 0.85;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .home #bd #content:after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 50vw;
    background: url("../images/spotlight/home-swoosh.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 1;
    top: 0;
    left: 100%;
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-right: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
.home #bd #content .content-text a {
  color: #343434;
}
.home #bd #content .content-text a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.spotlight-2 .container {
  position: relative;
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .spotlight-2 .container {
    padding-top: 8.2em;
    padding-bottom: 5.5em;
  }
}
.spot04-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e7e7e7;
  padding-top: 7.7em;
  padding-bottom: 8.35em;
  position: relative;
  z-index: 1;
}
.spot04-container:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background: url("../images/spotlight/wood-pattern.png");
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
}
.spot04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 600px) {
  .spot04 {
    height: 41.7em;
    width: 64.5em;
    font-size: min(1.5vw, 1em);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-wrap: wrap;
  }
}
.spot04 .item {
  width: 95%;
  height: 50vw;
  position: relative;
  background: #000;
  margin-bottom: 1.5em;
  aspect-ratio: 1.45034642;
  overflow: hidden;
}
.spot04 .item:before {
  content: '';
  width: 21.3em;
  height: 10.3em;
  background: #535353;
  opacity: 0.5;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: transform 0.3s;
}
@media only screen and (min-width: 600px) {
  .spot04 .item {
    width: 31.4em;
    height: 20em;
    margin: 0;
  }
}
.spot04 .item:hover:before {
  transform: translate(-50%, -50%) scale(2);
}
.spot04 .item:hover img {
  transform: scale(1.2);
}
.spot04 .item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.spot04 .item h2 {
  font-size: 1.5em;
  line-height: 1.06666667;
  font-weight: 400;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  text-transform: uppercase;
  z-index: 10;
  color: #fff;
  text-align: center;
  text-transform: initial;
  letter-spacing: 0.06em;
  margin: 0;
  transform: translateY(-50%);
}
.spot04 .button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 2em 0;
}
@media only screen and (min-width: 1024px) {
  .spot04 .button {
    padding-top: 3.4em;
    padding-bottom: 5.85em;
  }
}
.spot04 .spotbtn {
  display: block;
  margin: auto;
  color: #fff;
  font-size: 0.6em;
  line-height: 4;
  width: 18.33333333em;
  text-transform: uppercase;
  background: #b5baaf;
  font-weight: bold;
  text-align: left;
  padding-left: 1.58333333em;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 666px) {
  .spot04 .spotbtn:hover {
    color: #fff;
  }
  .spot04 .spotbtn:hover:before {
    width: 100%;
  }
}
.spot04 .spotbtn:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 4em;
  background: #b53831;
  opacity: 1;
  top: 0;
  right: 0;
  transition: width 0.3s;
  z-index: -1;
}
.spot04 .spotbtn .plus {
  position: absolute;
  height: 1.71428571em;
  font-size: 2.33333333em;
  width: 1.71428571em;
  text-align: center;
  bottom: 0;
  right: 0;
  font-weight: 400;
  color: #fff;
}
.spot04 .spotbtn .plus span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spot05 {
  padding: 5em 0 5em;
  background: url("../images/spotlight/reviews-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  /* Small Desktop - 1024px */
}
.spot05:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #0c0c0c;
  opacity: 0.4;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 64rem) {
  .spot05 {
    padding-bottom: 11.8em;
    padding-top: 5.85em;
  }
}
.spot05 .cycle-slideshow {
  color: #0099CC;
  width: 96%;
  max-width: 42.15em;
  margin: 0 auto;
  display: block;
}
.spot05 .cycle-slideshow:hover {
  color: #007399;
}
.spot05 h2 {
  font-size: 1em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.25em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.1em;
}
.spot05 .cycle-slide {
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
.spot05 .testimony {
  line-height: 1.5;
  font-size: 1.2em;
  display: block;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.83333333em;
}
.spot05 .testifier {
  line-height: 2;
  font-size: 0.75em;
  font-weight: 700;
  display: block;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 3.26666667em;
  position: relative;
  text-transform: uppercase;
}
.spot05 .container {
  max-width: 48em;
  padding: 0;
  text-align: center;
}
.spot05 .buttons {
  gap: 0.15em;
}
@media only screen and (min-width: 768px) {
  .spot05 .buttons {
    display: flex;
    justify-content: center;
  }
}
.spot05 .button {
  line-height: 4.28571429em;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  font-weight: 400;
  width: 16.35714286em;
  text-transform: uppercase;
  color: #fff;
  background-color: #3ea5d4;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 64em) {
  .spot05 .button:hover {
    background-color: #fff;
    color: #3ea5d4;
  }
}
.spot05 .button2 {
  width: 15.71428571em;
}
/* ==================================================================
	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: #5ca5cf;
  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: translate3d(0, 0, 0) 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 {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.20689655;
  font-size: 1.52631579em;
  text-transform: uppercase;
  text-decoration: none;
  color: #343434;
  font-weight: 700;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.57894737;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #343434;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: underline;
}
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 */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 17.85em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 22.03703704%;
    margin: 0 0 1em;
    display: block;
    float: left;
    clear: right;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #sidebar {
    margin-left: 3.1em;
    margin-right: 3.8em;
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
  margin-top: 4.2em;
}
#hide-stock:before {
  content: '';
  width: 19.1em;
  height: 22.8em;
  background: #5ca5cf;
  opacity: 0.6;
  position: absolute;
  display: block;
  bottom: -2.3em;
  left: -7.25em;
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR - */
/* ==================================================================
	#ft
=================================================================== */
#ft {
  background-color: #4d4d4d;
  padding: 2.5em 0;
  /* Tablet - 768px */
}
@media only screen and (min-width: 48rem) {
  #ft {
    padding-top: 5.2em;
    padding-bottom: 4.5em;
  }
}
#ft .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  flex-direction: column;
  max-width: 48em;
  /* Tablet - 768px */
}
@media only screen and (min-width: 48rem) {
  #ft .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
#ft .footer-logo {
  width: 100%;
  max-width: 23.55em;
  display: block;
}
#ft .footer-logo img {
  width: 100%;
  height: auto;
}
#ft .phone {
  display: block;
  font-size: 0.8em;
  line-height: 1.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375em;
}
#ft .phone span {
  font-size: 1.0625em;
  color: #5ca5cf;
  margin-right: 0.29411765em;
}
#ft .address {
  display: block;
  font-size: 0.75em;
  line-height: 1.33333333em;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.4em;
  display: flex;
  align-items: flex-start;
}
#ft .address:hover {
  text-decoration: underline;
}
#ft .address .fa-solid {
  font-size: 1.13333333em;
  color: #5ca5cf;
  margin-right: 0.29411765em;
}
#ft .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55em;
}
#ft .box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.1em;
  width: auto;
}
#ft .cs-link:hover .wrapper-box {
  background-color: #5ca5cf;
}
#ft .cs-link:hover h2 {
  color: #fff;
}
#ft .cs-icon {
  font-size: 0.9em;
  color: #fff;
  width: 2.77777778em;
  height: 3em;
  background-color: #3ea5d4;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ft .wrapper-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 7.45em;
  height: 2.7em;
  background-color: #f0f0f0;
  padding-left: 0.75em;
  transition: background-color 0.3s;
}
#ft h2 {
  font-size: 0.8em;
  color: #343434;
  text-align: left;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1em;
  transition: color 0.3s;
}
#ft h2 span {
  display: block;
  font-weight: 400;
  font-size: 0.9375em;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #4d4d4d;
  border-top: 1px solid #7e7e7e;
}
@media only screen and (min-width: 768px) {
  #links {
    height: 4em;
    padding: 1.25em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.72727273;
  font-size: 0.55em;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#links .util a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  text-decoration: underline;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  color: #3ea5d4;
  margin: 0 0.6em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.45454545em;
  height: 1.27272727em;
  margin-right: 0.72727273em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/*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: #666;
  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: #5ca5cf;
  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: #5ca5cf;
  border: 1px solid #5ca5cf;
  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: #0099CC;
  background-color: #0099CC;
}
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: #5ca5cf;
  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: #0099CC;
}
/* ===============================================
	.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 #bd.sub:before,
  .layout-full-width #bd.sub:before {
    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*/
}
/* ===============================================
Large Tablet Stylings
Supports 1024px (1024px) and up
=============================================== */
@media only screen and (min-width: 1024px) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: auto;
    display: inline-block;
    height: 2.65em;
    margin-top: 1.45em;
    box-shadow: none;
    position: relative;
    top: auto;
    z-index: 3100;
  }
  #main-nav .container {
    max-width: none;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 2.65em;
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    float: none;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.7em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
  }
  #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: 1.8125;
    text-align: center;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:after {
    bottom: 1.5em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    position: absolute;
    display: none;
    z-index: 2800;
  }
  #main-nav ul ul li {
    height: 1.25em;
    margin: 0;
    padding: 0;
    float: left;
    opacity: 1;
  }
  #main-nav ul ul li a {
    line-height: 1.78571429;
    text-align: left;
    white-space: nowrap;
    height: 1.78571429em;
    padding: 0 1.57142857em;
    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: -1.1em;
    /*top:37px;*/
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    margin: 0;
    left: auto;
    right: -1.1em;
  }
  /*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;
    max-width: min( 39.78947368em , 1200px );
    padding: 0;
    display: block;
  }
  .embed-container embed,
  .embed-container.ratio16x9 embed,
  .embed-container object,
  .embed-container.ratio16x9 object,
  .embed-container iframe,
  .embed-container.ratio16x9 iframe {
    object-fit: cover;
    top: auto;
    left: auto;
  }
}

/* Critical tablet layout fixes */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #bd {
    padding: 3em 20px;
  }
  
  #bd .container {
    display: block !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  #content {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }
  
  #content img {
    max-width: 300px;
    height: auto;
    margin: 0 20px 20px 0;
    float: left;
  }
  
  .content-text {
    overflow: visible;
  }
  
  #sidebar {
    display: none;
  }
  
  #bd.sub:before,
  #bd.sub:after {
    display: none !important;
  }
}
