/* ===============================================
	.less VERSION 2.0
	
	parker-christopher
	
	Sesame Communications - (c) 2021
	Written by: Vita Stillion
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/*Colors */
/* color */
/* light blue || hyperlinks */
/* pink */
/* purple */
/* bright green */
/* yellow */
/* white */
/* black */
/* ===============================================
					fonts
=============================================== */
.fontBal {
  font-family: 'Balsamiq Sans', cursive;
}
.fontBar {
  font-family: 'Barlow Condensed', sans-serif;
}
.fontBarC {
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.fontJ {
  font-family: 'Jost', 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;
}
.ob {
  font-style: oblique;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.supp {
  font-variant: small-caps;
}
.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;
}
.near {
  clear: none;
}
.wimp {
  width: 100%!important;
}
.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;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.hide {
  display: none;
}
.obliterate {
  line-height: 0;
  font-size: 0;
  text-indent: -999em;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  display: none;
  visibility: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  display: inline-block;
  float: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.trans {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.fade {
  opacity: 0.5;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.vertical-align-nul {
  position: relative;
  top: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 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);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
}
.trans {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.trans2 {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* Body */
/* line-height from main content area on psd proof */
/*font size from main content area on psd proof (wil affect .content-area only) */
body,
input,
select,
textarea {
  font-family: 'Jost', sans-serif;
}
/*for font declaration that will affect most site elements*/
form button {
  font-family: 'Jost', sans-serif;
}
/*for font declaration that will affect button elements only*/
body {
  line-height: 1.57894737;
  font-size: 15px;
  /*do not change - this informs factor for em units on mobile devices*/
  color: #2e3032;
  background: #fff;
  overflow: hidden;
  /* body content font-size declared below */
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /*do not change - this is factor for em units*/
    /* desk 1300w */
  }
}
/* Links */
a {
  text-decoration: none;
}
#content a {
  color: #00aeef;
  text-decoration: none;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: none;
  color: #2e3032;
}
/* h family || hfam */
h1,
h2:not(.topic),
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  color: #00aeef;
  margin: 0 0 0.8em;
  text-rendering: auto;
}
h1 {
  text-align: center;
  font-size: 8vw;
  text-transform: uppercase;
  margin-bottom: 0.1em;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 3.5em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  h1 {
    text-align: left;
  }
}
h1 .trait {
  display: block;
}
h1 .trait.top {
  font-family: 'Balsamiq Sans', cursive;
  line-height: 1.2;
  font-size: 0.54545455em;
  text-transform: none;
  color: #fcf681;
  text-shadow: none;
}
.home h1 {
  line-height: 0.94;
  text-align: left;
  margin: 0;
  color: #ffffff;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.32);
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 2.75em;
    /* mintab 480w */
  }
}
h2:not(.topic) {
  font-size: 1.84210526em;
  color: #2e3192;
}
h3 {
  font-size: 1.57894737em;
  color: #00aeef;
}
h4 {
  font-size: 1.42105263em;
}
h5 {
  font-size: 1.31578947em;
}
h6 {
  font-size: 1.21052632em;
}
/*containers*/
.container {
  max-width: 50em;
}
/*global override*/
.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: url(../images/icons/bullet.svg);
}
.home #content ul li {
  list-style-image: url(../images/icons/bullet2.svg);
}
/* ==================================================================
	top
=================================================================== */
#masthead {
  width: 100%;
  padding: 0 0 1em;
  background-color: #fff;
  position: relative;
  z-index: 3000;
  border-bottom: solid 1px #d1d0cf;
}
@media only screen and (min-width: 41.625em) {
  #masthead {
    padding: 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #masthead {
    font-size: 1.1em;
    width: 100%;
    padding: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    box-shadow: none;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
}
@media only screen and (min-width: 64em) {
  #masthead .container {
    max-width: none;
    max-width: 96%;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
/*MAIN-NAV STYLE => 'standard' (common) or 'fullmob' for mobile nav through desktop don't forget to alter breakpoint on local.js*/
/*height and width and lineHeight of .trigger */
/*main nav item font size from psd proof*/
/*main nav item font size from psd proof*/
#main-nav {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(46, 49, 146, 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: #2e3192;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  position: relative;
  display: inline-block;
  top: -0.2em;
  /*adjust positioning of navicon from top*/
}
#main-nav .trigger .navicon span {
  height: 2px;
  width: 100%;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
  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: #00aeef;
  box-shadow: -1px 1px 0 rgba(0, 174, 239, 0.4);
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #00aeef;
  box-shadow: none;
  /*should contrast against ul background color declared below*/
}
#main-nav .open .trigger .navicon span {
  /*background:@color1;*/
}
#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) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.10526316;
  font-size: 0.95em;
  text-transform: uppercase;
  color: #2e3192;
  width: auto;
  height: 2.10526316em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition: color 0.33s ease;
  transition: color 0.33s ease;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #00aeef;
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background-color: rgba(0, 174, 239, 0.95);
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  text-transform: none;
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  margin: 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: #2e3192;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  -webkit-animation: flyinmobilenav 0.4s 1;
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  -webkit-animation: none;
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  -webkit-transition-duration: 0.33s;
  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;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #00aeef;
  /*color should reflect color of phone number in header -*/
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 41.625em) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 41.625em) and (max-width: 63.9375em) {
  #hd .container {
    padding: 0.66em 55px 0.66em 0;
    /*55 clears trigger from main nav*/
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #hd .container {
    padding: 0.7em 0 0.1em;
    /* midTab 1024w */
  }
}
/* logo  */
#logo {
  /*logo width from psd proof*/
  /*logo height from psd proof*/
  line-height: 0;
  font-size: 0.7em;
  /* adjust font size to increase/decrease logo dimensions for mobile */
  width: 12.95em;
  margin: 0.5em auto 1em 2%;
  display: block;
  position: relative;
  /*img{ width: @logowidth/20em; }change to match your proof*/
}
@media only screen and (min-width: 41.625em) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 1em 0 0;
    /*adjust margin to position logo precisely on 1024 and up*/
    padding: 0;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 12.95em;
  height: 4.15em;
}
/* contact-info */
#contactinfo {
  text-align: center;
  width: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 401;
  /*	address and phone must be declared individually as the phone ceases to be a link after 48em device width*/
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    margin: 0;
    /* mintab 480w */
  }
}
#contactinfo .phone {
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95em;
  color: #ffffff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 2;
  width: 7.36842105em;
  height: 2.31578947em;
  line-height: 2.31578947;
}
#contactinfo .phone:after {
  -webkit-transform: rotate(1deg);
  transform: rotate(1deg);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  content: '';
  background: #ec008c;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#contactinfo a {
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #ffffff;
}
#contactinfo a:hover:after {
  background: #00aeef;
}
/* utility-nav */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0.3em 0 0 -0.7em;
  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 a {
  font-weight: 500;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75em;
  text-align: center;
  color: #fff;
  padding: 0;
  height: 2.8em;
  line-height: 2.8;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 2;
  width: 7.66666667em;
  -webkit-transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a:after {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  content: '';
  background: #b2d234;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#utilitynav a:hover {
  color: #fff;
}
#utilitynav a:hover:after {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
  background: #00aeef;
}
/* ==================================================================
	slideshow
=================================================================== */
/*SLIDESHOW style => video or classic*/
/*height of slideshow from psd proof - applies to classic slideshow only*/
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 55vw;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
  /*uncomment below for parallax video - dont't forget to uncomment local.js parallax code*/
  /*			@media only screen and (min-width: 81.25em) {
			  display: block;
			  position:fixed;
			  top:0;
			  left:0;
			}
*/
}
/* ==================================================================
	callouts || aka bd-callouts
=================================================================== */
#callouts {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background-color: #f6f3ef;
  background-image: url(../images/bg-callouts.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 410;
}

@media only screen and (max-width: 29.9375em) {
  #callouts {
    font-size: 2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  #callouts {
    font-size: 1.5vw;
    padding: 3.55em 0 3.8em;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  #callouts {
    background-size: auto;
    font-size: inherit;
    /* custom opt-out 980oo */
  }
}
@media only screen and (min-width: 125em) {
  #callouts {
    background-size: 100% auto;
  }
}
#callouts a {
  color: #00aeef;
  width: 13.85em;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  #callouts a {
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #callouts a {
    margin: 0 2.1em;
    /* midTab 768w */
  }
}
#callouts a:hover {
  z-index: 400;
}
#callouts a:hover svg .decoration {
  opacity: 1;
}
#callouts a svg {
  width: 13.85em;
  height: 14.65em;
  display: block;
}
#callouts a svg .decoration {
  -webkit-transition: opacity 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out;
}
#callouts a svg .border {
  display: none;
}
#callouts a h2.topic {
  font-family: 'Balsamiq Sans', cursive;
  font-weight: 700;
  line-height: 0.95;
  font-size: 1.25em;
  text-transform: none;
  color: currentcolor;
  width: 100%;
  display: block;
  margin-top: 1.3em;
}
#callouts a h2.topic .trait {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  color: #2e3192;
}
/* ==================================================================
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to "side oriented" [=
=================================================================== */
/*SUBNAV ORIENTATION => side or top*/
/* TOP ORIENTED */
#subnav {
  /*space between links and bottom of section*/
  text-align: center;
  color: #363636;
  padding: 2.5em 0;
  position: relative;
  overflow: hidden;
  background: url(../images/bg-subtop.jpg) no-repeat center center;
  background-size: cover;
}


 body.layout-section-our-team #subnav {background-image: url(../images/header/team.jpg);}
 body.layout-section-new-patients #subnav {background-image: url(../images/header/patients.jpg);}
 body.layout-section-pediatric-dentistry #subnav {background-image: url(../images/header/pediatric.jpg);}
 body.layout-section-treatment-options #subnav {background-image: url(../images/header/treatment.jpg);}
 body.layout-section-contact #subnav {background-image: url(../images/header/contact.jpg);}



@media only screen and (min-width: 48em) {
  #subnav {
    text-align: left;
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav {
    padding: 18.95em 0 2.95em;
    margin-top: 117px;
    /* desk 1300w */
  }
}
#subnav .container {
  max-width: 55em;
  width: 90%!important;
}
#subnav p {
  line-height: 1.53333333;
  font-size: 0.75em;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 64em) {
  #subnav p {
    max-width: 610px;
  }
}
#subnav a {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  color: #fff;
  text-shadow: 1px 1px 2px #333;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
@media only screen and (min-width: 64em) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #00aeef;
  text-decoration: none;
}
#subnav .icon {
  display: none;
  color: #b2d234;
  font-size: 0.66666667em;
}
@media only screen and (min-width: 64em) {
  #subnav .icon {
    margin: 0 1em;
    display: inline-block;
    vertical-align: middle;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content || aka #home-content and .interior-content
=================================================================== */
/*pixel width of interior bd container on proof*/
/*pixel width of interior content area on proof*/
#bd {
  padding: 3em 0 5em;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 5em 0 3.5em;
    /*adjust padding to match proof*/
    /* midTab 780w */
  }
}
#bd .container {
  max-width: 55em;
  width: 90%!important;
}
#bd .animatron {
  line-height: 0;
  width: 100%;
  display: block;
  position: static;
  pointer-events: none;
}
#bd .animatron.sub .s1 {
  margin-right: 35.9em;
  top: 12.7em;
  right: 50%;
}
#bd .animatron.sub .s1 svg {
  width: 7em;
  height: 6.65915em;
  -webkit-transform: rotate(-32deg);
  transform: rotate(-32deg);
}
#bd .animatron.sub .s2 {
  margin-left: 28.25em;
  top: -1.75em;
  left: 50%;
}
#bd .animatron.sub .s2 svg {
  width: 7em;
  height: 6.65915em;
  -webkit-transform: rotate(-9deg);
  transform: rotate(-9deg);
}
#bd .animatron.sub .s3 {
  margin-left: 36.55em;
  top: 6.85em;
  left: 50%;
}
#bd .animatron.sub .s3 svg {
  width: 5.5em;
  height: 5.352em;
  -webkit-transform: rotate(-32deg);
  transform: rotate(-32deg);
}
#bd .animatron > div {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  -webkit-transition: top 0.66s ease-in-out, bottom 0.66s ease-in-out, margin 0.66s ease-in-out;
  transition: top 0.66s ease-in-out, bottom 0.66s ease-in-out, margin 0.66s ease-in-out;
  -webkit-filter: drop-shadow(0.15em 0.15em 0.15em rgba(0, 0, 0, 0.35));
  filter: drop-shadow(0.15em 0.15em 0.15em rgba(0, 0, 0, 0.35));
}
#bd .animatron > div .star {
  color: #faee82;
  -webkit-transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out;
  transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 30.5em;
    width: 55.45454545%;
    float: left;
    /* midTab 780w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  /*for content area w/ text smaller (or larger) than 20px*/
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
/*pixel width of hp bd container on proof*/
/*pixel width of hp content area on proof*/
.home #bd {
  z-index: 430;
  background: #28adb1 url(../images/bg-hp.jpg) no-repeat left center;
  background-size: cover;
  /*@media only screen and (min-width: 81.25em) {  
		background:#28adb1 url(../images/bg-hp.jpg) no-repeat left center;
		background-size:cover;
	}*/
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 5.58em 0;
    background-position: center center;
    /* midTab 780w */
  }
}
.home #bd .container {
  max-width: 55em;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 26em;
    /*max-width:none;*/
    float: none;
    margin-left: 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
.home #bd #content strong {
  color: #fcf681;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25em;
}
.home #bd #content .content-text {
  color: #ffffff;
  /*uncomment for multiple columns on hp content*/
  /*for content area text larger or smaller than 20px*/
}
@media only screen and (min-width: 48em) {
  .home #bd #content .content-text {
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
.home #bd #content .content-text a {
  color: #fcf681;
}
.home #bd #content .content-text a:hover {
  color: #2e3192;
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd .animatron .s1 {
  margin: 0 31.35em 0 0;
  top: 10em;
  right: 50%;
}
.home #bd .animatron .s1 svg {
  width: 10em;
  height: 9.51335em;
  -webkit-transform: rotate(18deg);
  transform: rotate(18deg);
}
.home #bd .animatron .s2 {
  margin: 0 37.7em 0 0;
  top: 23.95em;
  right: 50%;
}
.home #bd .animatron .s2 svg {
  width: 7em;
  height: 6.65915em;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}
.home #bd .animatron .s3 {
  margin: 0 0 0 28.25em;
  top: -1.35em;
  left: 50%;
}
.home #bd .animatron .s3 svg {
  width: 10em;
  height: 9.51335em;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
.home #bd .animatron .s4 {
  margin: 0 0 0 41em;
  top: 6.3em;
  left: 50%;
}
.home #bd .animatron .s4 svg {
  width: 4.6em;
  height: 4.375835em;
}
.home #bd .animatron .s5 {
  margin: 0 0 0 2.15em;
  bottom: -0.7em;
  left: 50%;
}
.home #bd .animatron .s5 svg {
  width: 8.7em;
  height: 8.1em;
  -webkit-transform: rotate(-24deg);
  transform: rotate(-24deg);
}
@media only screen and (min-width: 81.25em) {
  .home #bd.ready .animatron .s1 {
    margin: 0;
    top: 50%;
  }
  .home #bd.ready .animatron .s1 svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0;
  }
  .home #bd.ready .animatron .s2 {
    margin: 0;
    top: 50%;
  }
  .home #bd.ready .animatron .s2 svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0;
  }
  .home #bd.ready .animatron .s3 {
    margin: 0;
    top: 50%;
  }
  .home #bd.ready .animatron .s3 svg {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0;
  }
  .home #bd.ready .animatron .s4 {
    margin: 0;
    top: 50%;
  }
  .home #bd.ready .animatron .s4 svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);


    opacity: 0;
  }
  .home #bd.ready .animatron .s5 {
    margin: 0;
    bottom: 50%;
  }
  .home #bd.ready .animatron .s5 svg {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0;
  }
}
/* ===============================================
				custom content 
=============================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
.mediaslider .cycle-slideshow .cycle-slide {
  padding: 0 5%;
}
.mediaslider .cycle-slideshow > div {
  font-size: 2.8em;
  color: #00aeef;
  position: absolute;
  top: 50%;
  z-index: 900;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  -webkit-transition: transform 0.35s ease, opacity 0.35s ease;
  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 {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.68;
}
/* comment line below if patient login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* 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: 81.25em) {
  #coronavirus-update {
    font-size: 1em;
    /*returns coronavirus tab to default dimensions*/
    /* desk 1300w */
  }
}
/*meet the team page classes for individual and full team images*/
.staff {
  /*use instead of (and not in conjunction with) img-right*/
  width: 45%;
  max-width: 10em;
  /*200px*/
  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 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.2;
  font-size: 1.84210526em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #2e3192;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.95;
  font-size: 1.05263158em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #2e3032;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #2e3032;
}
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: 48em) {
  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 from psd proof*/
#sidebar {
  width: 100%;
  max-width: 21.15em;
  margin: 0 auto 6%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 38.45454545%;
    margin: 0 0 1em;
    /*adjust to make space for #hide-stock element*/
    display: block;
    float: right;
    clear: right;
    /* midTab 768w */
  }
}
/*sitepics*/
#hide-stock {
  position: relative;
}
.static {
  width: 100%;
  position: relative;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.32);
  border: solid 0.75em #ffffff;
}
.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;
  /* hides hide-stock element on blog page preventing conflict with search widget*/
}
/* END SIDEBAR - */
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
}
.spotlight > div {
  position: relative;
}
.spotlight .spot01 {
  /*COMMON GENERAL INFORMATION SPOTLIGHT SECTION*/
  color: #2e3032;
  background-color: #ffffff;
  padding: 3em 0 0;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  .spotlight .spot01 {
    padding: 5.35em 0 5.9em;
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot01 {
    font-size: inherit;
  }
}
.spotlight .spot01 .decoration {
  width: 90%;
  max-width: 30.45em;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffffff;
  border: solid 0.5em #ffffff;
  box-shadow: 7px 13px 18px rgba(0, 0, 0, 0.32);
}
@media only screen and (max-width: 41.5625em) {
  .spotlight .spot01 .decoration {
    margin: 0 0 1em;
    /*margin bottom while decoration and mod are stacked*/
    /* custom opt-out 666oo */
  }
}
@media only screen and (min-width: 41.625em) {
  .spotlight .spot01 .decoration {
    margin: 0 3.4em 0 0;
    /*margin left when decoeration and mod line up horizontally*/
    /* custom 666w */
  }
}
@media only screen and (min-width: 48em) {
  .spotlight .spot01 .decoration {
    width: 30.45em;
  }
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot01 .decoration {
    margin-left: -4.9em;
  }
}
.spotlight .spot01 .mod {
  width: 96%;
  /* if you add a container element to the html this should change to 100%*/
  max-width: 25.2em;
  /*value 504 is measured width of informational element from psd*/
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 48em) {
  .spotlight .spot01 .mod {
    text-align: left;
    width: auto;
    /* midTab 768w */
  }
}
.spotlight .spot01 h2.topic {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  color: #2e3192;
  margin: 0 0 0.3em;
}
.spotlight .spot01 h2.topic span.trait {
  display: block;
  text-transform: none;
  font-family: 'Balsamiq Sans', cursive;
  color: #00aeef;
  font-size: 0.61666667em;
}
.spotlight .spot01 .info {
  color: #2e3032;
  line-height: 1.68421053;
  font-size: 0.95em;
  margin: 0 0 3.86666667em;
}
.spotlight .spot01 .txt {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #2e3032;
  display: none;
  text-align: justify;
}
@media only screen and (min-width: 64em) {
  .spotlight .spot01 .txt {
    display: inline;
  }
}
.spotlight .spot01 .spotbtn {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-size: 2em;
  color: #ec008c;
  display: inline;
  vertical-align: baseline;
  position: relative;
  z-index: 420;
  margin-left: 0.2em;
}
@media only screen and (min-width: 64em) {
  .spotlight .spot01 .spotbtn {
    font-size: 1.05263158em;
  }
}
.spotlight .spot01 .spotbtn:hover {
  color: #b2d234;
}
.spotlight .spot01 .ornament {
  width: 50.55em;
  height: 27.55em;
  margin: 0 0 0 -65em;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 43%;
  left: 50%;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 61.1875em) {
  .spotlight .spot01 .ornament {
    margin: 0;
    left: -10em;
  }
}
.spotlight .spot01 .ornament path {
  -webkit-transition: transform 0.66s ease-in-out, fill 0.66s ease-in-out;
  transition: transform 0.66s ease-in-out, fill 0.66s ease-in-out;
}
.spotlight .spot01 .ornament path.yul {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.spotlight .spot01 .ornament path.grun {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot01.ready .ornament path.yul {
    fill: #00aeef;
    -webkit-transform: translate3d(0, 100%, 0) rotate(0deg);
    transform: translate3d(0, 100%, 0) rotate(0deg);
  }
  .spotlight .spot01.ready .ornament path.grun {
    fill: #ec008c;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-200deg);
    transform: translate3d(-100%, 0, 0) rotate(-200deg);
  }
}
.spotlight .spot02 {
  /*COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE*/
  font-size: 3vw;
  padding: 3em 0;
  background: #ffffff url(../images/spotlight/spot02bg.png) no-repeat 50% 0%;
  background-attachment: fixed;
}
@media only screen and (min-width: 30em) {
  .spotlight .spot02 {
    font-size: 2.3vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 41.625em) {
  .spotlight .spot02 {
    font-size: inherit;
    /* custom 666w */
  }
}
@media only screen and (min-width: 48em) {
  .spotlight .spot02 {
    padding: 3.9em 0 4.75em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot02 {
    background-size: auto auto;
    /* desktop 1300w */
  }
}
.spotlight .spot02 h2 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.75em;
  color: #ffffff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.81);
  margin-bottom: 1em;
  position: relative;
  width: 13.05714286em;
  height: 2.57142857em;
  line-height: 2.57142857;
  z-index: 2;
}
.spotlight .spot02 h2:after {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  content: '';
  background: #ec008c;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.spotlight .spot02 a {
  color: #ffffff;
  width: 35%;
  margin: 5%;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .spotlight .spot02 a {
    width: 25%;
    max-width: 14.5em;
    margin: 0;
  }
}
.spotlight .spot02 a:hover {
  z-index: 400;
}
.spotlight .spot02 a:hover .ornament {
  -webkit-animation: wobble-hor-bottom 0.8s both;
  animation: wobble-hor-bottom 0.8s both;
}
.spotlight .spot02 a .ornament {
  width: 7.5em;
  height: 8.15em;
  margin: 0 auto 1em;
  display: block;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  -webkit-transform-style: preserve3d;
  transform-style: preserve3d;
}
.spotlight .spot02 a h3.topic {
  line-height: 0.9;
  font-size: 1.185em;
  font-family: 'Balsamiq Sans', cursive;
  text-align: center;
  font-weight: 400;
  text-transform: none;
  color: currentcolor;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.81);
  display: block;
  margin: 0;
}
.spotlight .spot02 a h3.topic .trait {
  line-height: 0.96184675;
  font-size: 1.31603376em;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  display: block;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #ft {
    padding: 5em 0 0;
  }
}
@media only screen and (min-width: 81.25em) and (max-width: 124.9375em) {
  #ft {
    font-size: 1.2vw;
    font-size: min(1.2vw, 1em);
  }
}
@media only screen and (min-width: 125em) {
  #ft {
    font-size: inherit;
  }
}
#ft a {
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  color: #fff;
  -webkit-transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
#ft a:hover {
  color: #2e3032;
}
#ft a.facebook {
  color: #ec008c;
}
#ft a.google {
  color: #f9a01b;
}
#ft a.instagram {
  color: #fff200;
}
#ft a.youtube {
  color: #b2d234;
}
#ft a.twitter {
  color: #2e3192;
}
#ft a.blog {
  color: #6f72c4;
}
#ft a.healthgrades {
  color: #00aeef;
}
#ft .ornament {
  width: 40.15em;
  margin: 3.15em 0 0 -1em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 81.1875em) {
  #ft .ornament {
    display: none;
  }
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 3em 0;
  margin-left: auto;
  margin-right: auto;
  background: #f2f2f2 url(../images/footer/map.jpg) no-repeat center center;
  background-size: cover;
  display: block;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  #location {
    font-size: 20px;
  }
}
@media only screen and (min-width: 48em) {
  #location {
    width: 42.6em;
    height: 28.45em;
  }
}
@media only screen and (min-width: 81.25em) {
  #location {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 -6.5em;
  }
}
#location .mod {
  text-align: left;
  width: 100%;
  max-width: 9.05em;
  border-radius: 0.4em;
  padding: 1.1em 1.4em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #00aeef;
  position: relative;
  -webkit-filter: drop-shadow(0.2em 0.2em 0.5em rgba(0, 0, 0, 0.21));
  filter: drop-shadow(0.2em 0.2em 0.5em rgba(0, 0, 0, 0.21));
}
@media only screen and (min-width: 48em) {
  #location .mod {
    position: absolute;
    top: 9.1em;
    left: 18.55em;
  }
}
#location .angle {
  width: 2.35em;
  height: 1.7755em;
  display: block;
  position: absolute;
  right: 1.3em;
  bottom: -1.6em;
}
@media only screen and (max-width: 47.9375em) {
  #location .angle {
    display: none;
  }
}
#location .logo {
  /*logo width from psd proof*/
  /*logo height from psd proof*/
  line-height: 0;
  text-align: center;
  margin: 0 auto 1em;
  display: block;
  /*img{ width:@logow/20em; }*/
}
#location .logo svg {
  width: 12em;
  height: 4em;
}
#location .logo svg path {
  fill: #fff;
}
#location .address {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.24013529;
  font-size: 0.887em;
  margin: 0 auto;
  display: block;
}
#location .address .mark {
  width: 2.02931229em;
  height: 2.19842165em;
  display: block;
  position: absolute;
  right: 0.33821871em;
  bottom: -2.81848929em;
}
@media only screen and (max-width: 47.9375em) {
  #location .address .mark {
    display: none;
  }
}
#location .phone {
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.472909;
  font-size: 0.9505em;
  display: block;
}
/* socialmedia || aka social-icons */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 0;
  display: block;
  position: relative;
  z-index: 300;
}
@media only screen and (min-width: 81.25em) {
  .socialmedia {
    position: absolute;
    bottom: 1.5em;
    left: 50%;
    width: auto;
    margin: 0 0 0 3.2em;
    /* desk 1300w */
  }
}
.socialmedia a {
  /*social-icon height (and often width) from psd proof*/
  /*social-icon font-size from psd proof*/
  line-height: 1.84615385;
  font-size: 1.3em;
  /*deafault 15 - value may change per psd proof*/
  height: 1.84615385em;
  width: 1.84615385em;
  margin: 0 2px 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
@media only screen and (min-width: 64em) {
  .socialmedia a {
    margin: 0 0 3px 0;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  z-index: 400;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
		footer || aka ft-design-credit
=================================================================== */
/*height of area formerly known as ft-design-cred*/
/*based off 'sesame communications | sitemap' font-size*/
/*based on backtotop height - normally 30, may be larger*/
#links {
  text-align: center;
  color: #b2d234;
  padding: 2em 0;
  margin: 0;
  background-color: #fff;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 7.65em;
    padding: 3.075em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  /*contains sesame-link and sitemap link*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
  /*backToTop*/
}
@media only screen and (min-width: 30em) {
  #links .util {
    /*floats util element to left on tablet and up */
    line-height: 2.5;
    width: auto;
    margin: 0;
    /* mintab 480w */
  }
}
#links .util a {
  color: #2e3192;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #00aeef;
}
#links .util a#backtotop {
  color: #ec008c;
  display: block;
}
@media only screen and (min-width: 48em) {
  #links .util a#backtotop {
    display: inline-block;
  }
}
#links .util a#backtotop:hover {
  color: #b2d234;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .hide-mob {
  display: none;
}
@media only screen and (min-width: 48em) {
  #links .util .hide-mob {
    display: inline-block;
  }
}
#links .util .divider {
  margin: 0 0.3em;
  /*adjust margin to increase space on left and right */
}
/*sesame link*/
/*if sesame icon is monochromatic (one color) change this value to true*/
/*sesame-icon width*/
/*sesame-icon height*/
/*right margin between icon and letter "w"*/
a#sesame-link .sesameicon {
  width: 2em;
  height: 1.66666667em;
  margin-right: 0.66666667em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  -webkit-transition: fill 0.33s ease-in-out;
  transition: fill 0.33s ease-in-out;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
/*either 100% or the pixel value from the proof without the 'px'*/
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666666;
  border: none;
  display: block;
}
/*success message*/
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #00aeef;
}
/* Form Buttons */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;

  background-color: #00aeef;
  border: 1px solid #00aeef;
  -webkit-transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
  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: #2e3032;
  background-color: #2e3032;
}
form p {
  height: auto;
}
/* massive 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;
}

.member{display:inline-block;width: 48%;text-align:center;}
.member h2{text-align:center; margin-bottom:6px; font-size:1em;}
.member h3{text-align:center;font-size:1em;}

/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
	
	.member{width: 32%;}
	
  /* 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%; }*/
  /*for pages with stock photo in the content area*/
  /*table.office-hours{ max-width:50%; }*/
  /*for pages with stock photo in the content area*/
  p.before-after-text,
  .before-after-box {
    /*for sites subnav in sidebar*/
  }
  .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 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /* ==================================================================
	main-nav
=================================================================== */
  /*global override for hamburger on desktop layouts. Don't forget to adjust the responsive nav breakpoint on local.js as well.*/
  /* ==================================================================
	main-nav
=================================================================== */
  /*float of main nav - left, right, or none*/
  /*height of main nav from proof  - from top of main-link to top of drop down*/
  /*distance between top level main-nav links*/
  /*height of links in dropdown nav*/
  /*offset distance of drop menu from left side of main-nav item on psd*/
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.8em;
    margin: 0;
    position: relative;
    top: auto;
    z-index: 2900;
    /*change to 3000 if nav appears visually above header elements*/
    box-shadow: none;
    /*makes outline from trigger disappear - no longer needed*/
    /*background:none;*/
    /* reverses text-align for flyout on last nav item*/
    /* special drop locations */
  }
  #main-nav .container {
    background: none;
    padding: 0;
    /*max-width:none;*/
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 2.8em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.8em 0 0;
    background: none;
    position: relative;
    vertical-align: top;
    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: 2.94736842;
    text-align: center;
    text-decoration: none;
    height: 100%;
    width: auto;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 3000;
  }
  #main-nav ul li a[id]:after {
    bottom: 0.84210526em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 0.85em 0;
    margin: 0;
    z-index: 2800;
    position: absolute;
    display: none;
    border-top: solid 1px #d1d0cf;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.35em;
    margin: 0;
    padding: 0;
    background: none;
    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.5em;
    margin: 0;
    float: left;
    position: relative;
    -webkit-transition-duration: 0s;
    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: -1.05em;
    /*top:37px;*/
    /*rarely used - should only 'pull' drop menu upwards so as not to create white space between nav and drop menu.*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -1.05em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@-webkit-keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2021-8-24 13:50:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation wobble-hor-bottom
 * ----------------------------------------
 */
@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.wobble-hor-bottom {
  -webkit-animation: wobble-hor-bottom 0.8s both;
  animation: wobble-hor-bottom 0.8s both;
}
