/* ===============================================
	.less VERSION 2.0
	
	neis-john
	
	Sesame Communications - (c) 2021
	Written by: James Stillion
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/*Colors */
/* middle yellow red */
/* mellow apricot */
/* deep champagne */
/* bisque */
/* tiffany || hyperlinks */
/* middle blue green */
/* powder blue */
/* ===============================================
					fonts
=============================================== */
/* montserrat-500 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''), url('../fonts/montserrat-v15-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-500.woff') format('woff');
  
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(''), url('../fonts/montserrat-v15-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/montserrat-v15-latin-600.woff') format('woff');
  
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* cinzel-500 - latin */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''), url('../fonts/cinzel-v11-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/cinzel-v11-latin-500.woff') format('woff');
  
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.fontC {
  font-family: 'Cinzel', serif;
}
.fontM {
  font-family: 'Montserrat', 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: 600;
}
.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;
}
#content .clear {
  line-height: 1;
  font-size: 0;
}
.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,
.validation-only {
  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;
}
img {
  height: auto;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* Body */
body,
input,
select,
textarea,
form button {
  font-family: 'Montserrat', sans-serif;
}
body {
  line-height: 1.8;
  font-size: 15px;
  color: #333;
  background: #fff;
  overflow: hidden;
  /* body content font-size declared later in .content-text */
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* Links */
a {
  text-decoration: none;
}
#content a {
  color: #6ac6b8;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #eab578;
}
/* h family || hfam */
h1,
h2:not(.topic),
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-align: left;
  color: #221f20;
  margin: 0 0 0.8em;
  text-rendering: auto;
}
h2:not(.topic),
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  color: #373536;
}
h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 2.25em;
    /* mintab 480w */
  }
}
h1:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #ffce95;
  margin: 0.62222222em 0 0.77777778em;
  display: block;
}
h1 .trait {
  letter-spacing: 0.1em;
  line-height: 1.39130435;
  font-size: 0.51111111em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #a4d9d2;
  display: block;
}
.home h1 {
  line-height: 1.08888889;
  margin: 0 0 0.57777778em;
}
.home h1:after {
  display: none;
}
h2:not(.topic) {
  font-size: 1.57894737em;
}
h3 {
  font-size: 1.31578947em;
}
h4 {
  font-size: 1.15789474em;
}
h5 {
  font-size: 1.10526316em;
}
h6 {
  font-size: 1.05263158em;
}
/*containers*/
.container {
  max-width: 55em;
}
/* List Styling */
/* made redundant by global declaration  */
/*
#content ul, 
#content ol{ 
	margin:0 0 1.55em 1.6em; 
}
*/
/*global override*/
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*="-after"] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	top
=================================================================== */
#masthead {
  width: 100%;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  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%;
    padding: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (max-width: 63.9375em) {
  #masthead {
    background: #fff;
    /* midTab 1024oo */
  }
}
/* @media only screen and (min-width: 81.25em) */
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    box-shadow: none;
    -webkit-transition: background-color 0.99s ease-in-out;
    transition: background-color 0.99s ease-in-out;
    /* desk 1300w */
  }
  #masthead.ready {
    background-color: rgba(255, 255, 255, 0);
  }
}
#masthead .container {
  width: 100%!important;
}
@media only screen and (max-width: 63.9375em) {
  #masthead .container {
    max-width: none;
    /* midTab 1024oo */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(106, 198, 184, 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: #6ac6b8;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  position: relative;
  display: inline-block;
  top: -0.2em;
}
#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: #c1ebe4;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #6ac6b8;
}
#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.92);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(252, 226, 197, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(252, 226, 197, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(252, 226, 197, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  letter-spacing: 0.02em;
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #231f20;
  width: auto;
  height: 2.66666667em;
  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 a[id]:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.53333333em;
  -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: translate3d(0, 0, 0) scaleX(0);
  transform: translate3d(0, 0, 0) scaleX(0);
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  text-decoration: none;
  -webkit-transition-duration: 0.15s;
  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 {
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transform: translate3d(0, 0, 0) scaleX(1);
  transform: translate3d(0, 0, 0) scaleX(1);
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background: rgba(255, 255, 255, 0.88);
  display: inline;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  line-height: 3.33333333;
  font-size: 0.6em;
  color: #231f20;
  width: 100%;
  height: 3.33333333em;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #231f20;
  margin-bottom: 0;
  background: #ffce95;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  -webkit-animation: flyinmobilehamburger 0.4s 1;
  animation: flyinmobilehamburger 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 {
  color: #6ac6b8;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 665px) {
  #hd {
    text-align: center;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 665px) {
  #hd {
    text-align: right;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 64em) {
  #hd {
    background: rgba(255, 255, 255, 0.92);
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 665px) and (max-width: 63.9375em) {
  #hd .container {
    padding: 0.66em 55px 0.66em 0;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 64em) {
  #hd .container {
    padding: 1.825em 0 1.475em;
    /* midTab 1024w */
  }
}
/* logo  */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 6.05em;
  display: block;
  position: relative;
}
@media only screen and (max-width: 664px) {
  #logo {
    margin: 0.5em auto 1em 2%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 665px) and (max-width: 63.9375em) {
  #logo {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 2%;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0.6em 0 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 6.05em;
  height: 3.7em;
  -webkit-filter: drop-shadow(0 0.15em 0.075em rgba(0, 0, 0, 0.26));
  filter: drop-shadow(0 0.15em 0.075em rgba(0, 0, 0, 0.26));
}
/* contact-info */
#contactinfo {
  margin: 0;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 29.9375em) {
  #contactinfo {
    font-size: min(4.1vw, 1em);
    width: 100%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    /* mintab 480w */
  }
}

@media only screen and (max-width: 41.5625em) {
  #contactinfo {
    margin-top: 0.5em;
    /* custom 666oo */
  }
}
#contactinfo .address {
  letter-spacing: 0.02em;
  line-height: 1.23076923;
  font-size: 0.65em;
  font-weight: 500;
  text-transform: uppercase;
  color: #231f20;
  width: auto;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#contactinfo .address:hover {
  color: #eab578;
}
#contactinfo .phone {
  line-height: 1.06666667;
  font-size: 1.5em;
  font-weight: 500;
  font-family: 'Cinzel', serif;
  color: #231f20;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .divider {
  width: 2px;
  height: 1.6em;
  background: #ffce95;
  margin: 0 0.75em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 664px) {
  #contactinfo .divider {
    /* custom 666oo */
  }
  #contactinfo .divider.opp {
    display: none;
  }
}
#contactinfo a.phone {
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#contactinfo a.phone:hover {
  color: #eab578;
}
nav ul li a {
  padding: 0;
}
/* socialmedia || aka social-icons */
.socialmedia {
  line-height: 0;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 29.9375em) {
  .socialmedia {
    text-align: center;
    width: 100%;
    display: block;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 665px) {
  .socialmedia {
    display: inline-block;
    vertical-align: top;
    /* mintab 480w */
  }
}
/* @media only screen and (max-width: 41.5625em) {
  .socialmedia {
    font-size: 20px;
    margin-top: 0.5em;
    /* custom 666oo 
  }
} */
@media only screen and (min-width: 48em) {
  .socialmedia {
    width: auto;
    display: inline-block;
    vertical-align: top;
    /* midTab 768w */
  }
}

.socialmedia a {
  line-height: 2em;
  font-size: 0.8em;
  color: #231f20;
  text-shadow: -1.5em -0.5em 0 rgba(234, 181, 120, 0), -0.5em 1.5em 0 rgba(255, 200, 136, 0), 0.5em -1.5em 0 rgba(255, 206, 149, 0), 1.5em 0.5em 0 rgba(252, 226, 197, 0);
  height: 2em;
  width: 1.75em;
  border-radius: 50%;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, color 0.33s ease-in-out, text-shadow 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, color 0.33s ease-in-out, text-shadow 0.33s ease-in-out;
}
.socialmedia a:hover {
  color: #fff;
  text-shadow: -0.125em -0.125em 0 rgba(234, 181, 120, 0.6), -0.125em 0.125em 0 rgba(255, 200, 136, 0.6), 0.125em -0.125em 0 rgba(255, 206, 149, 0.6), 0.125em 0.125em 0 #fce2c5;
  z-index: 400;
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  -webkit-transition-timing-function: ease, ease, ease, cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-timing-function: ease, ease, ease, cubic-bezier(0.25, 0.8, 0.25, 1);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 55vw;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
  opacity: 0.9;
}
@media only screen and (min-width: 81.25em) {
  #slideshow .welcomevid {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    /* desk 1300w */
  }
}
#slideshow svg {
  width: 22.65em;
  height: 14.45em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  left: 0;
  z-index: 420;
}
#slideshow svg path {
  fill: #fff;
}
/* ==================================================================
	callouts || aka bd-callouts
=================================================================== */
#callouts {
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 47.9375em) {
  #callouts {
    background-color: #ffc888;
    background-image: -moz-linear-gradient(-45deg, #ffc888 0%, #fcdfbc 100%);
    background-image: -webkit-linear-gradient(-45deg, #ffc888 0%, #fcdfbc 100%);
    background-image: linear-gradient(135deg, #ffc888 0%, #fcdfbc 100%);
    display: flex;
    justify-content: space-between;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #callouts {
    width: 5.3em;
    position: absolute;
    top: 6em;
    right: 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  #callouts {
    top: 10em;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #callouts {
    position: fixed;
    z-index: 2900;
    /* desk 1300w */
  }
}
#callouts a {
  color: #231f20;
  padding: 1.09em 0;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  #callouts a {
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #callouts a {
    width: 25%;
    /* midTab 768w */
  }
  #callouts a:nth-child(-n+3) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media only screen and (min-width: 48em) {
  #callouts a {
    width: 100%;
    margin: 0 0 2px;
    /* midTab 768w */
  }
  #callouts a:nth-child(1) {
    background-color: #ffc888;
    background-image: -moz-linear-gradient(-45deg, #ffc888 0%, #fed8ab 100%);
    background-image: -webkit-linear-gradient(-45deg, #ffc888 0%, #fed8ab 100%);
    background-image: linear-gradient(135deg, #ffc888 0%, #fed8ab 100%);
  }
  #callouts a:nth-child(2) {
    background-color: #ffc888;
    background-image: -moz-linear-gradient(-45deg, #ffc888 0%, #fce1c1 100%);
    background-image: -webkit-linear-gradient(-45deg, #ffc888 0%, #fce1c1 100%);
    background-image: linear-gradient(135deg, #ffc888 0%, #fce1c1 100%);
  }
  #callouts a:nth-child(3) {
    background-color: #fed19c;
    background-image: -moz-linear-gradient(-45deg, #fed19c 0%, #f6e1c2 100%);
    background-image: -webkit-linear-gradient(-45deg, #fed19c 0%, #f6e1c2 100%);
    background-image: linear-gradient(135deg, #fed19c 0%, #f6e1c2 100%);
  }
  #callouts a:nth-child(4) {
    background-color: #f6debc;
    background-image: -moz-linear-gradient(-45deg, #f6debc 0%, #fcdfbc 100%);
    background-image: -webkit-linear-gradient(-45deg, #f6debc 0%, #fcdfbc 100%);
    background-image: linear-gradient(135deg, #f6debc 0%, #fcdfbc 100%);
  }
}
#callouts a:hover {
  color: #fff;
}
#callouts a .icon {
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto 0.4em;
  display: block;
}
#callouts a .icon path {
  -webkit-transition: fill 0.33s ease-in-out;
  transition: fill 0.33s ease-in-out;
}
#callouts a h2.topic {
  line-height: 1.18181818;
  font-size: 0.55em;
  font-weight: 400;
  text-transform: uppercase;
  color: currentcolor;
  display: block;
}
#callouts a h2.topic .trait {
  font-weight: 600;
  display: block;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 420;
}
.spotlight > div {
  position: relative;
}
.spotlight .spot01 {
  color: #231f20;
  padding: 4.1em 0 3.5em;
  background-color: #fff;
}
@media only screen and (max-width: 41.5625em) {
  .spotlight .spot01 {
    font-size: min(2.45vw, 1em);
    padding: 3em 0;
    /* custom Opt-Out 666oo */
  }
}
.spotlight .spot01:after {
  content: '';
  width: 100%;
  height: 27em;
  background-color: #c2ece6;
  background-image: -moz-linear-gradient(top, #c2ece6 0%, #e3fbf8 100%);
  background-image: -webkit-linear-gradient(top, #c2ece6 0%, #e3fbf8 100%);
  background-image: linear-gradient(to bottom, #c2ece6 0%, #e3fbf8 100%);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.spotlight .spot01 h2.topic {
  line-height: 1;
  font-size: 1.75em;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  text-transform: uppercase;
  color: currentcolor;
  margin: 0 0 1.17142857em;
  display: block;
  position: relative;
  z-index: 420;
}
.spotlight .spot01 .spotco {
  color: currentcolor;
  width: 18.3em;
  margin: 0 0.8em 2.2em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
.spotlight .spot01 .spotco:hover .decoration {
  background-color: #ffc888;
}
.spotlight .spot01 .spotco:hover .decoration img {
  opacity: 0.4;
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
}
.spotlight .spot01 .spotco .decoration {
  width: 100%;
  display: block;
  -webkit-transition: background-color 0.55s ease-in-out;
  transition: background-color 0.55s ease-in-out;
}
.spotlight .spot01 .spotco .decoration img {
  width: 100%;
  display: block;
  -webkit-transition: transform 0.55s ease-in-out, opacity 0.55s ease-in-out, -webkit-filter 0.55s ease-in-out, filter 0.55s ease-in-out;
  transition: transform 0.55s ease-in-out, opacity 0.55s ease-in-out, -webkit-filter 0.55s ease-in-out, filter 0.55s ease-in-out;
}
.spotlight .spot01 .spotco h3.topic {
  line-height: 3.04347826;
  font-size: 1.15em;
  font-family: 'Cinzel', serif;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: currentcolor;
  background: #fff;
  display: block;
}
.spotlight .spot01 .info {
  line-height: 1.89473684;
  font-size: 0.95em;
  width: 39.47368421em;
  margin: 0 auto 1.63157895em;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot01 .info {
    display: block;
    /* desk 1300w */
  }
}
.spotlight .spot01 .spotbtn {
  letter-spacing: 0.15em;
  line-height: 3.66666667;
  font-size: 0.75em;
  text-transform: uppercase;
  color: #fff;
  width: 12em;
  height: 3.66666667em;
  border-radius: 1.83333333em;
  margin-left: auto;
  margin-right: auto;
  background-color: #6ac6b8;
  display: block;
  position: relative;
  z-index: 420;
  -webkit-transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out, background-color 0.66s ease-in-out;
  transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out, background-color 0.66s ease-in-out;
}
.spotlight .spot01 .spotbtn:hover {
  background-color: #ffc888;
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  -webkit-transition-duration: 0.33s;
  transition-duration: 0.33s;
}
.spotlight .spot02 {
  font-size: min(3vw, 1em);
  padding: 3em 0;
  background: #6d9348 url(../images/spotlight/spot02bg.jpg) no-repeat center center;
}
@media only screen and (min-width: 48em) {
  .spotlight .spot02 {
    padding: 5em 0 6.05em;
    /* midTab */
  }
}
@media only screen and (min-width: 81.25em) {
  .spotlight .spot02 {
    background-size: auto auto;
    background-attachment: fixed;
    /* desk 1300w */
  }
}
.spotlight .spot02 .cycle-slideshow {
  width: 96%;
  max-width: 50em;
  margin: 0 auto 2.6em;
  display: block;
}
.spotlight .spot02 .cycle-slide {
  color: #fff;
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
.spotlight .spot02 .cycle-slide:hover {
  color: #e39d4c;
}
.spotlight .spot02 .decoration {
  border-radius: 50%;
  margin: 0 auto 0.4em;
  box-shadow: 0.5em 0.5em 0.75em rgba(0, 0, 0, 0.41);
  display: block;
}
.spotlight .spot02 .testifier {
  letter-spacing: 0.15em;
  line-height: 2.64705882;
  font-size: 0.85em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.76470588em;
  display: block;
}
.spotlight .spot02 .testimony {
  line-height: 1.60714286;
  font-size: 1.4em;
  font-weight: 500;
  display: block;
}
.spotlight .spot02 .spotpager {
  line-height: 0;
  width: 100%;
  margin: 0 0 3.15em;
  display: block;
}
.spotlight .spot02 .spotpager a {
  font-size: 20px;
  width: 14px;
  height: 14px;
  margin: 0 0.175em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.spotlight .spot02 .spotpager a.cycle-pager-active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.spotlight .spot02 .spotpager a.cycle-pager-active:after {
  -webkit-transform: scale(2);
  transform: scale(2);
  opacity: 0;
}
.spotlight .spot02 .spotpager a:before,
.spotlight .spot02 .spotpager a:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-transition: transform 0.55s ease-in-out, opacity 0.55s ease-in-out;
  transition: transform 0.55s ease-in-out, opacity 0.55s ease-in-out;
  pointer-events: none;
}
.spotlight .spot02 .spotpager a:before {
  background: #ffc888;
  -webkit-transform: scale(2.44);
  transform: scale(2.44);
  opacity: 0;
}
.spotlight .spot02 .spotpager a:after {
  background: #fff;
  -webkit-transform: scale(0.57);
  transform: scale(0.57);
  opacity: 1;
}
.spotlight .spot02 .spotbtn {
  letter-spacing: 0.15em;
  line-height: 3.66666667;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  width: 18.66666667em;
  height: 3.66666667em;
  border-radius: 1.83333333em;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out, background-image 0.66s ease-in-out;
  transition: transform 0.66s ease-in-out, opacity 0.66s ease-in-out, background-image 0.66s ease-in-out;
}
.spotlight .spot02 .spotbtn:nth-of-type(1) {
  background-color: #6ac6b8;
}
.spotlight .spot02 .spotbtn:nth-of-type(2) {
  background-color: #eab578;
  margin-left: 1.33333333em;
}
.spotlight .spot02 .spotbtn:hover {
  background-color: rgba(204, 204, 204, 0.8);
  -webkit-transform: scale(1.23);
  transform: scale(1.23);
  opacity: 0.8;
  -webkit-transition-duration: 0.33s;
  transition-duration: 0.33s;
}
/* ==================================================================
	subnav || aka subnav-outer || 
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to sidebar rules [=
=================================================================== */
/* TOP ORIENTED */
/* ==================================================================
	content || aka #home-content and .interior-content
=================================================================== */
#bd {
  padding: 0 0 3em;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 4.8em 0 3.31em;
    /* midTab */
  }
  #bd:after {
    content: '';
    width: auto;
    height: 100%;
    margin-left: 11.35em;
    background-color: #bee9e3;
    background-image: -moz-linear-gradient(left, #bee9e3 0%, #f5fbfb 100%);
    background-image: -webkit-linear-gradient(left, #bee9e3 0%, #f5fbfb 100%);
    background-image: linear-gradient(to right, #bee9e3 0%, #f5fbfb 100%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 50%;
    z-index: 1;
  }
}
#bd .container {
  max-width: 55em;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 32em;
    width: 58.18181818%;
    float: left;
    /* midTab */
  }
  #content p {
    text-align: justify;
  }
}
@media only screen and (min-width: 48em) and only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 0.95em;
    /* desk 1300w */
  }
}
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 5em 0 6.5em;
    /* midTab */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd {
    min-height: 55em;
    /* desk 1300w */
  }
}
.home #bd:after {
  display: none;
}
.home #bd .container {
  max-width: 60em;
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: none;
    max-width: 26em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
.home #bd .ornament {
  width: 50%;
  max-width: 37.5em;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 50%;
  z-index: 400;
  pointer-events: none;
}
@media only screen and (max-width: 81.1875em) {
  .home #bd .ornament {
    display: none;
    /* desk 1300oo */
  }
}
.home #bd .ornament:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1.2em solid rgba(255, 255, 255, 0.3);
  z-index: 420;
}
.home #bd .ornament img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
/* ===============================================
				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: #6ac6b8;
  position: absolute;
  top: 50%;
  z-index: 900;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  -webkit-transition: transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  -webkit-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.68;
}
/* comment line below if patient login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em!important;
}
@media only screen and (min-width: 81.25em) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
.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.5;
  font-size: 1.5em;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #231f20;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.84210526;
  font-size: 0.95em;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #231f20;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #6ac6b8;
}
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%;
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 110%;
  margin: 0 -5% 3em;
  display: block;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 32.54545455%;
    margin: 0 0 1em;
    padding-top: 45%;
    display: block;
    float: right;
    clear: right;
    /* midTab 768w */
  }
}
/*sitepics*/
#hide-stock {
  position: relative;
  width: 100%;
  max-width: 17.9em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
@media only screen and (min-width: 48em) {
  #hide-stock {
    margin: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    /* midTab 768w */
  }
}
#hide-stock:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 420;
  border: 1em solid rgba(255, 255, 255, 0.4);
}
.static {
  width: 100%;
  position: relative;
  z-index: 400;
}
/*.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;
}
/* ipSub || aka subnav-outer */
#subnav {
  color: #fff;
  margin: 0 0 6%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 47.94em) {
  #subnav {
    text-align: center;
    padding: 3em 10%;
    background-color: #bee9e3;
    background-image: -moz-linear-gradient(left, #bee9e3 0%, #f5fbfb 100%);
    background-image: -webkit-linear-gradient(left, #bee9e3 0%, #f5fbfb 100%);
    background-image: linear-gradient(to right, #bee9e3 0%, #f5fbfb 100%);
    /* midTab 767oo */
  }
}
@media only screen and (min-width: 48em) {
  #subnav {
    text-align: left;
    padding: 0 0 3em 3.6em;
    /* midTab 768w */
  }
}
#subnav h2.topic {
  letter-spacing: 0.02em;
  line-height: 2.43478261;
  font-size: 1.15em;
  font-family: 'Cinzel', serif;
  text-align: inherit;
  font-weight: 500;
  text-transform: uppercase;
  color: #231f20;
  height: 2.43478261em;
  width: 100%;
  margin: 0 auto 0.65217391em;
  border-bottom: 1px solid #fff;
  display: block;
  position: relative;
  z-index: 400;
}
#subnav p {
  line-height: 1.0625;
  font-size: 0.8em;
  font-weight: 500;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
#subnav a {
  color: #231f20;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  margin: 0.2em 0.8em;
  padding: 0.5em 0;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #subnav a {
    float: left;
    clear: left;
    margin: 0.2em 0;
    /* midTab */
  }
}
@media only screen and (min-width: 81.25em) {
  #subnav a {
    margin: 0;
    /* desk 1300w */
  }
}
#subnav a:hover,
#subnav a.active {
  color: #41a899;
  text-decoration: none;
}
/* END SIDEBAR - */
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight .spot03 {
  font-size: 2vw;
  padding: 4.3em 0 3.4em;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 47.9375em) {
  .spotlight .spot03 {
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spotlight .spot03 {
    font-size: 1.3vw;
    font-size: min(1.3vw, 1em);
    /* midTab 768w */
  }
}
@media only screen and (max-width: 63.9375em) {
  .spotlight .spot03 {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  .spotlight .spot03 {
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 96.875em) {
  .spotlight .spot03 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spotlight .spot03:before {
  content: '';
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 14.05em;
  left: 0;
  background-color: #fcd2ac;
  background-image: -moz-linear-gradient(top, #fcd2ac 0%, #fbead5 100%);
  background-image: -webkit-linear-gradient(top, #fcd2ac 0%, #fbead5 100%);
  background-image: linear-gradient(to bottom, #fcd2ac 0%, #fbead5 100%);
  z-index: 1;
}
.spotlight .spot03 h2.topic {
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: 1.75em;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  color: #231f20;
  margin: 0 0 1.25714286em;
  display: block;
  position: relative;
  z-index: 420;
}
.spotlight .spot03 a {
  color: #231f20;
  width: 14.55em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 410;
  -webkit-transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
  transition: transform 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 47.9375em) {
  .spotlight .spot03 a {
    margin: 0.3em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spotlight .spot03 a {
    margin: 0 0.3em;
    /* midTab 768w */
  }
}
.spotlight .spot03 a:hover {
  color: #6ac6b8;
}
.spotlight .spot03 a:hover:nth-of-type(1) .decoration,
.spotlight .spot03 a:hover:nth-of-type(5) .decoration {
  background: #c1ebe4;
}
.spotlight .spot03 a:hover:nth-of-type(2) .decoration,
.spotlight .spot03 a:hover:nth-of-type(4) .decoration {
  background: #9ce2d5;
}
.spotlight .spot03 a:hover:nth-of-type(3) .decoration {
  background: #6ac6b8;
}
.spotlight .spot03 a:hover .decoration {
  -webkit-transform: translate3d(0, -0.5em, 0);
  transform: translate3d(0, -0.5em, 0);
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition-duration: 0.66s;
  transition-duration: 0.66s;
}
.spotlight .spot03 a:hover .decoration img {
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  opacity: 0.25;
  -webkit-transition-duration: 0.55s;
  transition-duration: 0.55s;
}
.spotlight .spot03 a:hover h3.topic {
  -webkit-transition-duration: 0.55s;
  transition-duration: 0.55s;
}
.spotlight .spot03 a .decoration {
  width: 100%;
  margin: 0 auto 1.6em;
  -webkit-transition: transform 0.99s ease-in-out, background-color 0.99s ease-in-out;
  transition: transform 0.99s ease-in-out, background-color 0.99s ease-in-out;
}
.spotlight .spot03 a .decoration img {
  width: 100%;
  display: block;
  -webkit-transition: transform 0.99s ease-in-out, opacity 0.99s ease-in-out, -webkit-filter 0.99s ease-in-out, filter 0.99s ease-in-out;
  transition: transform 0.99s ease-in-out, opacity 0.99s ease-in-out, -webkit-filter 0.99s ease-in-out, filter 0.99s ease-in-out;
}
.spotlight .spot03 a h3.topic {
  letter-spacing: 0.05em;
  line-height: 1.14285714;
  font-size: 1.05em;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  display: block;
  -webkit-transition: color 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transition: color 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spotlight .spot03 a h3.topic.single {
  line-height: 2.28571429;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #231f20;
  width: 100%;
  padding: 4.5em 0 0;
  background: #839b4f url(../images/footer/bg.jpg) no-repeat center top;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 81.1875em) {
  #ft {
    background-size: cover;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 81.25em) {
  #ft {
    background-attachment: fixed;
    background-size: auto auto;
    /* desk 1300w */
  }
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  padding: 1.25em 0;
  margin: 0 auto 5.5em;
  background-color: rgba(193, 235, 228, 0.9);
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  #location {
    max-width: 27.5em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location {
    font-size: min(1.75vw, 1em);
    max-width: 55em;
    /* midTab 768w */
  }
}
#location .map {
  width: 80%;
  max-width: 26.25em;
  background: #fff;
  border: 0.5em solid #fff;
}
@media only screen and (max-width: 47.9375em) {
  #location .map {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location .map {
    display: inline-block;
    vertical-align: top;
    margin-right: 1.9em;
    /* midTab 768w */
  }
}
#location .mod {
  width: 100%;
  max-width: 24.4em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 48em) {
  #location .mod {
    padding-top: 1.6em;
    /* midTab 768w */
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 2.2em;
  display: block;
  -webkit-filter: drop-shadow(0 0.15em 0.075em rgba(0, 0, 0, 0.26));
  filter: drop-shadow(0 0.15em 0.075em rgba(0, 0, 0, 0.26));
}
#location .logo svg {
  width: 9em;
  height: 5.75em;
}
#location .info {
  text-align: center;
  text-transform: uppercase;
  width: 88%;
  max-width: 11.6em;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 29.9375em) {
  #location .info {
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* mintab 480oo */
  }
}
#location .phone {
  line-height: 1.84;
  font-size: 1.25em;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  display: block;
}
#location .address {
  letter-spacing: 0.03em;
  line-height: 1.38461538;
  font-size: 0.65em;
  margin: 0 auto 1.46153846em;
  display: block;
}
#location .address .marker {
  width: 2.61538462em;
  height: 3.46153846em;
  margin-right: 19em;
  position: absolute;
  right: 50%;
  top: 22.5em;
  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) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
  }
}
#location .address:hover .marker {
  -webkit-transform: scale(2);
  transform: scale(2);
}
#location .emailus {
  letter-spacing: 0.03em;
  line-height: 2.30769231;
  font-size: 0.65em;
  font-weight: 600;
  margin: 0;
  display: block;
}
#location .emailus .icon {
  display: inline-block;
  margin-right: 0.76923077em;
}
#location .emailus .at:before {
  content: 'frontdesk';
}
#location .emailus .at:after {
  content: 'neisdental.com';
}
#location .officehours {
  letter-spacing: 0.03em;
  line-height: 1.92307692;
  font-size: 0.65em;
  text-align: center;
  text-transform: uppercase;
  width: 18.76923077em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#location .officehours:before {
  content: '';
  background: #fff;
  display: block;
}
@media only screen and (max-width: 29.9375em) {
  #location .officehours:before {
    width: 100%;
    height: 1px;
    margin: 0.75em auto 1em;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 30em) {
  #location .officehours:before {
    width: 1px;
    height: 12.76923077em;
    position: absolute;
    top: -0.53846154em;
    left: 1em;
    /* mintab 480w */
  }
}
#location .officehours .day,
#location .officehours .hours {
  display: inline-block;
  vertical-align: top;
}
#location .officehours .day {
  text-align: right;
  font-weight: 600;
  width: 39.75409836%;
  padding-right: 1.38461538em;
}
#location .officehours .hours {
  text-align: left;
  width: 60.24590164%;
}
#location a {
  color: #231f20;
  -webkit-transition: color 0.33s ease-in-out;
  transition: color 0.33s ease-in-out;
}
#location a:hover {
  color: #eab578;
}
/* ==================================================================
		footer || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #a59d90;
  padding: 2em 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.55);
}
@media only screen and (min-width: 48em) {
  #links {
    font-size: 20px;
    height: 3.7em;
    padding: 1.1em 0 0;
    /* midTab 768w  */
  }
}
#links .util {
  line-height: 2.72727273;
  font-size: 0.55em;
  text-transform: uppercase;
  margin-bottom: 2em;
}
@media only screen and (min-width: 30em) {
  #links .util {
    width: auto;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    /* mintab 480w */
  }
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
#links a {
  color: #231f20;
  -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;
}
#links a:hover {
  color: #eab578;
}
/*sesame link*/
a#sesame-link .sesameicon {
  width: 2.18181818em;
  height: 1.81818182em;
  margin-right: 0.63636364em;
  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*/
#backtotop {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 30em) {
  #backtotop {
    width: auto;
    margin: 0 0 0 1.4em;
    display: inline-block;
    vertical-align: top;
    /* mintab 480w */
  }
}
a#btt {
  line-height: 1.5;
  font-size: 1em;
  display: inline-block;
  vertical-align: top;
}
a#btt:hover {
  -webkit-transform: scale(2);
  transform: scale(2);
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 2px;
  width: 100%;
  margin: 1.58em 0;
  background: #fce2c5;
  display: block;
}
/*success message*/
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #6ac6b8;
}
/* Form Buttons */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #6ac6b8;
  border: 1px solid #6ac6b8;
  -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: #eab578;
  background-color: #eab578;
}
form p {
  height: auto;
}
/* massive chat widget resize for mobile use comfort */
#bc-chat-container {
  font-size: 0.8em!important;
}
.bc-minimize-state {
  width: 11.8em!important;
  height: 7.7em!important;
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /* 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%;
  }
  /* ===============================================
					sitemap 
=============================================== */
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.35em;
    margin: 0;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
  }
  #main-nav .container {
    background: none;
    padding: 0;
    /*max-width:none;*/
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 2.35em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: none;
    /*<def-nofloat*/
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.5em 0 0;
    /*adjust margin for spacing*/
    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: 3.13333333;
    text-align: center;
    text-decoration: none;
    height: 100%;
    width: auto;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 3000;
  }
  .ready #main-nav ul li a[id] {
    color: #fff;
  }
  #main-nav ul li a[id]:after {
    bottom: 0.73333333em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 0.8em 0;
    margin: 0;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.3em;
    /*default 25*/
    margin: 0;
    padding: 0;
    background: none;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 2.16666667;
    text-align: left;
    white-space: nowrap;
    height: 2.16666667em;
    width: 100%;
    padding: 0 1.66666667em;
    margin: 0;
    float: left;
    position: relative;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
  /* reverses text-align for flyout on last nav item */
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  /* ===============================================
			special drop locations 
=============================================== */
  #main-nav ul li:hover ul {
    left: -0.6em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -0.6em;
    margin: 0;
  }
  /*END*/
}
.ready #main-nav ul li.open > a[id],
.ready #main-nav ul li.active > a[id],
.ready #main-nav ul li:hover > a[id] {
  color: #ecc078;
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@-webkit-keyframes flyinmobilehamburger {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes flyinmobilehamburger {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
