/* 
 Site Manager Version: 11.2.0
 Date Created: November 2022
 
 Account: cardinale-vincent3
 Written by: kvansant
 
 Sesame Communications - All rights reserved. C2022
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Mulish', 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 {
  font-family: 'Mulish', sans-serif;
}
form button {
  font-family: 'Mulish', sans-serif;
}
body {
  font-size: 15px;
  color: #333333;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #f2750f;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #49dc49;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #0579cc;
  margin: 0 0 0.8em;
  text-rendering: auto;
  font-weight: 300;
  text-transform: uppercase;
}
header.sub {
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  margin-bottom: 0.5em;
  background-color: #f2750f;
  z-index: 999;
}
@media only screen and (min-width: 1024px) {
  header.sub {
    background: url('../images/nav/hd.jpg') center no-repeat;
    background-size: cover;
    padding-top: 16.15em;
  }
}
header.sub .container {
  max-width: 64.5em;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.45em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 1024px) {
  .sub h1 {
    text-align: left;
  }
}
.home h1 {
  font-size: 10vw;
  margin: 0 0 0.68em;
  font-weight: 300;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 2.7em;
    /* mintab 480w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.15384615;
  font-size: 0.48148148em;
  margin-bottom: -0.1em;
  font-weight: 700;
  letter-spacing: 0.2em;
}
h2:not(.topic) {
  color: #49dc49;
  font-size: 1.2em;
}
h3:not(.topic) {
  color: #f2750f;
  font-size: 1.1em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.95em;
}
h6 {
  font-size: 0.9em;
}
/* ===============================================
	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: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: 1.1em;
    width: 100%;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  #masthead .container {
    max-width: 64.6em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(242, 117, 15, 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: 43px;
  color: #f2750f;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.2em;
}
#main-nav .trigger .navicon span {
  height: 2px;
  width: 100%;
  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: #f2750f;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #0579cc;
}
#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: -43px 0 0;
  padding: 1em 0;
  background-color: #ffffff;
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 3.07692308;
  letter-spacing: 0.1em;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  width: 100%;
  height: 3.07692308em;
  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: 0.38461538em;
  background-color: #f2750f;
  display: block;
  position: absolute;
  left: 0;
  top: 0em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
  z-index: 1;
}
#main-nav ul li a[id]:before {
  content: '';
  width: 100%;
  height: 3.9em;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 0em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
  z-index: -1;
}
#main-nav ul li:nth-of-type(2) a[id]:after {
  background-color: #0579cc;
}
#main-nav ul li:nth-of-type(3) a[id]:after {
  background-color: #49dc49;
}
#main-nav ul li:nth-of-type(4) a[id]:after {
  background-color: #ffff04;
}
#main-nav ul li:nth-of-type(5) a[id]:after {
  background-color: #f2750f;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #fff;
  text-decoration: none;
  transition-duration: 0.15s;
}
#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 li.open > a[id]:before,
#main-nav ul li.active > a[id]:before,
#main-nav ul li:hover > a[id]:before {
  background-color: #f2750f;
}
#main-nav ul li:nth-of-type(2).open > a[id]:before,
#main-nav ul li:nth-of-type(2).active > a[id]:before,
#main-nav ul li:nth-of-type(2):hover > a[id]:before {
  background-color: #0579cc;
}
#main-nav ul li:nth-of-type(2) ul,
#main-nav ul li:nth-of-type(2) ul,
#main-nav ul li:nth-of-type(2) ul {
  background-color: #0579cc;
}
#main-nav ul li:nth-of-type(3).open > a[id]:before,
#main-nav ul li:nth-of-type(3).active > a[id]:before,
#main-nav ul li:nth-of-type(3):hover > a[id]:before {
  background-color: #49dc49;
}
#main-nav ul li:nth-of-type(3) ul,
#main-nav ul li:nth-of-type(3) ul,
#main-nav ul li:nth-of-type(3) ul {
  background-color: #49dc49;
}
#main-nav ul li:nth-of-type(4).open > a[id],
#main-nav ul li:nth-of-type(4).active > a[id],
#main-nav ul li:nth-of-type(4):hover > a[id] {
  color: #000;
}
#main-nav ul li:nth-of-type(4).open > a[id]:before,
#main-nav ul li:nth-of-type(4).active > a[id]:before,
#main-nav ul li:nth-of-type(4):hover > a[id]:before {
  background-color: #ffff04;
}
#main-nav ul li:nth-of-type(4) ul,
#main-nav ul li:nth-of-type(4) ul,
#main-nav ul li:nth-of-type(4) ul {
  background-color: #ffff04;
}
#main-nav ul li:nth-of-type(4) ul li a,
#main-nav ul li:nth-of-type(4) ul li a,
#main-nav ul li:nth-of-type(4) ul li a {
  color: #000;
}
#main-nav ul li:nth-of-type(5).open > a[id]:before,
#main-nav ul li:nth-of-type(5).active > a[id]:before,
#main-nav ul li:nth-of-type(5):hover > a[id]:before {
  background-color: #f2750f;
}
#main-nav ul li:nth-of-type(5) ul,
#main-nav ul li:nth-of-type(5) ul,
#main-nav ul li:nth-of-type(5) ul {
  background-color: #f2750f;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f2750f;
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 3.07692308;
  font-size: 0.65em;
  color: #fff;
  width: 100%;
  height: 3.07692308em;
  margin: 0;
  padding: 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: #fff;
  margin-bottom: 0;
  background-color: rgba(35, 31, 32, 0.2);
  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: #f2750f;
  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;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 666px) and (max-width: 1023px) {
  #hd .container {
    padding: 0.66em 55px 0.66em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 0.05em 0 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 18.7em;
  margin: 0.5em auto 1em 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: 0.75em;
    left: 0.15em;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 18.7em;
}
/* ===============================================
	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;
    margin: 0 0.1em 0 0;
    /* mintab 480w */
  }
}
#contactinfo .hd-home {
  line-height: 2.5;
  font-size: 0.6em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .hd-home span {
  color: #0579cc;
}
#contactinfo .phone {
  line-height: 2.5;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.6em;
  color: #000;
  display: inline-block;
  vertical-align: top;
  margin-right: 1.9em;
}
#contactinfo .phone span {
  color: #f2750f;
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #49dc49;
}
/* ===============================================
	socialmedia
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 1em;
  position: relative;
  z-index: 300;
}
@media only screen and (min-width: 666px) and (max-width: 1023.999px) {
  .socialmedia {
    text-align: right;
    padding-right: 0.5em;
  }
}
@media only screen and (min-width: 1024px) {
  .socialmedia {
    width: 1.95em;
    margin: 0;
    display: block;
    position: absolute;
    right: 0.76em;
    top: 12.75em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  .socialmedia {
    position: fixed;
    /* desk 1300w */
  }
}
.socialmedia a {
  text-align: center;
  line-height: 2.16666667;
  font-size: 0.9em;
  color: #fff;
  height: 2.16666667em;
  width: 2.16666667em;
  border-radius: 50%;
  margin: 0 1em 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.25s ease-in-out, color 0.33s ease-in-out;
}
.socialmedia a:before {
  content: '';
  position: absolute;
  left: -0.28em;
  top: -0.28em;
  width: 2.72222222em;
  height: 2.72222222em;
  border: 0.11111111em solid #f2750f;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .socialmedia a {
    margin: 0 0 0.63333333em 0;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-of-type(1),
.socialmedia a:nth-of-type(5) {
  background-color: #f2750f;
}
.socialmedia a:nth-of-type(1):before,
.socialmedia a:nth-of-type(5):before {
  border: 0.11111111em solid #f2750f;
}
.socialmedia a:nth-of-type(2),
.socialmedia a:nth-of-type(6) {
  background-color: #0579cc;
}
.socialmedia a:nth-of-type(2):before,
.socialmedia a:nth-of-type(6):before {
  border: 0.11111111em solid #0579cc;
}
.socialmedia a:nth-of-type(3),
.socialmedia a:nth-of-type(7) {
  background-color: #49dc49;
}
.socialmedia a:nth-of-type(3):before,
.socialmedia a:nth-of-type(7):before {
  border: 0.11111111em solid #49dc49;
}
.socialmedia a:nth-of-type(4),
.socialmedia a:nth-of-type(8) {
  background-color: #f5d70e;
}
.socialmedia a:nth-of-type(4):before,
.socialmedia a:nth-of-type(8):before {
  border: 0.11111111em solid #f5d70e;
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #fff;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(0.8);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  min-height: 40vw;
  background: #fff;
  position: relative;
  z-index: 400;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 / 800;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow {
    position: relative;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .cycle-slideshow {
    margin: 0 -10em;
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
#slideshow .ssoverlay {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translate3d(0, 50%, 0);
  z-index: 420;
}
@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay {
    bottom: 28.3%;
    transform: translate3d(0, 50%, 0);
  }
}
#slideshow .ssoverlay .container {
  max-width: 64.5em;
}
#slideshow .ssoverlay .mod {
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay .mod {
    max-width: 21.5em;
    margin: 0;
  }
}
#slideshow .ssoverlay h2 {
  line-height: 0.91891892;
  font-size: 1.85em;
  color: currentcolor;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay h2 {
    text-align: left;
  }
}
#slideshow .ssoverlay h2 span {
  line-height: 0.83333333;
  font-size: 1.62162162em;
  font-weight: 900;
  text-transform: uppercase;
  display: block;
}
#slideshow .ssoverlay a {
  display: block;
  margin: 0 auto;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.6em;
  letter-spacing: 0.16em;
  line-height: 4.25;
  height: 4.25em;
  width: 14em;
  background-color: #ffff04;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  #slideshow .ssoverlay a {
    margin: 0 0 0 9em;
  }
}
#slideshow .ssoverlay a:hover {
  transform: scale(1.3);
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot01 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot01 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: url('../images/spotlight/spot01.png') center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot01 {
    font-size: 3vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 {
    font-size: 2vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 768px) {
  .spot01 {
    height: 19.8em;
    padding: 0;
    font-size: 1.4vw;
  }
}
@media only screen and (min-width: 1024px) {
  .spot01 {
    font-size: inherit;
    /* custom 979w */
  }
}
.spot01 a {
  background-color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-color: transparent;
  width: 14.9em;
  height: 18.9em;
  perspective: 1000px;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .spot01 a {
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot01 a {
    margin: -3.154em 0.8em 0;
    /* midTab 768w */
  }
}
.spot01 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}
.spot01 a .icon {
  width: 2em;
  margin: 0 auto 1em;
  transition: transform 0.33s ease-in-out;
}
.spot01 a h2 {
  line-height: 2.29166667;
  font-size: 1.2em;
  font-weight: 300;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0.4em;
  left: 0;
  margin: 0;
}
.spot01 a h2 span {
  font-weight: 700;
}
.spot01 a:nth-of-type(1) {
  color: #0579cc;
}
.spot01 a:nth-of-type(1) .flip-card-back {
  background: url('../images/spotlight/spot01dec01.jpg') center no-repeat;
  background-size: cover;
}
.spot01 a:nth-of-type(2) {
  color: #ffe506;
}
.spot01 a:nth-of-type(2) .flip-card-back {
  background: url('../images/spotlight/spot01dec02.jpg') center no-repeat;
  background-size: cover;
}
.spot01 a:nth-of-type(3) {
  color: #49dc49;
}
.spot01 a:nth-of-type(3) .flip-card-back {
  background: url('../images/spotlight/spot01dec03.jpg') center no-repeat;
  background-size: cover;
}
.spot01 a:nth-of-type(4) {
  color: #f2750f;
}
.spot01 a:nth-of-type(4) .flip-card-back {
  background: url('../images/spotlight/spot01dec04.jpg') center no-repeat;
  background-size: cover;
}
.spot01 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.spot01 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.spot01 .flip-card-front,
.spot01 .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.11);
}
.spot01 .flip-card-back {
  border: 0.75em solid #fff;
  transform: rotateY(180deg);
}
/* ===============================================
	spot02 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot02 {
  color: #fff;
  background-color: #fff;
  background-repeat: no-repeat;
  padding: 3.75em 0;
}
@media only screen and (max-width: 665px) {
  .spot02 {
    padding: 3em 0;
    font-size: 4.5vw;
    /* custom opt-out 665oo */
  }
}
@media only screen and (min-width: 500px) {
  .spot02 {
    font-size: 2.8vw;
    /* custom 666w */
  }
}
@media only screen and (min-width: 700px) {
  .spot02 {
    font-size: 1.45vw;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1024px) {
  .spot02 {
    padding: 3.75em 0 0;
  }
}
@media only screen and (min-width: 1315px) {
  .spot02 {
    font-size: inherit;
  }
}
.spot02 .img-mod {
  width: 100%;
  max-width: 32.9em;
  vertical-align: top;
  display: inline-block;
  font-size: 3vw;
}
@media only screen and (min-width: 500px) {
  .spot02 .img-mod {
    font-size: inherit;
  }
}
@media only screen and (min-width: 1315px) {
  .spot02 .img-mod {
    margin-left: -0.65em;
  }
}
.spot02 .decoration {
  display: inline-block;
  vertical-align: top;
  margin: 0.25em;
}
.spot02 .decoration:nth-of-type(1),
.spot02 .decoration:nth-of-type(4) {
  width: 15em;
  height: 10.5em;
}
.spot02 .decoration:nth-of-type(2),
.spot02 .decoration:nth-of-type(3) {
  width: 15em;
  height: 15em;
}
.spot02 .decoration:nth-of-type(3) {
  margin-top: -4.3em;
}
.spot02 .mod {
  width: 100%;
  max-width: 31em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 700px) {
  .spot02 .mod {
    text-align: left;
    padding: 0;
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  line-height: 0.94339623;
  font-size: 2.65em;
  font-weight: 900;
  text-transform: uppercase;
  color: #0579cc;
  margin: 0.97em 0 0.778em;
}
.spot02 h2.topic span {
  display: block;
  font-weight: 300;
}
.spot02 .info {
  color: #000;
  line-height: 1.19444444;
  font-size: 0.9em;
  margin: 0 0 2.55555556em;
  display: none;
}
@media only screen and (min-width: 700px) {
  .spot02 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot02 .spotbtn {
  letter-spacing: 0.16em;
  line-height: 4.41666667;
  font-size: 0.6em;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  width: 11.58333333em;
  height: 4.25em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: 0.25s ease-in-out;
  background-color: #ffff04;
}
.spot02 .spotbtn:hover {
  transform: scale(1.3);
}
.spot02 .spotbtn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 2em 0;
  position: relative;
}
@media only screen and (min-width: 700px) {
  .associationlogos {
/*    white-space: nowrap;*/
    text-align: left;
    margin-top: .2em;
    margin-left: 0.1em;
    font-size: inherit;
    /* maxTab 1024w */
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .associationlogos a {
    margin: 0 1.7em .7em 0;
    white-space: nowrap;
    /* midTab 768w */
  }
  .associationlogos a:nth-of-type(5) {
    margin: 0 0 .7em 0;
  }
}
.associationlogos a:hover {
  transform: scale(0.88);
}
.associationlogos a.ada {
  width: 5.4em;
  height: 1.95em;
}
.associationlogos a.fda {
  width: 7.65em;
  height: 1.85em;
}
.associationlogos a.agd {
  width: 5.95em;
  height: 1.6em;
}
.associationlogos a.ald {
  width: 6.6em;
  height: 2.7em;
}
.associationlogos a img,
.associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* ==================================================================
	subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #fff;
  padding: 1.75em 0 1.45em;
  position: relative;
  overflow: hidden;
  background: #49dc49;
  z-index: 999;
}
#subnav .container {
  max-width: 64.5em;
}
@media only screen and (min-width: 1024px) {
  #subnav {
    text-align: left;
  }
}
#subnav p {
  line-height: 1.38461538;
  font-size: 0.65em;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #subnav p {
    max-width: 61.15384615em;
  }
}
#subnav a {
  color: #fff;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#subnav a:hover,
#subnav a.active {
  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.7em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3.5em 0 6em;
    /* midTab 768w */
  }
}
#bd .container {
  max-width: 64.5em;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    max-width: 39.75em;
    width: 60.22727273%;
    float: left;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.8;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0;
  background-color: #0579cc;
}
.home #bd * {
  color: #fff;
}
.home #bd a:hover {
  color: rgba(255, 255, 255, 0.75);
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 3.15em 0 2.6em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  .home #bd {
    background: none;
  }
}
.home #bd .container {
  max-width: 74.5em;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 41.525em;
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  .home #bd #content {
    background-color: #0579cc;
    padding: 4.65em 5.2em;
    margin-right: 0;
    /* desk 1300w */
  }
  .home #bd #content:before {
    content: '';
    position: absolute;
    right: 30em;
    top: 2.8em;
    width: 68em;
    height: 62.35em;
    background: url('../images/hc-swirl.png') center no-repeat;
    background-size: cover;
    z-index: -1;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content .content-text {
    /* desk 1300w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd .mod {
  border: 1.35em solid #fff;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.11);
  height: 19.45em;
  width: 100%;
  max-width: 31.65em;
  margin: 0 auto;
}
@media only screen and (min-width: 700px) {
  .home #bd .mod {
    width: 31.65em;
    height: 19.45em;
  }
}
.home #bd .mod iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .home #bd .mod {
    margin: 0;
    position: absolute;
    right: 38em;
    top: 11.25em;
  }
}
/* ==================================================================
	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 > div {
  font-size: 2.8em;
  color: #f2750f;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.68;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
    /* 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;
}

.card {
    position: relative;
    text-align: center;
    /*margin: auto;*/
    display: block;
    max-width: 260px;
}
.card .img-top {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    opacity:0;
}
.card:hover .img-top {
    opacity:1;
}


/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.15em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #f2750f;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.95;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #f2750f;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #49dc49;
}
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: 19.5em;
  margin: 0 auto 6%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 29.54545455%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #hide-stock:before {
    content: '';
    position: absolute;
    right: -50em;
    top: -11.85em;
    width: 61.05em;
    height: 47.2em;
    background: url('../images/swirl.png') center no-repeat;
    background-size: cover;
  }
}
.stock {
  width: 100%;
  position: relative;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.11);
  border: 0.75em solid #fff;
}
/* ===============================================
	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 - */
/* ===============================================
	spot03 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
/* five across */
.spot03 {
  text-align: center;
  padding: 2.45em 0 4em;
  margin: 0;
  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: 2vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 700px) {
  .spot03 {
    font-size: 1.5vw;
    /* custom 979w */
  }
}
@media only screen and (min-width: 1305px) {
  .spot03 {
    font-size: inherit;
  }
}
.spot03 .mod {
  display: inline-block;
  vertical-align: top;
}
.spot03 .cycle-slideshow {
  display: none;
}
@media only screen and (min-width: 700px) {
  .spot03 .cycle-slideshow {
    display: inline-block;
    width: 39.6em;
    height: 38.65em;
    border-right: 1em solid #f5d70e;
  }
  .spot03 .cycle-slideshow .cycle-slide {
    height: 100%;
    width: 100%;
  }
  .spot03 .cycle-slideshow img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.spot03 .spotpager {
  margin-top: 1.75em;
}
.spot03 .spotpager:before {
  content: '';
  position: absolute;
  right: -40em;
  top: 0;
  width: 61.05em;
  height: 47.2em;
  background: url('../images/swirl.png') center no-repeat;
  background-size: cover;
  z-index: 0;
}
.spot03 .spotpager a {
  display: block;
  background-color: #49dc49;
  width: 24.7em;
  height: 4.15em;
  line-height: 4.15;
  margin-bottom: 0.35em;
  color: #fff;
  z-index: 10;
  position: relative;
  text-align: left;
  transition: 0.25s ease-in-out;
}
.spot03 .spotpager a:nth-of-type(1) {
  background-color: #49dc49;
}
.spot03 .spotpager a:nth-of-type(1) span img {
  width: 1.1em;
  height: 1.85em;
}
.spot03 .spotpager a:nth-of-type(2) {
  background-color: #f2750f;
}
.spot03 .spotpager a:nth-of-type(2) span img {
  width: 2.1em;
  height: 1.55em;
}
.spot03 .spotpager a:nth-of-type(3) {
  background-color: #0579cc;
}
.spot03 .spotpager a:nth-of-type(3) span img {
  width: 1.6em;
  height: 2.4em;
}
.spot03 .spotpager a:nth-of-type(4) {
  background-color: #ffe506;
}
.spot03 .spotpager a:nth-of-type(4) span img {
  width: 2.55em;
  height: 1.85em;
}
.spot03 .spotpager a:nth-of-type(5) {
  background-color: #49dc49;
}
.spot03 .spotpager a:nth-of-type(5) span img {
  width: 1.25em;
  height: 2.7em;
}
.spot03 .spotpager a:nth-of-type(6) {
  background-color: #f2750f;
}
.spot03 .spotpager a:nth-of-type(6) span img {
  width: 2em;
  height: 2.15em;
}
.spot03 .spotpager a:nth-of-type(7) {
  background-color: #0579cc;
}
.spot03 .spotpager a:nth-of-type(7) span img {
  width: 1.35em;
  height: 2.3em;
}
.spot03 .spotpager a:nth-of-type(8) {
  background-color: #ffe506;
}
.spot03 .spotpager a:nth-of-type(8) span img {
  width: 1.9em;
  height: 2.45em;
}
.spot03 .spotpager a span {
  display: inline-block;
  width: 4.15em;
  height: 4.15em;
  border-right: 0.1em solid #fff;
  vertical-align: top;
  position: relative;
}
.spot03 .spotpager a span img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s ease-in-out;
}
.spot03 .spotpager a h3 {
  line-height: 3.55;
  font-weight: 900;
  font-size: 1.15em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-left: 1.02173913em;
  display: inline-block;
  vertical-align: top;
  transition: 0.25s ease-in-out;
}
.spot03 .spotpager a:hover {
  transform: scale(0.9) translateX(-1.37em);
}
/* ===============================================
	spot04 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot04 {
  padding: 3em 0;
  background: url('../images/spotlight/spot04.jpg') center no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 780px) {
  .spot04 {
    padding: 3.8em 0 3.95em;
    /* midTab 768w */
  }
}
.spot04 .cycle-slideshow {
  color: #49dc49;
  width: 100%;
  margin: 0 auto;
  display: block;
  background: url('../images/spotlight/spot0401.png') center no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 780px) {
  .spot04 .cycle-slideshow {
    width: 50.45em;
    height: 19.5em;
    margin-bottom: -2.4em;
  }
}
.spot04 .cycle-slide {
  width: 100%;
  padding: 5.1em 2em 4em;
  display: block;
  transition: color 0.33s ease-in-out;
}
@media only screen and (min-width: 780px) {
  .spot04 .cycle-slide {
    padding: 5.1em 9.5em 0;
  }
}
.spot04 .testimony {
  color: #000;
  line-height: 1.30434783;
  font-size: 1.15em;
  display: block;
}
.spot04 .testifier {
  line-height: 3.38888889;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  color: #0579cc;
  letter-spacing: 0.2em;
  margin-top: 0.55em;
}
.spot04 .controls {
  line-height: 0;
  width: 96%;
  max-width: 64.15em;
  margin: 1em auto;
  display: none;
}
@media only screen and (min-width: 870px) {
  .spot04 .controls {
    display: block;
    text-align: right;
    margin: 0 auto;
    position: absolute;
    top: 50.5%;
    right: 0;
    left: 0;
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot04 .controls > a {
  line-height: 2.8;
  font-size: 2.8em;
  text-align: center;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot04 .controls > a:hover {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.5;
}
.spot04 .controls > a.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 768px) {
  .spot04 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot04 .spotbtn {
  display: inline-block;
  color: #fff;
  font-size: 0.65em;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background-color: #f2750f;
  line-height: 3.53846154;
  height: 3.53846154;
  width: 10.76923077em;
  position: relative;
  margin: 0 0.15em;
  transition: 0.25s ease-in-out;
}
.spot04 .spotbtn:hover {
  transform: scale(1.1);
}
.spot04 div.spotbtn {
  width: 17.76923077em;
  background-color: #49dc49;
}
.spot04 div.spotbtn a {
  color: #fff;
  display: inline-block;
  transition: 0.25s ease-in-out;
}
.spot04 div.spotbtn a:hover {
  transform: scale(1.2);
}
.spot04 div.spotbtn a:nth-of-type(1) {
  margin-right: 0.3em;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: url('../images/footer/back.png') center no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-top: 0.4em;
  z-index: 999;
}
@media only screen and (min-width: 980px) {
  #ft {
    padding: 4em 0;
  }
}
#ft a {
  color: #000;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #49dc49;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 5em 0 0.5em;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
}
@media only screen and (min-width: 980px) {
  #location {
    padding: 7.9em 0 0.5em;
    height: 20.5em;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1em;
  display: block;
}
#location .logo img {
  width: 21.05em;
}
@media only screen and (min-width: 980px) {
  #location .logo {
    margin: 0.65em 3.3em 1em -4em;
    display: inline-block;
    vertical-align: top;
  }
}
#location .mod {
  text-align: center;
}
@media only screen and (min-width: 980px) {
  #location .mod {
    vertical-align: top;
    display: inline-block;
    text-align: left;
  }
}
#location .phone {
  line-height: 1.33333333;
  font-size: 0.75em;
  display: inline-block;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #000;
  margin-right: 0.9em;
}
#location .phone span {
  color: #f2750f;
}
#location .address {
  line-height: 1.33333333;
  font-size: 0.75em;
  margin: 0 auto;
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
#location .address span {
  color: #49dc49;
}
#location .spotbtn {
  line-height: 4.41666667;
  font-size: 0.6em;
  width: 19em;
  height: 4.25em;
  letter-spacing: 0.16em;
  margin: 2.4em 0.4em 0;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  background-color: #0579cc;
  color: #fff;
  text-align: center;
  transition: 0.25s ease-in-out;
}
#location .spotbtn:hover {
  color: #fff;
  transform: scale(1.1);
}
#location .spotbtn.sb2 {
  background-color: #ffdf06;
}
#location .spotbtn.sb3 {
  background-color: #49dc49;
}
@media only screen and (min-width: 980px) {
  #location .spotbtn {
    margin: 2.4em 0.4em 0 0;
  }
}
#location .util {
  display: block;
  margin-top: 8.4em;
  color: #b0afaf;
  font-size: 0.6em;
}
#location .util a {
  color: #b0afaf;
  display: inline-block;
}
#location .util a:hover {
  color: black;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #b0afaf;
  padding: 2em 0;
  margin: 0;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  #links {
    height: 4.9em;
    padding: 1.2em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 4.16666667;
  font-size: 0.6em;
  margin-bottom: 2em;
}
#links .util a {
  color: #b0afaf;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #49dc49;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.66666667em;
  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 {
  line-height: 1.28205128;
  font-size: 1.95em;
  color: #f2750f;
  display: inline-block;
  vertical-align: top;
  transition: 0.25s ease-in-out;
}
a#backtotop:hover {
  color: #49dc49;
  transform: scale(1.3);
}
/*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: #d4d4d4;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #f2750f;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: small;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #f2750f;
  border: 1px solid #f2750f;
  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: #49dc49;
  background-color: #49dc49;
}
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;
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 768px (768px) and up
=============================================== */
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .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;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^='inovation-chart-'] {
    display: inline-block;
    max-width: 50%;
  }
  .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%;
    float: none;
    display: inline-block;
    margin: 2%;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  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: 100%;
    height: 3.05em;
    margin-top: 0.3em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.05em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 0.275em 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] {
    width: 8.61538462em;
    line-height: 3.84615385;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
    padding: 0 0;
  }
  #main-nav ul li a[id]:after {
    top: 0em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    z-index: 2800;
    display: none;
    position: absolute;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.25em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 1.92307692;
    text-align: left;
    white-space: nowrap;
    height: 1.92307692em;
    width: 100%;
    padding: 0 1.92307692em;
    float: left;
    transition-duration: 0s;
  }
  #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 {
    left: 0em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: 0em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
