/* ===============================================
	.less VERSION 2.0
	
	client_name
	
	Sesame Communications - (c) 2021
	Written by: Builder_Name
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* color */
/* color || hyperlinks */
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Poppins', 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%);
}
/* ===============================================
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: 'Poppins', sans-serif;
}
form button {
  font-family: 'Poppins', sans-serif;
}
body {
  font-size: 15px;
  color: #262525;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #7bcad1;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  color: #00aced;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  font-weight: 300;
  text-align: left;
  color: #262626;
  margin: 0 0 0.8em;
  text-rendering: auto;
  text-transform: capitalize;
}
h1 {
  font-size: 10vw;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1 {
  text-align: left;
  margin: 0;
  font-weight: 300;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home h1:after {
  content: '';
  width: 2em;
  height: 2px;
  margin: 0.68em 0 0.74em;
  background: #7bcad1;
  display: block;
}
@media only screen and (max-width: 63.9375em) {
  .home h1 {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .home h1 {
    /* midTab 1024w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.8;
  font-size: 0.3em;
  text-transform: none;
}
.home h1 .trait.bottom {
  line-height: 1.5;
  font-size: 0.5em;
}
h2:not(.topic) {
  font-size: 1.89em;
}
h3:not(.topic) {
  font-size:1.67em;
}
h4 {
  font-size: 1.44em;
}
h5 {
  font-size:1.33em;
}
h6 {
  font-size: 1.22em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 50em;
}
/* ===============================================
	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: #fff;
  position: relative;
  z-index: 3000;
}
@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%;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 64em) {
  #masthead .container {
    max-width: 60em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(123, 202, 209, 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: #7bcad1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  position: relative;
  display: inline-block;
  top: -0.2em;
}
#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: #7bcad1;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #00aced;
}
#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.9);
  /*
		background-image: -moz-linear-gradient(top,  fade(#fff, 0) 0%, fade(#fff, 99%) 100%);
		background-image: -webkit-linear-gradient(top,  fade(#fff, 0) 0%,fade(#fff, 99%) 100%);
		background-image: linear-gradient(to bottom,  fade(#fff, 0) 0%,fade(#fff, 99%) 100%);
		*/
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.22;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #262626;
  width: auto;
  height: 2.22em;
  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: #00aced;
  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: rgba(0, 172, 237, 0.9);
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  line-height: 3.0769;
  font-size: 0.65em;
  color: #fff;
  width: 100%;
  letter-spacing: 0.05em;
  height: 3.0769;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-transform: capitalize;
}
#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: #0076c4;
  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: #7bcad1;
  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;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 64em) {
  #hd .container {
    padding: 0.76em 0 0.16em;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 10.65em;
  margin: 0.5em auto 0 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 35.5em) {
  #logo {
    margin: 0.5em auto 1em 2%;
  }
}
@media only screen and (min-width: 48em) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 0.56em;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 10.65em;
  height: 5.05em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: auto;
  margin: 0 0 0.7em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    margin: 0 0.7em 0 0;
    /* mintab 480w */
  }
}
#contactinfo .phone {
  line-height: 2.58;
  font-size: 0.76em;
  letter-spacing: 0.055em;
  font-weight: bold;
  color: #0076c4;
  display: inline-block;
  vertical-align: middle;
}
#contactinfo a {
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #00aced;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
  font-size: 13px;
}
@media only screen and (min-width: 30em) {
  #utilitynav {
    font-size: 15px;
  }
}
@media only screen and (min-width: 81.25em) {
  #utilitynav {
    font-size: 20px;
  }
}
#utilitynav .address {
  width: auto;
  line-height: 1;
  font-size: 0.65em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0;
  background: #7bcad1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 1px;
  padding: 1.1em 1.43em 1em;
  background-color: #929292;
  padding-right: 4.56em;
  padding-left: 1.54em;
  position: relative;
}
#utilitynav .address i {
  margin-left: 1em;
  position: absolute;
  height: 100%;
  width: 3.15em;
  right: 0;
  top: 0;
  padding: 1.1em 0 1em;
  background-color: rgba(0, 0, 0, 0.1);
}
#utilitynav .address .dropdown-content {
  display: none;
  position: absolute;
  top: 3.1em;
  left: 0;
  background-color: #929292;
  width: 30em;
  padding: 2em 1em 2em 3em;
  z-index: 100;
  text-align: left;
}
#utilitynav .address .dropdown-content a {
  display: block;
  text-align: left;
  color: #fff;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: transparent;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
#utilitynav .address .dropdown-content a span {
  display: block;
  font-weight: bold;
}
#utilitynav .address .dropdown-content a:hover {
  opacity: 0.7;
}
#utilitynav .address:hover .dropdown-content {
  display: block;
}
#utilitynav a {
  width: auto;
  line-height: 1;
  font-size: 0.65em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0;
  background: #7bcad1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 1px;
  padding: 1.1em 1.43em 1em;
  -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:hover {
  background-color: #00aced;
}
#utilitynav a.referfriend {
  background-color: #7bcad1;
}
#utilitynav a.referfriend:hover {
  background-color: rgba(123, 202, 209, 0.75);
}
#utilitynav a.appointmentrequest {
  background-color: #00aced;
}
#utilitynav a.appointmentrequest:hover {
  background-color: rgba(0, 172, 237, 0.75);
}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.socialmedia {
  line-height: 3;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 300;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.65em 0;
}
.socialmedia a {
  font-size: 0.65em;
  color: #01395e;
  margin: 0 2px 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -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;
}
@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 {
  color: #7bcad1;
  z-index: 400;
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
}
.socialmedia a .fa-instagram {
  font-weight: bold;
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 38.0952381vw;
  /* adjust to match slideshow height from proof */
  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:before {
    content: '';
    position: absolute;
    left: -25.7em;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 25.8em;
    height: 44em;
    background: url('../images/slideshowoverlay.png') center no-repeat;
    background-size: cover;
    z-index: 999;
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  #slideshow #home-slideshow {
    position: relative;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	spot01 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=================================================================== */
.spot01 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spot01 {
    font-size: 4vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 35em) {
  .spot01 {
    font-size: 2.5vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  .spot01 {
    font-size: 1.5vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot01 {
    font-size: inherit;
    padding: 4em 0;
    /* custom opt-out 979oo */
  }
}
@media only screen and (min-width: 64em) {
  .spot01:before {
    content: '';
    position: absolute;
    left: 0em;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 2.1em;
    height: 30.4em;
    background: url('../images/spot01overlay.png') center no-repeat;
    background-size: cover;
    z-index: 0;
  }
}
.spot01 a {
  background: linear-gradient(140deg, #0076c4, #73cdce);
  color: #fff;
  width: 19em;
  border-radius: 1em;
  padding: 3.5em 3em 2.25em;
  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) {
  .spot01 a {
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot01 a {
    margin: 0 0.75em;
    /* midTab 768w */
  }
}
.spot01 a:hover {
  transform: scale(1.05);
  z-index: 400;
}
.spot01 a .info {
  width: 100%;
  display: block;
}
.spot01 a .icon {
  width: 2em;
  margin: 0 auto 1em;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
.spot01 a h2.topic {
  line-height: 1;
  font-size: 2em;
  text-transform: capitalize;
  color: currentcolor;
  width: 100%;
  display: block;
  font-weight: 400;
  margin-bottom: 0;
}
.spot01 a h2.topic .trait {
  font-weight: 700;
  font-style: italic;
}
.spot01 a hr {
  background-color: currentColor;
  margin: 1.4em auto;
  width: 6em;
}
.spot01 a p {
  font-size: 0.8em;
  line-height: 1.28;
}
/* ===============================================
	spot02 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot02 {
  font-size: 2vw;
  padding: 3em 0;
  background-color: #00aced;
}
@media only screen and (min-width: 30em) {
  .spot02 {
    font-size: 2.3vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 41.625em) {
  .spot02 {
    font-size: inherit;
    /* custom 666w */
  }
}
@media only screen and (min-width: 48em) {
  .spot02 {
    padding: 4.1em 0 1.94em;
    /* midTab 768w */
  }
}
.spot02 h2 {
  color: #fff;
  font-size: 3em;
  line-height: 1.333em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0.31em;
}
.spot02 a {
  color: #fff;
  margin: 1.1%;
  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;
}
.spot02 a:hover {
  z-index: 400;
}
.spot02 a:hover .decoration {
  transform: translateY(-1em);
}
.spot02 a:hover h3.topic {
  transform: scale(1.1);
}
.spot02 a .decoration {
  width: 13.1em;
  height: 13.05em;
  border-radius: 50%;
  margin: 0 auto 0;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
}
.spot02 a h3.topic {
  line-height: 3.6;
  font-weight: 300;
  font-size: 1.4em;
  text-align: center;
  color: currentcolor;
  width: 100%;
  display: block;
  transition: 0.3s ease-in-out;
}
/* ==================================================================
	
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to 'side oriented' [=
	
=================================================================== */
#subnavimg {
  width: 100%;
  height: 18em;
  object-fit: cover;
  display: none;
}
@media only screen and (min-width: 48em) {
  #subnavimg {
    display: block;
  }
}
/* TOP ORIENTED */
#subnav {
  text-align: left;
  color: #00aced;
  padding: 2em 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(123, 202, 209, 0.2);
}
@media only screen and (min-width: 48em) {
  #subnav {
    background-color: transparent;
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav {
    padding-top: 2em;
    /* desk 1300w */
  }
}
#subnav .container {
  max-width: 60em;
}
#subnav p {
  line-height: 2.30769231;
  font-size: 0.65em;
  margin: 0;
  padding: 0;
  max-width: 55em;
}
#subnav a {
  color: #00aced;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 64em) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  position: absolute;
  bottom: 0.5em;
  left: 0;
  display: block;
  opacity: 0;
  -webkit-transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
#subnav a:hover,
#subnav a.active {
  color: #0076c4;
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 64em) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 0.5em 0 3.31em;
    /* midTab 780w */
  }
}
#bd .container {
  max-width: 60em;
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 38.5em;
    width: 64.16666667%;
    float: left;
    /* midTab 780w */
  }
}
#content .content-text {
  line-height: 1.9444;
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 0.9em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 4.85em 0 0.75em;
    /* midTab 780w */
  }
}
@media only screen and (min-width: 64em) {
  .home #bd:before {
    content: '';
    position: absolute;
    left: 26em;
    right: 0;
    top: 0em;
    margin: 0 auto;
    width: 26.05em;
    height: 74em;
    background: url('../images/star-line.png') center no-repeat;
    background-size: cover;
    z-index: 0;
  }
}
.home #bd .container {
  max-width: 60em;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 27.75em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .home #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
@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.9em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    /* midTab 768w */
  }
}
.home #bd #hcimages {
  display: none;
}
@media only screen and (min-width: 64em) {
  .home #bd #hcimages {
    display: block;
    position: absolute;
    right: -15em;
    top: -0.85em;
  }
  .home #bd #hcimages .hc1 {
    box-shadow: 3em 3em #929292;
    width: 42em;
  }
  .home #bd #hcimages .hc2 {
    display: inline-block;
    width: 17.3em;
    margin-top: -10em;
    margin-left: -2em;
    box-shadow: 2em 2em #7bcad1;
  }
  .home #bd #hcimages .hc2 img {
    margin-top: -0.6em;
  }
}
/* ==================================================================
	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: #7bcad1;
  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;
}
/* ===============================================
 		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: 48em) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 48em) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* comment line below if patient login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* 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: 81.25em) {
  #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.16666667;
  font-size: 1.66666667em;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #00aced;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.94444444;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #00aced;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #7bcad1;
}
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: 100%;
  max-width: 16.5em;
  margin: 0 auto 12%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 27.5%;
    margin: 0 1em 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  box-shadow: 1em 1em #7bcad1;
  position: relative;
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class^='meet-dr-'] #sidebar,
body[class^='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
	SUBNAV || aka subnav-outer || aka ipSub || SIDE ORIENTED
=================================================================== */
/* END SIDEBAR - */
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 0 0 2em 0;
  /* background: #fff; */
  position: relative;
  z-index: 999;
}
@media only screen and (max-width: 47.94em) {
  .associationlogos {
    font-size: 2vw;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 48em) {
  .associationlogos {
    font-size: 1.25vw;
    padding: 3.9em 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .associationlogos {
    font-size: inherit;
    /* maxTab 1024w */
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .associationlogos a {
    margin: 0 1.5em;
    /* midTab 768w */
  }
}
.associationlogos a:hover {
  -webkit-transform: scale(0.88);
  transform: scale(0.88);
}
.associationlogos a.itero {
  width: 5.6em;
  height: 2.5em;
}
.associationlogos a.diamond-invisalign {
  width: 5.55em;
  height: 7em;
}
.associationlogos a.invisalign {
  width: 12em;
  height: 2.95em;
}
.associationlogos a img,
.associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #eceae4 url(../images/footer/map.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 999;
}
@media only screen and (min-width: 81.25em) {
  #ft {
    background-size: auto 100%;
    /* desk 1300w */
  }
}
#ft a {
  color: #fff;
  -webkit-transition: opacity 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out;
}
#ft .markers {
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
  position: absolute;
  font-size: 0.65em;
}
#ft .markers .marker {
  color: #00aced;
  line-height: 1;
  left: 0;
  font-size: 3.84615385em;
  z-index: 400;
  -webkit-transition: transform 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  display: none;
}
@media only screen and (min-width: 48em) {
  #ft .markers .marker {
    display: block;
    /* midTab 768w */
  }
}
#ft .markers .marker:before {
  content: '\f041';
}
#ft .markers .marker:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0.28em;
  height: 0.2em;
  width: 0.2em;
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
}
#ft .markers:nth-of-type(2) .marker {
  color: #7bcad1;
}
#ft .markers:nth-of-type(3) .marker {
  color: #a6a8ab;
}
#ft .markers:nth-of-type(4) .marker {
  color: #0076c4;
}
#ft .markers:hover {
  transform: scale(1.5);
}
#ft #marker1 {
  top: 13.42em;
  margin-left: 2.28em;
}
#ft #marker2 {
  top: 8.3em;
  margin-left: 15.05em;
}
#ft #marker3 {
  top: 40.6em;
  margin-left: 14.7em;
}
#ft #marker4 {
  top: 38.2em;
  margin-left: 1.1em;
}
@media only screen and (min-width: 81.25em) {
  #ft #marker1 {
    top: 12.32em;
    margin-left: 2.08em;
  }
  #ft #marker2 {
    top: 7.6em;
    margin-left: 14.05em;
  }
  #ft #marker3 {
    top: 38.5em;
    margin-left: 13.98em;
  }
  #ft #marker4 {
    top: 36.3em;
    margin-left: 1em;
  }
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 3.65em 0 2.2em;
  background-color: #01395e;
  background-image: -moz-linear-gradient(140deg, #1b5892 0%, #0f3a5f 100%);
  background-image: -webkit-linear-gradient(140deg, #1b5892 0%, #0f3a5f 100%);
  background-image: -ms-linear-gradient(140deg, #1b5892 0%, #0f3a5f 100%);
  display: block;
}
@media only screen and (min-width: 48em) {
  #location {
    text-align: right;
    width: 32.15%;
    margin-right: 68.15%;
    padding-right: 1.1em;
    /* midTab 768w */
  }
}

#location .mod {
  text-align: left;
  width: 100%;
  max-width: 14em;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  #location .mod {
    margin: 0 auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location .mod {
    margin: 0 0 0 auto;
    /* midTab 768w */
  }
}
#location .logo {
  line-height: 0;
  text-align: left;
  margin: 0 auto 2.4em;
  display: block;
}
#location .logo svg {
  width: 12em;
  height: 4.715em;
}
#location .logo svg path {
  fill: #fff;
}
#location .address {
  line-height: 1.5385;
  font-size: 0.65em;
  font-weight: 400;
  margin: 2.3077em auto 2.3077em;
  padding-left: 4.61538em;
  display: block;
  letter-spacing: 0.05em;
  position: relative;
}
#location .address:before {
  content: '\f041';
  position: absolute;
  left: 0.04166em;
  top: -0.13em;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 3.846em;
  color: #7bcad1;
}
#location .address:after {
  content: '';
  position: absolute;
  left: 1.25em;
  top: 1.57em;
  height: 0.77em;
  width: 0.77em;
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
}
#location .address:nth-of-type(2):before {
  color: #00aced;
}
#location .address:nth-of-type(3):before {
  color: #7bcad1;
}
#location .address:nth-of-type(4):before {
  color: #a6a8ab;
}
#location .address:nth-of-type(5):before {
  color: #0076c4;
}
#location .address:nth-of-type(2) .marker {
  margin-left: 80%;
  margin-top: -3.283em;
}
#location .address:hover:hover {
  opacity: 0.75;
}
#location .address:hover .marker {
  -webkit-transform: scale(2);
  transform: scale(2);
}
#location .phone {
  line-height: 0.8;
  font-size: 1.25em;
  display: block;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 2.15em;
}
/* ==================================================================
		#links || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #929292;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 5em;
    padding: 1.6em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
  display: inline-block;
}
@media only screen and (min-width: 30em) {
  #links .util {
    line-height: 1.5;
    /* mintab 480w */
  }
}
#links .util a {
  color: #fff;
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out;
}
#links .util a:hover {
  opacity: 0.7;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.3em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.58333333em;
  height: 1.33333333em;
  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;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  display: inline-block;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 30em) {
  #btt {
    /* mintab 480w */
  }
}
a#backtotop {
  color: #fff;
  letter-spacing: 0.05em;
  display: inline-block;
  -webkit-transition: opacity 0.33s ease-in-out;
  transition: opacity 0.33s ease-in-out;
}
a#backtotop:hover {
  opacity: 0.7;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 2px;
  width: 6.66666667em;
  margin: 1.58em auto 1.58em 0;
  background: #7bcad1;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #7bcad1;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: smaller;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #7bcad1;
  border: 1px solid #7bcad1;
  -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: #00aced;
  background-color: #00aced;
}
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 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /* ===============================================
	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 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /* ==================================================================
	main-nav
=================================================================== */
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.1em;
    margin-top:0em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height:2.1em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.38em 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.2222;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -0.75em;
    width: 0.95em;
    height: 0.95em;
    background: url('../images/star.png') center no-repeat;
    background-size: cover;
    margin: 0 auto;
    opacity: 0;
    transform: rotate(-45deg) scale(0);
    transition: 0.3s ease-in-out;
  }
  #main-nav ul li.open > a[id]:before,
  #main-nav ul li.active > a[id]:before,
  #main-nav ul li:hover > a[id]:before {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.55em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 2.3846;
    text-align: left;
    white-space: nowrap;
    height: 2.38461538em;
    width: 100%;
    padding: 0 2.30769em;
    float: left;
    -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: 0 / -20em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: 0 / -20em;
    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;
  }
}
