@import url('https://fonts.googleapis.com/css?family=Caveat:400,700|Lato:400,400i,700,700,900i&display=swap');
/* ===============================================
  
  bethesda-ortho
  
  Sesame Communications - (c) 2020
  Written by: James Stillion
  All rights reserved.
  Any reproduction or intentional misuse is strictly prohibited
  
=============================================== */
/*Colors */
/* hypertext */
/* bad piggy */
/* vivid vermillion || hyperlinks */
/* red pig */
/* grape ape */
/* max yellow */
/* rezraz */
/* telemagenta */
/* ===============================================
          fonts 
=============================================== */
.fontC {
  font-family: 'Caveat', cursive;
}
.fontL {
  font-family: 'Lato', sans-serif;
}
.fontM {
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
}
/* ===============================================
          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;
}
.ob {
  font-style: oblique;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.supp {
  font-variant: small-caps;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
#content .clear {
  line-height: 1;
  font-size: 0;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.near {
  clear: none;
}
.wimp {
  width: 100%!important;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.hide,
.validation-only {
  display: none;
}
.obliterate {
  line-height: 0;
  font-size: 0;
  text-indent: -999em;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  display: none;
  visibility: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  display: inline-block;
  float: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.trans {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.fade {
  opacity: 0.5;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.vertical-align-nul {
  position: relative;
  top: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-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%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  height: auto;
}
svg:not(:root) {
  overflow: visible;
}
/*GLOBAL OVERRIDES*/
.fa,
.fas,
.fab,
.fal {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
sup {
  font-size: inherit;
  top: 0;
}
li {
  line-height: inherit;
}
nav ul li a,
nav ul ul li a {
  padding: 0;
}
address,
div.address {
  margin-bottom: 0;
  line-height: inherit;
  font-style: inherit;
}
/* Body */
body,
input,
select,
textarea {
  font-family: 'Lato', sans-serif;
}
form button {
  font-family: 'Caveat', cursive;
}
body {
  line-height: 1.6;
  font-size: 15px;
  color: #333333;
  padding-bottom: 2.6em;
  background: #fff;
  overflow: hidden;
}
p {
  margin: 0 0 1.85em;
  /*global override*/
  /*-webkit-column-break-inside: avoid;page-break-inside: avoid;break-inside: avoid;*/
}
/* Links */
a {
  text-decoration: none;
}
#content a {
  color: #f15e22;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#content a:hover {
  text-decoration: none;
  color: #139b48;
}
/* hfam */
h1,
h2:not(.topic),
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-family: 'Caveat', cursive;
  text-align: left;
  text-transform: uppercase;
  color: #f15e22;
  margin: 0 0 0.8em;
  text-rendering: auto;
}
h1 {
  /*F65*/
  font-size: 10vw;
  color: #000;
  margin-bottom: 0.22em;
}
h1 .trait {
  display: block;
}
h1 .trait2 {
  display: block;
  font-size: .6em;
}

.home h1 {
  /*F64*/
  line-height: 1.02;
  text-align: center;
  margin-bottom: 0.23em;
}
h2:not(.topic) {
  font-size: 1.75em;
  color: #ed2727;
}
h3 {
  font-size: 1.5em;
  color: #571ca6;
}
h4 {
  font-size: 1.3em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.9em;
}


/*containers*/
.container {
  max-width: 1000px;
}
/* List Styling */
#content ul,
#content ol {
  margin: 0 0 1.55em 1.6em;
}
/*global override*/
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*="-after"] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /*list-style-image:none;*/
}
.oral-and-maxillofacial-surgery #content ul li,
.periodontal-treatments #content ul li,
#content #brushing-instructions ul li,
#content #flossing-instructions ul li {
  list-style: none;
}
#content dt {
  margin-top: 1em;
}
#content dl {
  margin-bottom: 1.6em;
}
#subnav {
  margin: 0;
  padding: 0;
}
#subnav li,
body.sitemap #content ul li {
  list-style: none;
}
/* frame */
.frame {
  margin-bottom: 20px;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  position: relative;
  overflow: hidden;
}
/* ==================================================================
  vertex
=================================================================== */
#vertex {
  padding: 55px 0 2em;
  background: #fff;
  position: relative;
  z-index: 3000;
}
/* ==================================================================
  main-nav
=================================================================== */
#main-nav {
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  height: 55px;
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 0 1px 0 rgba(241, 94, 34, 0.4);
  position: absolute;
  top: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  width: 100%!important;
  max-width: none;
  padding: 0;
}
#main-nav .collapsible {
  position: relative;
}
#main-nav .trigger {
  line-height: 55px;
  font-size: 12px;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  text-align: center;
  color: #000;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav .trigger .cta {
  display: inline-block;
  vertical-align: top;
  position: relative;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav .trigger .cta:before {
  content: 'Close';
  line-height: inherit;
  font-size: inherit;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav .trigger .nav_icon {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  position: relative;
  display: inline-block;
  top: 0.8em;
}
#main-nav .trigger .nav_icon span {
  width: 12px;
  height: 12px;
  background: currentColor;
  border: 2px solid currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}
#main-nav .trigger .nav_icon span:nth-child(1),
#main-nav .trigger .nav_icon span:nth-last-child(1) {
  background: #fff;
}
#main-nav .trigger .nav_icon span:nth-child(even) {
  left: 50%;
}
#main-nav .trigger .nav_icon span:nth-child(1),
#main-nav .trigger .nav_icon span:nth-child(2) {
  top: 0px;
}
#main-nav .trigger .nav_icon span:nth-child(3),
#main-nav .trigger .nav_icon span:nth-child(4) {
  top: 50%;
}
#main-nav .trigger .nav_icon span:nth-child(1) {
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
#main-nav .trigger .nav_icon span:nth-child(2) {
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
#main-nav .trigger .nav_icon span:nth-child(3) {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
#main-nav .trigger .nav_icon span:nth-child(4) {
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}
#main-nav .trigger:hover .nav_icon span:nth-child(1),
#main-nav .trigger:hover .nav_icon span:nth-last-child(1) {
  background: #000;
  animation-name: pulse_custom;
}
#main-nav .trigger:hover .nav_icon span:nth-child(2),
#main-nav .trigger:hover .nav_icon span:nth-last-child(2) {
  background: #fff;
  animation-name: pulse_alt;
}
#main-nav .open .trigger .cta {
  color: rgba(0, 0, 0, 0);
}
#main-nav .open .trigger .cta:before {
  opacity: 1;
}
#main-nav .open .trigger .nav_icon span {
  height: 4px;
  width: 100%;
  border-radius: 1px;
  background: #fff;
  border: none;
  animation: none;
}
#main-nav .open .trigger .nav_icon span:nth-child(n) {
  left: 0;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
#main-nav .open .trigger .nav_icon span:nth-child(1) {
  width: 0;
  top: 50%;
  left: 50%;
  top: 0px;
}
#main-nav .open .trigger .nav_icon span:nth-child(2),
#main-nav .open .trigger .nav_icon span:nth-child(3) {
  top: 50%;
}
#main-nav .open .trigger .nav_icon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
  top: 100%;
}
#main-nav .open .trigger .nav_icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-nav .open .trigger .nav_icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-nav .open .trigger:hover .cta {
  color: rgba(0, 0, 0, 0);
}
#main-nav .open .trigger:hover .cta:before {
  opacity: 1;
}
#main-nav .open .trigger:hover .nav_icon span {
  height: 4px;
  width: 100%;
  border-radius: 1px;
  background: #fff;
  border: none;
  animation: none;
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(n) {
  left: 0;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(1) {
  width: 0;
  top: 50%;
  left: 50%;
  top: 0px;
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(2),
#main-nav .open .trigger:hover .nav_icon span:nth-child(3) {
  top: 50%;
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
  top: 100%;
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-nav .open .trigger:hover .nav_icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-nav ul {
  width: 100%;
  margin: -55px 0 0;
  padding: 5.6em 0 6.55em;
  background: #4d5a97;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  position: relative;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 52px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  width: 100%;
  height: 52px;
  margin: -1px 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li a[id]:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0px solid #000;
  /* .trans; */
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #fff;
  text-decoration: none;
  background: #39b4e3;
}
#main-nav ul li.open > a[id]:before,
#main-nav ul li.active > a[id]:before,
#main-nav ul li:hover > a[id]:before {
  border-top-width: 8px;
  border-bottom-width: 8px;
}
#main-nav ul ul {
  width: 100%;
  padding: 0;
  margin: 0;
  float: left;
  background: #f15e22;
  border: 0px solid #000;
  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: 52px;
  font-weight: 900;
  color: #fff;
  width: 100%;
  height: 52px;
  margin: 0;
  background: none;
  border: none;
  display: inline-block;
  position: relative;
}
#main-nav ul ul li a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0px solid #000;
}
#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;
  /*.show;*/
  margin-bottom: 0;
  background: #ed2727;
  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 {
  border-top-width: 8px;
  border-bottom-width: 8px;
  /* .transition(all 0.15s ease-out); */
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  -webkit-animation: peters_move 0.4s 1;
  -moz-animation: peters_move 0.4s 1;
  -ms-animation: peters_move 0.4s 1;
  -o-animation: peters_move 0.4s 1;
  animation: peters_move 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  -o-animation: none;
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-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: 9px 0;
  border-top-width: 8px;
  border-bottom-width: 8px;
}
#main-nav .open ul .open ul li {
  height: 52px;
  opacity: 1;
}
/* social-media || aka social-icons */
.social-media img,
.social-media .ib {
  vertical-align: top;
}
/*global override*/
.social-media {
  line-height: 0;
  font-size: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
  right: 0;
  bottom: 1.5em;
  left: 0;
  z-index: 600;
}
.social-media > div {
  width: auto;
}
.social-media a {
  line-height: 2.14;
  font-size: 0.7em;
  color: #fff;
  text-shadow: 0.2em 0.2em 0.07em #000;
  height: 2.14em;
  width: 2.14em;
  margin: 0 0.14em 0 0;
  display: block;
  float: left;
  position: relative;
  z-index: 420;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.social-media a:nth-last-of-type(1) {
  margin: 0;
}
.social-media a:nth-child(odd):after {
  background-image: url(../images/callouts/co04chat.png);
}
.social-media a:nth-child(even):after {
  background-image: url(../images/callouts/co02chat.png);
}
.social-media a:after {
  content: '';
  width: auto;
  height: auto;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  bottom: -0.5em;
  left: -0.5em;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.social-media a:hover {
  color: #e95e9f;
  text-shadow: 0.1em 0.1em 0 #000;
  background: none;
  z-index: 610;
  -webkit-transform: scale(1.44);
  -moz-transform: scale(1.44);
  -ms-transform: scale(1.44);
  -o-transform: scale(1.44);
  transform: scale(1.44);
}
.social-media a:hover:nth-child(5n+2) {
  color: #f15e22;
}
.social-media a:hover:nth-child(5n+3) {
  color: #139b48;
}
.social-media a:hover:nth-child(5n+4) {
  color: #571ca6;
}
.social-media a:hover:nth-child(5n+5) {
  color: #ed2727;
}
.social-media a:hover:after {
  animation-name: pulse_custom;
  opacity: 1;
}
.social-media a .icon {
  position: relative;
}
.open .social-media {
  font-size: 20px;
}

.nav-logo {
  display: none;
}

/* ==================================================================
  header
=================================================================== */
#hd {
  line-height: 0;
  text-align: center;
  color: #139b48;
  padding: 1em 0 0;
  position: relative;
  overflow: hidden;
}
#hd .container {
  width: 100%!important;
}
/* logo  */
#logo {
  font-size: 20px;
  width: auto;
  margin: 1em auto;
  display: block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo svg {
  width: 13.55em;
  height: 2.35em;
}
/* contact-info */
#contact-info {
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 0 1em;
  display: inline-block;
  vertical-align: top;
}
#contact-info .addy {
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-size: 0.85em;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  color: #1c271f;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
#contact-info .phone {
  letter-spacing: 0.05em;
  line-height: 53px;
  font-size: 0.9em;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  color: #139b48;
  display: inline-block;
  vertical-align: top;
}
#contact-info a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#contact-info a:hover {
  color: #e95e9f;
}
/* SPring VAlley LOcation  */
.spvalo {
  line-height: 12px;
  font-size: 13px;
  text-align: center;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  width: 134px;
  height: 37px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 0 0;
  display: block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}
.spvalo:before,
.spvalo:after {
  content: '';
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.spvalo:before {
  width: auto;
  height: auto;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  bottom: -0.5em;
  left: -0.5em;
  background: url(../images/tile100.svg) repeat center bottom;
  background-size: auto 250%;
  -webkit-transform: rotate(10deg) scale(0.8);
  -moz-transform: rotate(10deg) scale(0.8);
  -ms-transform: rotate(10deg) scale(0.8);
  -o-transform: rotate(10deg) scale(0.8);
  transform: rotate(10deg) scale(0.8);
  opacity: 0;
  z-index: -2;
}
.spvalo:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f8ef26;
  z-index: -1;
}
.spvalo:hover {
  animation-name: pulse_custom;
}
.spvalo:hover:before {
  -webkit-transform: rotate(-5deg) scale(1);
  -moz-transform: rotate(-5deg) scale(1);
  -ms-transform: rotate(-5deg) scale(1);
  -o-transform: rotate(-5deg) scale(1);
  transform: rotate(-5deg) scale(1);
  opacity: 1;
}
.spvalo:hover:after {
  background: rgba(233, 94, 159, 0.8);
}


/* ==================================================================
  .sallet
=================================================================== */
.sallet {
  width: 96%;
  max-width: 1864px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 20px;
}
/* slideshow */
#slideshow {
  width: 100%;
  max-width: 54.15em;
  margin: 0 0 1em;
  border: 4px solid #000;
  display: inline-block;
  vertical-align: top;
}
/*  callouts || aka bd-callouts || mw760  */
#callouts {
  font-size: 2.55vw;
  text-align: center;
  padding: 0;
  width: 100%;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 410;
}
#callouts a {
  color: #000;
  max-width: 18.5em;
  width: 48.68%;
  margin: 0;
  padding: 0;
  border: 4px solid #000;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#callouts a:nth-child(-n+2) {
  margin-bottom: 2.6%;
}
#callouts a:nth-child(odd) {
  margin-right: 2.6%;
}
#callouts a img.decoration {
  width: 100%;
  display: block;
}
#callouts a img.bg {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 400;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}
#callouts a h2.topic {
  line-height: 1;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
}
#callouts a:nth-child(1) {
  background-color: #4d5a97;
}
#callouts a:nth-child(1) h2.topic {
  font-size: 2.75em;
  top: 40%;
}
#callouts a:nth-child(2) {
  background-color: #fd9408;
}
#callouts a:nth-child(2) h2.topic {
  font-size: 2.55em;
  top: 52%;
}
#callouts a:nth-child(3) {
  background-color: #f74839;
}
#callouts a:nth-child(3) h2.topic {
  font-size: 2.55em;
  top: 46%;
}
#callouts a:nth-child(4) {
  background-color: #4f9a10;
}
#callouts a:nth-child(4) h2.topic {
  font-size: 2.25em;
  top: 43%;
}
#callouts a .info {
  width: 100%;
  height: 100%;
  position: relative;
  animation-fill-mode: both;
  animation-duration: 1.3s;
  z-index: 410;
}
#callouts a:hover {
  /*color: #ed2727;*/
}
#callouts a:hover:nth-child(1) {
  background-color: #396b2b;
}
#callouts a:hover:nth-child(2) {
  background-color: #db7eff;
}
#callouts a:hover:nth-child(3) {
  background-color: #3c6df7;
}
#callouts a:hover:nth-child(4) {
  background-color: #ff8bdf;
}
#callouts a:hover .info {
  -webkit-animation-name: tada ;
  animation-name: tada;
}
#callouts a:hover img.bg {
  -webkit-filter: hue-rotate(230deg);
  filter: hue-rotate(230deg);
  -webkit-animation: shazam 0.65s linear both;
  animation: shazam .65s linear both;
}
/* ==================================================================
  ip-sub || aka subnav-outer
=================================================================== */
#ip-sub {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  padding: 4.8em 0 4.35em;
  /*background: #e95e9f url(../images/tile100.svg) repeat-x 0 50%;*/
  background: #F7941D url(../images/tile101.svg) repeat-x 0 50%;
  border-top: 8px solid #000;
  border-bottom: 8px solid #000;
  position: relative;
  overflow: hidden;
}
#ip-sub p {
  line-height: 25px;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
#ip-sub a {
  color: #000000;
  display: inline-block;
  margin: 0.2em 0.8em;
  position: relative;
}
#ip-sub a:hover,
#ip-sub a.active {
  color: #8655a5;
  text-decoration: none;
}
#ip-sub .divider {
  display: none;
}
/* ==================================================================
  content || aka #home-content and .interior-content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
}
/* Content */
#content a img {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#content a .fa,
#content a .fas,
#content a .fab {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transform-origin: 20% 50%;
  -moz-transform-origin: 20% 50%;
  -ms-transform-origin: 20% 50%;
  -o-transform-origin: 20% 50%;
  transform-origin: 20% 50%;
}
#content a:hover img {
  opacity: 0.5;
}
#content a:hover .fa,
#content a:hover .fas,
#content a:hover .fab {
  -webkit-transform: scale(1.33);
  -moz-transform: scale(1.33);
  -ms-transform: scale(1.33);
  -o-transform: scale(1.33);
  transform: scale(1.33);
}
.home #bd {
  padding: 3.25em 0 14em;
  overflow: hidden;
  background: #c59aff url(../images/tile013.svg) repeat-x 0 100%;
}
.home #bd .container {
  position: relative;
}
.home #bd .bdbg {
  width: 75em;
  height: 86.4195em;
  position: absolute;
  right: -10.9em;
  bottom: -11.95em;
  z-index: -1;
}
.home #bd .decoration {
  width: 60%;
  max-width: 40.85em;
  position: absolute;
  right: -2em;
  bottom: 0;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left:1.5em;
  align-items: center;
}

.awards-grid img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* ===============================================
        custom content 
=============================================== */
.office_tour {
  display: block;
  position: relative;
  margin-bottom: 2.4em;
}
.office_tour .cycle-slideshow {
  display: block;
  width: 96%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.office_tour .controls {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  z-index: 400;
}
.office_tour .controls > div {
  font-size: 2.5em;
  color: #f15e22;
  display: block;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.office_tour .controls > div[id^="prev"] {
  float: left;
}
.office_tour .controls > div[id^="next"] {
  float: right;
  direction: rtl;
}
.office_tour .controls > div:hover {
  cursor: pointer;
  -webkit-transform: scale(1.44);
  -moz-transform: scale(1.44);
  -ms-transform: scale(1.44);
  -o-transform: scale(1.44);
  transform: scale(1.44);
  opacity: 0.5;
}
/*
.office_tour{ .show;position:relative;margin-bottom:2.4em;
  
  .cycle-slideshow{ .show;width:96%;max-width:800px;.center; }
  .slide-control{ .wall;.show;.vertical-align;left:0;z-index:400;
    > div{ .fs(2.5em);color:@color1;.show;.trans;
      &[id^="prev"]{ .left; }
      &[id^="next"]{ .right;direction:rtl; }
      &:hover{ cursor:pointer;.scale(1.44);opacity: 0.5; }
    }
  }
}
*/
.services #content {
  text-align: center;
}
.services #content .wrapper {
  color: #e95e9f;
  width: 49.67%;
  max-width: 300px;
  margin: 0 0.1% 1em;
  display: inline-block;
  vertical-align: top;
}
.services #content a:nth-child(5n+2) {
  color: #f15e22;
}
.services #content a:nth-child(5n+3) {
  color: #139b48;
}
.services #content a:nth-child(5n+4) {
  color: #571ca6;
}
.services #content a:nth-child(5n+5) {
  color: #ed2727;
}
.services #content a .decoration {
  width: 100%;
  border: 0.4em solid #000;
  margin: 0;
}
.services #content .wrapper h2.topic {
  line-height: 1;
  font-size: 1.5em;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: currentcolor;
}
/* ===============================================
          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.29;
  font-size: 1.75em;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ed2727;
  -webkit-transition-duration: 0;
  -moz-transition-duration: 0;
  -o-transition-duration: 0;
  -ms-transition-duration: 0;
  transition-duration: 0;
}
.sitemap #content ul ul li a {
  line-height: 1.6;
  font-size: 1em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #f15e22;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #139b48;
}
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*/
}
/* ==================================================================
  sidebar / sitepics
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 6%;
  padding: 0;
  display: none;
}
body[class~='blog'] #sidebar {
  display: block;
  float: none;
  background: #03aeef;
  padding: 20px;
  box-sizing: border-box;
  border: 7px solid #000;
  margin-bottom: 3em;
}
/* collage */
#collage {
  display: none;
}
#collage img {
  border: 0.4em solid #040707;
  margin: 0 auto 3em;
  display: none;
  padding: 1px;
  background: #000;

}
#collage img:nth-child(1) {
  max-width: 16.05em;
}
#collage img:nth-child(2) {
  max-width: 18.85em;
}
#collage img:nth-child(3) {
  max-width: 16.1em;
}
#collage img:nth-child(4) {
  max-width: 18.85em;
}
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #collage,
body[class^='meet-dr-'] #collage,
body[class^='meet-doctor-'] #collage {
  display: block;
}
.meet-the-doctor #collage img[src$="sagafi.jpg"],
body[class^='meet-dr-'] #collage img[src$="sagafi.jpg"],
body[class^='meet-doctor-'] #collage img[src$="sagafi.jpg"] {
  display: block;
}
/*sitepics*/
#hide-stock {
  position: relative;
}
.static {
  width: 100%;
  position: relative;
}
.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;
}
/* ==================================================================
  .spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
}
.spotlight > div {
  position: relative;
}
.spotlight .spot_01 {
  font-size: 3vw;
  /*padding:2.8em 0 2.5em;*/
  padding: 2.8em 0 8em;
  background: url(../images/spotlight/spot01bg.svg) no-repeat center center;
  background-size: cover;
}
.spotlight .spot_01 .info {
  width: 96%;
  max-width: 21.8em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 420;
}
.spotlight .spot_01 a {
  color: #040707;
  width: 100%;
  display: block;
  position: relative;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}
.spotlight .spot_01 a:hover {
  /*color: #ed2727;*/
  animation-name: pulse_custom;
}
.spotlight .spot_01 a h2.topic {
  /*F61.43*/
  line-height: 1;
  font-size: 3.0715em;
  text-align: left;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  padding: 1.32em 0 0;
  /* margin:0 0 2.41em; */
  margin: 0 0 2em;
  position: relative;
  z-index: 420;
}
.spotlight .spot_01 a h2.topic span {
  text-align: center;
  width: 100%;
  display: block;
}
.spotlight .spot_01 a h2.topic svg {
  width: 8.2em;
  height: 5.57em;
  position: absolute;
  right: -0.55em;
  top: 0;
  z-index: -1;
}
.spotlight .spot_01 .voluble {
  line-height: 1.6;
  font-size: 1em;
  text-align: justify;
  color: #333;
  width: 82%;
  margin: 0 0 0 auto;
  display: none;
}
.spotlight .spot_01 .videos {
  width: 96%;
  /* max-width:21.95em; */
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.spotlight .spot_01 .embed-container {
  font-size: 1em;
  width: 21.6em;
  height: 12.35em;
  margin: 0 0 0 auto;
  padding: 0;
  background: url(../images/spotlight/spot02bg.svg) no-repeat center center;
  background-size: cover;

  background: #000;
  border: 4px solid #040707;
  display: block;
}
.spotlight .spot_01 .embed-container:nth-child(2) {
  margin: 0.8em auto 0.8em 0;
}
.spotlight .spot_01 .decoration {
  width: 50%;
  max-width: 32em;
  position: absolute;
  left: -2em;
  bottom: 0;
}
.spotlight .spot_02 {
  padding: 0;
  background: url(../images/spotlight/spot02bg.svg) no-repeat center center;
}
.spotlight .spot_02 .info {
  width: 96%;
  max-width: 33.2em;
  padding: 2.2em 0 0;
  margin: 0 auto 6em;
  position: relative;
  z-index: 410;
}
.spotlight .spot_02 .info svg {
  font-size: 0.7em;
  width: 46.2em;
  max-width: none;
  height: 30.05em;
  margin: 0 -24em;
  position: absolute;
  top: -5.05em;
  left: 50%;
  z-index: -1;
}
.spotlight .spot_02 h2.topic {
  line-height: 1;
  font-size: 2.75em;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: #7e4a9f;
  margin: 0 auto 0.16em;
  display: block;
}
.spotlight .spot_02 .voluble {
  line-height: 1.63;
  font-size: 0.92em;
  color: #333;
  width: 100%;
  display: none;
}
.spotlight .spot_02 .links {
  font-size: 2vw;
  width: 100%;
  max-width: 37.5em;
  margin: 0 0 3em auto;
  display: block;
  position: relative;
  z-index: 420;
}
.spotlight .spot_02 a {
  color: #040707;
  width: auto;
  margin: 0 2.15em;
  display: inline-block;
  vertical-align: middle;
}
.spotlight .spot_02 a:hover {
  color: #f8ef26;
}
.spotlight .spot_02 a svg  {
  animation-fill-mode: both;
    animation-duration: 0.8s;

}
.spotlight .spot_02 a:hover svg  {
  /*fill: #f8ef26;*/
    animation-name: pulse_custom;

}
.spotlight .spot_02 a:nth-child(-n+3) {
  margin-bottom: 1em;
}
.spotlight .spot_02 a:nth-child(1) h3.topic {
  line-height: 1.7;
}
.spotlight .spot_02 a:nth-child(2) h3.topic {
  line-height: 1;
}
.spotlight .spot_02 a:nth-child(3) h3.topic {
  line-height: 1.7;
}
.spotlight .spot_02 a:nth-child(4) h3.topic {
  line-height: 1;
}
.spotlight .spot_02 a:nth-child(5) h3.topic {
  line-height: 1;
}
.spotlight .spot_02 a svg {
  display: block;
  margin: 0 auto 0.9em;
}
.spotlight .spot_02 a svg.ico00 {
  width: 4.3em;
  height: 7.35em;
}
.spotlight .spot_02 a svg.ico02 {
  width: 6.7em;
  height: 6.7em;
}
.spotlight .spot_02 a svg.ico01 {
  width: 6.5em;
  height: 6.5em;
}
.spotlight .spot_02 a svg.ico03 {
  width: 7.75em;
  height: 5.7em;
}
.spotlight .spot_02 a svg.ico04 {
  width: 3.9em;
  height: 6.25em;
}
.spotlight .spot_02 a svg path {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.spotlight .spot_02 a h3.topic {
  font-size: 1.5em;
  text-align: center;
  color: currentcolor;
  margin: 0;
  display: block;
}
.spotlight .spot_02 .decoration {
  font-size: 1.4vw;
  position: absolute;
  bottom: 0;
  z-index: 400;
}
.spotlight .spot_02 .decoration:nth-of-type(1) {
  width: 28.95em;
  height: 47.1em;
  right: 70%;
}
.spotlight .spot_02 .decoration:nth-of-type(2) {
  width: 23.6em;
  height: 47.1em;
  left: 70%;
  display: none;
}
.spotlight .spot_03 {
  font-size: 2vw;
  background: url(../images/spotlight/spot03bg.jpg) no-repeat center bottom;
  background-size: 120% auto;
}
.spotlight .spot_03 .gallery {
  font-size: 1vw;
  display: block;
  width: 120%;
  margin: 0 -10%;
}
.spotlight .spot_03 .gallery .bg {
  width: 100%;
  display: block;
}
.spotlight .spot_03 .cycle-slideshow {
  width: 100%;
  margin: 0;
  display: block;
  background: none;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.spotlight .spot_03 .cycle-slide {
  width: 100%;
  display: block;
}
.spotlight .spot_03 .cycle-slide img {
  width: 23.76%;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 0 1.9em 0.1em rgba(77, 72, 66, 0.35);
}
.spotlight .spot_03 .cycle-slide img:nth-child(2) {
  margin: 0 6.65%;
}
.spotlight .spot_03 a {
  color: #040707;
  width: 21em;
  padding: 0 0 3.45em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  right: 0;
  bottom: 4.6em;
  left: 0;
  z-index: 420;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}
.spotlight .spot_03 a:hover {
  /*color: #ed2727;*/
  animation-name: pulse_custom;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.spotlight .spot_03 a:hover h2.topic {
  text-shadow: 1px 1px 1px #000;
}
.spotlight .spot_03 a h2.topic {
  line-height: 0.94;
  font-size: 3.195em;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: currentcolor;
  display: block;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.spotlight .spot_03 a svg {
  width: 21.5em;
  height: 14.8em;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.spotlight .spot_03 .decoration {
  width: 38em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.spotlight .spot_04 {
  font-size: 2.8vw;
  color: #040707;
  /* padding:0 0 6.65em; */
  padding: 0 0 23em;
  background: url(../images/spotlight/spot04bg.png) no-repeat center center;
  background-size: cover;
}
.spotlight .spot_04 .info {
  line-height: 0;
  width: 96%;
  max-width: 32.5em;
  padding: 2.5em 0 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 400;
}
.spotlight .spot_04 .info > svg {
  width: 75em;
  height: 48.4em;
  position: absolute;
  bottom: -15.15em;
  left: -6.7em;
  z-index: -1;
}
.spotlight .spot_04 h2.topic {
  line-height: 0.92;
  font-size: 4.52em;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: #ed2727;
  display: block;
}
.spotlight .spot_04 h3.topic {
  line-height: 1.05;
  font-size: 2.53em;
  text-align: center;
  color: #040707;
  margin: 0 auto 0.4em;
  display: block;
}
.spotlight .spot_04 .logo {
  width: 100%;
  margin-bottom: 1em;
  display: inline-block;
  vertical-align: top;
}
.spotlight .spot_04 .logo svg {
  width: 13.95em;
  height: 5.8em;
}
.spotlight .spot_04 .office {
  font-size: 1.6em;
  width: auto;
  margin: 3px 0 0;
  display: inline-block;
  vertical-align: top;
}
.spotlight .spot_04 .addy {
  line-height: 1.46;
  font-size: 0.96em;
  text-transform: uppercase;
  display: block;
}
.spotlight .spot_04 .phone {
  line-height: 1.37;
  font-size: 1.28em;
  display: block;
}
.spotlight .spot_04 a {
  color: #040707;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.spotlight .spot_04 a:hover {
  color: #e95e9f;
  text-shadow: 1px 1px 1px #000;
}
.spotlight .spot_04 .appReq {
  color: #fff;
  width: 25em;
  height: 14.4em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  right: 0;
  bottom: 6.4em;
  left: 0;
  z-index: 420;
}
.spotlight .spot_04 .appReq:hover {
  color: #f8ef26;
}
.spotlight .spot_04 .appReq:hover svg {
  -webkit-animation: shazam 0.65s linear both;
  animation: shazam 0.65s linear both;
  -webkit-filter: hue-rotate(340deg);
  filter: hue-rotate(340deg);
}
.spotlight .spot_04 .appReq h2.topic {
  line-height: 1;
  font-size: 1.75em;
  font-family: 'Caveat', cursive;
  text-transform: uppercase;
  color: currentcolor;
  width: 100%;
  padding-right: 0.8em;
  margin-top: 0.25em;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
}
.spotlight .spot_04 .appReq svg {
  width: 25em;
  height: 14.4em;
  animation-fill-mode: both;
  /* animation-duration:0.8s; */
  position: relative;
  z-index: -1;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.spotlight .spot_04 .decoration {
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 410;
}
.spotlight .spot_04 .decoration:nth-of-type(1) {
  width: 33%;
  max-width: 32.85em;
  left: 0;
}
.spotlight .spot_04 .decoration:nth-of-type(2) {
  width: 39%;
  max-width: 39.1em;
  right: 0;
}
/* ==================================================================
  #ft
=================================================================== */
#ft {
  text-align: center;
  padding: 7px 0 0;
  background: #f8ef26 url(../images/tile005.svg) repeat-x 0 100%;
  position: relative;
}
#ft .map {
  display: none;
}
#ft #location .logo img {
    max-width: 230px;
}

/* ===============================================
    locations || aka ft-location
=============================================== */
#location .office {
  width: 96%;
  height: 418px;
  padding: 40px 0 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 400;
}
#location .logo {
  margin: 0 auto 0;
  display: block;
}
#location .logo svg {
  width: 231px;
  height: 107px;
}
#location .addy {
  line-height: 30px;
  text-transform: uppercase;
  font-size: 20px;
  color: #303131;
  display: block;
  position: relative;
}
#location .phone {
  line-height: 36px;
  font-size: 25px;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  color: #139b48;
  display: block;
  position: relative;
}
#location .addybg {
  width: 418px;
  height: 418px;
  margin: 0 -209px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}
#location a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#location a:hover {
  color: #f48152;
}
#location .decoration {
  width: 100%;
  display: block;
}
/*back-to-top*/
#btt {
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  margin: 0;
}
a#back-to-top {
  width: 12.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
a#back-to-top:hover svg.flag {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
a#back-to-top:hover svg g.blastBg {
  -webkit-animation: shazam 0.65s linear both;
  animation: shazam 0.65s linear both;
}
a#back-to-top svg:nth-child(1) {
  width: 10.95em;
  height: 10.2em;
  position: absolute;
  left: -2.45em;
  top: 3.85em;
  z-index: 400;
}
a#back-to-top svg:nth-child(2) {
  width: 12.8em;
  height: 14.7em;
}
a#back-to-top svg.flag {
  display: inline-block;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  -o-transform-origin: center bottom;
  transform-origin: center bottom;
}
a#back-to-top svg g.blastBg {
  display: block;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
a#back-to-top svg path.btt {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* ==================================================================
    links || aka ft-design-credit
=================================================================== */
#links {
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  color: #040707;
  padding: 2em 0;
  margin: 0;
  border-top: 8px solid #000;
}
#links .util a {
  color: #040707;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#links .util a:hover {
  color: #f15e22;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0.3em;
}
/*sesame link*/
a#sesame-link .sesame-icon {
  width: 1.85em;
  height: 1.54em;
  margin-right: 0.69em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesame-icon path {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  fill: currentColor;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr */
hr {
  height: 1px;
  margin: 1.85em auto;
  padding: 0;
  clear: both;
  background: #139b48;
}
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.85em 0;
  background: #139b48;
  /* change to match div.hr color please */
  display: block;
}
/*success message*/
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 16px;
  float: left;
  background: #f15e22;
}
/* Form Buttons */
form button {
  letter-spacing: normal;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(241, 94, 34, 0);
  border: 1px solid rgba(241, 94, 34, 0);
  display: block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -webkit-backface-visibility: hidden;
}
form button:before,
form button:after {
  content: '';
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
form button:before {
  width: auto;
  height: auto;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  bottom: -0.5em;
  left: -0.5em;
  background: url(../images/tile100.svg) repeat center bottom;
  background-size: auto 250%;
  -webkit-transform: rotate(-10deg) scale(0.8);
  -moz-transform: rotate(-10deg) scale(0.8);
  -ms-transform: rotate(-10deg) scale(0.8);
  -o-transform: rotate(-10deg) scale(0.8);
  transform: rotate(-10deg) scale(0.8);
  opacity: 0;
  z-index: -2;
}
form button:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f8ef26;
  z-index: -1;
}
form button:hover {
  animation-name: pulse_custom;
}
form button:hover:before {
  -webkit-transform: rotate(5deg) scale(1);
  -moz-transform: rotate(5deg) scale(1);
  -ms-transform: rotate(5deg) scale(1);
  -o-transform: rotate(5deg) scale(1);
  transform: rotate(5deg) scale(1);
  opacity: 1;
}
form button:hover:after {
  background: rgba(233, 94, 159, 0.8);
}
form p {
  height: auto;
}
/* massive chat widget resize for mobile use comfort */
#bc-chat-container {
  font-size: 0.8em!important;
}
.bc-minimize-state {
  width: 11.8em!important;
  height: 7.7em!important;
}
.img-left,
.img-right {
  max-width: 45%;
}
/* BLOG FORM */

.navigation .previous_post {
  display: none;
}
.post .entry_tag_links {
  display: none;
}
.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: #000;
  font-size: 15px;
  margin: 0 0 0.8em;
  font-weight: 400;
  text-align: center;
}
form#blog_search {
  color: #000;
  position: relative;
  text-align: center;
  float: none;
  margin: 0 auto;
}
form#blog_search label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: none;
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
  caret-color: #f15e22;
}
form#blog_search input {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  width: 178px;
  margin: 6px auto;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
form#blog_search input:hover {
  background: rgba(255, 255, 255, 0.95);
}
form#blog_search button {
  font-weight: 700;
  font-size: 10px;
  padding: 4px 8px!important;
  margin: 0 auto;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.26);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
  letter-spacing: normal;
  font-family: 'Montserrat', Lato, 'Trebuchet MS', Helvetica, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(241, 94, 34, 0);
  border: 1px solid rgba(241, 94, 34, 0);
  display: block;
  position: relative;
  z-index: 10;
}
form#blog_search button:active,
form#blog_search button:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.24);
}
/* end blog css */
/* fixes buttons */
button:hover,
button:active,
button:focus {
  outline: none;
}
/* Generic Classes */
.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%;
}
/*other forms*/
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"],
textarea {
  /*width:80%;*/
  caret-color: #f15e22;
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"] {
  height: 34px;
}
/* hidden field styles */
.hidden-option {
  display: none;
}
body.office-tour .video-sleeve {
  margin: 0 auto;
  max-width: 600px;
}
.test-cred {
  display: block;
  font-weight: bold;
  font-size: smaller;
}
.flash {
  margin: 20px 0;
}
#pro-pack h2 {
  padding-top: 0;
}
/*global overrides*/
button:active {
  outline: none;
}
form label {
  margin: 1em 0;
}
form p {
  margin: 2em 0 0;
}
form #rating label span {
  margin-left: 0;
}
form #rating label input {
  width: 20px!important;
}
form label[for="Days_Available_No_Preference"] span,
form fieldset.radio-group span {
  display: inline-block;
}
form.full label input[type="checkbox"] {
  width: auto !important;
  margin: 0;
}
/*body[class^='meet-dr-'] #hide-stock { display:block !important; text-align:center; margin: 1em auto; }*/
/*unecessary rule - see #sidebar*/
form p {
  height: auto;
}
/*common procedures styles*/
p#procedures-nav {
  font-size: 12px;
  text-transform: uppercase;
  color: #f15e22;
  /*padding-bottom:1em;
  margin-bottom:3em;
  border-bottom:1px solid @tri-grey;*/
}
p#procedures-nav a {
  color: #f15e22;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
p#procedures-nav a:hover {
  text-decoration: none;
  color: #139b48;
}
/*********************************************************************/
/*embedded videos*/
/*********************************************************************/
/*keeps videos from getting too hooj*/
.embed-container {
  width: 100%;
}
.embed-container.ratio16x9,
.embed-container.docvid {
  padding-bottom: 46%;
}
.clarity-sl .embed-container {
  padding: 0 0 10% 0;
  width: 60%;
}
.clarity-sl .embed-container a {
  line-height: 7;
}
/*exceptions - there are exceptions to every rule!!!*/
.acceledent .embed-container:nth-of-type(1) {
  float: right;
  height: auto;
  padding-bottom: 0;
  width: auto;
}
/*office-location*/
.map-directions .embed-container,
.address-hours .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%*/
}
.location-page,
table.office-hours {
  margin-bottom: 1.85em;
}
table.office-hours {
  font-size: 0.9em;
}
p.office-hours {
  margin-bottom: 0;
}
.office-info,
.office-location table {
  margin-bottom: 2em;
}
/*padding-bottom adjusts height of google map*/
h3.hours {
  margin-top: 2em;
}
/*********************************************************************
  invisalign overrides
*********************************************************************/
body[class*='invisalign'] span[style="font-size:10px;"] {
  line-height: 2;
  display: inline-block;
}
.invisalign-testimonials #pro-pack > p {
  display: inline-block;
}
.invisalign-testimonials ul#testimonials {
  margin: 0 0 100px 0;
}
.invisalign-videos h1 {
  text-align: center;
}
.invisalign-videos .img-left {
  float: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/*invisalign videos*/
.invisalign-videos h3 {
  text-align: center;
}
.invisalign-videos .embed-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*hides p tag under slideshow*/
.invisalign-testimonials ul#testimonials {
  background: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.invisalign-testimonials ul#testimonials p {
  line-height: 18px;
  font-size: 17px;
  text-shadow: none;
  font-weight: 400;
  color: #333333;
}
/*invisalign footer*/
#invisalign-footer,
#suresmile-footer {
  max-width: 100%;
  width: auto;
}
#invisalign-footer a:hover img,
#suresmile-footer a:hover img {
  opacity: 0.5;
}
#pro-pack #invisalign-footer {
  width: 90%;
  float: none;
  margin: 1em auto;
}
#pro-pack #invisalign-footer a:hover img {
  opacity: 0.5;
}
#invisalign-footer li,
#suresmile-footer li,
#pro-pack #invisalign-footer li {
  width: auto;
}
/*other stuff*/
.braces-diagram #content p {
  float: none;
  margin: 0 auto!important;
  padding: 0;
}
.braces-diagram #content .img-left {
  float: none;
  margin: 0 auto;
  clear: none;
  display: block;
}

#small-dialog {
  position: relative;
  background: #FFF;
  padding: 20px;
  width:auto;
  max-width: 500px;
  margin: 20px auto;
}
#small-dialog .trait{
  font-family: 'Caveat', cursive;
  font-size: 1.3em;
}


/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
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) {
  h1 {
    /*F65*/
    font-size: 3.25em;
  }
  .home h1 {
    /*F64*/
    font-size: 3.2em;
  }
  #callouts {
    font-size: 1.245vw;
  }
  #callouts a {
    width: 24%;
  }
  #callouts a:nth-child(-n+2) {
    margin-bottom: 0;
  }
  #callouts a:nth-child(2) {
    margin-right: 1.3%;
  }
  #callouts a:nth-child(odd) {
    margin-right: 1.3%;
  }
  /*END*/
}
/* ===============================================
Tablet / Desktop Stylings
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /**/
  .row > .col {
    border: 0px solid rgba(0, 0, 0, 0);
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
    background-clip: padding-box !important;
    margin-left: 5%;
  }
  .row > .col:first-child {
    margin-left: 0%;
  }
  #staff-array .row > .col {
    margin-left: 0;
  }
  #staff-array .row > .col:first-child {
    margin-left: 5%;
  }
  /* 12 Column Grid */
  .row > .col.span1 {
    width: 3.75%;
  }
  .row > .col.span2 {
    width: 12.5%;
  }
  .row > .col.span3,
  .row > .col.quarter {
    width: 21.25%;
  }
  .row > .col.span4,
  .row > .col.third {
    width: 30%;
  }
  .row > .col.span5 {
    width: 38.75%;
  }
  .row > .col.span6,
  .row > .col.half {
    width: 47.5%;
  }
  .row > .col.span7 {
    width: 56.25%;
  }
  .row > .col.span8 {
    width: 65%;
  }
  .row > .col.span9 {
    width: 73.75%;
  }
  .row > .col.span10 {
    width: 82.5%;
  }
  .row > .col.span11 {
    width: 91.25%;
  }
  .row > .col.span12,
  .row > .col.full {
    width: 100%;
  }
  .row > .col.offset1 {
    margin-left: 8.75%;
  }
  .row > .col.offset2 {
    margin-left: 17.5%;
  }
  .row > .col.offset3 {
    margin-left: 26.25%;
  }
  .row > .col.offset4 {
    margin-left: 35%;
  }
  .row > .col.offset5 {
    margin-left: 43.75%;
  }
  .row > .col.offset6 {
    margin-left: 52.5%;
  }
  .row > .col.offset7 {
    margin-left: 61.25%;
  }
  .row > .col.offset8 {
    margin-left: 70%;
  }
  .row > .col.offset9 {
    margin-left: 78.75%;
  }
  .row > .col.offset10 {
    margin-left: 87.5%;
  }
  .row > .col.offset11 {
    margin-left: 96.25%;
  }
  /**/
  /* ===============================================
          super 
=============================================== */
  /*keeps videos from getting too hooj*/
  /*.embed-container{ width: 60%;padding-bottom:30%;.show;.center; }
.embed-container.ratio16x9, .embed-container.docvid{ padding-bottom:30%; }*/
  /*.slideshow-pagination{ .show; }*/
  .damon-smile-testimonials .embed-container.ratio16x9 {
    margin-left: auto;
    margin-right: auto;
  }
  /* in-ovation pages */
  .in-ovation div.img-left {
    float: right;
    margin: 0 0 2.5% 2.5%;
  }
  .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;
    float: left;
  }
  /*damon pages*/
  .damon-smile-info img[src$='damon-3.png'] {
    float: right;
    margin: 0 0 0.8em 0.8em;
  }
  .damon-smile-info img[src$='damon-3.png'] + p {
    display: block;
    width: 100%;
    clear: both;
  }
  /*invisalign footer*/
  #pro-pack #invisalign-footer {
    width: 100%;
    float: left;
  }
  #pro-pack #invisalign-footer ul {
    float: left;
    width: auto;
    margin: 0;
    min-width: 120px;
  }
  #pro-pack #invisalign-footer a.external,
  #pro-pack #invisalign-footer p.cf {
    float: right;
    clear: right;
  }
  #pro-pack #invisalign-footer p.cf {
    text-align: center;
  }
  #invisalign-footer p.cf {
    text-align: center;
  }
  /*suremsile pages*/
  [class*="suresmile"] iframe,
  [class*="suresmile"] .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .suresmile-before-and-after #content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .how-suresmile-works .embed-container {
    display: none;
  }
  .suresmile-info .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #suresmile-footer {
    width: 100%;
    float: left;
  }
  #suresmile-footer > .external {
    display: block;
    margin: 1em auto;
    float: none;
    clear: both;
  }
  #suresmile-footer p.cf {
    text-align: center;
  }
  #suresmile-footer ul.cf li a:nth-child(2) {
    display: none;
  }
  /* opalescence */
  #video-opalescence {
    float: right;
    margin: 0 0 1em 1em;
  }
  /**/
  .video-sleeve {
    width: 100%;
  }
  .video-sleeve-60 {
    width: 100%;
    max-width: 60%;
  }
  /*hfam*/
  h1 {
    /*F65*/
    font-size: 3.25em;
  }
  .home h1 {
    /*F64*/
    font-size: 3.2em;
  }
  /* ===============================================
          header 
=============================================== */
  /* contact-info */
  #contact-info .addy {
    line-height: 73px;
    width: auto;
    margin-right: 6px;
  }
  #contact-info .phone {
    line-height: 73px;
  }
  /* ===============================================
          sallet 
=============================================== */
  .sallet {
    font-size: 1vw;
    text-align: center;
  }
  /* slideshow */
  #slideshow {
    margin-right: 1.07%;
  }
  /* callouts  */
  #callouts {
    font-size: inherit;
    max-width: 38em;
    width: 41%;
  }
  /* ===============================================
          torso 
=============================================== */
  /*.torso{ position:relative;background:#fff;z-index:420; }*/
  /* ===============================================
          ip-sub 
=============================================== */
  /* ===============================================
        content / sidebar 
=============================================== */
  #bd {
    min-height: 65em;
    padding: 3.2em 0 5.2em;
    overflow: hidden;
  }
  #bd .container {
    max-width: 50em;
  }
  #content {
    width: 71%;
    max-width: 35.2em;
    float: left;
  }
  #content p {
    text-align: justify;
  }
  .home #bd {
    min-height: 0;
    max-width: 93.2em;
    padding: 0 0 14em;
    margin-left: auto;
    margin-right: auto;
  }
  .home #bd #content {
    width: 69%;
    max-width: 34.3em;
    padding: 3.25em 0 2.5em;
    float: left;
  }
  .home #bd .decoration {
    width: 50%;
  }
  /* collage */
  #collage {
    display: block;
    width: 35.85em;
    height: 47.3em;
    margin: 0 0 0 6.65em;
    position: absolute;
    top: 4.35em;
    left: 60%;
  }
  #collage img {
    margin: 0;
    display: block;
  }
  #collage img:nth-child(1) {
    width: 45.29%;
    float: left;
  }
  #collage img:nth-child(2) {
    width: 52.32%;
    float: right;
  }
  #collage img:nth-child(3) {
    width: 45.42%;
    margin-top: 1em;
    float: left;
    clear: left;
  }
  #collage img:nth-child(4) {
    width: 52.32%;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  /* blog */
  #sidebar {
    width: 32%;
    margin: 0 0 1em;
    display: block;
    float: right;
    clear: right;
  }
  /* custom content */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  /*p.before-after-text, .before-after-box{ .wall; }*/
  .speed-system img[alt="Speed Braces"] {
    display: block;
  }
  /*.office_tour{
  .controls{
    > div{ 
      &[id^="prev"]{ margin-left:-50px; }
      &[id^="next"]{ margin-right:-50px; }
    }
  }
}*/
  /*PAGE SPECIFIC*/

  body.meet-the-team #content,
  body.services #content,
  body.brius-before-and-after #content,
  body.before-and-after #content {
    width: 100%;
    max-width: none;
  }

  body.meet-the-team #collage,
  body.services #collage,
  body.brius-before-and-after #collage,
  body.before-and-after #collage{
    display: none;
  }



  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^="/sesame_media/docs/"] {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^="/sesame_media/docs/"] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^="inovation-chart-"] {
    display: inline-block;
    max-width: 50%;
  }
  .in-ovation-before-after #content p {
    text-align: center;
    margin-bottom: 0;
  }
  .in-ovation-before-after .content-text h3 {
    text-align: center;
  }
  .in-ovation-before-after .content-text .img-left,
  .in-ovation-before-after .content-text .border {
    max-width: 44%;
    float: none;
    display: inline-block;
    margin: 2%;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body[class*="in-ovation"] .img-right {
    max-width: 40%;
  }
  /* ===============================================
          sitemap 
=============================================== */
  body.sitemap .width1 {
    width: 50%;
    /*default 50%*/
  }
  body.sitemap .width1:not(.first) {
    width: auto;
    float: right;
  }
  /* ===============================================
      spotlight 
=============================================== */
  .spotlight .spot_01 {
    font-size: 1.5vw;
    padding: 2.75em 0 2.5em;
  }
  .spotlight .spot_01 .info {
    margin-left: 22em;
    display: inline-block;
    vertical-align: top;
  }
  .spotlight .spot_01 .videos {
    font-size: 0.8em;
    width: 21.95em;
    margin: 0 0 0 2.65em;
    display: inline-block;
    vertical-align: top;
  }
  .spotlight .spot_01 .embed-container {
    margin: 0;
  }
  .spotlight .spot_01 .embed-container:nth-child(2) {
    margin: 0.8em 0;
  }
  .spotlight .spot_02 {
    font-size: 1vw;
  }
  .spotlight .spot_02 .info svg {
    font-size: inherit;
  }
  .spotlight .spot_02 h2.topic {
    font-size: 4vw;
    margin: 0.2em 0 3.5em;
  }
  .spotlight .spot_02 .links {
    font-size: 1.2em;
    margin: 0 auto 3em;
  }
  .spotlight .spot_02 .decoration:nth-of-type(2) {
    display: block;
  }
  .spotlight .spot_03 {
    font-size: 1vw;
    background-size: 100%  auto;
    padding-bottom: 25.35em;
  }
  .spotlight .spot_03 .gallery {
    font-size: inherit;
    width: 100%;
    margin: 0;
    /* padding-top:8.4em;background-size:100% auto; */
  }
  .spotlight .spot_03 .decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .spotlight .spot_04 {
    font-size: inherit;
  }
  .spotlight .spot_04 .logo {
    width: auto;
    margin: 0 1em 0 0;
  }
  .spotlight .spot_04 .office {
    font-size: inherit;
    text-align: left;
  }
  /* ===============================================
          footer 
=============================================== */
  /*location*/
  #location {
    width: 418px;
    margin: 0 auto;
  }
  /*links*/
  #links {
    font-size: 13px;
  }
  /*back to top*/
  #btt {
    width: auto;
    margin: 0 -21em;
    position: absolute;
    left: 50%;
    bottom: 14.65em;
    z-index: 420;
  }
  /*END*/
}
/* ===============================================
Desktop Only Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /*body*/
  body {
    font-size: 20px;
  }
  /*hfam*/
  .home h1 {
    text-align: left;
  }

  .home h1 .trait{
    display: block;
    left: -1em;
    top: 0.5em;
    position: absolute;
    right: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
  }
  /* ==================================================================
  main-nav
=================================================================== */
  #main-nav .collapsible .trigger {
    display: block;
    box-shadow: none;
  }
  nav.horizontal ul li {
    width: 100%;
    float: none;
  }
  nav .collapsible ul {
    display: none;
  }
  nav .open > ul {
    display: block;
  }
  /* slideshow */
  /* ==================================================================
  sallet
=================================================================== */
  .sallet {
    margin-top: 72px;
  }
  /* slideshow */
  #slideshow {
    width: 56.2%;
    max-width: 54.15em;
    margin: 0 1em 0 0;
    border-width: 8px;
    display: inline-block;
    vertical-align: top;
  }
  /*callouts*/
  #callouts a {
    border-width: 8px;
  }
  #callouts a:nth-child(-n+2) {
    margin-bottom: 1em;
  }
  #callouts a:nth-child(odd) {
    /*margin-right: 1em;*/
  }
  /* ==================================================================
  bd || content || sidebar
=================================================================== */
  .home #bd .bdbg {
    right: 92px;
  }
  /* ==================================================================
ip-sub 
=================================================================== */
  #ip-sub p {
    margin: 0;
  }
  #ip-sub a {
    margin: 0;
  }
  #ip-sub .divider {
    display: inline-block;
    margin: 0 0.3em;
  }
  /* spotlight */
  /* ft */
  /* locations */
  /*links*/
  /*back-to-top*/
  /*END*/
}
/* ===============================================
Desktop Only Excluding large tablets
Supports 81.25em (1300px) and up
=============================================== */
@media only screen and (min-width: 81.25em) {
  /* frame */
  .frame {
    width: 93%;
    max-width: 1864px;
    margin: 0 auto 20px;
    border: 8px solid #000;
  }
  /* vertex */
  #vertex {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 3000;
    box-shadow: none;
  }
  /*HD*/
  #hd {
    padding: 0;
    z-index: 3000;
    overflow: visible;
  }
  #logo {
    width: auto;
    margin: 15px 44px 0 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
  }
  #contact-info {
    width: auto;
    margin: 0;
  }
  .spvalo {
    position: absolute;
    top: 17px;
    right: 69px;
    z-index: 3030;
  }
  /* ==================================================================
  main-nav
=================================================================== */
  nav.horizontal ul li {
    height: auto;
    min-height: 0;
  }
  #main-nav {
    text-align: left;
    width: auto;
    height: 80px;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3030;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  #main-nav .collapsible .trigger {
    line-height: 80px;
    text-align: left;
    padding-left: 68px;
  }
  #main-nav .open ul ul {
    display: none;
  }
  #main-nav ul {
    height: 100vh;
    width: 271px;
    margin: -80px 0 0;
    padding: 9.6em 0 0;
    border: 8px solid #000;
  }
  #main-nav ul li a[id] {
    padding-left: 55px;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 9px 0;
    margin: 0;
    border: 8px solid #000;
    z-index: 2800;
    position: absolute;
    display: none;
  }
  #main-nav ul ul li {
    height: 100%;
    min-height: 100%;
    opacity: 1;
  }
  #main-nav ul ul li a {
    white-space: nowrap;
    padding: 0 30px;
  }
  .social-media {
    top: 24em;
    bottom: auto;
  }

  .open .nav-logo{
    display: block;
    text-align: center;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 600;
    top: 44em;
    bottom: auto;
  }
  /* ===============================================
      special drop locations 
=============================================== */
  #main-nav ul li:hover ul {
    left: 100%;
    top: 0;
    display: block;
  }
  /* ==================================================================
  sallet
=================================================================== */
  .sallet {
    margin-bottom: 20px;
  }
  /*ip-sub*/
  #ip-sub {
    margin-top: 73px;
    height: 249px;
    position: relative;
    z-index: 2000;
  }
  #ip-sub .container {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 0;
    left: 0;
  }
  /* ==================================================================
  bd || content || sidebar
=================================================================== */
  #collage {
    /*position: fixed;*/
    top: 19.45em;
    top: .3em;
  }
  /* spotlight */
  .spotlight .spot_01 {
    font-size: 1vw;
  }
  .spotlight .spot_01 .videos {
    font-size: inherit;
  }
  .spotlight .spot_01 .videos .embed-container {
    border-width: 8px;
  }
  .spotlight .spot_01 .info {
    margin-left: 14em;
  }
  .spotlight .spot_01 .voluble {
    display: block;
  }
  .spotlight .spot_01 .decoration {
    left: 4.2em;
  }
  .spotlight .spot_02 h2.topic {
    font-size: 2.75em;
    margin: 0 auto 0.16em;
  }
  .spotlight .spot_02 .voluble {
    text-align: justify;
    display: block;

    padding: 0 45px;
  }
  .spotlight .spot_02 .links {
    font-size: inherit;
  }
  .spotlight .spot_02 .info {
    margin-bottom: 8em;
  }
  .spotlight .spot_03 .gallery {
    /* padding-top:; */
  }
  .spotlight .spot_03 .cycle-slide img {
    width: 21.95em;
  }
  .spotlight .spot_03 .cycle-slide img:nth-child(2) {
    margin: 0 7.8em;
  }
  .spotlight .spot_04 {
    font-size: 1vw;
    padding: 0 0 18.7em;
  }
  .spotlight .spot_04 .info {
    margin-left: 13em;
    display: inline-block;
    vertical-align: top;
  }
  .spotlight .spot_04 .appReq {
    bottom: 3.4em;
    -webkit-transform: translateX(-1.2em);
    -moz-transform: translateX(-1.2em);
    -ms-transform: translateX(-1.2em);
    -o-transform: translateX(-1.2em);
    transform: translateX(-1.2em);
  }
  .spotlight .spot_04 .decoration:nth-of-type(n) {
    width: 100%;
  }
  .spotlight .spot_04 .decoration:nth-of-type(1) {
    left: -0.75em;
  }
  .spotlight .spot_04 .decoration:nth-of-type(2) {
    right: -3em;
  }
  [data-aos="tada2"] {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    transition-property: transform, opacity;
    animation-fill-mode: both;
  }
  [data-aos="tada2"].aos-animate {
    opacity: 1;
    -webkit-animation-name: tada2;
    animation-name: tada2;
  }
  /*FT*/
  #ft {
    font-size: 1vw;
    height: 36.8em;
    z-index: 2000;
  }
  #ft .map {
    width: 52.3em;
    border-radius: 0 10em 0 0;
    margin-right: -2.7em;
    border: 8px solid #000;
    display: block;
    position: absolute;
    top: 4.85em;
    right: 50%;
  }
  #ft .decoration {
    width: 56.9em;
    margin: 0 -9.15em;
    position: absolute;
    left: 50%;
    bottom: 0;
  }
  #location {
    width: 20.9em;
    margin-left: 38em;
    display: inline-block;
    vertical-align: top;
  }
  #location .office {
    width: 100%;
    height: 20.9em;
    padding: 0;
    /*padding: 4.75em;*/
  }

  #location .logo img{
    max-width: 11vw;
  }

  #location .logo svg {
    width: 11.55em;
    height: 5.35em;
  }
  #location .addy {
    line-height: 1.5;
    margin-top: -30px;
    font-size: 1em;
  }
  #location .addy:before {
    content: '';
    width: 12.5em;
    height: 12.5em;
    display: block;
    position: absolute;
    left: -32em;
    top: -1.5em;
  }
  #location .phone {
    line-height: 1.44;
    font-size: 1.25em;
  }
  #location .addybg {
    width: 20.9em;
    height: 20.9em;
    margin: 0 -10.45em;
  }
  #btt {
    font-size: inherit;
    margin: 0 -2em;
    top: 0;
    bottom: auto;
  }
  [data-aos="wobble"] {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    transition-property: transform, opacity;
    animation-fill-mode: both;
    animation-duration: 0.8s;
  }
  [data-aos="wobble"].aos-animate {
    opacity: 1;
    -webkit-animation-name: wobble;
    animation-name: wobble;
  }
  #links {
    padding: 0;
    border: none;
    margin-right: 10em;
    position: absolute;
    right: 50%;
    bottom: 1.5em;
  }
  /* END */
}
/* ===============================================
yet another accommodation for the abitrary width chosen for sections || Large Screen Only
Supports 100em (1600px) and up
=============================================== */
@media only screen and (min-width: 100em) {
  #links {
    margin-right: 13em;
  }
  /* END */
}
/* ===============================================
Breakpoint for abitrary width chosen for sections || Large Screen Only
Supports 116.875em (1870px) and up
=============================================== */
@media only screen and (min-width: 116.875em) {
  .sallet {
    font-size: inherit;
  }
  .spotlight .spot_01,
  .spotlight .spot_02,
  .spotlight .spot_03,
  .spotlight .spot_04 {
    font-size: inherit;
  }
  .spotlight .spot_03 .cycle-slide img:nth-child(2) {
    margin: 0 5em;
  }
  #ft {
    font-size: inherit;
  }
  /*END*/
}
/* ===============================================
Desktop Only Large Screen Only
Supports 125em (2000px) and up
=============================================== */
@media only screen and (min-width: 125em) {
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
/* mymove looted from Peter B. || credit due where credit is deserved [= */
@-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;
  }
}
/* PULSE STUFF */
/* pulse_custom */
@keyframes pulse_custom {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.24, 1.24, 1.24);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse_custom {
  animation-name: pulse_custom;
}
/* pulse_custom */
@keyframes pulse_alt {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.88, 1.88, 1.88);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse_alt {
  animation-name: pulse_alt;
}
/* pulse_rev */
@keyframes pulse_rev {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0.88, 0.88, 0.88);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse_rev {
  animation-name: pulse_rev;
}
/* omni */
@keyframes omni-1 {
  0% {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes omni-2 {
  0% {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
  50%,
  100% {
    opacity: 0;
    transform: scale3d(1.2, 1.2, 1);
  }
}
.omni-1 {
  animation: omni-1 0.5s forwards;
}
.omni-2 {
  animation: omni-2 0.5s forwards;
}
/* tada */
@-webkit-keyframes tada2 {
  from {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada2 {
  from {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(2, 2, 2) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada2 {
  -webkit-animation-name: tada2;
  animation-name: tada2;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* animation rotate-scale-up */
@-webkit-keyframes shazam {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(3) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(2) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes shazam {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(3) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(2) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}
.shazam {
  -webkit-animation: shazam 0.65s linear both;
  animation: shazam 0.65s linear both;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -3deg);
  }
3  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* wobble */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -15deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -15deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 12deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 12deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -9deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -9deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 6deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 6deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -15deg);
    transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -15deg);
  }
  30% {
    -webkit-transform: translate3d(15%, 0, 0) rotate3d(0, 0, 1, 12deg);
    transform: translate3d(15%, 0, 0) rotate3d(0, 0, 1, 12deg);
  }
  45% {
    -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -9deg);
    transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -9deg);
  }
  60% {
    -webkit-transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 6deg);
    transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 6deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
/* JIB */
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* jack in the box */
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
