/* 
 Site Manager Version: 11.2.0
 Buildkit Version: 11.2.0
 Date Created: November 2022
 Account: barlow-jeffrey2
 Written by: vita stillion
 Sesame Communications - All rights reserved. C2022
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
.fontL {
  font-family: "Lato", sans-serif;
}
.fontG {
  font-family: "Gabriela", 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: "Lato", sans-serif;
}
form button {
  font-family: "Lato", sans-serif;
}
body {
  font-size: 15px;
  color: #003f6c;
  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: #09b5c3;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #003f6c;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  color: #006cb5;
  margin: 0 0 1.5em;
  text-rendering: auto;
}
header.sub {
  background: black;
}
@media only screen and (max-width: 767px) {
  header.sub {
    padding: 4em 0 6em;
    /* midTab 768oo */
  }
}
header.sub .hero {
  display: block;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  header.sub .hero {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    opacity: 0.5;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  header.sub .hero {
    width: 100%;
    position: relative;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  header.sub .hero {
    max-width: none;
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
header.sub .ol {
  max-width: none;
  width: 2000px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 420;
  pointer-events: none;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  header.sub .ol {
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 2000px) {
  header.sub .ol {
    width: 100%;
    /* custom 2000w */
  }
}
.sub h1 {
  font-size: 10vw;
  font-family: "Gabriela", serif;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  width: 96%;
  max-width: 26.32653061em;
  margin: 0 auto;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 2.45em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 768px) {
  .sub h1 {
    text-align: left;
    position: absolute;
    right: 0;
    bottom: 2.65306122em;
    left: 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) { 
  .sub h1 {
    padding-right:8em;
  }
	/* desk 1300w */
}
.home h1 {
  font-family: "Gabriela", serif;
  font-size: 10vw;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 1.7em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 768px) {
  .home h1 {
    white-space: nowrap;
    /* midTab 768w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.18em;
  line-height: 1.85185185;
  font-size: 0.79411765em;
  text-transform: uppercase;
  color: #003f6c;
}
h2:not(.topic) {
  font-size: 1.2em;
  color: #006cb5;
}
h3:not(.topic) {
  font-size: 1.1em;
  color: #09b5c3;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.95em;
}
h6 {
  font-size: 0.9em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 64.5em;
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*="-after"] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0 0 1em;
  background-color: #003f6c;
  position: relative;
  z-index: 3000;
  /* socialmedia */
}
@media only screen and (min-width: 736px) {
  #masthead {
    padding: 0;
    /* midTab 736w */
  }
}
@media only screen and (min-width: 1024px) {
  #masthead {
    width: 100%;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    background-color: rgba(0, 63, 108, 0.9);
    position: fixed;
    top: 0;
    z-index: 3000;
    transition: background-color 0.33s ease-in-out;
    /* desk 1300w */
  }
  #masthead.ready {
    background-color: rgba(0, 63, 108, 0);
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  #masthead .container {
    max-width: calc(100% - 3em);
    /* maxTab 1024w */
  }
}
#masthead .socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 0;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 1023px) {
  #masthead .socialmedia {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 100%;
    right: 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #masthead .socialmedia {
    width: 1.75em;
    margin: 0;
    display: block;
    position: absolute;
    right: 0.7em;
    top: 12.7em;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead .socialmedia {
    position: fixed;
    /* desk 1300w */
  }
}
#masthead .socialmedia a {
  line-height: 1.94444444;
  font-size: 0.9em;
  color: #006cb5;
  height: 1.94444444em;
  width: 1.94444444em;
  border-radius: 50%;
  margin: 0 0.61111111em 0 0;
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out, background 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  #masthead .socialmedia a {
    margin: 0 0 11.5px 0;
    /* maxTab 1024w */
  }
}
#masthead .socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
#masthead .socialmedia a:hover {
  color: #fff;
  background: #F9DE16;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
#masthead .socialmedia a:after {
  content: '';
  width: 2.38888889em;
  height: 2.38888889em;
  background: url(../images/icons/social.svg) no-repeat center center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
}
#masthead .socialmedia a .icon {
  position: relative;
}
#masthead .socialmedia a .border {
  width: 100%;
  max-width: 1.75em;
  height: 100%;
  max-height: 1.75em;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}



.socialmedia a.active .pseudolink {
  opacity: 1;
  pointer-events: auto;
}
.socialmedia a.active .pseudolink.first {
  transform: translate3d(0, 180%, 0);
  transition-delay: 0s;
}
.socialmedia a.active .pseudolink.second {
  transform: translate3d(0, 310%, 0);
  transition-delay: 0.165s;
}
.socialmedia a.active .pseudolink.third {
  transform: translate3d(0, 440%, 0);
  transition-delay: 0.33s;
}
.socialmedia a.active .pseudolink[class]:hover {
  z-index: 400;
}
.socialmedia a.active .pseudolink[class]:hover:after {
  background-color: rgba(62, 62, 62, 0.9);
  transform: translate3d(0, 0, 0) scaleX(1.1) scaleY(1.3);
}
.socialmedia a .pseudolink {
  letter-spacing: 0.06em;
  line-height: 2.5;
  font-size: 0.66666667em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 5;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.33s ease-out, opacity 0.3s ease-in-out, background-color 0.66s ease;
  pointer-events: none;
}
.socialmedia a .pseudolink:after {
  content: '';
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: -0.2em;
  right: -1.5em;
  bottom: -0.2em;
  left: -1.5em;
  border-radius: 1em;
  z-index: -1;
  transition: background-color 0.33s ease-in-out, transform 0.33s ease-in-out;
}
.socialmedia a .pseudolink.first:After {
  background-color: #006cb5;
}
.socialmedia a .pseudolink.second:After {
  background-color: #006cb5;
}


/* ==================================================================
	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(9, 181, 195, 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: #09b5c3;
  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: #09b5c3;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #006cb5;
}
#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: rgba(0, 63, 108, 0.9);
  background-image: -moz-linear-gradient(top, rgba(0, 63, 108, 0) 0%, rgba(0, 63, 108, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 63, 108, 0) 0%, rgba(0, 63, 108, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 63, 108, 0) 0%, rgba(0, 63, 108, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  font-family: "Gabriela", serif;
  line-height: 2.5;
  font-size: 0.8em;
  text-transform: uppercase;
  color: white;
  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: 1.6875em;
  height: 3px;
  background-color: currentcolor;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 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: #09b5c3;
  text-decoration: none;
  transition-duration: 0.15s;
}
@media only screen and (min-width: 1300px) {
  #main-nav ul li.open > a[id],
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    /* desk 1300w */
  }
  .ready #main-nav ul li.open > a[id],
  .ready #main-nav ul li.active > a[id],
  .ready #main-nav ul li:hover > a[id] {
    color: #fff;
  }
}
#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: #09b5c3;
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  font-family: "Lato", sans-serif;
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  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: #003f6c;
  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: white;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 736px) {
  #hd {
    text-align: right;
    /* custom 736w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 736px) and (max-width: 1023px) {
  #hd .container {
    padding: 1.6em 55px 1.6em 0;
    /* range 736w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    padding: 2em 0 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 21.8em;
  margin: 0.75em auto;
  display: block;
  position: relative;
}
@media only screen and (min-width: 735px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* midTab 735w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 0.3em;
    left: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) {
  #logo {
    transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
    /* desk 1300w */
  }
  .ready #logo {
    opacity: 0;
    pointer-events: none;
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 21.8em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  line-height: 0;
  font-family: "Gabriela", serif;
  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.5em 0 0;
    /* mintab 480w */
  }
}
#contactinfo .loc {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4em;
}
#contactinfo .icon {
  color: #fade1b;
  margin-right: 0.2em;
}
#contactinfo .address {
  line-height: 2.16666667;
  font-size: 0.6em;
  color: white;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .phone {
  line-height: 2.16666667;
  font-size: 0.6em;
  color: white;
  display: inline-block;
  vertical-align: top;
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #fade1b;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n + 2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  font-family: "Gabriela", serif;
  line-height: 2.16666667;
  font-size: 0.6em;
  text-align: center;
  text-transform: none;
  color: #fff;
  height: 2.16666667em;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a .icon {
  line-height: inherit;
  font-size: inherit;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav a.appointmentrequest {
  width: 13em;
  background: #006cb5;
}
#utilitynav a.patient-login {
  width: 9.33333333em;
  background: #09b5c3;
}
#utilitynav a.patient-login:before {
  content: '\f2bd';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 2px;
  display: inline-block;
}
#utilitynav a:hover {
  color: #fade1b;
  background-color: #003f6c;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  color: #fff;
  min-height: 55vw;
  background: #000;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 1023px) {
  #slideshow {
    font-size: min(3.5vw, 20px);
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow .welcomevid {
  opacity: 0.8;
  width: 300%;
  margin-left: -75%;
  vertical-align: top;
  aspect-ratio: 16 / 9;
}

@media only screen and (min-width: 768px) {
  #slideshow .welcomevid {
    width: 100%;
    margin-left: 0;
  }
}


#slideshow .ssoverlay {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 2em;
  z-index: 420;
  
    top: 50%;
    transform: translate3d(0, -50%, 0);
    bottom: auto;
}
@media only screen and (min-width: 768px) {
  #slideshow .ssoverlay {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    bottom: auto;
    /* midTab 768w */
  }
}

  #slideshow .ssoverlay:before {
    content: '';
    width: 28.45em;
    height: 16.275em;
    margin: 0 auto 2.75em;
    background: url(../images/slideshow/avatar.png) no-repeat center center;
    background-size: cover;
    display: block;
  }

@media only screen and (min-width: 1300px) {
  #slideshow .ssoverlay {
    /* desk 1300w */
  }
}
#slideshow .ssoverlay .links {
  display: block;
}
#slideshow .ssoverlay .links .spotbtn {
  letter-spacing: 0.1em;
  line-height: 1.26666667;
  font-size: 0.75em;
  text-transform: uppercase;
  color: #fff;
  height: 3.86666667em;
  padding: 0.66666667em 0 0;
  margin: 0 0.76666667em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
#slideshow .ssoverlay .links .spotbtn:hover {
  color: #000;
  opacity: 0.8;
}
#slideshow .ssoverlay .links .spotbtn:hover:after {
  background-color: #ffffff;
}
#slideshow .ssoverlay .links .spotbtn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
#slideshow .ssoverlay .links .spotbtn.read {
  width: 9.06666667em;
}
#slideshow .ssoverlay .links .spotbtn.form {
  width: 13.13333333em;
}
#slideshow .ol {
  width: 100%;
  max-width: none;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow .ol {
    width: 2000px;
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 2000px) {
  #slideshow .ol {
    bottom: -1px;
    /* custom 2000w */
  }
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot01 || MEET DOCTORS SECTION
=============================================== */
.spot01 {
  color: #fff;
  padding: 2.9em 0;
  background: #09b5c3 url(../images/spotlight/spot01bg.jpg) no-repeat 50% 0;
  background-size: cover;
}
@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: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 666px) {
  .spot01 {
    font-size: min(1.4vw, 1em);
    /* custom 666w */
  }
}
@media only screen and (min-width: 979px) {
  .spot01 {
    font-size: inherit;
    padding: 2.9em 0 4.4em;
    /* custom 979w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .spot01 {
    background-size: 100em auto;
    /* range 1300w - 1999oo */
  }
}
.spot01 .decoration {
  width: 80%;
  max-width: 23.25em;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 665px) {
  .spot01 .decoration {
    margin: 0 0 -1em;
    /* custom opt-out 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot01 .decoration {
    margin: 0 -2.8em 0 0;
    /* custom 666w */
  }
}
.spot01 .mod {
  width: 96%;
  max-width: 26.9em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
  background: #0a3b60;
  outline: solid 1px #003f6c;
  outline-offset: 0.45em;
}
@media only screen and (min-width: 666px) {
  .spot01 .mod {
    vertical-align: top;
    margin-top: 5.8em;
  }
}
@media only screen and (min-width: 768px) {
  .spot01 .mod {
    text-align: left;
    padding: 5.3em 4em 5.8em 4em;
    /* midTab 768w */
  }
}
.spot01 h2.topic {
  font-family: "Gabriela", serif;
  line-height: 1;
  font-size: 2.25em;
  font-weight: 400;
  text-transform: none;
  color: #fff;
  margin: 0 0 0.45em;
}
.spot01 .info {
  text-align: justify;
  line-height: 2.35714286;
  font-size: 0.7em;
  margin: 0 0 5.6em;

    font-size: 0.9em;
    margin: 0 0 1.6em;
  display: none;
}
@media only screen and (min-width: 1300px) {
  .spot01 .info {
    display: block;
    /* desk 1300w */
  }
}
.spot01 .spotbtn {
  letter-spacing: 0.1em;
  line-height: 2.61538462;
  font-size: 0.65em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: #fade1b;
  width: 13.15384615em;
  height: 2.61538462em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, background 0.33s ease-in-out;
}
.spot01 .spotbtn:nth-of-type(2) {
  width: 13.92307692em;
  margin-left: 0.4em;
}
.spot01 .spotbtn:hover {
  background: transparent;
  transition-duration: 0.33s;
}
.spot01 .spotbtn:hover:after {
  opacity: 1;
}
.spot01 .spotbtn:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-color 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 0;
}
/* ===============================================
	spot02 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot02 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: white;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot02 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    /* mintab 480w */
  }
}
@media only screen and (min-width: 979px) {
  .spot02 {
    font-size: inherit;
    padding: 4em 0 2.2em;
    /* custom 979w */
  }
}
.spot02 a {
  color: #09b5c3;
  max-width: 15em;
  padding: 0 0 2.9em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 767px) {
  .spot02 a {
    width: 44%;
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot02 a {
    width: 15em;
    margin: 0 0.75em;
    /* midTab 768w */
  }
}
.spot02 a:after {
  content: '';
  width: 4.1em;
  height: 4.1em;
  border-radius: 50%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  bottom: -0.25em;
  left: 0;
  z-index: 3;
}
.spot02 a:hover {
  z-index: 400;
}
.spot02 a:hover .decoration {
  background-color: #006cb5;
  transition-duration: 0.66s;
  transition-delay: 0.125s;
}
.spot02 a:hover .decoration img[src$="jpg"] {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
  opacity: 0.5;
  transform: translate3d(0, 0, 0) scale(0.99);
}
.spot02 a:hover .decoration img[src$="png"] {
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  background-color: rgba(255, 255, 255, 0);
  opacity: 1;
  transition-duration: 0.66s, 0.66s, 0.66s, 0.33s, 0.33s;
}
.spot02 a:hover .mod {
  transform: translate3d(0, -361.53846154%, 0);
}
.spot02 a:hover .icon {
  transform: translate3d(0, 0, 0) rotateY(360deg);
}
.spot02 a:hover .icon path {
  fill: #fff;
}
.spot02 a:hover h2.topic span,
.spot02 a:hover h2.topic span[class] {
  color: #fff;
  transform: translate3d(calc( 6.25em - 50% ), 0, 0);
}
.spot02 a .decoration {
  width: 100%;
  background-color: #ffffff;
  outline: 2px solid #fff;
  outline-offset: -1px;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  backface-visibility: hidden;
  transition: background-color 0.33s ease-in-out;
}
.spot02 a .decoration img[src$="jpg"] {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  transition: -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out, transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot02 a .decoration img[src$="png"] {
  width: 103.33333333%;
  max-width: none;
  margin: -1.66666667%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-filter: blur(1em);
  filter: blur(1em);
  transform: translate3d(0, 0, 0) scale(1.08);
  transition: -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out, transform 0.33s ease-in-out, opacity 0.33s ease-in-out, background-color 0.33s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.spot02 a .mod {
  text-align: left;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 420;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot02 a .icon {
  width: 14.66666667%;
  max-width: 2.2em;
  height: auto;
  max-height: 2.2em;
  margin: 0 auto;
  transform: translate3d(-245%, 126%, 0);
  display: block;
  position: absolute;
  right: 0;
  bottom: 3.05em;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot02 a .icon path {
  transition: fill 0.33s ease-in-out;
}
.spot02 a h2.topic {
  line-height: 1.08333333;
  font-size: 1.2em;
  font-weight: 700;
  text-align: left;
  color: currentcolor;
  width: auto;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
.spot02 a h2.topic span {
  display: block;
  float: left;
  clear: left;
  position: relative;
  transform: translate3d(3.375em, 0, 0);
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
.spot02 a h2.topic span.trait {
  text-transform: uppercase;
  color: #006cb5;
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 0 0 3em;
  background: #ffffff url(../images/bdsub.png) no-repeat 0 0;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 2.5em 0 6em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #bd {
    background-position: 50% 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  #bd {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
#bd .container {
  max-width: 64.5em;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    max-width: 39.75em;
    width: 61.62790698%;
    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: #d7edf8 url(../images/bghp.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 5.5em 0 4em;
    /* midTab 768w */
  }
}
.home #bd .ol {
  width: 100%;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
 #textvid {
  display: none;
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .home #bd .ol {
    max-width: none;
    width: 100em;
    /* range 1300w - 1999oo */
  }

   #textvid {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }


}
.home #bd .ol.top {
  top: -5px;
}
.home #bd .ol.bot {
  bottom: 0;
}
.home #bd .container {
  max-width: 43.95em;
  background: rgba(255, 255, 255, 0.9);
  outline: solid 1px white;
  outline-offset: 0.9em;
  padding: 3.3em 1em;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 31.5em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    /* desk 1300w */
  }
}
@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 */
  }
}
/* ==================================================================
	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: #09b5c3;
  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: scale(1.44);
  opacity: 0.68;
}
/* before-and-after */
.before-and-after #content {
  text-align: center;
}
.before-and-after #content h2,
.before-and-after #content h3 {
  text-align: center;
}
/* comment line below if patient-login is live and legit */
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
  /* midTab 768w */
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  .common-procedures #content h2[id] {
    scroll-margin-top: 10em;
  }
  /* desk 1300w */
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.125;
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #006cb5;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.8;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #003f6c;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #006cb5;
}
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: 110%;
  margin: 0 -5% 3em;
  display: block;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 23.25581395%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) { 
	#sidebar{
	margin-top:-11em;
	}
/* desk 1300w */
}

/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
  width: 100%;
  max-width: 15em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  #hide-stock {
    margin-bottom: 1em;
    display: block;
    order: 1;
    /* midTab 768w */
  }
}
.stock {
  width: 100%;
  position: relative;
  border: solid 0.25em #ffffff;
  outline: solid 2px #003f6c;
  outline-offset: 1.1em;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
body[class^="meet-the-"] #hide-stock,
body[class^="meet-our-"] #hide-stock,
.meet-the-doctor #hide-stock,
body[class^="meet-dr-"] #hide-stock,
body[class^="meet-doctor-"] #hide-stock {
  display: block;
}
body[class~="blog"] #hide-stock {
  display: none;
}
/* ==================================================================
	SUBNAV || SIDE ORIENTED
=================================================================== */
#subnav {
  color: #006cb5;
  margin: 0 0 6%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #subnav {
    padding: 1em 10% 2em;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 768px) {
  #subnav {
    padding: 3em 1em 4em;
    order: 2;
    /* midTab 768w */
  }
}
#subnav h2.topic {
  line-height: 1.66666667;
  font-size: 1.05em;
  text-align: inherit;
  font-weight: 400;
  text-transform: none;
  color: #006cb5;
  height: 1.66666667em;
  width: 100%;
  margin: 0 auto 2em;
  display: block;
  position: relative;
  z-index: 400;
  font-family: "Gabriela", serif;
}
#subnav p {
  line-height: 1.38461538;
  font-size: 0.65em;
  text-transform: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  text-align: center;
}
#subnav a {
  color: #006cb5;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  margin: 0.2em 0.8em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #subnav a {
    margin: 0.2em 0;
    float: left;
    clear: left;
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav a {
    margin: 0;
    /* desk 1300w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #09b5c3;
  text-decoration: none;
}
/* END SIDEBAR - */
/* ===============================================
	spot03 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot03 {
  font-size: 3.5vw;
  padding: 3em 0;
  background: #f8f8f8 url(../images/spotlight/spot03bg.png) no-repeat 50% 0;
  background-size: 100% auto;
}
@media only screen and (min-width: 480px) {
  .spot03 {
    font-size: inherit;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 768px) {
  .spot03 {
    padding: 5em 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  .spot03 {
    padding: 7.8em 0 6em;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  .spot03 {
    background-size: auto auto;
    /* range 1300w - 1999oo */
  }
}
.spot03 h2.topic {
  line-height: 1;
  font-size: 2.3em;
  text-transform: noo;
  font-weight: 700;
  font-family: "Gabriela", serif;
  color: #006cb5;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.7em;
  width: 90%;
}
@media only screen and (min-width: 1300px) {
  .spot03 h2.topic {
    display: inline-block;
    vertical-align: top;
    width: auto;
    text-align: right;
    margin: -0.25em 0.7em 0 -3em;
    /* desk 1300w */
  }
}
.spot03 .cycle-slideshow {
  color: #003f6c;
  width: 90%;
  max-width: 39.5em;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 1300px) {
  .spot03 .cycle-slideshow {
    display: inline-block;
    vertical-align: top;
    width: auto;
    text-align: left;
    /* desk 1300w */
  }
}
.spot03 .cycle-slideshow:hover {
  color: #006cb9;
}
.spot03 .cycle-slide {
  width: 100%;
  display: block;
  transition: color 0.33s ease-in-out;
}
.spot03 .testimony {
  font-weight: 700;
  line-height: 1.56521739;
  font-size: 1.15em;
  display: block;
}
.spot03 .testifier {
  letter-spacing: 0.12em;
  line-height: 2;
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  color: #006cb5;
  margin-top: 0.4em;
}
.spot03 .spotpager span {
  color: #09b5c3;
  font-size: 2.4em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 .spotpager span.cycle-pager-active {
  color: #006cb5;
}
@media only screen and (min-width: 1300px) {
  .spot03 .spotpager span {
    display: block;
    line-height: 0.5;
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .spotpager {
    position: absolute;
    top: 8.2em;
    left: 50%;
    margin-left: 31em;
    width: 1em;
    max-width: 64.5em;
    /* desk 1300w */
  }
}
.spot03 .links {
  width: 100%;
  max-width: 64.4em;
  margin: 1em auto 0;
  display: block;
}
@media only screen and (min-width: 1300px) {
  .spot03 .links {
    text-align: left;
    padding-left: 16.5em;
    margin-top: 2.8em;
    /* desk 1300w */
  }
}
.spot03 .links .spotbtn {
  letter-spacing: 0.1em;
  line-height: 2.46666667;
  font-size: 0.75em;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  color: #006cb5;
  height: 2.46666667em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, background 0.33s ease-in-out;
  padding: 0 1.4em;
}
@media only screen and (min-width: 768px) {
  .spot03 .links .spotbtn {
    margin-right: 1em;
    /* midTab 768w */
  }
}
.spot03 .links .spotbtn:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #006cb5;
  z-index: -1;
  transition: background-color 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 1;
}
.spot03 .links .spotbtn a {
  display: inline-block;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  color: #006cb5;
}
.spot03 .links .spotbtn a:hover {
  color: #09b5c3;
  transform: translate3d(0, 0, 0) scale(1.44);
}
.spot03 .links .spotbtn .txt {
  margin-right: 0.2em;
}
.spot03 .spotbtn01:hover {
  color: white;
  background: #09b5c3;
}
.spot03 .spotbtn01:hover:after {
  opacity: 0;
}
/* ===============================================
	spot04 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot04 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: #ffffff url(../images/spotlight/spot04bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 410;
  /* socialmedia */
}
@media only screen and (max-width: 479px) {
  .spot04 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot04 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 979px) {
  .spot04 {
    font-size: inherit;
    padding: 3.7em 0;
    /* custom 979w */
  }
}
.spot04 .mod {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  width: 90%;
  max-width: 64.5em;
}
.spot04 h2.topic {
  font-family: "Gabriela", serif;
  font-weight: 400;
  line-height: 1;
  font-size: 2.3em;
  text-transform: none;
  color: #006cb5;
  width: 100%;
  display: block;
  margin-bottom: 0.3em;
}
.spot04 .socialmedia {

  line-height: 0;
  text-align: right;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 2.65em;
  position: relative;
  z-index: 300;
}
.spot04 .socialmedia a {
  line-height: 1;
  font-size: 1.75em;
  color: #006cb5;
  margin: 0 2px 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out, text-shadow 0.33s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .spot04 .socialmedia a {
    margin: 0 0.3em 11.5px 0;
    /* maxTab 1024w */
  }
}
.spot04 .socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.spot04 .socialmedia a:hover {
  color: #09b5c3;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
  text-shadow: 2px 2px 0 #006cb5;
}
.spot04 .socialmedia a svg {
  display: none;
}
.spot04 .socialmedia a .icon {
  position: relative;
}
.spot04 .fauxshow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  max-width: 67.5em;
}
.spot04 .fauxshow .cycle-slide {
  width: 100%;
  display: flex!important;
  justify-content: center;
}
.spot04 .fauxshow img {
  display: inline-block;
  padding: 0 0.75833333em;
  width: auto;
  max-width: 25%;
}
@media only screen and (max-width: 1023px) {
  .spot04 .fauxshow img {
    font-size: min(1.4vw, 1em);
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .spot04 .fauxshow img {
    /* midTab 1024w */
  }
}
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 2em 0;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .associationlogos {
    font-size: 2vw;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 768px) {
  .associationlogos {
    padding: 3.9em 0 0;
    font-size: 1.25vw;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  .associationlogos {
    font-size: inherit;
    /* maxTab 1024w */
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: top;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
  width: 10.45em;
}
@media only screen and (min-width: 768px) {
  .associationlogos a {
    margin: 0 1.8em;
    /* midTab 768w */
  }
}
.associationlogos a:hover {
  transform: scale(0.88);
  opacity: 0.5;
}
.associationlogos a.sao {
  margin: 0.9em 3em 0 1.5em;
}
.associationlogos a.fda {
  margin-top: 0.95em;
}
.associationlogos a.sao {
  margin-top: 0.9em;
}
.associationlogos a.ada {
  margin: 0.4em 0.4em 0 1.8em;
}
.associationlogos a.faao {
  margin: 1.72em;
}
.associationlogos a img {
  width: 100%;
  height: 100%;
  display: block;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #0a3b60;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 980px) and (max-width: 1299px) {
  #ft {
    font-size: 1.4vw;
    font-size: min(1.4vw, 1em);
    /* range 980w - 1300oo */
  }
}
#ft .ol {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #09b5c3;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 0;
  display: block;
  /* sesame link */
}
@media only screen and (max-width: 767px) {
  #location {
    padding: 2em 0;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location {
    height: 33.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    /* midTab 768w */
  }
}
#location .map {
  order: 2;
}
@media only screen and (max-width: 979px) {
  #location .map {
    display: none;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .map {
    width: auto;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    /* custom 980w */
  }
}
#location .mod {
  width: 100%;
  max-width: 17.5em;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #location .mod {
    width: 100%;
    margin: 2em auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .mod {
    width: 50%;
    max-width: 17.5em;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    /* midTab 768w */
  }
}
#location .mod.demo {
  text-align: right;
  padding-right: 2.65em;
  order: 1;
}
#location .mod.util {
  order: 3;
}
@media only screen and (min-width: 980px) {
  #location .mod.util {
    padding-top: 2em;
    /* custom 980w */
  }
}
#location .loc {
  margin-bottom: 2.15em;
}
@media only screen and (min-width: 980px) {
  #location .loc {
    /* custom 980w */
  }
  #location .loc.titus {
    margin-bottom: 0;
  }
}
#location .phone {
  line-height: 1.3125;
  font-size: 0.8em;
  padding: 0 2.125em 0 0;
  display: block;
}
#location .address {
  line-height: 1.3125;
  font-size: 0.8em;
  margin: 0 auto;
  display: block;
}
#location .address .street {
  display: inline-block;
  vertical-align: top;
}
#location .address .icon {
  line-height: 1.34038801;
  font-size: 1.771875em;
  width: 1.19929453em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
#location .address .icon:after {
  content: '';
  width: 0.42328042em;
  height: 0.42328042em;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0.31746032em;
  right: 0.17636684em;
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
#location .address .icon.misla:after {
  background-color: #fade1b;
}
#location .address .icon.titus:after {
  background-color: #fade1b;
}
#location .address .marker {
  line-height: 1;
  font-size: 4.125em;
  position: absolute;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 979px) {
  #location .address .marker {
    display: none;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location .address .marker {
    display: block;
    /* custom 980w */
  }
}
#location .address .marker.misla {
  color: #fade1b;
  margin-left: 0.71212121em;
  top: 7.27272727em;
  left: 50%;
}
#location .address .marker.titus {
  color: #fade1b;
  margin-right: 0.59090909em;
  top: 2.46969697em;
  right: 50%;
}
#location .address .marker:before {
  color: currentcolor;
}
#location .address .marker:after {
  content: "";
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:hover.misla {
  color: #006cb5;
}
#location .address:hover.misla .icon:after {
  background-color: #0a3b60;
}
#location .address:hover.titus {
  color: #fade1b;
}
#location .address:hover.titus .icon:after {
  background-color: #0a3b60;
}
#location .address:hover .marker {
  transform: translate3d(0, 0, 0) scale(2);
}
#location .doctor {
  line-height: 1.4;
  font-size: 1em;
  font-family: "Gabriela", serif;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
#location .spotbtn {
  letter-spacing: 0.1em;
  line-height: 2.4;
  font-size: 0.75em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  width: 16.66666667em;
  height: 2.4em;
  margin: 0 auto 0.3em;
  display: block;
  position: relative;
  z-index: 420;
  transition: color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
#location .spotbtn:hover {
  color: #0a3b60;
}
#location .spotbtn:hover:after {
  background-color: #ffffff;
}
#location .spotbtn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: -1;
  transition: background-color 0.33s ease-in-out;
}
#location .spotbtn.first {
  margin-top: 3.06666667em;
}
#location a#sesame-link {
  line-height: 2.5;
  font-size: 0.6em;
}
@media only screen and (max-width: 979px) {
  #location a#sesame-link {
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #location a#sesame-link {
    margin-right: 32.41666667em;
    position: absolute;
    right: 50%;
    bottom: 2.33333333em;
    /* custom 980w */
  }
}
#location a#sesame-link sup {
  font-size: 1.33em;
  top: 0.1em;
}
#location a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.33333333em;
  display: inline-block;
  vertical-align: middle;
}
#location a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #000;
  padding: 2em 0;
  margin: 0;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  #links {
    height: 3.5em;
    padding: 1em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2;
  font-size: 0.75em;
  margin-bottom: 2em;
}
#links .util a {
  font-family: "Gabriela", serif;
  color: #006bb7;
  transition: color 0.33s ease-in-out;
  margin: 0 0.4em;
}
#links .util a .icon {
  display: inline-block;
  margin-right: 0.2em;
  color: #09b5c3;
}
#links .util a:hover {
  color: #09b5c3;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #09b5c3;
}
/* ===============================================
	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: #09b5c3;
  border: 1px solid #09b5c3;
  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: #003f6c;
  background-color: #003f6c;
}
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.6em;
    margin-top: 0em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    opacity: 1;
    transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
    /*background:none;*/
  }

 
  #main-nav .container {
    background: none;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.6em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 .8em 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: 4.5;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:after {
    bottom: 1em;
  }
  #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.35em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 1.8;
    text-align: left;
    white-space: nowrap;
    height: 1.8em;
    width: 100%;
    padding: 0 1.8em;
    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;
  }
}

@media only screen and (min-width: 80em) {
 .ready #main-nav {
    opacity: 0;
  }
}