/* ===============================================
	.less VERSION 10
	
	kostrubala-craig
	Written by: Ricky R.
		
	Sesame Communications - (c) 2022
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* color */
/* color || hyperlinks */
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Raleway', sans-serif;
}
/* ===============================================
					Mixins 
=============================================== */
/*font-mixins*/
.th {
  font-weight: 100;
}
.xlt {
  font-weight: 200;
}
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}
/* use with .trbl */
.grey,
.gray {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ==================================================================
	main content-text font sizes
=================================================================== */
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Raleway', sans-serif;
}
form button {
  font-family: 'Raleway', sans-serif;
}
body {
  font-size: 15px;
  color: #333;
  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: #1b9aaa;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  opacity: 70%;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #1b9aaa;
  margin: 0 0 0.8em;
  text-rendering: auto;
}
h1 {
  font-size: 10vw;
  font-weight: 800;
  margin-bottom: 0.75em;
  color: #333333;
}
h1:after {
  content: '';
  width: 2em;
  height: 2px;
  margin: 0.43em 0 0.67em;
  background-color: #bea2c2;
  display: block;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 3.5em;
    /* mintab 480w */
  }
}
.home h1 {
  text-align: left;
  margin: 0;
  font-weight: 800;
}
@media only screen and (min-width: 30em) {
  .home h1 {
    font-size: 4em;
    letter-spacing: -1.2px;
    /* mintab 480w */
  }
}
.home h1:after {
  content: '';
  width: 2em;
  height: 2px;
  margin: 0.64em 0 0.67em;
  background-color: #bea2c2;
  display: block;
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.5;
  font-size: 0.375em;
  text-transform: none;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.67em;
  color: #333;
  letter-spacing: -0.1px;
}
h2:not(.topic) {
  font-size: 1.77777778em;
  color: #333333;
  font-weight: 800;
}
h3:not(.topic) {
  font-size: 1.44444444em;
  color: #333333;
  font-weight: 800;
}
h4 {
  font-size: 1.22222222em;
  color: #333333;
  font-weight: 800;
}
h5 {
  font-size: 1.16666667em;
  color: #333333;
}
h6 {
  font-size: 1.11111111em;
  color: #333333;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 60em;
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0 0;
  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(27, 154, 170, 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: #1b9aaa;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  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;
  transform: rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #1b9aaa;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #fff;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: #364052;
  /*
		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.5;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #fff;
  width: auto;
  height: 2.5em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
#main-nav ul li a[id]:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.6em;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: scaleX(0);
  opacity: 0;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #1b9aaa;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul li.open > a[id]:after,
#main-nav ul li.active > a[id]:after,
#main-nav ul li:hover > a[id]:after {
  transition-duration: 0.15s;
  transform: scaleX(1);
  opacity: 1;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background: rgba(62, 173, 202, 0.89);
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  line-height: 2.5;
  font-size: 0.8em;
  color: #fff;
  width: 100%;
  height: 2.5em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #3eadca;
  margin-bottom: 0;
  background: #fff;
  border: none;
}
@media only screen and (max-width: 1023px) {
  #main-nav .open ul .open ul li {
    height: 2em !important;
    opacity: 1;
  }
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
/* all about that open class */
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 1.3em;
  opacity: 1;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #1b9aaa;
  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;
    height: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 710px) 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 {
    height: 100%;
    padding: 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 5em;
    margin-left: 2.85em;
    max-width: none;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  margin: 0.5em auto 1em 2%;
  display: block;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 710px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 1.15em;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo a h2 {
  font-size: 2.3em;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1.1px;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  #contactinfo > div:nth-child(1) {
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 709px) {
  #contactinfo {
    justify-content: center !important;
  }
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    margin: 0 0.5em 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* mintab 480w */
  }
  #contactinfo > div:nth-child(1) {
    margin-right: 1em;
  }
}
@media only screen and (min-width: 64em) {
  #contactinfo {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* mintab 480w */
  }
  #contactinfo > div:nth-child(1) {
    margin-right: 0em;
  }
  #contactinfo > div:nth-child(1):hover .address,
  #contactinfo > div:nth-child(1):hover i {
    transform: scale(1.05);
  }
  #contactinfo > div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #333;
    padding: 0 1em 0 0.95em;
  }
  #contactinfo > div i {
    font-size: 1.05em;
    margin-right: 0.42em;
    margin-bottom: 0.2em;
  }
  #contactinfo > div:nth-child(2) i {
    color: #364052;
    margin-right: 0.4em;
    margin-bottom: 0.2em;
  }
}
#contactinfo .address {
  line-height: 1.42857143;
  font-size: 0.7em;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.7px;
  transition: transform 0.5s;
}
#contactinfo .address i {
  transition: transform 0.5s;
}
@media only screen and (min-width: 64em) {
  #contactinfo .address {
    margin-top: 0.5em;
  }
}
#contactinfo .phone {
  line-height: 1;
  font-size: 1em;
  color: #333333;
  font-weight: 800;
}
@media only screen and (min-width: 64em) {
  #contactinfo .phone {
    margin-top: 0.2em;
  }
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #000;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  line-height: 2.30769231;
  font-size: 0.65em;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 0;
  background: #1b9aaa;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a:hover {
  color: #fff;
  background-color: #000;
}
#utilitynav a.appointmentrequest {
  width: 13em;
}
#utilitynav a.patient-login {
  width: 9em;
}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.fixed-btns {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 1em 0 1em;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 47.975em) {
  .fixed-btns {
    font-size: 3.2vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  .fixed-btns {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .fixed-btns {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
@media only screen and (max-width: 63.9375em) {
  .fixed-btns {
    display: flex;
    justify-content: center;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .fixed-btns {
    width: 5em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0em;
    top: 6em;
    /* maxTab 1024w */
  }
}
.fixed-btns a {
  width: 5em;
  height: 5em;
  color: #fff;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform-origin: right;
}
.fixed-btns a p {
  line-height: 1;
  margin: 0;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 700;
}
.fixed-btns a:hover {
  transform: scale(1.1);
  transform-origin: right;
  z-index: 2;
}
.fixed-btns a:nth-child(1) {
  padding-top: 0.1em;
  background-color: #1b9aaa;
  display: none;
}
.fixed-btns a:nth-child(1) i {
  font-size: 1.05em;
  margin-bottom: 0.375em;
}
.fixed-btns a:nth-child(2) {
  padding-top: 0.15em;
  background-color: #915c99;
}
.fixed-btns a:nth-child(2) i {
  font-size: 1.15em;
  margin-bottom: 0.4em;
}
.fixed-btns a:nth-child(3) {
  background-color: #364052;
}
.fixed-btns a:nth-child(3) i {
  font-size: 1.05em;
  margin-bottom: 0.35em;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 52.38095238vw;
  /* 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 #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%;
  }
}
#slideshow .ssoverlay {
  color: currentcolor;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  bottom: 7.5em;
  transform: translate(-50%, 0%);
  z-index: 420;
  margin: auto;
}
#slideshow .ssoverlay h2 {
  font-weight: lighter;
  font-size: 2.5em;
  color: #fff;
  text-align: center;
  line-height: 1;
  width: 100%;
  margin-bottom: 0.97em;
}
@media only screen and (min-width: 64em) {
  #slideshow .ssoverlay h2 {
    width: 130%;
  }
}
#slideshow .ssoverlay h2 .trait {
  text-transform: capitalize;
  display: block;
  font-size: 1.6em;
  font-weight: 800 !important;
  margin-top: 0.29em;
  letter-spacing: 0.9px;
}
#slideshow .ssoverlay .btns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  #slideshow .ssoverlay .btns {
    margin-right: 0.25em;
  }
}
#slideshow .ssoverlay .btns::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: 1;
  pointer-events: none;
}
#slideshow .ssoverlay .btns a {
  color: #fff;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: 800;
  height: 3.57142857em;
  line-height: 3.65;
  position: relative;
  letter-spacing: 1.4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#slideshow .ssoverlay .btns a:nth-child(1) {
  background-color: #915c99;
  width: 11.42857143em;
  position: relative;
  transition: all 0.5s;
  border-right: 1px solid white;
}
#slideshow .ssoverlay .btns a:nth-child(1):hover {
  background-color: white;
  color: #915c99;
}
#slideshow .ssoverlay .btns a:nth-child(2) {
  background-color: #364052;
  width: 23em;
  position: relative;
  transition: all 0.5s;
  border-right: 1px solid white;
}
@media only screen and (min-width: 64em) {
  #slideshow .ssoverlay .btns a:nth-child(2) {
    width: 20.6em;
  }
}
#slideshow .ssoverlay .btns a:nth-child(2):hover {
  background-color: white;
  color: #363636;
}
#slideshow .ssoverlay .btns a:nth-child(3) {
  background-color: #1b9aaa;
  width: 20.7em;
  letter-spacing: 1px;
  transition: all 0.5s;
}
#slideshow .ssoverlay .btns a:nth-child(3):hover {
  background-color: white;
  color: #1b9aaa;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot00 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spotlight-01 {
  display: flex;
}
@media only screen and (max-width: 47.975em) {
  .spotlight-01 {
    font-size: 3.2vw;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 979px) {
  .spotlight-01 {
    background-color: #915c99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em 1em;
  }
  .spotlight-01 .decoration {
    width: 70% !important;
  }
  .spotlight-01 .spot01 {
    background: none !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  .spotlight-01 .spot01 .mod {
    text-align: center !important;
  }
  .spotlight-01 .spot01 .mod h2.topic {
    text-align: center;
  }
}
@media only screen and (min-width: 48em) {
  .spotlight-01 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spotlight-01 {
    font-size: 1vw;
    /* custom opt-out 979oo */
  }
}
.spotlight-01 .decoration {
  width: 40em;
}
@media only screen and (max-width: 979px) {
  .spotlight-01 .decoration {
    margin-bottom: 1em;
  }
}
.spotlight-01 .spot01 {
  color: #fff;
  background: linear-gradient(to right, #94629d 0%, #b898bd 80%, #bda2c1 100%);
  /* Gradient in Hex */
  background: linear-gradient(to right, #97669E 0%, 4.20439839%, #9A69A1 8.40879679%, 14.48900402%, #9E6FA5 20.56921124%, 25.03234148%, #A175A8 29.49547172%, 30.59508353%, #A276A9 31.69469535%, 37.32212186%, #A77DAD 42.94954836%, 44.69598979%, #A780AD 46.44243121%, 50.25873184%, #AA85B1 54.07503247%, 57.17981756%, #AD88B3 60.28460264%, 63.45407367%, #B08DB5 66.62354469%, 68.0465728%, #B28FB7 69.46960092%, 73.86804819%, #B494B9 78.26649547%, 79.8188895%, #B696BB 81.37128353%, 87.06339002%, #BA9BBD 92.7554965%, 96.37774825%, #BC9EC0 100%);
  width: 60em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10em;
}
.spotlight-01 .spot01 .mod {
  padding: 2em 0;
}
@media only screen and (min-width: 48em) {
  .spotlight-01 .spot01 .mod {
    text-align: left;
    padding: 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 980px) {
  .spotlight-01 .spot01 .mod {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 14em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .spotlight-01 .spot01 .mod {
    height: 253px;
  }
}
.spotlight-01 .spot01 h2.topic {
  line-height: 1;
  font-size: 3.5em;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 1em;
}
@media only screen and (min-width: 980px) {
  .spotlight-01 .spot01 h2.topic {
    margin-bottom: 0em;
    line-height: 1.15;
    margin-left: -0.05em;
  }
}
@media only screen and (min-width: 1300px) {
  .spotlight-01 .spot01 h2.topic {
    font-size: 70px;
  }
}
.spotlight-01 .spot01 .info {
  line-height: 1.4;
  font-size: 0.75em;
  margin: 0 0 3.86666667em;
  display: none;
}
@media only screen and (min-width: 81.25em) {
  .spotlight-01 .spot01 .info {
    display: block;
    /* desk 1300w */
  }
}
.spotlight-01 .spot01 .spotbtn {
  letter-spacing: 0.14em;
  line-height: 4;
  font-size: 0.65em;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  width: 12.46153846em;
  height: 3.84615385em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  transition: all 0.33s ease-in-out;
  background-color: #1b9aaa;
}
.spotlight-01 .spot01 .spotbtn:hover {
  background-color: white;
  color: #1b9aaa;
}
.spotlight-01 .spot01 .spotbtn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border: 1px solid #fff;
  transition: background-color 0.33s ease-in-out;
}
@media only screen and (min-width: 81.25em) {
  .spotlight-01 .spot01 .spotbtn {
    width: 162px;
    height: 50px;
    font-size: 13px;
    margin-bottom: -1em;
  }
}
/* ==================================================================
	
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to 'side oriented' [=
	
=================================================================== */
/* TOP ORIENTED */
#int-header {
  text-align: center;
  color: #000;
  position: relative;
  overflow: hidden;
  background: url(../images/int/subbg.jpg) center / cover no-repeat;
  height: 40vw;
}
@media only screen and (max-width: 47.975em) {
  #int-header {
    font-size: 3.2vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  #int-header {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  #int-header {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
@media only screen and (min-width: 81.25em) {
  #int-header {
    height: 35em;
    /* desk 1300w */
  }
}
#int-header p {
  line-height: 1.2;
  font-size: 0.75em;
  margin: 0;
  padding: 0;
}
#int-header a {
  color: #333;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 64em) {
  #int-header a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#int-header a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: scaleX(0);
}
#int-header a:hover,
#int-header a.active {
  color: #000;
  text-decoration: none;
}
#int-header a:hover:after,
#int-header a.active:after {
  opacity: 1;
  transform: scaleX(1);
}
#int-header .divider {
  display: none;
}
@media only screen and (min-width: 64em) {
  #int-header .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
#bd {
  padding: 3em 0;
  padding: 0 0 3em;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 4em 0 6em;
    /* midTab 780w */
  }
}
#bd .container {
  max-width: 60em;
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 39.6em;
    width: 66%;
    float: left;
    /* midTab 780w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.66666667;
}
@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: 5.3em 0 2.85em;
    /* midTab 768w */
  }
}
.home #bd .container {
  max-width: 57em;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 34.7em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-left: -1.5em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 0.9em;
    /* desk 1300w */
  }
}
.home #bd #content .content-text > h3 {
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 0.4em;
  letter-spacing: 0.9px;
}
.home #bd #content .content-text ul {
  margin-left: 0.3em;
}
.home #bd #content .content-text ul li {
  list-style: none;
  position: relative;
}
.home #bd #content .content-text ul li::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  margin: -3px 1.75em 0em;
  background-color: #333;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.home #bd #content p {
  margin-bottom: 2em;
  letter-spacing: 0.8px;
  text-align: left;
}
.home #bd #content .decor {
  display: none;
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .decor {
    width: 40em;
    height: 40em;
    display: block;
    position: absolute;
    top: 0em;
    left: 67.56%;
  }
}
/* ==================================================================
	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: #1b9aaa;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  transform: scale(1.44);
  opacity: 0.68;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* ===============================================
 		common treatments
=============================================== */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 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;
  }
}
/* 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.52173913;
  font-size: 1.27777778em;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  color: #1b9aaa;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1;
  font-size: 1.11111111em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #1b9aaa;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #000;
}
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: 110%;
  margin: 0 -5% 3em;
  display: block;
  padding: 0;
  position: relative;
  z-index: 420;
  background-color: #fff;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 27.5%;
    height: 36.66666667%;
    margin: 1.05em 0 1em;
    float: right;
    clear: right;
    display: flex;
    flex-direction: column;
    /* midTab 768w */
  }
}
#sidebar > #subnav {
  background: none;
  height: auto;
  background-color: #1b9aaa;
  padding: 0;
}
#sidebar > #subnav .head {
  background-color: #364052;
  height: 3em;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #fff;
  padding: 0 1.95em;
}
#sidebar > #subnav .head h2 {
  font-size: 1.3em !important;
}
#sidebar > #subnav > nav {
  padding: 35px 0;
}
@media only screen and (max-width: 768px) {
  #sidebar > #subnav > nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0.5em !important;
  }
  #sidebar > #subnav > nav p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row !important;
    padding: 0.5em !important;
  }
  #sidebar > #subnav > nav p a {
    justify-content: center !important;
    padding: 0.2em 1em !important;
    width: auto !important;
    text-align: center;
    margin: 0.4em !important;
  }
}
#sidebar #hide-stock {
  position: relative;
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
  width: 100%;
  max-width: 16.5em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
@media only screen and (min-width: 64em) {
  #hide-stock {
    margin-bottom: 1em;
    display: block;
    order: 1;
    /* midTab 768w */
  }
}
.stock {
  width: 100%;
  position: relative;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #hide-stock,
body[class^='meet-dr-'] #hide-stock,
body[class^='meet-doctor-'] #hide-stock {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* ==================================================================
	SUBNAV || aka subnav-outer || aka ipSub || SIDE ORIENTED
=================================================================== */
#subnav {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  #subnav {
    order: 2;
    /* midTab 768w */
  }
}
#subnav p {
  line-height: 1.54;
  font-size: 0.8em;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 420;
}
#subnav a {
  color: #fff;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0 0 0 2.4375em;
  letter-spacing: 0.5px;
}
#subnav a:hover,
#subnav a.active {
  color: #fff;
  text-decoration: none;
  background-color: #915c99;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: scaleX(1);
}
/* END SIDEBAR - */
/* ==================================================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EDITED
=================================================================== */
.spotlight-02 {
  background: url(../images/spotlight/services/bg.jpg) center / cover no-repeat;
  padding: 2em 1em;
}
@media only screen and (max-width: 29.9375em) {
  .spotlight-02 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
  .spotlight-02 h2 {
    margin-bottom: 0em !important;
    font-size: 3.5em !important;
  }
}
@media only screen and (min-width: 30em) {
  .spotlight-02 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spotlight-02 {
    font-size: inherit;
    padding: 6.1em 0 7.8em;
    /* custom opt-out 979oo */
  }
}
.spotlight-02 h2 {
  text-align: center;
  font-size: 3.5em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.32em;
  letter-spacing: -0.7px;
}
.spotlight-02 .spot02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spotlight-02 .spot02 {
    flex-direction: column;
  }
  .spotlight-02 .spot02 a:nth-child(1)::after,
  .spotlight-02 .spot02 a:nth-child(2)::after {
    content: none !important;
  }
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 {
    transform: translateX(-8.85em);
  }
}
.spotlight-02 .spot02 a {
  color: #fff;
  height: 14em;
  width: 15em;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  transition: transform 0.33s ease-in-out;
  padding-bottom: 1.97em;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a {
    height: 15em;
  }
}
.spotlight-02 .spot02 a img {
  width: 100%;
  transition: transform 0.33s ease-in-out;
  margin-bottom: 1em;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a img {
    margin-bottom: 2.65em;
  }
}
.spotlight-02 .spot02 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}
.spotlight-02 .spot02 a .icon {
  width: 2em;
  margin: 0 auto 1em;
  transition: transform 0.33s ease-in-out;
}
.spotlight-02 .spot02 a h3.topic {
  line-height: 1.5;
  font-size: 1em;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  letter-spacing: 2px;
  transition: transform 0.5s;
}
.spotlight-02 .spot02 a h3.topic .trait {
  display: block;
}
.spotlight-02 .spot02 a:nth-child(1) {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a:nth-child(1):hover h3 {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(1):hover img {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(1):hover::before {
    opacity: 1;
  }
  .spotlight-02 .spot02 a:nth-child(1)::before {
    content: '';
    background-color: #f1f1f11c;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .spotlight-02 .spot02 a:nth-child(1)::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
  }
}
.spotlight-02 .spot02 a:nth-child(1) img {
  width: 6.2em;
  height: 5em;
}
.spotlight-02 .spot02 a:nth-child(2) {
  position: relative;
  padding-bottom: 2.38em;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a:nth-child(2):hover h3 {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(2):hover img {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(2):hover::before {
    opacity: 1;
  }
  .spotlight-02 .spot02 a:nth-child(2)::before {
    content: '';
    background-color: #f1f1f11c;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.5s;
    opacity: 0;
  }
}
.spotlight-02 .spot02 a:nth-child(2) img {
  width: 6.5em;
  height: 6em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a:nth-child(2) img {
    margin-bottom: 2.5em;
  }
}
.spotlight-02 .spot02 a:nth-child(3) {
  overflow: hidden;
  position: relative;
}
.spotlight-02 .spot02 a:nth-child(3) img {
  width: 5.3em;
  height: 5.3em;
}
@media only screen and (min-width: 64em) {
  .spotlight-02 .spot02 a:nth-child(3)::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0;
    background-color: white;
  }
  .spotlight-02 .spot02 a:nth-child(3)::before {
    content: '';
    background-color: #f1f1f11c;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .spotlight-02 .spot02 a:nth-child(3):hover h3 {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(3):hover img {
    transform: scale(1.1);
  }
  .spotlight-02 .spot02 a:nth-child(3):hover::before {
    opacity: 1;
  }
}
/* ===============================================
	spot00 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot03 {
  padding: 3em 0.5em;
  background: linear-gradient(to right, #507D83 0%, 6.35118335%, #57868C 12.70236671%, 13.20049837%, #57868C 13.69863003%, 19.80074719%, #5F9095 25.90286434%, 28.64259034%, #64959C 31.38231635%, 34.93150622%, #6A9BA0 38.48069608%, 39.66376036%, #6A9BA2 40.84682465%, 44.76961344%, #6FA1A8 48.69240224%, 50.5603984%, #6FA4AA 52.42839456%, 56.35118484%, #75A7AE 60.27397513%, 63.94769847%, #78ADB3 67.62142181%, 69.42715049%, #7BADB4 71.23287916%, 73.10087383%, #7AAFB5 74.96886849%, 83.00124705%, #81B3BA 91.0336256%, 95.5168128%, #84B6BD 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.spot03 h2 {
  text-align: center;
  font-size: 3.5em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65em;
  letter-spacing: -0.7px;
}
@media only screen and (max-width: 29.9375em) {
  .spot03 {
    /* mintab opt-out 480oo */
  }
  .spot03 h2 {
    font-size: 2.5em !important;
  }
}
@media only screen and (min-width: 48em) {
  .spot03 {
    padding: 5.05em 0 6em;
    /* midTab 768w */
  }
}
.spot03 .cycle-slideshow {
  color: #fff;
  width: 96%;
  max-width: 50em;
  margin: 0 auto;
  display: block;
  transition: color 0.33s ease-in-out;
  margin-bottom: 1.97em;
}
.spot03 .cycle-slide {
  width: 100%;
  display: block;
}
.spot03 .testimony {
  line-height: 1.25;
  font-size: 1.2em;
  display: block;
  font-style: italic;
  margin-bottom: 0.5em;
}
.spot03 .testifier {
  line-height: 1.38888889;
  font-size: 0.9em;
  font-weight: 700;
  display: block;
}
.spot03 .testifier::before {
  content: '|';
  color: #fff;
  display: block;
  font-weight: 400;
  margin: 0.4em 0 0.3em;
  font-size: 1.3em;
}
.spot03 .btns {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spot03 .btns::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: 1;
  pointer-events: none;
}
.spot03 .btns a {
  color: #fff;
  font-size: 0.7em;
  text-transform: uppercase;
  font-weight: bold;
  height: 3.57142857em;
  line-height: 3.6;
  position: relative;
  letter-spacing: 1.4px;
}
.spot03 .btns a:nth-child(1) {
  background-color: #1b9aaa;
  width: 15.71428571em;
  position: relative;
  transition: all 0.5s;
}
.spot03 .btns a:nth-child(1)::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: 0.5px solid #fff;
}
.spot03 .btns a:nth-child(1):hover {
  background-color: white;
  color: #1b9aaa;
}
.spot03 .btns a:nth-child(2) {
  background-color: #364052;
  width: 15.71428571em;
  position: relative;
  transition: all 0.5s;
}
.spot03 .btns a:nth-child(2)::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: 0.5px solid #fff;
}
.spot03 .btns a:nth-child(2):hover {
  background-color: white;
  color: #364052;
}
/* ==================================================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=================================================================== */
/* ==================================================================
	spot02 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=================================================================== */
.spotlight-04 {
  background: #fff;
  padding: 1em 0;
}
.spotlight-04 h2 {
  text-align: center;
  font-size: 3.5em;
  font-weight: 800;
  color: #333333;
  margin-bottom: 0.93em;
  letter-spacing: -0.7px;
}
@media only screen and (max-width: 29.9375em) {
  .spotlight-04 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  .spotlight-04 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spotlight-04 {
    font-size: inherit;
    padding: 5em 0 4.7em;
    /* custom opt-out 979oo */
  }
}
.spotlight-04 .spot04 {
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 410;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 55.3em;
  margin: auto;
}
@media only screen and (max-width: 479px) {
  .spotlight-04 .spot04 {
    /* midTab opt-out 768oo */
    justify-content: center !important;
  }
}
@media only screen and (min-width: 61.25em) {
  .spotlight-04 .spot04 {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
.spotlight-04 .spot04 a {
  width: 10.3em;
  height: 10.55em;
  transition: transform 0.33s ease-in-out;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 1.2px;
  margin: 0;
}
.spotlight-04 .spot04 a::before {
  content: '';
  width: 110%;
  height: 110%;
  position: absolute;
  top: -5%;
  left: -5%;
  background: linear-gradient(to right, #1E9BAB 0%, 45.41832805%, #57B5C0 90.83665609%, 95.41832805%, #5CB7C2 100%);
  opacity: 0;
  transition: all 0.5s;
  transform-style: preserve-3d;
  display: block;
  transform: rotateY(100deg);
}
.spotlight-04 .spot04 a:hover {
  transform: scale(1.1);
}
.spotlight-04 .spot04 a:hover::before {
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  opacity: 10%;
}
.spotlight-04 .spot04 a i {
  color: #1b9aaa;
}
@media only screen and (max-width: 479px) {
  .spotlight-04 .spot04 a {
    /* midTab opt-out 768oo */
    width: 40.4%;
    margin: 1em;
  }
}
@media only screen and (max-width: 979px) {
  .spotlight-04 .spot04 a {
    margin: 1em !important;
    /* custom opt-out 979oo */
  }
}
@media only screen and (max-width: 48em) {
  .spotlight-04 .spot04 a {
    margin: 1em !important;
    /* midTab 768w */
  }
}
.spotlight-04 .spot04 a .decoration {
  transition: transform 0.33s ease-in-out;
  margin-bottom: 1.2em;
}
.spotlight-04 .spot04 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}
.spotlight-04 .spot04 a .icon {
  width: 2em;
  margin: 0 auto 1em;
  transition: transform 0.33s ease-in-out;
}
.spotlight-04 .spot04 a h3.topic {
  line-height: 1.25;
  font-size: 1em;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  font-weight: 800;
  color: #333;
  letter-spacing: 2px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .spotlight-04 .spot04 a h3.topic {
    width: 110%;
  }
}
.spotlight-04 .spot04 a:nth-child(1) > div.line {
  background-color: #1b9aaa;
  height: 5em;
  width: 2px;
  margin-bottom: 1.4em;
  transform: rotate(30deg);
  position: relative;
  margin-left: -0.6em;
}
.spotlight-04 .spot04 a:nth-child(1) > div.line i:nth-child(1) {
  color: #1b9aaa;
  font-size: 3.55em;
  position: absolute;
  top: 0.37em;
  right: 0.2em;
  transform: rotate(330deg);
}
.spotlight-04 .spot04 a:nth-child(1) > div.line i:nth-child(2) {
  color: #1b9aaa;
  font-size: 3.05em;
  position: absolute;
  bottom: 0.55em;
  left: 0.3em;
  transform: rotate(330deg);
}
.spotlight-04 .spot04 a:nth-child(2) img {
  width: 5em;
  height: 4.45em;
  margin-bottom: 1.75em;
  margin-left: -0.2em;
}
.spotlight-04 .spot04 a:nth-child(3) img {
  width: 4em;
  height: 5.6em;
  margin-bottom: 1.6em;
  margin-left: -0.2em;
}
.spotlight-04 .spot04 a:nth-child(4) i {
  font-size: 5.05em;
  margin-bottom: 0.35em;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #ccc url(../images/footer/map.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 5em 0;
  background-size: auto 100%;
}
@media only screen and (min-width: 64em) {
  #ft {
    padding: 7em 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 81.25em) {
  #ft {
    padding: 9em 0;
    /* desk 1300w */
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #000;
}
/* ===============================================
		tnav
=============================================== */
#textnav {
  line-height: 2;
  font-size: 0.65em;
  text-align: center;
  color: #fff;
}
#textnav p.text-nav {
  margin: 0;
  padding: 0;
}
#textnav a {
  display: inline-block;
  width: auto;
  margin: 0 0.6em 0.7em;
}
#textnav span {
  display: none;
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  background-color: #1b9aaa;
  display: block;
  margin: auto;
  height: 12em;
  width: 15em;
  padding-left: 1.85em;
  padding-top: 2.75em;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #location {
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  #location {
    transform: translateX(-11.2em);
  }
  #location::after {
    content: '';
    background: url(../images/footer/tri.png) center / cover no-repeat;
    width: 13.85em;
    height: 12em;
    position: absolute;
    left: 99.7%;
    top: 0;
  }
}
@media only screen and (min-width: 64em) {
  #location {
    /* desk 1300w */
    transform: translateX(-9.3em);
  }
}
@media only screen and (min-width: 1300px) {
  #location {
    /* desk 1300w */
    transform: translateX(-7.45em);
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin: auto;
}
#location .mod div.flex {
  display: flex;
}
#location .mod div.flex i {
  font-size: 1.05em;
  color: #fff;
  margin-right: 1.65em;
}
#location .mod .flex:nth-child(2) {
  margin-bottom: 1.5em;
}
#location .logo {
  text-align: left;
  display: block;
}
#location .logo h3 {
  color: #fff;
  font-size: 1em;
  line-height: 0.7em;
  margin: 0;
  margin-bottom: 1.8em;
  letter-spacing: -0.5px;
  transition: all 0.5s;
}
#location .logo h3:hover {
  color: #000;
}
#location .address {
  line-height: 1.2;
  font-size: 0.8em;
  display: block;
}
#location .address .marker {
  line-height: 1;
  font-size: 3.125em;
  margin-left: 2.4em;
  position: absolute;
  left: 147.5%;
  top: 1.92em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
  display: none;
}
@media only screen and (min-width: 768px) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
  }
}
#location .address .marker:before {
  content: '\f041';
  color: #915c99;
}
#location .address .marker:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
}
#location .address:hover .marker {
  transform: scale(2);
}
#location .phone {
  line-height: 1;
  font-size: 1em;
  display: block;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.25px;
}
#location .street {
  text-align: left;
  margin-top: -0.08em;
  letter-spacing: 0.7px;
}
/* ==================================================================
		#links || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #333333;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 5em;
    padding: 1.75em 0 0;
    /* midTab 768w  */
  }
}
#links > div.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 30em) {
  #links .util {
    line-height: 2.5;
    width: auto;
    margin: 0;
    float: left;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 30em) {
  #links .util {
    line-height: 2.5;
    width: auto;
    margin: 0;
    float: left;
    flex-direction: column;
    /* mintab 480w */
  }
  #links .util .divider {
    display: none !important;
  }
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #1b9aaa;
}
#links .util a.sitemap {
  letter-spacing: 0.7px;
  font-weight: 600;
  font-size: 12px;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  background-color: white;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  margin: 0 1.2em;
}
/* ==================================================================
		fixed btns 
=================================================================== */
a.covid-btn {
  width: 10em;
  height: 3.33333333em;
  background: linear-gradient(to right, #925D9A 0%, 29.08366621%, #9D6EA4 58.16733241%, 79.08366621%, #A57AAC 100%);
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  text-align: center;
  letter-spacing: 2px;
  display: none;
  transition: all 0.5s;
  border-radius: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.covid-btn {
    background-color: #915c99;
  }
}
@media only screen and (min-width: 64em) {
  a.covid-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 1.5em;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* custom opt-out 979oo */
  }
}
a.covid-btn span {
  display: block;
  font-size: 0.46666667em;
  letter-spacing: 1.5px;
}
a.covid-btn:hover {
  transform: scale(1.1);
  transform-origin: bottom left;
}
a.sch-btn {
  width: 10em;
  height: 4em;
  background: linear-gradient(to right, #1E9BAB 0%, 45.41832805%, #57B5C0 90.83665609%, 95.41832805%, #5CB7C2 100%);
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  letter-spacing: 1.2px;
  display: none;
  line-height: 1;
  transition: all 0.5s;
  font-weight: 800;
  border-radius: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.sch-btn {
    background-color: #1b9aaa;
  }
}
@media only screen and (min-width: 64em) {
  a.sch-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 1.5em;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* custom opt-out 979oo */
  }
}
a.sch-btn span {
  display: block;
  font-size: 0.46666667em;
  letter-spacing: 1.25px;
  margin-bottom: 0.1em;
}
a.sch-btn:hover {
  transform: scale(1.1);
  transform-origin: bottom right;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link {
  letter-spacing: 0.8px;
  font-weight: 600;
  font-size: 12px;
}
a#sesame-link .sesameicon {
  width: 1.66666667em;
  height: 1.33333333em;
  margin-right: 0.6em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  transition: fill 0.33s ease-in-out;
}
a#sesame-link .sesameicon path.top {
  fill: #D6E03D;
}
a#sesame-link .sesameicon path.bottom {
  fill: #00a5e3;
}
a#sesame-link:hover .sesameicon path {
  fill: currentcolor;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 30em) {
  #btt {
    width: auto;
    float: right;
    /* mintab 480w */
  }
}
a#backtotop {
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.33s ease-in-out;
}
a#backtotop span {
  font-size: 12px;
}
a#backtotop:hover {
  color: #1b9aaa;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #1b9aaa;
}
/* ===============================================
	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: #1b9aaa;
  border: 1px solid #1b9aaa;
  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: #000;
  background-color: #000;
}
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%; }*/
  .before-after-box,
  p.before-after-text {
    width: 100%;
  }
  .before-after-image img {
    width: auto;
  }
  .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 {
    font-size: 1em;
    top: 0;
    z-index: 3000;
    box-shadow: none;
    width: 5em;
    height: 100%;
  }
  #main-nav .collapsible .trigger {
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 2em;
    height: 1.8em;
    top: 1.6em;
    position: relative;
  }
  #main-nav .collapsible .trigger .navicon {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
  }
  #main-nav .collapsible .trigger .navicon span {
    width: 2em;
    height: 0.3em;
  }
  #main-nav .collapsible .trigger .navicon span:nth-child(2) {
    top: 42%;
    transition: transform 0s;
  }
  #main-nav .collapsible .trigger .navicon span:nth-child(3) {
    top: 42%;
    transition: transform 0s;
  }
  #main-nav .collapsible .trigger .navicon span:nth-child(4) {
    top: auto;
    bottom: 0;
  }
  #main-nav .collapsible.open .trigger .navicon span:nth-child(2) {
    background-color: white;
    width: 2.2em;
    height: 0.3em;
    transform: rotate(55deg) skewX(325deg);
    transition: transform 0s;
  }
  #main-nav .collapsible.open .trigger .navicon span:nth-child(3) {
    background-color: white;
    width: 2.2em;
    height: 0.3em;
    transform: rotate(-55deg) skewX(-325deg);
  }
  #main-nav ul:first-of-type {
    width: 16em !important;
    padding: 4.85em 1em 0.85em !important;
  }
  #main-nav ul:first-of-type li {
    margin-bottom: 0.5em;
  }
  #main-nav ul:first-of-type li > a[id] {
    color: #1b9aaa;
    width: 100%;
    text-align: left;
    padding-left: 1.2em;
    font-weight: 700;
    letter-spacing: 1.25px;
  }
  #main-nav ul:first-of-type li > a[id]::after {
    content: none !important;
  }
  #main-nav ul:first-of-type li > a[id]::before {
    content: '';
    display: block;
    background-color: #915c99;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: right;
  }
  #main-nav ul:first-of-type li:hover a[id] {
    color: white;
  }
  #main-nav ul:first-of-type li:hover a[id]::before {
    content: '';
    transform: scaleX(1);
    transition: transform 0.5s;
    transform-origin: left;
  }
  #main-nav ul:first-of-type li > ul {
    width: 100% !important;
    padding: 0em !important;
    background-color: transparent;
  }
  #main-nav ul:first-of-type li > ul li {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #main-nav ul:first-of-type li > ul li a {
    text-align: left;
    padding-left: 2.5em;
    line-height: 1;
    height: auto;
    letter-spacing: 0.5px;
  }
  #main-nav ul:first-of-type li > ul li.active {
    background-color: transparent;
  }
  #main-nav ul:first-of-type li > ul li.active a {
    color: white;
  }
  #main-nav ul:first-of-type li > ul li a {
    background-color: transparent;
    color: #1b9aaa;
  }
  #main-nav ul:first-of-type li > ul li a:hover {
    color: white;
  }
  #main-nav ul:first-of-type li.active a[id],
  #main-nav ul:first-of-type li.open a[id] {
    position: relative;
    color: white;
  }
  #main-nav ul:first-of-type li.active a[id]::before,
  #main-nav ul:first-of-type li.open a[id]::before {
    content: '';
    display: block;
    background-color: #915c99;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.5s;
  }
  #main-nav ul:first-of-type li.active > ul,
  #main-nav ul:first-of-type li.open > ul {
    width: 100% !important;
    padding: 0 !important;
    background-color: transparent;
  }
  #main-nav ul:first-of-type li.active > ul li a,
  #main-nav ul:first-of-type li.open > ul li a {
    background-color: transparent;
    color: #1b9aaa;
    opacity: 1;
  }
  #main-nav ul:first-of-type li.active > ul li a:hover,
  #main-nav ul:first-of-type li.open > ul li a:hover {
    color: white;
  }
  #main-nav ul:first-of-type li.open {
    margin-bottom: 0em;
  }
  #main-nav ul:first-of-type li.open > ul {
    width: 100% !important;
    padding: 0.8em 0 0.85em !important;
    background-color: transparent;
  }
  #main-nav ul:first-of-type li.open > ul li {
    height: auto;
  }
  #main-nav ul:first-of-type li.open > ul li a {
    background-color: transparent;
    color: #1b9aaa;
    line-height: 1.57;
    opacity: 1;
  }
  #main-nav ul:first-of-type li.open > ul li a:hover {
    color: white;
  }
  #main-nav ul:first-of-type li.open > ul li.active a {
    color: white;
  }
  #main-nav ul:first-of-type ul li a {
    opacity: 0;
    height: auto;
    transition: opacity 1.5s;
  }
  #main-nav ul:first-of-type ul li:nth-child(2) {
    transition-delay: 0.1s;
  }
  #main-nav ul:first-of-type ul li:nth-child(3) {
    transition-delay: 0.15s;
  }
  #main-nav ul:first-of-type ul li:nth-child(4) {
    transition-delay: 0.2s;
  }
  #main-nav ul:first-of-type ul li:nth-child(5) {
    transition-delay: 0.25s;
  }
  #main-nav ul:first-of-type ul li:nth-child(6) {
    transition-delay: 0.3s;
  }
  #main-nav ul:first-of-type ul li:nth-child(7) {
    transition-delay: 0.35s;
  }
  #main-nav ul:first-of-type ul li:nth-child(8) {
    transition-delay: 0.4s;
  }
  #main-nav ul:first-of-type ul li:nth-child(9) {
    transition-delay: 0.45s;
  }
  #main-nav ul:first-of-type ul li:nth-child(10) {
    transition-delay: 0.5s;
  }
  #main-nav ul:first-of-type ul li:nth-child(11) {
    transition-delay: 0.55s;
  }
  #main-nav ul:first-of-type ul li:nth-child(12) {
    transition-delay: 0.6s;
  }
  nav.horizontal ul li {
    width: 100%;
    float: none;
  }
  nav .collapsible ul {
    display: none;
  }
  nav .open > ul {
    display: block;
  }
  /* ==================================================================
	main-nav
=================================================================== */
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
