/* 
 Site Manager Version: 13.0.0
 Buildkit Version: 13.0.0

 Account: dicus-michael4
 Written by: james stillion

 Date Created: March 2023
 Sesame Communications - All rights reserved. C2023
 Any reproduction or intentional misuse is strictly prohibited
*/

/* ===============================================
					fonts
=============================================== */
/* jost-300 */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/jost-300.woff2') format('woff2'), url('../fonts/jost-300.woff') format('woff');
}
/* jost-400 */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jost-400.woff2') format('woff2'), url('../fonts/jost-400.woff') format('woff');
}
/* jost-400i */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/jost-400i.woff2') format('woff2'), url('../fonts/jost-400i.woff') format('woff');
}
/* jost-500 */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/jost-500.woff2') format('woff2'), url('../fonts/jost-500.woff') format('woff');
}
/* jost-600 */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/jost-600.woff2') format('woff2'), url('../fonts/jost-600.woff') format('woff');
}
/* jost-700 */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jost-700.woff2') format('woff2'), url('../fonts/jost-700.woff') format('woff');
}
/* jost-700i */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/jost-700i.woff2') format('woff2'), url('../fonts/jost-700i.woff') format('woff');
}
/* philosopher-400 */
@font-face {
  font-display: swap;
  font-family: 'Philosopher';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/philosopher-400.woff2') format('woff2'), url('../fonts/philosopher-400.woff') format('woff');
}
.fontJ {
  font-family: 'Jost', sans-serif;
}
.fontP {
  font-family: 'Philosopher', 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,
form button,
button {
  font-family: 'Jost', sans-serif;
}
svg {
  display: inline-block;
}
body {
  font-size: 15px;
  color: #2b3933;
  background: #ede9e7;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #ab7920;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  color: #3a7a6a;
  text-decoration: underline;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  font-family: 'Philosopher', sans-serif;
  font-weight: 400;
  color: #2b3933;
  margin: 0 0 1.44em;
  text-rendering: auto;
}
h2:not(.topic),
h3:not(.topic) {
  color: #396157;
}
.sub h1 {
  font-size: 10vw;
  font-weight: 400;
  margin-bottom: 0.43333333em;
}
@media only screen and (min-width: 480px) {
  .sub h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
.home #content header {
  text-align: center;
}
@media only screen and (min-width: 1300px) {
  .home #content header {
    text-align: right;
    position: absolute;
    top: 0;
    right: calc(100% + 30px);
    /* desk 1300w */
  }
}
.home h1 {
  font-size: 12vw;
  text-align: inherit;
  margin: 0;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 3em;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 1299px) {
  .home h1 {
    margin-bottom: 1em;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .home h1 {
    text-align: right;
    white-space: nowrap;
    /* desk 1300w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.31428571;
  font-size: 0.58333333em;
  color: #396157;
}
.home h1 .trait.bottom {
  height: 1.1em;
}
h2:not(.topic) {
  font-size: 1.25em;
}
h3:not(.topic) {
  font-size: 1.2em;
}
h4 {
  font-size: 1.15em;
}
h5 {
  font-size: 1.1em;
}
h6 {
  font-size: 1.05em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 64.5em;
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) and (max-width: 1299px) {
  #masthead {
    position: absolute;
    top: 1.5em;
    /* range 1024w - 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
  #masthead.ready {
    top: 55vw;
    transform: translate(0, -100%);
    position: absolute;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #masthead {
    /* range 1300w - 1999oo */
  }
  #masthead.ready {
    top: 1125px;
  }
}
#masthead .bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 979px) {
  #masthead .bg {
    width: auto;
    height: 100%;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  #masthead .bg {
    width: 4.2em;
    height: 4.2em;
    /* custom 980w */
  }
}
@media only screen and (max-width: 1023px) {
  #masthead .bg {
    margin: 0 auto 0 0;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #masthead .bg {
    margin-left: auto;
    margin-right: auto;
    /* midTab 1024w */
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  #masthead .container {
    max-width: 64.5em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  font-family: 'Philosopher', sans-serif;
  text-align: center;
  height: 48px;
  width: 48px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 48px;
  color: #2e2d2a;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border: none;
  -webkit-display: none;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
  cursor: pointer;
  transform: translate(0, 0.4em);
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.3em;
}
#main-nav .trigger .navicon span {
  width: 100%;
  height: 2px;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #fff;
}
#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: translate3d(0, 0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -48px 0 0;
  padding: 1em 0;
  background-color: rgba(231, 208, 142, 0.9);
  background-image: -moz-linear-gradient(top, rgba(171, 121, 32, 0) 0%, rgba(171, 121, 32, 0.75) 100%);
  background-image: -webkit-linear-gradient(top, rgba(171, 121, 32, 0) 0%, rgba(171, 121, 32, 0.75) 100%);
  background-image: linear-gradient(to bottom, rgba(171, 121, 32, 0) 0%, rgba(171, 121, 32, 0.75) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.35294118;
  font-size: 0.85em;
  color: #000;
  width: 50%;
  height: 2.35294118em;
  margin: 0 auto;
  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: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b17c2a;
  z-index: -1;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
@media only screen and (max-width: 1023px) {
  #main-nav ul li a[id]:after {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #main-nav ul li a[id]:after {
    height: 4.94117647em;
    top: auto;
    bottom: 0;
    /* midTab 1024w */
  }
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #fff;
  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: translate3d(0, 0, 0) scaleX(1);
  opacity: 0.5;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(189, 140, 63, 0.9);
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #000;
  margin-bottom: 0;
  background: #fff;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
/* all about that open class */
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 2em;
  opacity: 1;
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  /* midTab 1024w */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  font-family: 'Philosopher', sans-serif;
  text-align: center;
  color: #ab7920;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
#hd .mod {
  display: block;
  position: absolute;
}
@media only screen and (max-width: 1023px) {
  #hd .mod {
    top: 0.4em;
    right: 48px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .mod {
    top: 0.9em;
    right: 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 8.75em;
  margin: 0.75em auto 0.75em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    position: absolute;
    top: -1px;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 8.75em;
  height: 4.15em;
}
/* ===============================================
	socialmedia
=============================================== */
#hd .socialmedia {
  line-height: 0;
  text-align: center;
  width: auto;
  height: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 300;
}
@media only screen and (max-width: 1023px) {
  #hd .socialmedia {
    font-size: 20px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .socialmedia {
    padding: 0 0.5em;
    /* midTab 1024w */
  }
  #hd .socialmedia:before {
    content: '';
    width: 1px;
    height: 4.2em;
    background-color: #a28757;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}
#hd .socialmedia a {
  line-height: 4.36363636;
  font-size: 0.55em;
  color: #2e2d2a;
  height: 4.36363636em;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #hd .socialmedia a {
    width: 4.36363636em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .socialmedia a {
    width: 2em;
    /* midTab 1024w */
  }
}
#hd .socialmedia a:hover {
  color: #fff;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
#hd .socialmedia a .icon {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #hd .socialmedia a .icon:before {
    display: inline-block;
    transform: translate(0, 0) scale(1.5);
    /* midTab 1024oo */
  }
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 1024px) {
  #utilitynav {
    /* midTab 1024w */
  }
  #utilitynav:before,
  #utilitynav:after {
    content: '';
    width: 1px;
    height: 4.2em;
    background-color: #a28757;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  #utilitynav .appointmentrequest:after {
    content: '';
    width: 1px;
    height: 5.5em;
    background-color: #826d46;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin-left:18px;
  }
  #utilitynav:before {
    left: 0;
  }
  #utilitynav:after {
    right: 0;
  }
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  font-size: 0.75em;
  text-align: center;
  color: #2e2d2a;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #utilitynav a {
    line-height: 48px;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a {
    line-height: 3.2;
    /* midTab 1024w */
  }
}
#utilitynav a:hover {
  color: #fff;
}
#utilitynav a.appointmentrequest {
  width: auto;
  min-width: 48px;
}
@media only screen and (min-width: 1024px) {
  #utilitynav a.appointmentrequest {
    width: 12.53333333em;
    /* midTab 1024w */
  }
   #utilitynav a.pay {
    width: 8.53333333em;
    /* midTab 1024w */
  }
}

#utilitynav a.pay .icon {
	margin-top: .92em;
	font-size: 1.5em;
}

#utilitynav a.pay .cta {
	display:none;
}
@media only screen and (min-width: 64em) {
#utilitynav a.pay .cta {
	display:inline-block;
}
#utilitynav a.pay .icon {
	font-size:.75em;
}}

#utilitynav a.appointmentrequest .icon {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #utilitynav a.appointmentrequest .icon {
    width: auto;
    height: 48px;
    /* midTab 1024oo */
  }
  #utilitynav a.appointmentrequest .icon path {
    transform-origin: 50% 66%;
    transform: translate(0, 0) scale(1.23);
  }
}
@media only screen and (min-width: 1024px) {
  #utilitynav a.appointmentrequest .icon {
    width: 0.8em;
    height: 3.2em;
    margin-right: 0.26666667em;
    /* midTab 1024w */
  }
}
@media only screen and (max-width: 1023px) {
  #utilitynav a.appointmentrequest .cta {
    white-space: nowrap;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    /* midTab 1024oo */
  }
}
#utilitynav a.patient-login {
  width: 7.8em;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  color: #fff;
  min-height: 55vw;
  background: #000;
  position: relative;
  z-index: 400;
}
@media only screen and (max-width: 665px) {
  #slideshow {
    font-size: min(2.7vw, 20px);
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #slideshow {
    font-size: min(2vw, 1em);
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow {
    min-height: 1125px;
    /* range 1300w - 1999oo */
  }
}
@media only screen and (min-width: 2000px) {
  #slideshow {
    font-size: 1vw;
    /* custom 2000w */
  }
}
#slideshow .welcomevid {
  width: 100%;
  vertical-align: top;
  aspect-ratio: 16 / 9;
  opacity: 0.8;
}
@media only screen and (min-width: 1300px) {
  #slideshow .welcomevid {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #slideshow .welcomevid {
    width: 2000px;
    margin: 0 calc(-1000px + 50vw);
    /* range 1300w - 1999oo */
  }
}
#slideshow .ssoverlay {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  z-index: 420;
}
@media only screen and (max-width: 665px) {
  #slideshow .ssoverlay {
    bottom: 1em;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  #slideshow .ssoverlay {
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    /* custom 666w */
  }
}
#slideshow .ssoverlay .logo {
  width: 31.55em;
  height: 8.4em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  background: #ede9e7 repeat 50% 0;
  background-attachment: fixed;
  position: relative;
  z-index: 400;
}
.spotlight.top {
  background-image: url(../images/tile040.png);
}
@media only screen and (max-width: 979px) {
  .spotlight.top {
    padding: 0 0 5.25em;
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  .spotlight.top {
    padding: 5.25em 0;
    /* custom 980w */
  }
}
.spotlight.bottom {
  background-image: url(../images/tile100.png);
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot01
=============================================== */
.spot01 {
  color: #fff;
  padding: 0;
}
@media only screen and (min-width: 980px) {
  .spot01 {
    font-size: min(1.4vw, 1em);
    /* custom 980w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot01 .mod {
  text-align: center;
  width: 100%;
  max-width: 66.1em;
  margin-left: auto;
  margin-right: auto;
  background: #4d7a49 no-repeat 50% 100%;
  border: 0.85em solid #ffffff;
  border-bottom: none;
  display: block;
}
@media only screen and (min-width: 666px) {
  .spot01 .mod {
    text-align: left;
    /* custom 666w */
  }
}
@media only screen and (min-width: 980px) {
  .spot01 .mod {
    padding-top: 4.8em;
    /* custom 980w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 .mod {
    /* desk 1300w */
  }
  .spot01 .mod.active {
    will-change: background-position;
  }
}
.spot01 .decoration {
  max-width: 25.05em;
  height: auto;
  max-height: 28.75em;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  pointer-events: none;
}
@media only screen and (max-width: 665px) {
  .spot01 .decoration {
    width: 50%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot01 .decoration {
    width: 16em;
    /* custom 666w */
  }
}
@media only screen and (max-width: 979px) {
  .spot01 .decoration {
    transform: translate(15%, 0);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  .spot01 .decoration {
    width: 100%;
    transform: translate(2.3em, 0);
    /* custom 980w */
  }
}
.spot01 .info {
  width: 100%;
  padding: 2em 0 1em;
  display: inline-block;
  vertical-align: top;
  position: relative;
  direction: ltr;
}
@media only screen and (min-width: 666px) {
  .spot01 .info {
    padding-left: 10.46511628%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 980px) {
  .spot01 .info {
    max-width: 25.2em;
    margin: 0 auto 3.2em 10.46511628%;
    padding: 0;
    /* custom 980w */
  }
}
.spot01 h2.topic {
  line-height: 1;
  font-size: 3em;
  font-family: 'Philosopher', sans-serif;
  font-weight: 400;
  color: #fff;
  display: block;
}
@media only screen and (max-width: 479px) {
  .spot01 h2.topic {
    font-size: 12vw;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot01 h2.topic {
    margin-bottom: 0.25em;
    /* mintab 480w */
  }
}
.spot01 .voluble {
  line-height: 1.76470588;
  font-size: 0.85em;
}
@media only screen and (min-width: 1300px) {
  .spot01 .voluble {
    text-align: justify;
    /* margin-bottom:56em/@fs; */
    /* desk 1300w */
  }
}
@media only screen and (max-width: 1299px) {
  .spot01 .voluble .spotvol {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 .voluble .spotvol {
    display: inline;
    /* desk 1300w */
  }
}
.spot01 .voluble .spotlink {
  font-weight: 600;
  text-transform: uppercase;
  color: #e7d08e;
}
@media only screen and (max-width: 1299px) {
  .spot01 .voluble .spotlink {
    line-height: 48px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot01 .voluble .spotlink {
    line-height: 2.14285714;
    font-size: 0.82352941em;
    /* desk 1300w */
  }
}
.spot01 .voluble .spotlink:hover {
  text-decoration: underline;
}
.spot01 .associationlogos {
  text-align: inherit;
  width: 100%;
  padding: 1.475em 0;
  background-color: rgba(181, 192, 152, 0.3);
  position: relative;
}
@media only screen and (max-width: 665px) {
  .spot01 .associationlogos {
    /* custom 666oo */
  }
  .spot01 .associationlogos > br {
    display: none;
  }
}
@media only screen and (min-width: 666px) {
  .spot01 .associationlogos {
    padding-left: 10.46511628%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 980px) {
  .spot01 .associationlogos {
    /* custom 980w */
  }
}
.spot01 .associationlogos a {
  color: #fff;
  margin: 5%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 665px) {
  .spot01 .associationlogos a {
    display: block;
    margin-right: auto;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .spot01 .associationlogos a {
    margin: 0.7em 1.625em 0.7em 0;
    /* custom 666w */
  }
}
.spot01 .associationlogos a:hover {
  color: #e7d08e;
}
.spot01 .associationlogos a.ada {
  width: 5.65em;
  height: 2.05em;
}
.spot01 .associationlogos a.aav {
  width: 11.8em;
}
.spot01 .associationlogos a.ssc {
  width: 12.25em;
  height: 1.65em;
}
.spot01 .associationlogos a.agd {
  width: 5.65em;
  height: 1.6em;
}
.spot01 .associationlogos a img,
.spot01 .associationlogos a svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* ===============================================
	spot02
=============================================== */
.spot02 {
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot02 {
    font-size: min(3.2vw, 1em);
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) and (max-width: 979px) {
  .spot02 {
    font-size: min(1.7vw, 1em);
    /* custom 979oo */
  }
}
@media only screen and (min-width: 980px) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    /* custom 980w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot02 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot02 .mod {
  width: 100%;
  max-width: 66.1em;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 0.55em solid #ffffff;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .spot02 .mod {
    border-top-width: 0.275em;
    /* midTab 1024w */
  }
}
.spot02 a {
  color: #ab7920;
  max-width: 16.25em;
  padding: 0;
  margin: 0;
  background: -moz-linear-gradient(-45deg, #3a7a6a 0%, #ab7920 100%);
  background: -webkit-linear-gradient(-45deg, #3a7a6a 0%, #ab7920 100%);
  background: linear-gradient(135deg, #3a7a6a 0%, #ab7920 100%);
  border: 0.275em solid #ffffff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  transition: transform 0.33s ease-in-out;
}
@media only screen and (max-width: 479px) {
  .spot02 a {
    width: 48.5%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot02 a {
    width: 25%;
    /* mintab 480w */
  }
}
.spot02 a:hover {
  z-index: 400;
}
.spot02 a:hover .decoration {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
  opacity: 0.42;
  transform: translate(0, 0) scale(1.05);
  transition-duration: 0.66s, 0.75s, 0.33s, 0.33s;
}
.spot02 a:hover h2.topic {
  color: #fff;
  background-color: rgba(43, 57, 51, 0);
  transform: translate3d(0, -50%, 0);
  transition-timing-function: cubic-bezier(0.36, 0, 0.66, -0.56), linear, linear, linear;
  transition-duration: 0.66s, 0.33s, 0.75s, 0.66s;
}
.spot02 a .decoration {
  width: 100%;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
.spot02 a h2.topic {
  line-height: 2.44444444;
  font-size: 1.35em;
  font-family: 'Philosopher', sans-serif;
  font-weight: 400;
  color: #396157;
  width: auto;
  padding: 0 0.77777778em;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
/* ==================================================================
	subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  font-family: 'Philosopher', sans-serif;
  text-align: center;
  color: #fff;
  padding: 1.75em 0;
  background: #606743 url(../images/slideshow/hero.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

body.layout-section-about-us #subnav {
  background-image: url(../uploads/images/header/about-us.jpg);
}
body.layout-section-new-patients #subnav {
  background-image: url(../uploads/images/header/new-patients.jpg);
}
body.layout-section-family-dentistry #subnav {
  background-image: url(../uploads/images/header/family-dentistry.jpg);
}
body.layout-section-restorative #subnav {
  background-image: url(../uploads/images/header/restorative.jpg);
}
body.layout-section-contact #subnav {
  background-image: url(../uploads/images/header/contact.jpg);
}

@media only screen and (min-width: 768px) {
  #subnav {
    text-align: left;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    height: 25em;
    padding: 0;
    background-size: auto auto;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  #subnav {
    height: 25vw;
    background-size: 100% auto;
    /* custom 2000w */
  }
}
#subnav:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
}
#subnav .container {
  z-index: 420;
}
@media only screen and (min-width: 1300px) {
  #subnav .container {
    position: absolute;
    right: 0;
    bottom: 1.75em;
    left: 0;
    /* desk 1300w */
  }
}
#subnav p {
  line-height: 1.21428571;
  font-size: 0.7em;
  margin: 0;
  padding: 0;
}
#subnav a {
  color: #fff;
  margin: 0 0.8em;
  padding: 0.6em 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    padding: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#subnav a:hover,
#subnav a.active {
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: url(../images/tile040.png) repeat 50% 50%;
  background-attachment: fixed;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3.95em 0;
    /* midTab 768w */
  }
}
#bd .container {
  max-width: 64.5em;
  z-index: 420;
}
#bd .watermark {
  width: 63.3em;
  height: 34.9em;
  margin-right: 0.7em;
  display: block;
  position: absolute;
  right: 50%;
  bottom: 4.2em;
  z-index: 1;
  pointer-events: none;
}
#content {
  display: block;
}
@media only screen and (min-width: 768px) {
  #content {
    width: 55.42635659%;
    max-width: 35.75em;
    float: left;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.8;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0 12em;
  background: #bed1e3 no-repeat 100% 100%;
}
@media only screen and (max-width: 665px) {
  .home #bd {
    background-size: auto 100%;
    /* custom 666oo */
  }
}
@media only screen and (min-width: 666px) {
  .home #bd {
    padding: 6.65em 0 22.9em;
    background-size: 128em auto;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd {
    background-position: 50% 100%;
    /* desk 1300w */
  }
}
.home #bd .container {
  max-width: 64.5em;
}
.home #bd #content {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    max-width: 31.5em;
    margin-right: 0;
    /* desk 1300w */
  }
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mediaslider .cycle-slideshow .cycle-slide {
    padding: 0 5%;
    /* midTab opt-out 768oo */
  }
}
.mediaslider .cycle-slideshow > button {
  font-size: 2.8em;
  color: #ab7920;
  background: none;
  border: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > button span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > button.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > button.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > button.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > button.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > button:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > button:hover span {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.68;
}
/* before-after and office-tour content center */
.before-and-after #content,
.office-tour #content,
.smile-gallery #content {
  text-align: center;
}
.before-and-after #content h2,
.office-tour #content h2,
.smile-gallery #content h2,
.before-and-after #content h3,
.office-tour #content h3,
.smile-gallery #content h3 {
  text-align: center;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* office location ancillary image style */
@media only screen and (max-width: 767px) {
  .locationimg {
    margin: 0 auto 1em;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .locationimg {
    margin: 0 0 1em 1em;
    float: right;
    /* midTab 768w */
  }
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
  /* midTab 768w */
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  .common-procedures #content h2[id] {
    scroll-margin-top: 10em;
  }
  /* desk 1300w */
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em!important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
.border-add{
  border: #639050 solid 5px;
}
.twentytwenty-container{
  width: 300px;
  margin: auto;
}
body.meet-the-team .img-right{width:150px;}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.15em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ab7920;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.95;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #ab7920;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  color: #2b3933;
  text-decoration: none;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
    /* midTab 768w */
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 23.15em;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 35.89147287%;
    margin: 0 0 1em;
    display: block;
    float: right;
    clear: right;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}
#hide-stock .ornament {
  max-width: none;
  width: 46.75em;
  position: absolute;
  top: 2.45em;
  left: 8.1em;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #hide-stock .ornament {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #hide-stock .ornament {
    display: block;
    /* midTab 768w */
  }
}
.stock {
  width: 100%;
  background-color: #ffffff;
  border: 0.75em solid #ffffff;
  position: relative;
  z-index: 4;
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class*='meet-dr-'] #sidebar,
body[class*='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR - */
/* ===============================================
	spot03
=============================================== */
.spot03 {
  text-align: center;
  color: #2b3933;
  padding: 2em 0;
  margin: 0;
  background: #ffffff no-repeat center center;
  position: relative;
  z-index: 410;
}
@media only screen and (min-width: 768px) {
  .spot03 {
    padding: 7.5em 0 6.35em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 {
    font-size: inherit;
    background-position: 50% 90%;
    /* desk 1300w */
  }
  .active .spot03 {
    will-change: background-position;
  }
}
.spot03 .decoration {
  width: 100%;
  max-width: 43.5em;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 666px) {
  .spot03 .decoration {
    margin: 0 -12em 0 4.4em;
    vertical-align: middle;
    /* custom 666w */
  }
}
@media only screen and (max-width: 1299px) {
  .spot03 .decoration {
    display: none;
    /* desk 1300oo */
  }
}
.spot03 .info {
  width: 96%;
  max-width: 20.5em;
  padding: 2em 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.spot03 .info h2.topic {
  line-height: 1;
  font-size: 2.75em;
  font-family: 'Philosopher', sans-serif;
  font-weight: 400;
  color: #ab7920;
  display: block;
}
@media only screen and (min-width: 1300px) {
  .spot03 .info h2.topic {
    text-align: left;
    margin-bottom: 0.27272727em;
    /* desk 1300w */
  }
}
.spot03 .info .vol {
  line-height: 1.65;
  font-size: 1em;
  text-align: justify;
}
@media only screen and (max-width: 1299px) {
  .spot03 .info .vol {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .info .vol {
    display: block;
    /* desk 1300w */
  }
}
.spot03 .mod {
  color: #fff;
  width: 100%;
  max-width: 54.35em;
  margin-left: auto;
  margin-right: auto;
  background-color: #e0c36e;
  background-image: linear-gradient(105deg, #c6a258 0%, #c7a359 2%, #ccab5e 3%, #d0ac60 3%, #cead60 4%, #d8b969 5%, #d8bc69 6%, #ddbe6c 6%, #dfc36f 7%, #dfc36f 8%, #debf6c 9%, #d8bc68 9%, #d9bb65 10%, #d9ba67 10%, #d7b963 10%, #d3b461 10%, #caa755 12%, #c6a653 12%, #c8a553 12%, #c19e4c 13%, #b38c3d 15%, #b58c3d 15%, #b2893a 16%, #b3893d 16%, #b1873b 17%, #b3893f 18%, #b18a3d 18%, #b48a40 18%, #b28b3e 18%, #b9934a 21%, #c6a35f 24%, #d3b674 26%, #dcbe7e 28%, #dec585 29%, #e9cf92 31%, #efd799 33%, #efd799 34%, #f2d89d 34%, #f2d999 36%, #f1d492 38%, #eed18b 38%, #edcf89 39%, #ebcd85 39%, #eaca81 40%, #e9c77d 40%, #e8c67c 41%, #dfb966 42%, #e0b765 43%, #dcb25c 43%, #d9b058 44%, #d5a64a 45%, #d4a549 46%, #d2a446 46%, #d3a245 47%, #d2a142 47%, #d2a041 48%, #d19f3e 48%, #d19f3c 49%, #d3a13e 50%, #d7a949 52%, #deb354 53%, #ddb555 53%, #e4bd60 54%, #e3bf61 55%, #e9c76d 56%, #efd47d 58%, #efd580 60%, #eace7b 61%, #e1c16e 62%, #c99e50 64%, #c7974b 64%, #c09044 65%, #bd8c3f 66%, #bd8d41 71%, #c49648 76%, #cba554 80%, #d7b261 85%, #d7b764 86%, #d9b964 88%, #dbbc69 89%, #dcbc67 89%, #ddbe6b 90%, #ddbf69 91%, #dfbf6c 91%, #dec06a 91%, #dfc06d 91%, #dfc16b 92%, #e0c16e 92%, #dfc36f 100%);
  box-shadow: 1em 1em 1.5em rgba(0, 0, 0, 0.35);
  display: block;
  position: relative;
  z-index: 420;
  direction: ltr;
}
@media only screen and (max-width: 1299px) {
  .spot03 .mod {
    padding: 3.1em 0;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 .mod {
    margin-top: -82px;
    padding: 1.55em 0;
    transform: translate(-115.5px, 0);
    /* desk 1300w */
  }
}
.spot03 .mod:before,
.spot03 .mod:after {
  content: '';
}
.spot03 .mod:before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(105deg, #c7a258 7%, #e0c36e 13%, #b1883c 21%, #f3d99b 39%, #d19f3d 50%, #f0d580 62%, #bd8c3f 68%, #e0c36e 94%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0.5;
}
.spot03 .mod:after {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 0.65em;
  right: 0.65em;
  bottom: 0.65em;
  left: 0.65em;
  z-index: 2;
  border: 1px solid #fff;
  pointer-events: none;
}
.spot03 a {
  color: #fff;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
  overflow: hidden;
  direction: ltr;
  transition: color 0.33s ease-in-out;
  perspective: 1000px;
}
@media only screen and (max-width: 665px) {
  .spot03 a {
    width: 44%;
    margin: 2%;
    /* custom 666oo */
  }
  .spot03 a:nth-of-type(3) {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 666px) {
  .spot03 a {
    width: 19%;
    max-width: 9.73em;
    /* custom 666w */
  }
}
@media only screen and (min-width: 768px) {
  .spot03 a {
    height: 12.15em;
    padding: 1.6em 0 0;
    /* midTab 768w */
  }
}
@media only screen and (max-width: 1299px) {
  .spot03 a:hover {
    color: #2b3933;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 a:hover {
    color: #ab7920;
    /* desk 1300w */
  }
  .spot03 a:hover .icon {
    transform: translate(0, -1.5em) scale(0.58139535);
  }
  .spot03 a:hover .icon .mono {
    opacity: 0;
  }
  .spot03 a:hover h3.topic {
    transform: translate(0, -4.86956522em) scale(0.86956522);
  }
  .spot03 a:hover .voluble {
    transform: translate(0, 0) rotate3d(0, 0, 0, 0deg);
    opacity: 1;
  }
  .spot03 a:hover:after {
    opacity: 0.8;
  }
}
.spot03 a:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0;
  z-index: 1;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 a .icon {
  width: 6.1em;
  height: 6.1em;
  margin: 0 auto 0.65em;
  display: block;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out;
  transform-origin: 50% 20%;
}
@media only screen and (min-width: 480px) and (max-width: 1299px) {
  .spot03 a .icon {
    width: 63.21243523%;
    height: auto;
    /* range 480w - 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 a .icon {
    margin-bottom: 1.3em;
    /* desk 1300w */
  }
}
.spot03 a .icon path {
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 a .icon .mono {
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 a h3.topic {
  line-height: 1;
  font-size: 1.15em;
  font-family: 'Philosopher', sans-serif;
  font-weight: 400;
  color: currentcolor;
  display: block;
  position: relative;
  z-index: 420;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 a .voluble {
  line-height: 1.25;
  font-size: 0.6em;
  font-weight: 300;
  color: #2e2d2a;
  width: 74.47916667%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1299px) {
  .spot03 a .voluble {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot03 a .voluble {
    display: block;
    position: absolute;
    top: 7.41666667em;
    right: 0;
    left: 0;
    z-index: 420;
    transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
    transform: translate(0, 100%) rotate3d(1, 0, 0, 90deg);
    transform-style: preserve3d;
    opacity: 0;
    /* desk 1300w */
  }
  .spot03 a .voluble.low {
    top: 9.16666667em;
  }
}
.spot03 a .voluble:before {
  content: '';
  width: 100%;
  height: 1px;
  margin: 0.75em 0 1.08333333em;
  background-color: #c7a258;
  display: block;
}
/* ===============================================
	spot04
=============================================== */
.spot04 {
  padding: 3em 0;
}
@media only screen and (min-width: 768px) {
  .spot04 {
    padding: 5em 0;
    /* midTab 768w */
  }
}
.spot04 .decoration {
  width: 24.8em;
  box-shadow: 1em 1em 1.5em rgba(0, 0, 0, 0.35);
  position: relative;
  vertical-align: middle;
  z-index: 420;
}
@media only screen and (max-width: 1299px) {
  .spot04 .decoration {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot04 .decoration {
    display: inline-block;
    /* desk 1300w */
  }
}
.spot04 .mod {
  width: 100%;
  max-width: 47.95em;
  padding: 8.4em 0 3.25em;
  background: #639050 url(../images/spotlight/spot01bg.jpg) center center no-repeat;
/*  background-color: #639050;*/
/*  background-image: -moz-linear-gradient(45deg, rgba(99, 144, 80, 0) 0%, #639050 100%);*/
/*  background-image: -webkit-linear-gradient(45deg, rgba(99, 144, 80, 0) 0%, #639050 100%);*/
/*  background-image: linear-gradient(45deg, rgba(99, 144, 80, 0) 0%, #639050 100%);*/
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 1299px) {
  .spot04 .mod {
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot04 .mod {
    margin: 0 0 0 -8.35em;
    /* desk 1300w */
  }
}
.spot04 .mod:after {
  content: '';
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 1em;
  right: 1em;
  bottom: 1em;
  left: 1em;
  border: 1px solid #fff;
  z-index: -1;
}
@media only screen and (max-width: 479px) {
  .spot04 .mod:after {
    right: -0.65em;
    left: -0.65em;
    /* mintab 480oo */
  }
}
.spot04 .tshow {
  width: 96%;
  max-width: 28em;
  display: block;
  position: relative;
  z-index: 420;
}
@media only screen and (max-width: 1299px) {
  .spot04 .tshow {
    margin: 0 auto 3em;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  .spot04 .tshow {
    margin: 0 auto 3em 13em;
    /* desk 1300w */
  }
}
.spot04 .quotes {
  width: 6.7em;
  height: 2.25em;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.spot04 .cycle-slideshow {
  color: #fff;
  display: block;
}
@media only screen and (max-width: 767px) {
  .spot04 .cycle-slideshow {
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot04 .cycle-slideshow {
    text-align: left;
    /* midTab 768w */
  }
}
.spot04 .cycle-slide {
  width: 100%;
  display: block;
}
.spot04 .testimony {
  line-height: 1.33333333;
  font-size: 1.5em;
  font-family: 'Philosopher', sans-serif;
  margin-bottom: 0.5em;
  display: block;
}
.spot04 .testifier {
  letter-spacing: 0.15em;
  line-height: 2;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 300;
  color: #e7d08e;
  display: block;
}
.spot04 .links {
  line-height: 0;
  text-align: center;
  height: 2.7em;
  background-color: rgba(255, 255, 255, 0.1);
  outline: 1px solid #fff;
  display: flex;
}
@media only screen and (max-width: 479px) {
  .spot04 .links {
    width: 96%;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot04 .links {
    width: 100%;
    max-width: 403px;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 767px) {
  .spot04 .links {
    margin-left: auto;
    margin-right: auto;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot04 .links {
    margin: 0 5.6em 0 auto;
    /* midTab 768w */
  }
}
.spot04 .spotbtn {
  letter-spacing: 0.1em;
  line-height: 4.15384615;
  font-size: 0.65em;
  text-transform: uppercase;
  color: #fff;
  max-width: 15em;
  border-right: 1px solid #fff;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 402px) {
  .spot04 .spotbtn {
    width: 43%;
    /* mintab 402oo */
  }
}
@media only screen and (min-width: 403px) {
  .spot04 .spotbtn {
    width: 48.38709677%;
    /* mintab 403w */
  }
}
.spot04 .spotbtn:hover {
  color: #e7d08e;
  background-color: rgba(141, 163, 153, 0.2);
}
.spot04 .socialmedia {
  line-height: 0;
  width: auto;
  height: auto;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 300;
  white-space: nowrap;
  flex-grow: 1;
  transition: background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 479px) {
  .spot04 .socialmedia {
    text-align: right;
    /* mintab 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot04 .socialmedia {
    text-align: center;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 1023px) {
  .spot04 .socialmedia {
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .spot04 .socialmedia {
    /* midTab 1024w */
  }
}
.spot04 .socialmedia[data-active] {
  background-color: rgba(141, 163, 153, 0.2);
}
@media only screen and (min-width: 1300px) {
  .spot04 .socialmedia[data-active] {
    /* desk 1300w */
  }
  .spot04 .socialmedia[data-active]:before {
    font-size: 0;
    transform: translate3d(0, 0, 0) scaleY(0);
    opacity: 0;
    transition-delay: 0s, 0s, 0.24s;
  }
}
.spot04 .socialmedia:before {
  content: 'Leave a Review ';
  letter-spacing: 0.1em;
  line-height: 4.15384615;
  font-size: 0.65em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1300px) {
  .spot04 .socialmedia:before {
    transition: transform 0.33s ease-in-out 0.24s, opacity 0.33s ease-in-out 0.24s, font-size 0.33s ease-in-out 0s;
    /* desk 1300w */
  }
}
.spot04 .socialmedia a {
  line-height: 3.85714286;
  font-size: 0.7em;
  text-align: center;
  color: #e7d08e;
  height: 3.85714286em;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .spot04 .socialmedia a {
    width: 3.42857143em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 1024px) {
  .spot04 .socialmedia a {
    width: 1.42857143em;
    /* midTab 1024w */
  }
}
.spot04 .socialmedia a:not(.spot) {
  display: none;
}
.spot04 .socialmedia a:hover {
  color: #fff;
  z-index: 400;
  transform: translate3d(0, 0, 0) scale(1.44);
}
.spot04 .socialmedia a.facebook .icon:before {
  content: '\f09a';
}
.spot04 .socialmedia a .icon {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .spot04 .socialmedia a .icon:before {
    display: inline-block;
    transform: translate(0, 0) scale(1.5);
    /* midTab 1024oo */
  }
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #f2f2f2 no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 1300px) {
  #ft {
    background-size: auto 100%;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1999px) {
  #ft {
    font-size: 1.2vw;
    font-size: min(1.2vw, 20px);
    /* range 1300w - 1999oo */
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #e7d08e;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  display: block;
  /* widget */
  /* global override */
  /* padding for inputs and textareas */
  /* contact */
}
@media only screen and (min-width: 1300px) {
  #location {
    width: 53.2em;
    margin: 0 calc( 100vw - 53.2em ) 0 auto;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  #location {
    margin-right: calc(50% - 64px);
    /* custom 2000w */
  }
}
#location .mod {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #location .mod {
    width: 100%;
    padding: 3em 0;
    display: block;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .mod {
    width: 50%;
    height: 33.85em;
    display: inline-block;
    vertical-align: top;
    /* midTab 768w */
  }
}
#location .mod.widget {
  background-color: rgba(25, 24, 23, 0.85);
}
@media only screen and (min-width: 768px) {
  #location .mod.widget {
    padding: 3.65em 0 0;
    /* midTab 768w */
  }
}
#location .mod.contact {
  background-color: rgba(46, 45, 42, 0.8);
}
@media only screen and (min-width: 768px) {
  #location .mod.contact {
    padding: 9.75em 0 0;
    /* midTab 768w */
  }
}
#location h2.topic {
  line-height: 1.11111111;
  font-size: 1.35em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1.7037037em;
  display: block;
}
#location h2.topic .icon {
  width: 1.66666667em;
  height: 1.88888889em;
  margin: 0 0.88888889em 0 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#location h2.topic .cta {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#location .contactform {
  width: 70.4887218%;
  margin: 0 auto;
  padding: 0;
}
#location .contactform form {
  width: 100%;
  display: inline-block;
}
#location .contactform input[type="text"],
#location .contactform textarea {
  line-height: 1.88235294;
  font-size: 0.85em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  caret-color: #e7d08e;
  /* cursor color */
  width: 100%;
  margin: 0 0 1.23529412em;
  background: rgba(255, 255, 255, 0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  box-shadow: none;
  display: block;
}
#location .contactform input[type="text"]::-webkit-input-placeholder,
#location .contactform textarea::-webkit-input-placeholder {
  color: #fff;
}
#location .contactform input[type="text"]:-moz-placeholder,
#location .contactform textarea:-moz-placeholder {
  color: #fff;
}
#location .contactform input[type="text"]::-moz-placeholder,
#location .contactform textarea::-moz-placeholder {
  color: #fff;
}
#location .contactform input[type="text"]:-ms-input-placeholder,
#location .contactform textarea:-ms-input-placeholder {
  color: #fff;
}
#location .contactform input[type="text"]:focus,
#location .contactform textarea:focus {
  color: #e7d08e;
}
#location .contactform input[type="text"]:focus::-webkit-input-placeholder,
#location .contactform textarea:focus::-webkit-input-placeholder {
  color: #e7d08e;
}
#location .contactform input[type="text"]:focus:-moz-placeholder,
#location .contactform textarea:focus:-moz-placeholder {
  color: #e7d08e;
}
#location .contactform input[type="text"]:focus::-moz-placeholder,
#location .contactform textarea:focus::-moz-placeholder {
  color: #e7d08e;
}
#location .contactform input[type="text"]:focus:-ms-input-placeholder,
#location .contactform textarea:focus:-ms-input-placeholder {
  color: #e7d08e;
}
#location .contactform h3.topic {
  letter-spacing: 0.1em;
  line-height: 1.76470588;
  font-size: 0.85em;
  text-align: left;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}
#location .contactform input[type="text"] {
  height: 1.88235294em;
  border: 1px solid transparent;
  border-bottom-color: #fff;
}
#location .contactform textarea {
  height: 9.52941176em;
  border: 1px solid #fff;
}
#location .contactform .widget-btn {
  letter-spacing: 0.1em;
  line-height: 2.75;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  width: 8.875em;
  height: 2.75em;
  margin: 0 auto;
  padding: 0;
  display: block;
  position: relative;
  z-index: 420;
  background: none;
  border: none;
  transition: color 0.33s ease-in-out;
}
#location .contactform .widget-btn:hover {
  color: #e7d08e;
}
#location .contactform .widget-btn:hover:after {
  background-color: rgba(57, 97, 87, 0);
}
#location .contactform .widget-btn:after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #396157;
  border: 1px solid #fff;
  transition: background-color 0.33s ease-in-out;
}
#location .full textarea {
  padding: 1rem 0 0 1em!important;
  min-height: 0;
}
#location input[type="text"],
#location input[type="date"],
#location input[type="email"],
#location input[type="search"],
#location input[type="tel"],
#location input[type="file"] {
  padding: 0!important;
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 2.325em;
  display: block;
}
#location .logo svg {
  width: 20.7em;
  height: 5.5em;
}
#location .logo svg path {
  fill: #fff;
}
#location .address {
  letter-spacing: 0.1em;
  line-height: 1.45;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 auto;
  display: block;
}
#location .address .marker {
  line-height: 1;
  font-size: 3.3em;
  color: #ab7920;
  margin-left: 4.77272727em;
  position: absolute;
  left: 50%;
  top: 4.31818182em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 1299px) {
  #location .address .marker {
    display: none;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #location .address .marker {
    display: block;
    /* desk 1300w */
  }
}
#location .address .marker:before {
  color: currentcolor;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  -webkit-filter: blur(0.0825em);
  filter: blur(0.0825em);
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:hover .marker {
  transform: translate3d(0, 0, 0) scale(2);
}
#location .phone {
  letter-spacing: 0.1em;
  font-size: 1em;
  font-weight: 500;
  display: block;
}
@media only screen and (max-width: 1299px) {
  #location .phone {
    line-height: 48px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #location .phone {
    line-height: 1.75;
    /* desk 1300w */
  }
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #8da399;
  padding: 2em 0 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  #links {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) and (max-width: 1299px) {
  #links {
    padding: 0 0 1em 50%;
    /* range 768w - 1300oo */
  }
}
@media only screen and (max-width: 1299px) {
  #links {
    font-size: 20px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links {
    width: 53.2em;
    height: 4.3em;
    padding: 0 0 0 26.6em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 2000px) {
  #links {
    left: auto;
    right: calc(50% - 64px);
    /* custom 2000w */
  }
}
#links .util {
  letter-spacing: 0.1em;
  font-size: 0.5em;
  text-transform: uppercase;
}
@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    margin: 0;
    /* mintab 480w */
  }
}
@media only screen and (max-width: 1299px) {
  #links .util {
    line-height: 48px;
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 1300px) {
  #links .util {
    line-height: 2.1;
    /* desk 1300w */
  }
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #e7d08e;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.6em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link {
  width: 100%;
}
a#sesame-link .sesameicon {
  width: 2.1em;
  height: 1.8em;
  margin-right: 0.7em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/*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: #ca9c45;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  font-weight: 400;
  text-transform: none;
  color: #fff;
  width: 100%;
  padding: 1rem;
  background: #ab7920;
  float: left;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: 0.1em;
  font-size: small;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: rgba(171, 121, 32, 0.5);
  border: 1px solid #ab7920;
  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: #2b3933;
  background-color: #2b3933;
}
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;
}
/* ===============================================
	blog sidebar sharethiswidget styles
=============================================== */
#blog_search label,
p.share-text {
  margin-bottom: 10px;
}
/* ===============================================
	.screenreader 
	a11y support for descriptive text on vaguely worded buttons
	https://gomakethings.com/hidden-content-for-better-a11y/#hidden-labels
=============================================== */
.screenreader {
  white-space: nowrap;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 768px (768px) and up
=============================================== */
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #bd.sub:after,
  .layout-full-width #bd.sub:after {
    content: none;
  }
  .sitemap #content,
  .layout-full-width #content {
    width: 100%;
    max-width: none;
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
	custom content
=============================================== */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  .speed-system img[alt='Speed Braces'] {
    display: block;
  }
  /* ===============================================
	PAGE SPECIFIC
=============================================== */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] {
    text-align: center;
    width: 100%;
    display: block;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  [class^='inovation-chart-'] {
    max-width: 50%;
    display: inline-block;
  }
  .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%;
    margin: 2%;
    display: inline-block;
    float: none;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 1024px (1024px) and up
=============================================== */
@media only screen and (min-width: 1024px) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 3em;
    margin-top: 1.2em;
    box-shadow: none;
    position: relative;
    top: auto;
    z-index: 2900;
  }
  #main-nav .container {
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3em;
    width: auto;
    padding: 0;
    margin: 0 20.8em 0 0;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 0em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    line-height: 2.35294118;
    text-align: center;
    height: 100%;
    width: auto;
    padding: 0 0.88235294em;
    z-index: 3000;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1em 0;
    position: absolute;
    display: none;
    z-index: 2800;
  }
  #main-nav ul ul li {
    height: 1.3em;
    margin: 0;
    padding: 0;
    float: left;
    opacity: 1;
  }
  #main-nav ul ul li a {
    line-height: 1.73333333;
    text-align: left;
    white-space: nowrap;
    height: 1.73333333em;
    padding: 0 1.73333333em;
    float: left;
  }
  #main-nav ul li:hover ul {
    display: block;
    left: 0em;
    /*top:37px;*/
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    transform: translate(100%, 0);
    opacity: 0;
    pointer-events: none;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
}
@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
  .home h1,
  .sub h1 span,
  .spot03 h2 {
    background: linear-gradient(to right, #b38325 0%, #e0c36e 24%, #bb8128 50%, #e0c36e 74%, #c9902e 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .home h1 .trait.top,
  .sub h1 span .trait.top,
  .spot03 h2 .trait.top {
    -webkit-text-fill-color: #3a7a6a;
  }
  .marker:before {
    background: linear-gradient(100deg, #c7a258 5%, #f3d99b 30%, #f3d99b 36%, #bd8c3f 60%, #bd8c3f 75%, #e0c36e 94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
