/* ===============================================
	.less VERSION 2.1
	
	vegesana-suresh
	Written by: Vita Stillion
		
	Sesame Communications - (c) 2022
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/* ===============================================
					colors
=============================================== */
/* body */
/* light gray || hyperlinks */
/* brown */
/* light blue */
/* dark gray */
/* ===============================================
					fonts
=============================================== */
.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: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.upp {
  
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}
/* use with .trbl */
.grey,
.gray {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ==================================================================
	main content-text font sizes
=================================================================== */
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Montserrat', sans-serif;
}
form button {
  font-family: 'Montserrat', sans-serif;
}
body {
  font-size: 15px;
  color: #333;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #c07f60;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  color: #95adb2;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #6f7a7f;
  margin: 0 0 0.8em;
  text-rendering: auto;
  font-weight: 600;
}
h1 {
  font-size: 8vw;
  margin: 1em 0 0.2em;
  color: #ffffff;
}
@media only screen and (min-width: 30em) {
  h1 {
    font-size: 2.25em;
    /* mintab 480w */
  }
}
.home h1 {
  color: #c07f60;
  font-size: 7vw;
  margin-bottom: 1em;
}
@media only screen and (min-width: 48em) {
  .home h1 {
    font-size: 5vw;
    white-space: nowrap;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 64em) {
  .home h1 {
    font-size: 2.75em;
    /* midTab 1024w */
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  font-weight: 300;
  letter-spacing: 0.44em;
  line-height: 0.7;
  font-size: 0.62666667em;
  color: #899196;
}
h2:not(.topic) {
  font-size: 1.2em;
  color: #95adb2;
}
h3:not(.topic) {
  font-size: 1.1em;
  color: #ae6440;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 0.95em;
}
h6 {
  font-size: 0.9em;
}
/* ===============================================
	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;
  background-color: rgba(255, 255, 255, 0.9);
  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: 1em;
    width: 100%;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    /* desk 1300w */
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
@media only screen and (min-width: 64em) {
  #masthead .container {
    max-width: 64.5em;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(111, 122, 127, 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: #6f7a7f;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  position: relative;
  display: inline-block;
  top: -0.2em;
}
#main-nav .trigger .navicon span {
  height: 2px;
  width: 100%;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #6f7a7f;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #464d51;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.85714286;
  font-size: 0.7em;
  color: #687177;
  font-weight: 600;
  width: auto;
  height: 2.85714286em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
}
#main-nav ul li a[id]:before {
  content: '';
  width: 1.71428571em;
  height: 1.64285714em;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  position: relative;
  transition: transform 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
  -webkit-filter: brightness(0.4) invert(30%) hue-rotate(90deg);
  filter: brightness(0.4) invert(30%) hue-rotate(90deg);
}
@media only screen and (max-width: 63.9375em) {
  #main-nav ul li a[id]:before {
    margin: 0.7em 0.33em 0 0;
    display: inline-block;
    vertical-align: top;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  #main-nav ul li a[id]:before {
    margin: 0 auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* midTab 1024w */
  }
}
#main-nav ul li a[id].home:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M19.905 8.162l-1.907-1.558V4.185a.186.186 0 0 0-.188-.187h-.625a.188.188 0 0 0-.188.187V5.79L12.63 2.223a1.008 1.008 0 0 0-1.264 0L4.092 8.162a.251.251 0 0 0-.036.351l.316.387a.25.25 0 0 0 .351.038L6 7.894v7.595c0 .275.224.501.5.501h4a.501.501 0 0 0 .499-.501V11.49l2 .009v4.002a.5.5 0 0 0 .501.501l3.999-.011a.5.5 0 0 0 .5-.501V7.895l1.278 1.044a.248.248 0 0 0 .351-.037l.317-.388a.25.25 0 0 0-.04-.352zm-2.909 6.832h.002l-3 .01v-4.008a.503.503 0 0 0-.498-.5l-3.001-.008a.5.5 0 0 0-.5.498v4.008h-3V7.079l5-4.081 5 4.081-.003 7.915z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].about:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M19.7 8.6c1.52 0 2.75-1.23 2.75-2.75S21.22 3.1 19.7 3.1a2.748 2.748 0 0 0-2.75 2.75A2.75 2.75 0 0 0 19.7 8.6zm0-4.4a1.65 1.65 0 1 1-.001 3.299A1.65 1.65 0 0 1 19.7 4.2zM12 9.7c2.128 0 3.85-1.723 3.85-3.85S14.128 2 12 2C9.873 2 8.15 3.723 8.15 5.85S9.873 9.7 12 9.7zm0-6.6c1.517 0 2.75 1.234 2.75 2.75S13.517 8.6 12 8.6c-1.516 0-2.75-1.233-2.75-2.75S10.484 3.1 12 3.1zm8.388 6.6h-1.375c-.523 0-1.007.164-1.413.443.322.22.615.478.873.77.169-.071.351-.113.54-.113h1.375c.832 0 1.513.739 1.513 1.65 0 .302.248.55.55.55s.549-.248.549-.55c0-1.516-1.173-2.75-2.612-2.75zM4.3 8.6c1.52 0 2.75-1.23 2.75-2.75S5.82 3.1 4.3 3.1a2.75 2.75 0 1 0 0 5.5zm0-4.4a1.65 1.65 0 1 1 0 3.3 1.65 1.65 0 0 1 0-3.3zm10.454 6.188c-1.148 0-1.435.412-2.754.412-1.32 0-1.605-.412-2.754-.412-1.247 0-2.46.558-3.172 1.611a3.938 3.938 0 0 0-.674 2.212v1.539c0 .911.739 1.65 1.65 1.65h9.9a1.65 1.65 0 0 0 1.649-1.65v-1.539c0-.819-.248-1.579-.674-2.212-.71-1.054-1.924-1.611-3.171-1.611zM17.5 15.75c0 .302-.248.55-.55.55h-9.9a.552.552 0 0 1-.55-.55v-1.539c0-.571.168-1.125.485-1.597.474-.704 1.32-1.127 2.258-1.127.942 0 1.278.413 2.757.413s1.814-.413 2.754-.413c.938 0 1.783.423 2.258 1.127.316.472.484 1.025.484 1.597v1.539h.004zM6.4 10.144A2.49 2.49 0 0 0 4.987 9.7H3.612C2.172 9.7 1 10.934 1 12.45c0 .302.248.55.55.55.303 0 .55-.248.55-.55 0-.911.681-1.65 1.512-1.65h1.375c.189 0 .372.042.54.113.258-.292.554-.55.873-.769z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].patients:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M17.25 3.333h-3.23A2.044 2.044 0 0 0 12 1a2.044 2.044 0 0 0-2.02 2.334H6.75A1.75 1.75 0 0 0 5 5.083v12.833c0 .966.784 1.75 1.75 1.75h10.5a1.75 1.75 0 0 0 1.75-1.75V5.083a1.75 1.75 0 0 0-1.75-1.75zM12 2.167c.484 0 .875.39.875.875s-.391.875-.875.875-.875-.39-.875-.875.391-.875.875-.875zm5.833 15.75c0 .32-.263.583-.583.583H6.75a.585.585 0 0 1-.583-.583V5.083c0-.321.262-.583.583-.583H8.5v.729a.44.44 0 0 0 .438.438h6.125a.439.439 0 0 0 .438-.438V4.5h1.75c.32 0 .583.262.583.583v12.834z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].dental:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M22.45 15.3H16.4V8.7h-1.1v6.6h-1.1V8.7h-1.1v6.6H12V8.7h-1.1v6.6H9.8V8.7H8.7v6.6H7.6V8.7H6.5v6.6H5.4V8.7H4.3v6.6H3.2V8.7H2.1v6.6h-.55a.55.55 0 0 0-.55.55v2.2c0 .305.246.55.55.55h20.9c.305 0 .55-.245.55-.55v-2.2a.55.55 0 0 0-.55-.55zm-.55 2.2H2.1v-1.1h19.8v1.1zM3.2 7.6h12.1a2.2 2.2 0 0 0 2.2-2.2A4.4 4.4 0 0 0 13.1 1c.813.812.237 2.2-.91 2.2H3.2a2.2 2.2 0 1 0 0 4.4zm0-3.3h8.989a2.383 2.383 0 0 0 2.332-1.877A3.302 3.302 0 0 1 16.4 5.4c0 .606-.494 1.1-1.101 1.1H3.2c-.606 0-1.1-.494-1.1-1.1s.494-1.1 1.1-1.1z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].cosmetic:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M19.854 4.438a4.625 4.625 0 0 0-3.285-3.348c-.998-.258-2.057.04-3.182.869-.449.331-1.579.875-2.771.003l-.014-.01-.007-.004C9.476 1.129 8.426.833 7.43 1.09c-1.603.416-2.893 1.73-3.286 3.348-.343 1.41-.071 2.811.768 3.944.732.991 1.145 2.209 1.296 3.834.129 1.382.33 3.2.748 5.012l.278 1.213a1.086 1.086 0 1 0 2.115.02l1.232-4.944a1.46 1.46 0 0 1 2.837 0l1.232 4.944a1.087 1.087 0 0 0 2.116-.02l.278-1.213c.418-1.812.618-3.63.747-5.012.153-1.626.565-2.845 1.297-3.834.838-1.134 1.111-2.535.766-3.944zm-1.685 3.264c-.86 1.163-1.343 2.563-1.516 4.408-.125 1.346-.321 3.114-.722 4.859l-.228.986-1.176-4.716a2.6 2.6 0 0 0-2.528-1.979 2.602 2.602 0 0 0-2.528 1.979l-1.123 4.945-.278-1.214c-.401-1.745-.598-3.513-.723-4.859-.171-1.842-.654-3.243-1.516-4.408-.633-.856-.838-1.92-.576-2.995a3.464 3.464 0 0 1 2.462-2.511c.868-.224 1.734.326 2.219.684l.008.004.002.002 2.87 2.009c.381.265.719-.031.796-.141a.571.571 0 0 0-.14-.796l-.704-.492a3.606 3.606 0 0 0 1.296-.588c.84-.62 1.564-.854 2.219-.684a3.47 3.47 0 0 1 2.464 2.511c.261 1.077.057 2.141-.578 2.996z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].restorative:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M15.143 15.964a.394.394 0 0 1 0 .787h-.809l-.139.786H9.804l-.138-.787h-.809a.393.393 0 0 1 0-.787h6.286v.001zm-.786 2.357H9.643a.393.393 0 0 0 0 .787h.439l.139.786h3.559l.139-.786h.439a.393.393 0 1 0-.001-.787zm-.716 2.358H10.36l.069.393s.393.786 1.571.786 1.571-.786 1.571-.786l.07-.393zm1.894-7.072H8.464a.393.393 0 0 0 0 .786h.786l.138.786h5.223l.139-.786h.785a.393.393 0 1 0 0-.786zm-.799-8.603c-.107.019-.32.078-.481.122-.557.154-1.319.365-2.255.365s-1.698-.211-2.255-.365c-.161-.044-.374-.103-.481-.122-.224.046-.764.287-.764 1.532 0 1.287.475 2.206.894 3.015l.135.265c.47.198.854.557 1.086 1.006h2.769c.232-.45.618-.81 1.087-1.008l.136-.265c.419-.81.894-1.728.894-3.013-.001-1.245-.541-1.486-.765-1.532M14.75 3c.706 0 2.75.636 2.75 3.536 0 2.287-1.087 3.725-1.452 4.625a.778.778 0 0 1-.725.482h-.008a.174.174 0 0 0-.173.173v1.006H8.857v-1.006a.173.173 0 0 0-.172-.173h-.009a.778.778 0 0 1-.724-.482c-.366-.9-1.452-2.339-1.452-4.625C6.5 3.636 8.544 3 9.25 3s1.571.491 2.75.491S14.044 3 14.75 3z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].technology:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M20.435 18.679c-.33 0-.656-.047-.971-.139-.944-.279-1.533-.983-1.66-1.986a5.977 5.977 0 0 0-.12-.691c-.121-.486-.107-.946.038-1.365-.412-.527-.485-1.129-.517-1.385-.009-.03-.03-.076-.048-.122l-.048-.126c-.18-.492-.22-.97-.125-1.403a2.288 2.288 0 0 1-.457-.675 2.432 2.432 0 0 1-.174-.882 1.91 1.91 0 0 1-.797-1.018 3.348 3.348 0 0 1-.131-.621c-.305-.089-.596-.241-.816-.52a1.416 1.416 0 0 1-.27-.551 1.693 1.693 0 0 1-.159-.024 1.35 1.35 0 0 1-.783-.436 1.747 1.747 0 0 1-.472.067 2.44 2.44 0 0 1-.27-.024 1.526 1.526 0 0 1-.598-.248 1.33 1.33 0 0 1-.891.326 1.54 1.54 0 0 1-.545-.102c-.211.264-.522.464-.981.493a1.99 1.99 0 0 1-.102.262c-.143.3-.413.642-.921.801a3.276 3.276 0 0 1-.124.573 1.91 1.91 0 0 1-.809 1.034c-.009.219-.03.452-.087.691a1.872 1.872 0 0 1-.532.922c.089.448.053.984-.235 1.599-.049.604-.245 1.045-.501 1.37.154.453.179 1.019-.07 1.708-.072 1.488-.88 2.338-2.283 2.452a4.114 4.114 0 0 1-2.215-.437c-.644-.335-1.071-.903-1.235-1.645a.863.863 0 0 1-.026-.216v-.332a.99.99 0 0 1 .051-.315c.038-.113.085-.229.135-.342.029-.068.063-.134.079-.2-.037-.649.11-1.21.435-1.658-.195-.607-.114-1.253.245-1.887 0-.712.253-1.318.722-1.757-.117-.974.193-1.695.991-2.313.009-1 .446-1.738 1.306-2.207.14-1.267.688-1.823 2.036-2.121a3.978 3.978 0 0 1 2.109-1.338l.007-.004c.054-.032.106-.068.159-.104.191-.13.453-.309.791-.399.424-.113.856-.193 1.289-.271l.493-.092A.825.825 0 0 1 11.54 1h.997c.069 0 .14.007.208.022l.512.106c.469.096.938.193 1.401.31.322.082.554.258.706.375l.089.065a.307.307 0 0 1 .028.02 4.092 4.092 0 0 1 2.075 1.331c.163.049.32.094.479.139.942.267 1.5.981 1.549 1.965l.002.039c.888.52 1.303 1.203 1.311 2.162.384.287.657.636.83 1.056.17.41.226.843.17 1.292.46.437.702 1.031.7 1.742.365.636.443 1.293.237 1.916.266.377.465.901.417 1.615.291.652.322 1.295.106 1.866-.222.588-.689 1.055-1.317 1.315-.561.23-1.085.343-1.605.343zM17.463 8.248c.018 0 .063.021.134.04a1 1 0 0 1 .734.887c.012.156.015.309.017.456.002.136.005.321.023.38.023.039.154.167.242.252.103.101.207.203.305.312a1 1 0 0 1 .03 1.299c-.021.024-.021.137.041.307.091.236.17.441.2.688.05.4.124.431.228.473a1 1 0 0 1 .313 1.651c-.125.118-.156.188-.105.388.075.305.124.614.163.924.031.246.096.274.24.317.37.11.763.067 1.248-.134.062-.025.177-.084.21-.173.029-.079.01-.2-.056-.333-.084-.17-.235-.48-.184-.875.05-.388-.054-.452-.174-.526a.998.998 0 0 1-.257-1.471c.158-.199.177-.289.013-.545a1.41 1.41 0 0 1-.236-.845c.025-.356-.066-.414-.244-.493a.997.997 0 0 1-.522-1.289c.128-.315.1-.469.051-.588-.041-.1-.126-.221-.449-.372a.997.997 0 0 1-.562-1.062c.088-.556.106-.672-.638-.991a1 1 0 0 1-.604-.857l-.038-.639c-.004-.09-.021-.124-.021-.124a13.153 13.153 0 0 1-.752-.212c-.141-.044-.457-.146-.688-.453a2.132 2.132 0 0 0-1.292-.843 1.196 1.196 0 0 1-.54-.292c-.007 0-.074-.05-.142-.102l-.058-.044a28.424 28.424 0 0 0-1.239-.271L12.435 3h-.802l-.421.079c-.38.069-.761.138-1.133.237a4.152 4.152 0 0 0-.178.119c-.089.06-.177.12-.268.173a1.066 1.066 0 0 1-.428.196 2.02 2.02 0 0 0-1.265.829c-.206.281-.479.384-.594.428a2.603 2.603 0 0 1-.392.116c-.333.072-.453.122-.492.143.021 0-.01.126-.029.472l-.017.296a1 1 0 0 1-.684.886c-.542.179-.648.28-.548.938a.999.999 0 0 1-.482 1.013c-.631.37-.657.434-.46 1.124a1 1 0 0 1-.558 1.189c-.152.067-.262.115-.236.473.022.285-.061.593-.227.842-.195.301-.128.384-.004.534a1 1 0 0 1-.269 1.498c-.123.071-.211.123-.189.565.021.418-.128.763-.236 1.015l-.022.052v.016a.336.336 0 0 0 .182.218c.34.177.729.254 1.131.216.353-.028.426-.034.445-.516.005-.135.013-.348.103-.58.153-.395.067-.478-.041-.583a1 1 0 0 1 .3-1.637c.124-.053.198-.085.215-.387.007-.121.022-.369.153-.623.193-.373.11-.484.022-.604a1 1 0 0 1 .448-1.529c.17-.064.218-.114.218-.115.006-.082.01-.271.015-.49.003-.135.006-.271.015-.411a1 1 0 0 1 .782-.919.323.323 0 0 0 .128-.051c.017-.092.031-.302.047-.524.01-.14.02-.28.036-.421.059-.511.538-.886 1.01-.886l.046.001.003-.072c.006-.136.013-.271.029-.4a.999.999 0 0 1 1.338-.82 1 1 0 0 1 1.528-.628c.116.076.239.157.35.227l.146-.215a.999.999 0 0 1 1.516-.169 4.858 4.858 0 0 1 .381.417l.118-.058c.148-.073.298-.145.444-.2a1 1 0 0 1 1.318.668c.095-.019.189-.036.281-.048a.997.997 0 0 1 1.12 1.121 5.206 5.206 0 0 0-.021.182l.149.016a1 1 0 0 1 .893.88c.017.14.026.279.036.417.015.212.029.413.07.546-.001-.006.002-.008.008-.008z' fill='chocolate'/></svg>");
}
#main-nav ul li a[id].contact:before {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='23' viewBox='0 0 24 23'><path d='M19.312 3H4.688C3.756 3 3 3.756 3 4.688v10.125c0 .931.756 1.687 1.688 1.687h14.625c.932 0 1.688-.756 1.688-1.688V4.688A1.69 1.69 0 0 0 19.312 3zM4.688 4.125h14.625c.311 0 .562.253.562.562v1.456c-.771.65-1.869 1.547-5.294 4.263-.595.472-1.767 1.609-2.581 1.594-.814.015-1.989-1.122-2.581-1.594C5.996 7.69 4.896 6.794 4.125 6.144V4.688c0-.31.253-.563.563-.563zm14.624 11.25H4.688a.563.563 0 0 1-.562-.562V7.605c.801.657 2.067 1.673 4.595 3.68.721.577 1.994 1.846 3.28 1.84 1.28.012 2.543-1.248 3.281-1.84a448.969 448.969 0 0 0 4.594-3.68v7.207a.564.564 0 0 1-.564.563z' fill='chocolate'/></svg>");
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #ae6440;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul li.open > a[id]:before,
#main-nav ul li.active > a[id]:before,
#main-nav ul li:hover > a[id]:before {
  transition-duration: 0.15s;
  -webkit-filter: brightness(0.76) invert(0%) hue-rotate(0deg);
  filter: brightness(0.76) invert(0%) hue-rotate(0deg);
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  float: left;
  background: #95adb2;
  display: inline;
}
#main-nav ul ul li {
  display: block;
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  font-weight: 600;
  line-height: 3.07692308;
  font-size: 0.65em;
  color: #fff;
  width: auto;
  height: 3.07692308em;
  margin: 0;
  padding: 0 1em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul ul li a:before {
  content: '';
  width: 0.53846154em;
  height: 0.53846154em;
  margin: auto 0;
  background: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translate3d(0, 0, 0) scaleX(0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  border: none;
}
#main-nav ul li.active ul li a:hover:before,
#main-nav ul ul li a:hover:before,
#main-nav ul ul li a.active:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
  transition-duration: 0.15s;
}
/* 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;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #6f7a7f;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 41.625em) {
  #hd {
    text-align: right;
    /* custom 666w */
  }
}
@media only screen and (min-width: 64em) {
  #hd {
    background: #cccccc url(../images/bg-top.jpg) no-repeat center center;
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 125em) {
  #hd {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
@media only screen and (max-width: 63.9375em) {
  #hd .mod {
    background: #cccccc url(../images/bg-top.jpg) no-repeat center center;
    /* midTab 1024oo */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 8.8em;
  display: block;
  position: relative;
}
@media only screen and (max-width: 63.9375em) {
  #logo {
    margin: 0.5em auto 1em;
    /* midTab 1024oo */
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    font-size: inherit;
    margin: 0;
    position: absolute;
    top: 2.15em;
    left: 0.1em;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 8.8em;
  height: 4.3em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: 100%;
  margin: 0 0 0.5em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 30em) {
  #contactinfo {
    width: auto;
    margin: 0 0.5em 0 0;
    /* mintab 480w */
  }
}
#contactinfo .address {
  letter-spacing: 0.12em;
  line-height: 2.53846154;
  font-size: 0.65em;
  color: #ffffff;
  width: auto;
  margin: 0 1em;
  display: inline-block;
  vertical-align: top;
}
#contactinfo .phone {
  letter-spacing: 0.12em;
  line-height: 2.53846154;
  font-size: 0.65em;
  color: #ffffff;
  display: inline-block;
  vertical-align: top;
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #d19c83;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0 0 0 0.5em;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav a {
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 3;
  font-size: 0.55em;
  text-align: center;
  color: #fff;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, color 0.33s ease-in-out;
  position: relative;
  z-index: 2;
}
#utilitynav a:before {
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out, opacity 0.33s ease-in-out;
  content: '';
  background: #d1eff9;
  background: -moz-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: -webkit-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: linear-gradient(to bottom, #d1eff9 0%, #95aeb2 99%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
#utilitynav a:hover {
  color: #894f32;
}
#utilitynav a:hover:before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
#utilitynav a.appointmentrequest {
  width: 19.90909091em;
  background: #ab6445;
  background: -moz-linear-gradient(left, #ab6445 0%, #bf7e5e 100%);
  background: -webkit-linear-gradient(left, #ab6445 0%, #bf7e5e 100%);
  background: linear-gradient(to right, #ab6445 0%, #bf7e5e 100%);
}
#utilitynav a.patientforms {
  width: 11.54545455em;
  background: #666e74;
  background: -moz-linear-gradient(left, #666e74 1%, #9ab2b5 100%);
  background: -webkit-linear-gradient(left, #666e74 1%, #9ab2b5 100%);
  background: linear-gradient(to right, #666e74 1%, #9ab2b5 100%);
}
/* ===============================================
	hd side quick links
=============================================== */
@media only screen and (max-width: 47.9375em) {
  .slinks {
    position: relative;
    background: rgba(149, 173, 178, 0.9);
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .slinks {
    width: 4em;
    margin: 0;
    display: block;
    position: absolute;
    right: 0;
    top: 110%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .slinks {
    top: 12.5em;
    /* desk 1300w */
  }
}
.slinks .btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  font-size: 0.55em;
  color: #ffffff;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, color 0.33s ease-in-out;
  padding: 2.54545455em 0 2.18181818em;
  width: 7.27272727em;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 64em) {
  .slinks .btn {
    width: 100%;
    /* midTab 1024w */
  }
}
.slinks .btn:before {
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out, opacity 0.33s ease-in-out;
  content: '';
  background: #d1eff9;
  background: -moz-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: -webkit-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: linear-gradient(to bottom, #d1eff9 0%, #95aeb2 99%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.slinks .btn:hover {
  color: #894f32;
}
.slinks .btn:hover:before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.slinks .btn01 {
  background: #bf7e5f;
  background: -moz-linear-gradient(top, #bf7e5f 0%, #ae6440 100%);
  background: -webkit-linear-gradient(top, #bf7e5f 0%, #ae6440 100%);
  background: linear-gradient(to bottom, #bf7e5f 0%, #ae6440 100%);
}
.slinks .btn02 {
  background: #95aeb2;
  background: -moz-linear-gradient(top, #95aeb2 1%, #666e74 100%);
  background: -webkit-linear-gradient(top, #95aeb2 1%, #666e74 100%);
  background: linear-gradient(to bottom, #95aeb2 1%, #666e74 100%);
}
/* ===============================================
	socialmedia || aka social-icons
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  z-index: 300;
}
@media only screen and (max-width: 47.9375em) {
  .socialmedia {
    display: flex;
    justify-content: flex-end;
    padding: 1.25em 0.75em;
    position: absolute;
    top: 0;
    right: 0;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .socialmedia {
    padding: 0.75em 1.25em;
    position: relative;
    background: rgba(149, 173, 178, 0.9);
    /* midTab 768w */
  }
}
.socialmedia a {
  line-height: 1.66666667;
  font-size: 0.9em;
  color: #fff;
  height: 1.66666667em;
  width: 1.66666667em;
  margin: 0 2px 0 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 (min-width: 64em) {
  .socialmedia a {
    margin: 0 0 3px 0;
    display: block;
    width: 100%;
    padding: 0;
    height: auto;
    line-height: 1.5;
    /* maxTab 1024w */
  }
}
.socialmedia a:nth-last-of-type(1) {
  margin: 0;
}
.socialmedia a:hover {
  color: #464d51;
  z-index: 400;
  text-shadow: 2px 2px 0 #ffffff;
  transform: scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  background: #000;
  min-height: 38.0952381vw;
  /* adjust to match slideshow height from proof */
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 64em) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 5 / 2;
}
@media only screen and (min-width: 64em) {
  #slideshow #home-slideshow {
    position: relative;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
#slideshow .ssoverlay {
  line-height: 0.875;
  font-size: 2em;
  color: currentcolor;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 420;
}
#slideshow .ssoverlay .trait {
  line-height: 1;
  font-size: 2em;
  display: block;
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ==================================================================
	spot01 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=================================================================== */
.spot01 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: #404040 url(../images/bg-spot01.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 29.9375em) {
  .spot01 {
    font-size: 3.2vw;

    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 30em) {
  .spot01 {
    font-size: 1.7vw;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  .spot01 {
    padding: 5em 0 9.5em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 61.25em) {
  .spot01 {
    font-size: inherit;
    /* custom opt-out 979oo */
  }
}
@media only screen and (min-width: 64em) {
  .spot01 {
    background-size: auto;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 125em) {
  .spot01 {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
.spot01 a {
  color: #ffffff;
  width: 11.7em;
  border-radius: 50%;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out;
  z-index: 2;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.35);
}
@media only screen and (max-width: 47.9375em) {
  .spot01 a {
    margin: 2% 2% 5em;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot01 a {
    margin: 0 1.95em;
    /* midTab 768w */
  }
}
.spot01 a:after {
  content: '';
  position: relative;
  background: rgba(174, 100, 64, 0.9);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot01 a:hover {
  color: #fff;
  z-index: 400;
}
.spot01 a:hover:after {
  opacity: 1;
}
.spot01 a:hover h2.topic {
  transform: translate3d(0, 0, 0);
}
.spot01 a .decoration {
  width: 100%;
  border-radius: 50%;
  transition: transform 0.33s ease-in-out;
}
.spot01 a .info {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  z-index: 400;
  pointer-events: none;
}
.spot01 a h2.topic {
  font-weight: 600;
  line-height: 0.92857143;
  font-size: 1.4em;
  color: currentcolor;
  width: 100%;
  display: block;
  transform: translate3d(0, 6.64285714em, 0);
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot01 a h2.topic .trait {
  display: block;
  font-weight: 600;
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: 0.82142857em;
}
/* ===============================================
	spot02 || COMMON GENERAL INFORMATION SPOTLIGHT SECTION
=============================================== */
.spot02 {
  font-size: 3.5vw;
  color: #fff;
  background: #9eb4b8;
  background: -moz-linear-gradient(left, #9eb4b8 0%, #666f75 100%);
  background: -webkit-linear-gradient(left, #9eb4b8 0%, #666f75 100%);
  background: linear-gradient(to right, #9eb4b8 0%, #666f75 100%);
  border-top: solid 0.5em #ffffff;
  border-bottom: solid 0.5em #ffffff;
  padding: 3.4em 0;
}
@media only screen and (min-width: 41.625em) {
  .spot02 {
    font-size: min(1.4vw, 1em);
    /* custom 666w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 {
    font-size: inherit;
    /* desk 1300w */
  }
}
.spot02 .doctors {
  width: 80%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .spot02 .doctors {
    width: 100%;
    max-width: 31em;
    min-height: 21em;
    margin: 2.6em 0 0 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot02 .doctors {
    margin: 2.6em 1em 0 -6.3em;
    /* desk 1300w */
  }
}
.spot02 .doctors a {
  display: inline-block;
  max-width: 16.5em;
  padding: 0.75em 0.75em 0.9em 0.75em;
  background: #ffffff;
  box-shadow: 0 0.4em 0.4em rgba(0, 0, 0, 0.14);
}
.spot02 .doctors a:hover img {
  -webkit-filter: brightness(50%) grayscale(100%);
  filter: brightness(50%) grayscale(100%);
}
.spot02 .doctors a:hover .topic {
  color: #ae6440;
  transform: translate3d(0, 0, 0);
}
.spot02 .doctors a:nth-of-type(1) {
  text-align: left;
  margin-bottom: 2em;
}
@media only screen and (min-width: 48em) {
  .spot02 .doctors a:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}
.spot02 .doctors a:nth-of-type(2) {
  text-align: right;
}
@media only screen and (min-width: 48em) {
  .spot02 .doctors a:nth-of-type(2) {
    position: absolute;
    top: -2em;
    left: 0;
    margin-left: 14em;
    transform: translate3d(0, 0, 0) rotate(5deg);
  }
}
.spot02 .doctors a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 15em;
  margin-bottom: 0.95em;
  transition: transform 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
.spot02 .doctors a .topic {
  display: block;
  font-weight: 600;
  letter-spacing: 0.25em;
  font-size: 0.7em;
  color: #687177;
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}
.spot02 .doctors a .topic .trait {
  display: block;
  letter-spacing: 0;
}
.spot02 .mod {
  width: 90%;
  max-width: 24em;
  padding: 2em 0 0;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 48em) {
  .spot02 .mod {
    text-align: left;
    padding: 0;
    margin: 3.8em 0 0;
    /* midTab 768w */
  }
}
.spot02 h2.topic {
  display: inline-block;
  text-align: left;
  font-weight: 600;
  line-height: 1;
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 0.4em;
}
.spot02 h2.topic .trait {
  text-align: center;
  display: block;
  letter-spacing: 0.47em;
  line-height: 1.2;
  font-size: 0.48571429em;
  font-weight: 300;
  position: relative;
}
.spot02 h2.topic .trait:before,
.spot02 h2.topic .trait:after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 1.38235294em;
  height: 0.05882353em;
  background: #ffffff;
  position: absolute;
  top: 0.55em;
}
.spot02 h2.topic .trait:before {
  left: 0;
}
.spot02 h2.topic .trait:after {
  right: 0.3em;
}
.spot02 .info {
  line-height: 1.2;
  font-weight: 500;
  font-size: 0.7em;
  margin: 0 0 3.86666667em;
  display: none;
}
@media only screen and (min-width: 81.25em) {
  .spot02 .info {
    display: block;
    /* desk 1300w */
  }
}
/* ===============================================
	spot03 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot03 {
  font-size: 3.5vw;
  padding: 5em 0;
  background-image: url(../images/bg-spot03.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  width: 100%;
  position: relative;
  /* links */
}
@media only screen and (min-width: 30em) {
  .spot03 {
    font-size: inherit;
    /* mintab 480w */
  }
}
@media only screen and (min-width: 48em) {
  .spot03 {
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .spot03 {
    background-size: auto;
    padding: 9.2em 0 5.75em;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot03 {
    background-position: center center;
    background-attachment: fixed;
    min-height: 30em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 125em) {
  .spot03 {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
.spot03 .cycle-slideshow {
  opacity: 0.7;
  color: #ffffff;
  width: 90%;
  max-width: 48em;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 48em) {
  .spot03 .cycle-slideshow {
    width: 70%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .spot03 .cycle-slideshow {
    width: 100%;
    /* midTab 1024w */
  }
}
.spot03 .cycle-slideshow:hover {
  color: #95adb2;
}
.spot03 .cycle-slide {
  width: 100%;
  display: block;
  transition: color 0.33s ease-in-out;
}
.spot03 .testimony {
  line-height: 1.2;
  font-size: 1.7em;
  display: block;
}
.spot03 .testifier {
  line-height: 1;
  font-size: 1.3em;
  font-weight: 700;
  display: block;
  margin: 0.7em auto 0;
}
.spot03 .controls {
  line-height: 0;
  width: 96%;
  max-width: 64.5em;
  margin: 1em auto;
  display: block;
}
@media only screen and (min-width: 48em) {
  .spot03 .controls {
    text-align: right;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot03 .controls > a {
  line-height: 2.5;
  font-size: 1em;
  text-align: center;
  color: #fff;
  width: 3.6em;
  height: 3.6em;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 .controls > a:hover {
  transform: scale(1.1);
  opacity: 0.5;
}
.spot03 .controls > a.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 48em) {
  .spot03 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot03 .links {
  display: block;
  margin-top: 2em;
}
.spot03 .links .btn {
  display: inline-block;
  letter-spacing: 0.18em;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.55em;
  line-height: 3em;
  color: #ffffff;
  height: 3em;
  padding: 0 1em;
  margin: 0 4px;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out, background 0.33s ease-in-out;
}
.spot03 .links .btn a {
  display: inline-block;
  vertical-align: middle;
}
.spot03 .links .btn a .icon {
  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;
  font-size: 1.36363636em;
  color: #ffffff;
}
.spot03 .links .btn .txt {
  display: inline-block;
  margin-right: 0.5em;
}
.spot03 .links .btn01:hover {
  color: #ffffff;
  background: #6f7a7f;
  z-index: 1;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.spot03 .links .btn02 a:hover .icon {
  color: #6f7a7f;
  text-shadow: 1px 1px 0 #ffffff;
  transform: translate3d(0, 0, 0) scale(1.3);
}
/* ==================================================================
	
	subnav || aka subnav-outer || aka ipSub
	TOP OF PAGE orientation - for sidebar orientation scroll or search down to 'side oriented' [=
	
=================================================================== */
/* TOP ORIENTED */
#subnav {
  font-weight: 600;
  text-align: left;
  color: #fff;
  padding: 1.15em 0;
  position: relative;
  overflow: hidden;
  background: #95adb2;
  padding: 0;
}
@media only screen and (min-width: 81.25em) {
  #subnav {
    margin-top: 7.1em;
    padding-top: 0em;
    /* desk 1300w */
  }
}
#subnav .container {
  padding: 0 0 1.2em;
  width: 90%;
}
@media only screen and (min-width: 64em) {
  #subnav .container {
    display: block;
    position: absolute;
    bottom: 0;
    width: 90%;
    left: 0;
    right: 0;
    /* midTab 768w */
  }
}
#subnav .hero {
  position: relative;
}
#subnav .hero:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.3) 100%);
}
#subnav .hero img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: none;
}
#subnav p {
  line-height: 1.5;
  font-size: 0.6em;
  margin: 0;
  padding: 0;
}
#subnav a {
  color: #fff;
  margin: 0.2em 1.6em 0.2em 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 64em) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: scaleX(0);
}
#subnav a:hover,
#subnav a.active {
  color: #ffffff;
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  opacity: 1;
  transform: scaleX(1);
}
#subnav .divider {
  display: none;
}
@media only screen and (min-width: 64em) {
  #subnav .divider {
    margin: 0 0.3em;
    display: inline-block;
    vertical-align: top;
    /* maxTab 1024w */
  }
}
/* ==================================================================
	content || aka .interior-content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 48em) {
  #bd {
    padding: 4em 0;
    /* midTab 780w */
  }
}
#bd .container {
  width: 90%;
  max-width: 64.5em;
}
#content {
  display: block;
}
@media only screen and (min-width: 48em) {
  #content {
    max-width: 39.75em;
    width: 61.62790698%;
    float: left;
    /* midTab 780w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.8;
}
@media only screen and (min-width: 81.25em) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content || aka #home-content
=================================================================== */
.hp-decor {
  position: absolute;
  top: 4.9em;
  left: 50%;
  margin-left: 0.8em;
  display: none;
}
@media only screen and (min-width: 64em) {
  .hp-decor {
    display: block;
    /* midTab 1024w */
  }
}
.home #bd {
  padding: 3em 0;
}
@media only screen and (min-width: 48em) {
  .home #bd {
    padding: 6.9em 0 4em;
    /* midTab 780w */
  }
}
.home #bd .container {
  max-width: 64.5em;
}
@media only screen and (min-width: 48em) {
  .home #bd .container {
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content {
    width: 100%;
    max-width: 31.5em;
    float: none;
    margin-left: auto;
    margin-right: auto;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .home #bd #content {
    margin-left: 0;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content .content-text {
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .home #bd #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
@media only screen and (min-width: 48em) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
/* ==================================================================
	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: #6f7a7f;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  transform: scale(1.44);
  opacity: 0.68;
}
/* ===============================================
 		common treatments
=============================================== */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 48em) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
  }
}
@media only screen and (min-width: 48em) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
}
/* comment line below if patient login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em!important;
}
@media only screen and (min-width: 81.25em) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content ul a {
  line-height: 1.52173913;
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  color: #95adb2;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.8;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #464d51;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #95adb2;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 48em) {
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
    /* midTab 768w */
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 15em;
  margin: 0 auto 6%;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 48em) {
  #sidebar {
    width: 100%;
    margin: 0 0 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  #sidebar {
    margin: 0.4em 0 1em;
    /* desk 1300w */
  }
}
/* ===============================================
	sidebar quick links
=============================================== */
.qlinks a {
  font-size: 0.85em;
  line-height: 2.58823529;
  display: block;
  text-align: center;
  width: 17.64705882em;
  height: 2.58823529em;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease-in-out, color 0.6s ease-in-out;
}
@media only screen and (min-width: 81.25em) {
  .qlinks a {
    margin: 0 0 0.95em;
    /* desk 1300w */
  }
}
.qlinks a:nth-of-type(1) {
  background: #ae6440;
}
.qlinks a:nth-of-type(2) {
  background: #766056;
  margin: 0.8em 0;
}
.qlinks a:nth-of-type(3) {
  background: #6f7a7f;
}
.qlinks a .trait {
  font-weight: 600;
}
.qlinks a:before {
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out, opacity 0.33s ease-in-out;
  content: '';
  background: #d1eff9;
  background: -moz-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: -webkit-linear-gradient(top, #d1eff9 0%, #95aeb2 99%);
  background: linear-gradient(to bottom, #d1eff9 0%, #95aeb2 99%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.qlinks a:hover {
  color: #894f32;
}
.qlinks a:hover:before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* ===============================================
	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 - */
/* ==================================================================
	.spotlight
=================================================================== */
/* ===============================================
	spot04 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot04 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: #95adb2;
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 47.9375em) {
  .spot04 {
    font-size: min(1.4vw, 1em);
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  .spot04 {
    font-size: min(1vw, 1em);
    padding: 4.25em 0;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot04 {
    font-size: 1.4vw;
    font-size: min(1.4vw, 1em);
    /* desk 1300w */
  }
}
.spot04:after {
  content: '';
  width: 100%;
  height: auto;
  background-color: #ae6440;
  border-top: 0.5em solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.spot04 a {
  color: #fff;
  padding: 0;
  margin: 0.75em;
  background-color: #000000;
  box-shadow: 0.5em 0.75em 0.5em rgba(0, 0, 0, 0.25);
  position: relative;
  display: inline-block;
  vertical-align: top;
  z-index: 420;
  transition: color 0.33s ease-in-out;
}
.spot04 a:nth-of-type(1),
.spot04 a:nth-of-type(3) {
  width: 35.36121673%;
  max-width: 23.25em;
}
.spot04 a:nth-of-type(2),
.spot04 a:nth-of-type(4) {
  width: 60.07604563%;
  max-width: 39.5em;
}
.spot04 a:nth-of-type(4) {
  margin-top: -15.65em;
}
.spot04 a:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 50%;
  opacity: 0.3;
}
.spot04 a:hover {
  color: #ae6440;
  z-index: 400;
}
.spot04 a:hover .decoration {
  opacity: 0.33;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.spot04 a .decoration {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  transition: opacity 0.33s ease-in-out, -webkit-filter 0.33s ease-in-out, filter 0.33s ease-in-out;
}
.spot04 a .info {
  width: auto;
  display: block;
  position: absolute;
  top: 1.4em;
  left: 1.4em;
  z-index: 420;
  transform-origin: 0 0;
}
@media only screen and (max-width: 81.1875em) {
  .spot04 a .info {
    transform: translate3d(0, 0, 0) scale(2);
    /* desk 1300oo */
  }
}
@media only screen and (min-width: 81.25em) {
  .spot04 a .info {
    /* desk 1300w */
  }
}
.spot04 a .icon {
  margin-right: 0.55em;
  display: inline-block;
  vertical-align: top;
}
.spot04 a .icon.cosmetic {
  width: 1.8em;
  height: 2.1em;
}
.spot04 a .icon.dentures {
  width: 2.1em;
  height: 1.05em;
}
.spot04 a .icon.aligners {
  width: 2.55em;
  height: 2.1em;
}
.spot04 a .icon.apnea {
  width: 2.3em;
  height: 2.1em;
}
.spot04 a .icon path {
  fill: currentcolor;
}
.spot04 a h2.topic {
  line-height: 0.875;
  font-size: 1.2em;
  text-align: left;
  font-weight: 600;
  color: currentcolor;
  white-space: nowrap;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
/* ==================================================================
	association logos 
=================================================================== */
.associationlogos {
  text-align: center;
  padding: 2.85em 0 2.3em;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 47.94em) {
  .associationlogos {
    font-size: 2vw;
    /* midTab opt-out 767oo */
  }
}
@media only screen and (min-width: 48em) {
  .associationlogos {
    font-size: 1.25vw;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .associationlogos {
    font-size: inherit;

    display: flex;
    justify-content: space-evenly;
    /* maxTab 1024w */
    align-items: center;
  }
}
.associationlogos a {
  margin: 2%;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.33s ease-in-out, transform 0.33s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .associationlogos a {
    margin: 0 2.2em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 64em) {
  .associationlogos a {
    margin: 0 ;
  }
}
.associationlogos a:hover {
  transform: scale(0.88);
  opacity: 0.8;
}
.associationlogos a.clearcorrect {
  width: 8.6em;
  height: 1.4em;
}
.associationlogos a.trios {
  width: 4.55em;
  height: 1.05em;
}
.associationlogos a.somnodent {
  width: 7em;
  height: 0.85em;
}
.associationlogos a.zoom {
  width: 6.45em;
  height: 2.7em;
}
.associationlogos a.cc {
  width: 4.05em;
  height: 4.05em;
}
.associationlogos a img,
.associationlogos a svg {
  /*width: 100%;*/
  /*height: 100%;*/
  /*display: block;*/
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #cccccc url(../images/footer/warsaw-dental-office.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 81.25em) {
  #ft {
    background-size: auto 100% /* desk 1300w */;
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #464d51;
}
/* ===============================================
		locations || aka ft-location
=============================================== */
#location {
  width: 100%;
  background-image: -moz-linear-gradient(left, rgba(103, 112, 118, 0.9) 0%, rgba(178, 194, 196, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(103, 112, 118, 0.9) 0%, rgba(178, 194, 196, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(103, 112, 118, 0.9) 0%, rgba(178, 194, 196, 0.9) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  #location {
    text-align: center;
    padding: 3em 0;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location {
    text-align: left;
    width: 50%;
    height: 28.5em;
    margin-left: 50%;
    padding: 8.4em 0 0 9em;
    /* midTab 768w */
  }
}
#location .mod {
  width: 100%;
  max-width: 13em;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 47.9375em) {
  #location .mod {
    margin: 0 auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 48em) {
  #location .mod {
    margin: 0 auto 0 0;
    /* midTab 768w */
  }
}
#location .doctor {
  line-height: 1.05;
  font-size: 1em;
  font-weight: 700;
  display: block;
}
#location .address {
  line-height: 1.4;
  font-size: 0.75em;
  margin: 1.13333333em auto 0;
  display: block;
}
#location .address .marker {
  line-height: 1;
  font-size: 4.4em;
  margin-right: 5.95em;
  position: absolute;
  right: 50%;
  top: 3.42em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
  display: none;
}
@media only screen and (min-width: 48em) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
  }
}
#location .address .marker:before {
  color: #b46c4a;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  transition: transform 0.33s ease-in-out;
}
#location .address:hover .marker {
  transform: scale(2);
}
#location .phone {
  line-height: 1.4;
  font-size: 0.75em;
  display: block;
}
#location .email {
  line-height: 1.4;
  font-size: 0.75em;
  text-decoration: underline;
  display: block;
}
#location .officehours {
  line-height: 1.61538462;
  font-size: 0.65em;
  width: 100%;
  margin: 3em auto 0;
  display: block;
}
#location .officehours .days {
  text-align: right;
  width: 41.92307692%;
  padding-right: 1.53846154em;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}
#location .officehours .hours {
  width: 50.76923077%;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}
/* ==================================================================
		#links || aka ft-design-credit
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #ccc;
  background-image: url(../images/bg-ft.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media only screen and (min-width: 48em) {
  #links {
    height: 4.8em;
    padding: 1.65em 0 0;
    /* midTab 768w  */
  }
}
@media only screen and (min-width: 64em) {
  #links {
    background-size: auto;
    /* midTab 1024w */
  }
}
@media only screen and (min-width: 125em) {
  #links {
    background-size: 100% auto;
    /* custom 2000w */
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
}
@media only screen and (min-width: 30em) {
  #links .util {
    line-height: 2.5;
    width: auto;
    margin: 0.5em 0 0;
    float: left;
    /* mintab 480w */
  }
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #ca8e70;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.1em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.41666667em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 30em) {
  #btt {
    width: auto;
    float: right;
    /* mintab 480w */
  }
}
a#backtotop {
  font-weight: 700;
  line-height: 2.30769231;
  font-size: 0.65em;
  color: #ffffff;
  display: inline-block;
  vertical-align: top;
  transition: color 0.33s ease-in-out, background 0.33s ease-in-out;
  background: #ae6440;
  width: 10.38461538em;
  height: 3.07692308em;
  line-height: 3.07692308;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35);
}
a#backtotop:hover {
  color: #ffffff;
  background: #95adb2;
}
/*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: #666666;
  border: none;
  display: block;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #6f7a7f;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  font-size: smaller;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #6f7a7f;
  border: 1px solid #6f7a7f;
  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: #464d51;
  background-color: #464d51;
}
form p {
  height: auto;
}
/* ===============================================
	chat widget resize for mobile use comfort
=============================================== */
#bc-chat-container {
  font-size: 0.8em!important;
}
.bc-minimize-state {
  width: 11.8em!important;
  height: 7.7em!important;
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /* ===============================================
	custom content
=============================================== */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  .speed-system img[alt='Speed Braces'] {
    display: block;
  }
  /* ===============================================
	PAGE SPECIFIC
=============================================== */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^='inovation-chart-'] {
    display: inline-block;
    max-width: 50%;
  }
  .in-ovation-before-after #content p {
    text-align: center;
    margin-bottom: 0;
  }
  .in-ovation-before-after .content-text h3 {
    text-align: center;
  }
  .in-ovation-before-after .content-text .img-left,
  .in-ovation-before-after .content-text .border {
    max-width: 44%;
    float: none;
    display: inline-block;
    margin: 2%;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /* ==================================================================
	main-nav
=================================================================== */
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 3.65em;
    margin-top: 1.8em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: right;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 3.65em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.4em 0 0;
    background: none;
    position: relative;
    vertical-align: top;
    float: none;
    clear: none;
  }
  #main-nav ul li.dental ul {
    width: 25.4em;
  }
  #main-nav ul li.dental ul li {
    width: 49%;
  }
  #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.28571429;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1.2em 0.5em;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 0.9em;
    margin: 0;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 1.38461538;
    text-align: left;
    white-space: nowrap;
    height: 1.38461538em;
    width: 100%;
    padding: 0 1.38461538em;
    float: left;
    transition-duration: 0s;
  }
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  #main-nav ul li:hover ul {
    left: -0.85em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -0.85em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
