/* ===============================================
	
	cd-corporate
	
	Sesame Communications - (c) 2021 
	
=============================================== */
/* ===============================================
					Colors 
=============================================== */
/* Body Text */
/* a-links - blue */
/* green */
/* dark blue */
/*div hr*/
/* ===============================================
					Fonts 
=============================================== */
.font-l {
  font-family: 'Lato', sans-serif;
}
.font-p {
  font-family: 'Permanent Marker', cursive;
}
/* ===============================================
					Mixins 
=============================================== */
/*font-mixins*/
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.ob {
  font-style: oblique;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.supp {
  font-variant: small-caps;
}
.normal {
  font-style: normal;
}
/*LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.near {
  clear: none;
}
.wimp {
  width: 100%!important;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.hide,
.validation-only {
  display: none;
}
.obliterate {
  line-height: 0;
  font-size: 0;
  text-indent: -999em;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  display: none;
  visibility: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  display: inline-block;
  float: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.trans {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.trans2 {
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
}
.fade {
  opacity: 0.5;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.vertical-align-nul {
  position: relative;
  top: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  position: absolute;
}
/* use with .trbl */
.grey {
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
}
.g-style {
  background-color: #a82416;
  background-image: -webkit-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: -moz-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
}
.g-style-linear {
  background-color: #373133;
  background-image: -webkit-linear-gradient(left, #3a3336 0%, #342f30 100%);
  background-image: -moz-linear-gradient(left, #3a3336 0%, #342f30 100%);
  background-image: linear-gradient(left, #3a3336 0%, #342f30 100%);
}
.btn-styles {
  display: inline-block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  height: 2.76923077em;
  padding: 0 1em;
  line-height: 2.76923077;
  position: relative;
  z-index: 2;
}
.btn-styles:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #90ca3c;
  transform: skew(-10deg);
  z-index: -1;
}
.btn-styles:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #ffffff;
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.fa,
.fas,
.fab,
.fal {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
svg:not(:root) {
  line-height: 0;
  overflow: visible;
}
body,
input,
select,
textarea,
form button {
  font-family: 'Lato', sans-serif;
}
nav ul li a,
nav ul ul li a {
  padding: 0;
}
li {
  line-height: inherit;
}
img {
  height: auto;
}
/* Body */
body {
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
  background: #ffffff;
  color: #373133;
  overflow: hidden;
}
p {
  margin: 0 0 1.58em;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
/* Links */
a {
  text-decoration: none;
}
#content a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #287bc8;
  text-decoration: none;
}
#content a:hover {
  color: #90ca3c;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Permanent Marker', cursive;
  text-align: left;
  font-weight: 400;
  margin: 0 0 0.7em;
  text-rendering: auto;
  line-height: 1em;
  color: #287bc8;
}
h1 {
  font-size: min(9vw, 3em);
  color: #90ca3c;
}
@media only screen and (min-width: 64em) {
  h1 {
    font-size: 3em;
  }
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.4em;
}
h5,
h6 {
  font-size: 1.3em;
}
hr {
  color: #d4d4d4;
  background-color: #d4d4d4;
  border: none;
  height: 1px;
  clear: both;
  margin: 1.58em 0;
}
.hr {
  visibility: hidden;
}
.container {
  max-width: 1000px;
}
#sidebar {
  text-align: center;
  margin: 0 auto 2em;
  position: relative;
  max-width: 372px;
}
#hide-stock {
  position: relative;
  width: 100%;
}
.static {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.team {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 20px 0;
}
.team-photo {
  display: block;
  width: 100%;
  float: none;
  margin: 0 auto 25px;
  max-width: 600px;
  border: solid 4px #ffffff;
}
.staff {
  display: block;
  width: 45%;
  max-width: 250px;
  margin: 0 auto 1em;
}
.patient-forms ul.forms li a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
/*.img-right { max-.wall; }*/
/* List Styling */
ul li {
  list-style: disc;
}
.content-text ul li {
  text-align: left;
}
li {
  margin-left: 20px;
  line-height: inherit;
}
.office-tour li,
.invisalign-before-after li,
.before-and-after li {
  margin: 0;
}
#content ul {
  margin: 0 0 1.8em 25px;
}
.sitemap #content ul li {
  margin-left: 0;
}
#subnav {
  margin: 0;
  padding: 0;
}
#subnav li,
body.sitemap #content ul li {
  list-style: none;
}
/* Sitemap */
body.sitemap #content ul {
  margin: 0 0 1.8em 0;
}
body.sitemap #content ul li {
  margin-top: 21px;
  list-style: none;
}
body.sitemap #content ul li a {
  font-family: 'Permanent Marker', cursive;
  text-transform: uppercase;
  font-size: 1.75em;
  /* 35px */
  color: #287bc8;
  display: block;
  text-decoration: none;
}
body.sitemap #content ul ul {
  padding-left: 0;
  margin: 0;
  /* margin: 0 0 0 30px; */
}
body.sitemap #content ul ul li {
  margin: 0;
  list-style: none;
}
body.sitemap #content ul ul li a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  font-size: 0.9em;
  color: #373133;
  text-transform: none;
}
body.sitemap #content ul li a:hover,
body.sitemap #content ul ul li a:hover {
  color: #287bc8;
}
#sticky {
  position: relative;
  width: 100%;
  z-index: 3000;
  background: #ffffff;
}
#sticky .container {
  max-width: none;
}
/* Header */
#hd {
  text-align: center;
  width: 100%;
  padding: 1em 0;
  position: relative;
  /* Header Info */
}
#hd .logo {
  float: none;
  display: block;
  text-align: center;
  width: 6.75em;
  margin: 0 auto 1em 1em;
  text-decoration: none;
}
#hd .logo img {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
#hd .info .mod {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 64em) {
  #hd .info {
    margin: 0 0.85em 0;
  }
}
#hd .info .city {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  color: #287bc8;
  font-size: 16px;
}
#hd .info .phone {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color: #302d2d;
  font-size: 17px;
  margin-left: 0.2em;
}
#hd .info a:hover {
  color: #90ca3c;
}
#hd .info .btn {
  display: inline-block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  height: 2.76923077em;
  padding: 0 1em;
  line-height: 2.76923077;
  position: relative;
  z-index: 2;
  width: 105px;
  vertical-align: top;
}
#hd .info .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #90ca3c;
  transform: skew(-10deg);
  z-index: -1;
}
#hd .info .btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #ffffff;
}
/* social-media || aka social-icons */
.social-media img,
.social-media .ib {
  vertical-align: top;
}
/*global override*/
.social-media {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  position: relative;
  margin: 0 1.2em;
}
.social-media a {
  color: #302d2d;
  font-size: 10.5px;
  margin: 0 2px;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 64em) {
  .social-media a {
    margin: 0;
  }
}
.social-media a:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  color: #287bc8;
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0;
  clear: both;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
}
#main-nav .container {
  height: 100%;
  padding: 0;
  width: 100%!important;
}
#main-nav .trigger {
  line-height: 50px;
  text-align: center;
  color: #373133;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
}
#main-nav .trigger .nav_icon {
  width: 16px;
  height: 10px;
  position: relative;
  display: inline-block;
  top: -0.14em;
}
#main-nav .trigger .nav_icon span {
  height: 2px;
  width: 100%;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav .trigger .nav_icon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .nav_icon span:nth-child(2),
#main-nav .trigger .nav_icon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .nav_icon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #ffffff;
  background: #287bc8;
}
#main-nav .trigger:hover .nav_icon span {
  /*background:@color1;*/
}
#main-nav .open .trigger {
  color: #ffffff;
  background: #287bc8;
}
#main-nav .open .trigger .nav_icon span {
  /*background:@color1;*/
}
#main-nav .open .trigger .nav_icon span:nth-child(1) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .nav_icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-nav .open .trigger .nav_icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-nav .open .trigger .nav_icon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav ul {
  width: 100vw;
  margin: -50px 0 0;
  padding: 1em 0;
  background: #ffffff;
  position: relative;
  z-index: 550;
  float: right;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #302d2d;
  width: auto;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #287bc8;
  text-decoration: none;
}
#main-nav ul ul {
  padding: 0;
  margin: 0;
  width: 100%;
  float: left;
  background: rgba(40, 123, 200, 0.89);
  display: inline;
}
#main-nav ul ul:before {
  display: none;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  line-height: 2.85714286;
  font-size: 0.7em;
  color: #ffffff;
  width: 100%;
  height: 2.85714286em;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  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 {
  color: #90ca3c;
  text-decoration: none;
  margin-bottom: 0;
  background: #fff;
  border: none;
}
/*main-nav make li fly in all cool*/
#main-nav .collapsible.open > ul {
  -webkit-animation: peters_move 0.4s 1;
  animation: peters_move 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  -webkit-animation: none;
  animation: none;
}
/*make flyouts expand on mobile*/
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
}
/*all about that open class*/
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
  margin: 0.5em 0;
}
#main-nav .open ul .open ul li {
  height: 2em;
  opacity: 1;
}
/* Subnav */
#subnav-outer {
  position: relative;
  padding: 2em 0;
  background: #f6f6f6;
  background-size: cover;
  text-align: center;
}
#subnav-outer .container {
  width: 90%!important;
}
#subnav-outer .divider {
  display: none;
  margin: 0 3px;
}
#subnav-outer p {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #302d2d;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 22px;
}
#subnav-outer a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #302d2d;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0.2em 0.8em;
  white-space: nowrap;
}
#subnav-outer a.active,
#subnav-outer a:hover {
  color: #287bc8;
  text-decoration: none;
}
/* Slideshow */
#slideshow {
  text-align: center;
  background: #000;
  position: relative;
  z-index: 400;
}
#slideshow .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.torso {
  position: relative;
  background: #ffffff;
  z-index: 401;
}
.spotlight {
  text-align: center;
  width: 100%;
  position: relative;
}
.spotlight h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  color: #095093;
  font-size: 2.25em;
}
.spotlight h2 .trait {
  display: block;
  font-weight: 400;
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  font-size: 0.88888889em;
  color: #90ca3c;
}
.spotlight .mod {
  display: inline-block;
  vertical-align: top;
}


.loc-wrapper{
    padding: 25px;
    border: 1px solid #dedede;
    border-bottom: 4px solid #07c6f5;
  }
.loc-wrapper *{ 
    text-align: center !important;
}
.loc-wrapper p{
  font-size: .8em;
} 

body.what-our-team-members-are-saying .staffphoto {
  position: relative;
    margin: 0 0 .67em;
  /*width: 50%;*/
}

body.what-our-team-members-are-saying .staffphoto img {
  display: block;
  width: 100%;
  height: auto;
}


body.what-our-team-members-are-saying .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, .75) ;
}

body.what-our-team-members-are-saying .text {
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
    width: 95%;
    font-size: .85em;
    line-height: 1.5em;
}


body.what-our-team-members-are-saying .staffphoto:hover .overlay {
  opacity: 1;
}

 body.what-our-team-members-are-saying h2 {
    margin: 0 0 .67em;
  }

  

@media only screen and (min-width: 48em) {
  .spot01 {
    padding: 2.7em 0 3.4em;
  }
  .spot01:before {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    content: '';
    background: #095093;
    transform: skew(-11deg);
    width: 2000px;
    height: 100%;
    display: block;
    position: absolute;
    right: 50%;
    margin-right: 7.6em;
    top: 0;
  }
}
.spot01 .mod {
  padding: 2em 1em;
}
.spot01 .mod01 {
  background: #095093;
}
@media only screen and (min-width: 48em) {
  .spot01 .mod01 {
    font-size: 1.7vw;
    background: none;
    width: 38.9%;
    max-width: 19.45em;
    text-align: left;
    padding: 0;
    margin: 0.2em 2.5% 0 2.5%;
  }
  .spot01 .mod01 .info {
    max-width: 15.3em;
    position: relative;
  }
}
@media only screen and (min-width: 64em) {
  .spot01 .mod01 {
    font-size: inherit;
  }
}
.spot01 .mod01 a {
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  display: block;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.5em;
  margin-bottom: 0.45em;
}
.spot01 .mod01 a:hover {
  color: #90ca3c;
}
.spot01 .mod01 .detail {
  font-weight: 400;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.2;
}
.spot01 .mod02 {
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .spot01 .mod02 {
    text-align: left;
    width: 61%;
    max-width: 30.5em;
    padding: 0;
  }
  .spot01 .mod02 .info {
    max-width: 28.1em;
    position: relative;
  }
}
.spot01 .mod02 a {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  line-height: 1.1;
  color: #095093;
  font-size: min(9vw, 2.25em);
  margin-bottom: 0.39em;
}
.spot01 .mod02 a:hover {
  color: #287bc8;
}
.spot01 .mod02 a:hover .trait {
  color: #287bc8;
}
@media only screen and (min-width: 64em) {
  .spot01 .mod02 a {
    font-size: 2.25em;
  }
}
.spot01 .mod02 a .trait {
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  display: block;
  font-weight: 400;
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  font-size: 0.88888889em;
  color: #90ca3c;
}
.spot01 .mod02 .detail {
  color: #302d2d;
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.16666667;
}
@media only screen and (min-width: 48em) {
  .spot01 .mod02 .detail {
    text-align: justify;
  }
}
/* spotlight */
.spot02 {
  background: #f7f7f7;
  padding: 0 0 2em;
}
@media only screen and (min-width: 48em) {
  .spot02 {
    padding: 3.5em 0 3.95em;
  }
}
.spot02 .mod {
  padding: 2em 1em;
}
.spot02 .mod01 {
  max-width: 21.85em;
}
@media only screen and (min-width: 48em) {
  .spot02 .mod01 {
    text-align: left;
    padding: 0;
    margin: 0 2.5% 0 -2.5%;
  }
}
.spot02 .mod01 h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: min(9vw, 4.2em);
  line-height: 0.88095238;
  margin: 0 0 0.39em 0.05em;
}
@media only screen and (min-width: 48em) {
  .spot02 .mod01 h2 {
    text-align: left;
  }
}
@media only screen and (min-width: 64em) {
  .spot02 .mod01 h2 {
    font-size: 4.2em;
  }
}
.spot02 .links a {
  display: block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.65em;
  line-height: 1.61538462;
  color: #000000;
}
.spot02 .links a .icon {
  display: inline-block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  margin-left: 0.2em;
  color: #90ca3c;
}
.spot02 .links a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  letter-spacing: 0.02em;
  color: #287bc8;
}
.spot02 .links a:hover .icon {
  color: #287bc8;
}
.spot02 .btn {
  display: inline-block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  height: 2.76923077em;
  padding: 0 1em;
  line-height: 2.76923077;
  position: relative;
  z-index: 2;
  width: auto;
  margin-top: 2.6em;
}
.spot02 .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #90ca3c;
  transform: skew(-10deg);
  z-index: -1;
}
.spot02 .btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #ffffff;
}
.spot02 .mod02 {
  text-align: left;
  background: #095093;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 48em) {
  .spot02 .mod02 {
    max-width: 23.25em;
    margin: 7px 0 0;
    padding: 2.85em 0 2.7em 0.8em;
  }
  .spot02 .mod02:before {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    content: '';
    background: #095093;
    transform: skew(-11deg);
    width: 2000px;
    height: 100%;
    display: block;
    position: absolute;
    left: -4.6em;
    top: 0;
    z-index: -1;
  }
}
.spot02 .mod02 ul {
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  position: relative;
}
.spot02 .mod02 li {
  list-style: none;
  position: relative;
  margin: 0 0 1.22em;
  padding-left: 2.5em;
}
.spot02 .mod02 li:before {
  text-align: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: auto;
  height: auto;
  display: inline-block;
  color: #ffffff;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.8em;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  left: 0;
}
.spot02 .mod02 li:nth-child(1):before {
  content: '1';
}
.spot02 .mod02 li:nth-child(2):before {
  content: '2';
}
.spot02 .mod02 li:nth-child(3):before {
  content: '3';
}
.spot02 .mod02 li:nth-child(4):before {
  content: '4';
}
.spot02 .mod02 li:nth-child(5):before {
  content: '5';
}
.spot02 .mod02 li:nth-child(6):before {
  content: '6';
}
.spot02 .mod02 li:last-child {
  margin: 0;
}
.spot03 {
  font-size: min(3vw, 1em);
  padding: 3.5em 0 4em;
}
@media only screen and (min-width: 48em) {
  .spot03 {
    font-size: min(1.7vw, 1em);
  }
}
@media only screen and (min-width: 81.25em) {
  .spot03 {
    font-size: inherit;
  }
}
.spot03 h2 {
  font-size: 2.3em;
  margin-bottom: 1.3em;
}
.spot03 h2 .trait {
  font-size: 1em;
}
@media only screen and (min-width: 48em) {
  .spot03 h2 .trait {
    display: inline-block;
  }
}
.spot03 .embed-container {
  width: 90%;
  max-width: 25.1em;
  padding: 0 0 min(60%, 15em) 0;
  margin: min(2%, 1.7em);
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 48em) {
  .spot03 .embed-container {
    padding: 0 0 15em 0;
    margin: 0 1.7em;
  }
}
.spot04 {
  background: #095093;
}
.spot04 .mod {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 48em) {
  .spot04 .mod {
    width: 50%;
  }
}
@media only screen and (min-width: 64em) {
  .spot04 .spot04-decor {
    position: absolute;
    top: 0;
    right: 50%;
    width: auto;
    margin-right: 5.5em;
  }
}
.spot04 .info {
  max-width: 27.25em;
  padding: 3em 1em;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 48em) {
  .spot04 .info {
    text-align: left;
  }
  .spot04 .info:before {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    content: '';
    background: #095093;
    transform: skew(-11deg);
    width: 2000px;
    height: 100%;
    display: block;
    position: absolute;
    left: -3em;
    top: 0;
    z-index: -1;
  }
}
@media only screen and (min-width: 64em) {
  .spot04 .info {
    padding: 6.15em 0 6.6em;
    margin-left: 21em;
  }
  .spot04 .info:before {
    left: -4.6em;
  }
}
.spot04 .info a {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  line-height: 1;
  color: #ffffff;
  font-size: min(7vw, 2.1em);
  margin-bottom: 1em;
}
.spot04 .info a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #90ca3c;
}
.spot04 .info a:hover .trait {
  color: #90ca3c;
}
@media only screen and (min-width: 48em) {
  .spot04 .info a {
    font-size: min(3.5vw, 2.1em);
  }
}
@media only screen and (min-width: 64em) {
  .spot04 .info a {
    font-size: 2.1em;
  }
}
.spot04 .info a .trait {
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  display: block;
  font-weight: 400;
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  font-size: 0.80952381em;
  color: #90ca3c;
}
.spot04 .info .detail {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.04;
}
@media only screen and (min-width: 48em) {
  .spot04 .info .detail {
    text-align: justify;
  }
}
.spot05 {
  text-align: center;
  width: 100%;
  position: relative;
  padding: 5em 0 4em;
  background: #f7f7f7;
}
@media only screen and (min-width: 48em) {
  .spot05 {
    font-size: 1.7vw;
  }
}
@media only screen and (min-width: 64em) {
  .spot05 {
    font-size: inherit;
  }
}
.spot05 .mod02 {
  max-width: 29.5em;
}
.spot05 .mod02 .detail {
  font-weight: 300;
  font-size: 1.15em;
  line-height: 1.52173913;
}
.spot05 .spot05-decor {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}
.spot05 .info {
  display: inline-block;
  vertical-align: middle;
  max-width: 29.5em;
}
@media only screen and (min-width: 48em) {
  .spot05 .info {
    text-align: left;
    margin-left: 1em;
  }
}
.spot05 h2 {
  font-size: min(7vw, 2.15em);
  line-height: 0.9;
}
@media only screen and (min-width: 48em) {
  .spot05 h2 {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    margin: 0.1em 0.2em 0;
  }
}
.spot05 .detail {
  font-weight: 300;
  font-size: 1.15em;
  line-height: 1.5;
}
.spot05 .btn {
  display: inline-block;
  -webkit-transition: ease-in-out all 0.4s;
  transition: ease-in-out all 0.4s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  height: 2.76923077em;
  padding: 0 1em;
  line-height: 2.76923077;
  position: relative;
  z-index: 2;
  margin-top: 2.4em;
}
.spot05 .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #90ca3c;
  transform: skew(-10deg);
  z-index: -1;
}
.spot05 .btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #ffffff;
}
.spot05 .btn:before {
  background: #095093;
}
.spot05 .btn:hover:before {
  background: #90ca3c;
}
#bd {
  position: relative;
  z-index: 400;
  padding: 3.5em 0;
}
#bd .container {
  width: 90%!important;
}
#bd .content-text {
  font-weight: 300;
}
/* Content */
#content {
  display: block;
  position: relative;
}
/* Custom Content */
.financial-information #financial-online-services {
  display: none;
}
.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: #373133;
  position: absolute;
  top: 50%;
  z-index: 900;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mediaSlider .cycle-slideshow > div span {
  -webkit-transition: transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaSlider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaSlider .cycle-slideshow > div.cycle-prev span {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.mediaSlider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaSlider .cycle-slideshow > div.cycle-next span {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.mediaSlider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaSlider .cycle-slideshow > div:hover span {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0.68;
}
#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 */
  }
}
body:not(.home) #ft {
  border-top: solid 1px #dadada;
}
/* Footer */
#ft {
  background: #90ca3c;
  text-align: center;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
  /* Logos */
}
#ft .container {
  width: 100% !important;
  max-width: none;
}
@media only screen and (min-width: 64em) {
  #ft {
    padding: 6.1em 0 5.9em;
  }
  #ft:before {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    content: '';
    background: #ffffff;
    transform: skew(-11deg);
    width: 2000px;
    height: 100%;
    display: block;
    position: absolute;
    right: 50%;
    margin-right: 15em;
    top: 0;
    z-index: -1;
  }
}
#ft .mod {
  display: inline-block;
  width: 100%;
  background: #ffffff;
  padding: 3em 0;
}
@media only screen and (min-width: 64em) {
  #ft .mod {
    width: auto;
    vertical-align: middle;
    padding: 0;
    margin: -0.8em 3em 0 1.4em;
  }
}
@media only screen and (min-width: 64em) {
  #ft .info {
    text-align: left;
  }
}
#ft .info .logo {
  display: block;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1;
  color: #287bc8;
}
#ft .info .phone {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 700;
  text-decoration: none;
  display: block;
  line-height: 1;
  color: #90ca3c;
  font-size: 1em;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
#ft .info .addy {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-size: 15px;
  line-height: 22px;
  text-decoration: none;
  display: block;
  color: #5c5d5d;
}
#ft .info a:hover {
  color: #095093;
}
#ft .logos {
  font-size: min(3.5vw, 1em);
  padding: 3em 0;
}
@media only screen and (min-width: 64em) {
  #ft .logos {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 41em;
    padding: 0;
  }
}
#ft .logos h2 {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  color: #ffffff;
  font-size: min(9vw, 2.4em);
  margin-bottom: 0.85em;
}
@media only screen and (min-width: 64em) {
  #ft .logos h2 {
    font-size: 2.4em;
  }
}
#ft .logos a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: inline-block;
  vertical-align: middle;
  margin: 4%;
}
@media only screen and (min-width: 48em) {
  #ft .logos a {
    margin: 0 2%;
  }
}
@media only screen and (min-width: 64em) {
  #ft .logos a {
    margin: 0 1.8em 0 0;
  }
}
#ft .logos a:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0.8;
}
#ft .logos .logo01 {
  width: 9.75em;
}
@media only screen and (min-width: 64em) {
  #ft .logos .logo01 {
    margin-left: 1.2em;
  }
}
#ft .logos .logo02 {
  width: 2.8em;
}
#ft .logos .logo03 {
  width: 4.45em;
}
#ft .logos .logo04 {
  width: 4.9em;
}
#ft .logos .logo05 {
  width: 7.5em;
}
#ft-design-credit {
  background: #5c5d5d;
  clear: both;
  width: 100%;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 1em 0;
}
#ft-design-credit .util {
  font-size: 0.6em;
}
#ft-design-credit .util .divider {
  margin: 0 0.5em;
}
#ft-design-credit a {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #ffffff;
  float: none;
  text-decoration: none;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  display: inline-block;
  vertical-align: top;
}
#ft-design-credit a:hover {
  color: #90ca3c;
}
#ft-design-credit .sesame-link .sesame-icon {
  width: 24px;
  height: 20px;
  margin-right: 0.6em;
  display: inline-block;
  vertical-align: middle;
}
#ft-design-credit .sesame-link .sesame-icon path {
  fill: currentcolor;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#ft-design-credit .sesame-link:hover .sesame-icon path {
  fill: currentcolor;
}
#ft-design-credit .back-to-top {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  float: none;
  color: #ffffff;
  background: #90ca3c;
  font-size: 17px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 1em auto 1.5em;
}
#ft-design-credit .back-to-top:hover {
  color: #ffffff;
  background: #287bc8;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
/* Form Buttons */
form button {
  background: #287bc8;
  border: 1px solid #287bc8;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 30px !important;
  text-align: center;
  font-size: 0.9285714285714286em;
  display: inline-block;
  vertical-align: top;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
form button:hover {
  color: #ffffff;
  border-color: #20619e;
  background: #20619e;
}
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  padding: 16px;
  float: left;
  background: #287bc8;
}
/* BLOG FORM */
.stButton {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.st_plusone_large {
  top: 9px;
  position: relative;
}
.share-article-links {
  text-align: center;
}
.share-text {
  color: #90ca3c;
  font-size: 1.5em;
  margin: 0 0 0.8em;
  font-weight: 400;
  text-align: center;
}
form#blog_search {
  background: #90ca3c;
  color: #287bc8;
  margin: 10px 0 0;
  padding: 15px 10px;
  position: relative;
  text-align: center;
  width: 100%;
}
form#blog_search label {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 17px;
  margin: 0px;
  text-align: center;
  margin: 0 0 -2px;
}
form#blog_search input {
  background: #cccccc;
  color: #287bc8;
  width: 178px;
  margin: 6px auto;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
form#blog_search input:hover {
  background: #ffffff;
}
form#blog_search button {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: block;
  background: #287bc8;
  color: #ffffff;
  font-size: 12px!important;
  text-transform: uppercase;
  padding: 5px 12px!important;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin: 5px auto 0;
  border: none;
}
form#blog_search button:active,
form#blog_search button:hover {
  background: #587e22;
}
/* end blog css */
/* Generic Classes */
.ie8 nav.horizontal ul li a {
  max-width: none;
}
.shift {
  position: relative;
}
.columns {
  display: inline;
  float: left;
}
.genie {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.genie:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.video-sleeve {
  margin-bottom: 1.85em;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"],
textarea {
  width: 80%;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="file"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #373133;
}
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="file"]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #373133;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="file"]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #373133;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="file"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #373133;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus,
textarea:focus {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  color: #373133;
}
input[type="text"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="search"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::-webkit-input-placeholder,
input[type="file"]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #373133;
}
input[type="text"]:focus:-moz-placeholder,
input[type="email"]:focus:-moz-placeholder,
input[type="search"]:focus:-moz-placeholder,
input[type="tel"]:focus:-moz-placeholder,
input[type="file"]:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: #373133;
}
input[type="text"]:focus::-moz-placeholder,
input[type="email"]:focus::-moz-placeholder,
input[type="search"]:focus::-moz-placeholder,
input[type="tel"]:focus::-moz-placeholder,
input[type="file"]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #373133;
}
input[type="text"]:focus:-ms-input-placeholder,
input[type="email"]:focus:-ms-input-placeholder,
input[type="search"]:focus:-ms-input-placeholder,
input[type="tel"]:focus:-ms-input-placeholder,
input[type="file"]:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #373133;
}
body.office-tour .video-sleeve {
  margin: 0 auto;
}
#invisalign-before-after {
  max-width: 464px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#invisalign-before-after ul {
  margin: 0;
}
#invisalign-before-after p.caption {
  position: relative;
}
#pro-pack #invisalign-footer {
  margin-left: auto;
  margin-right: auto;
}
#damon-before-after {
  max-width: 539px;
  width: 100%;
}
.test-cred {
  display: block;
  font-weight: bold;
  font-size: smaller;
}
.flash {
  margin: 20px 0;
}
/* hide double hr */
body.types-of-appliances div.hr,
body.ortho-dictionary div.hr {
  display: none;
}
#hide-stock {
  display: none;
}
.meet-the-doctor #hide-stock,
body[class^='meet-dr-'] #hide-stock,
body[class^='meet-doctor-'] #hide-stock {
  display: block;
  text-align: center;
  margin: 1em auto;
}
/* Office Tour */
ul.slideshow {
  margin: 0 auto !important;
}
form p {
  height: auto;
}
/*other forms*/
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"] {
  height: 34px;
}
/* hidden field styles */
.hidden-option {
  display: none;
}
p.office-hours {
  margin-bottom: 0;
}
.location-page,
table.office-hours {
  margin-bottom: 1.8em;
}
/*office-location*/
.map-directions .embed-container,
.address-and-hours .embed-container,
body[class*="office"] .embed-container,
body[class*="location"] .embed-container {
  width: auto;
  margin-top: 2em;
  padding-bottom: 55%;
  /*default 55%*/
}


.accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 10px 30px 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  /*font-size: 15px;*/
  transition: 0.4s;
  position: relative;
  margin-bottom: 0 !important;
}

.accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  /*background-color: white;*/
  overflow: hidden;
}

h2.accordion:after {
    content: '\002B';
    /*color: #777;*/
    font-weight: bold;
    float: right;
    position: absolute;
    margin-left: 5px;
    top: 50%;
    right: 5px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

h2.accordion.active1:after {
    content: "\2212";
}




/* ===============================================
Small Tablet/Large Phone Stylings (Optional)
Supports 30em (480px) to 47.9375em (767px)
------
Useful for making minor adjustments between
awkward sizes.
=============================================== */
@media only screen and (min-width: 30em) and (max-width: 47.9375em) {
  .spot04 .info a {
    font-size: 6vw;
  }
  #ft .logos {
    font-size: 1.7vw;
  }
}
/* 480 */
@media only screen and (min-width: 30em) {
  #hd .logo {
    float: left;
    display: inline-block;
  }
  #hd .info {
    display: inline-block;
    vertical-align: top;
  }
}
/* ===============================================
Tablet / Desktop Stylings
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  body.sitemap #content .width1 {
    width: 50%;
    display: inline;
    float: left;
  }
  body[class^='meet-dr-'] #hide-stock,
  #hide-stock {
    display: block;
    margin: 0 0 1em 0;
  }
  /* blanket content sidebar hide and slimmer-centered-content-area */
  /* in order to accommodate for better legibility */
  .layout-full-width,
  .sitemap {
    /* count out 90 characters per line to declare width */
  }
  .layout-full-width .content-text,
  .sitemap .content-text {
    width: 100%;
    max-width: none;
  }
  .layout-full-width #sidebar,
  .sitemap #sidebar {
    display: none;
  }
  /* Custom content */
  body.meet-our-team .content-text .img-right {
    display: block;
  }
  .video-sleeve {
    width: 100%;
  }
  .video-sleeve-60 {
    width: 100%;
    max-width: 60%;
  }
  #video-opalescence {
    float: right;
    margin: 0 0 1em 1em;
  }
  /*keeps videos from getting too hooj*/
  .embed-container {
    width: 100%;
  }
  .embed-container.ratio16x9,
  .embed-container.docvid {
    padding-bottom: 46%;
  }
  .staff {
    float: right;
    width: 100%;
    margin: 0 0 1em 1em;
  }
  .team-photo {
    float: left;
    margin: 0 20px 20px 0;
  }
  /*.success {
		width:62%;
		margin-top:13px;
	}
	
	table.office-hours { max-width:50%; }
	*/
  /*------------ Style Edit Region ------------*/
  #sticky {
    min-height: 5.8em;
  }
  #hd {
    padding: 0;
  }
  #hd .logo {
    position: absolute;
    top: 0.75em;
    left: 0;
    margin: 0;
  }
  #hd .info {
    display: inline-block;
    float: right;
    margin: 2.5em 3em 0;
  }
  #hd .info .mod {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
  #main-nav ul {
    max-width: 50vw;
  }
  #slideshow #home-slideshow {
    width: 100%;
    margin: 0;
  }
  #slideshow #home-slideshow .cycle-slideshow {
    /*margin-top:-5%;*/
  }
  .content-text {
    width: 60.5%;
    display: inline-block;
    vertical-align: top;
    float: left;
  }
  .content-text p {
    text-align: justify;
  }
  .home .content-text {
    display: block;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 52px;
    -moz-column-gap: 52px;
    column-gap: 52px;
    width: 100%;
    float: none;
  }
  #sidebar {
    width: 37.2%;
    float: right;
    clear: right;
    display: inline;
    text-align: right;
    margin: 7px 0 0;
  }
  #ft-design-credit {
    padding: 0.7em 0 0.6em;
  }
  #ft-design-credit .util {
    float: left;
    height: 38px;
    line-height: 38px;
  }
  #ft-design-credit .back-to-top {
    float: right;
    margin: 0;
  }
}
/* ===============================================
Desktop Only Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  #fc-calculator .form-row .fc-col3 {
    max-width: 80px;
  }
  #sticky {
    font-size: 1.2em;
    padding: 0;
  }
  #sticky .container {
    max-width: 50em;
  }
  #hd {
    font-size: inherit;
  }
  #hd .info {
    margin: 0;
  }
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 1.6em;
    margin: 1.35em 0 0;
    position: relative;
    top: auto;
    z-index: 2900;
  }
  #main-nav .container {
    background: none;
    padding: 0;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 1.6em;
    width: auto;
    float: right;
    /*<def-nofloat*/
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    max-width: none;
  }
  #main-nav ul:before {
    display: none;
  }
  #main-nav ul li {
    height: 100%;
    float: none;
    clear: none;
    margin: 0 0 0 0.13em;
    /*adjust margin for spacing*/
    background: none;
    position: relative;
    vertical-align: top;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 7px;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    line-height: 1.93333333em;
    text-align: center;
    text-decoration: none;
    height: 1.93333333em;
    width: auto;
    padding: 0 0.5em;
    margin: 0;
    position: relative;
    z-index: 3000;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  #main-nav ul li a[id]:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #287bc8;
    transform: skew(-10deg);
    opacity: 0;
    z-index: -1;
  }
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #fff;
    text-decoration: none;
  }
  #main-nav ul li.active > a[id]:before,
  #main-nav ul li:hover > a[id]:before {
    opacity: 1;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 0.5em 0;
    margin: 0;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 1.25em;
    background: none;
    opacity: 1;
  }
  #main-nav ul ul li a {
    text-transform: none;
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
    height: 1.5em;
    width: 100%;
    padding: 0 1.5em;
    margin: 0;
    float: left;
    box-shadow: none;
    border-right: none;
    position: relative;
    -webkit-transition-duration: 0;
    transition-duration: 0;
  }
  /*reverses text-align for flyout on last nav item*/
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  /* ===============================================
				special drop locations 
	=============================================== */
  #main-nav ul li:hover ul {
    left: -3px;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: 3px;
    margin: 0;
  }
  #subnav-outer .divider {
    display: inline-block;
    vertical-align: middle;
  }
  #subnav-outer a {
    margin: 0;
  }
  #subnav-outer p {
    line-height: 19px;
  }
  /* Slider */
  #slideshow {
    width: 100%;
    margin-top: 0;
    top: 0;
  }
  #bd #content {
    min-height: 400px;
  }
}
/* ===============================================
Desktop Only Excluding large tablets
Supports 81.25em (1300px) and up
=============================================== */
@media only screen and (min-width: 81.25em) {
  body {
    font-size: 20px;
  }
  #sticky {
    font-size: inherit;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
  }
  #sticky .container {
    max-width: 1000px;
  }
  #hd {
    display: block;
    padding: 0;
    z-index: 3000;
  }
  #hd .logo {
    z-index: 40;
  }
  #hd .info {
    margin: 0 17px 0 0;
  }
  #subnav-outer {
    padding: 144px 0 27px;
  }
}
/* ===============================================
Desktop Only Large screen only
Supports 125em (2000px) and up
=============================================== */
/*custom animations*/
@-webkit-keyframes peters_move {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@-moz-keyframes peters_move {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@-o-keyframes peters_move {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes peters_move {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
/**********************************************
target ie11: html[data-useragent*='Trident/7.0']
**********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
