/* 
 Site Manager Version: 11.2.0
 Buildkit Version: 11.2.0
 Date Created: October 2022
 Account: braelinn-dentistry
 Written by: Ricky Rivas
 Sesame Communications - All rights reserved. C2022
 Any reproduction or intentional misuse is strictly prohibited
*/
/* ===============================================
              options
 =============================================== */
/* ===============================================
                    colors
 =============================================== */
/* ===============================================
					fonts
=============================================== */
.fontH {
  font-family: 'Jost', Arial, sans-serif;
}
/* ===============================================
					Mixins 
=============================================== */
/*font-mixins*/
.th {
  font-weight: 100;
}
.xlt {
  font-weight: 200;
}
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.normal {
  font-style: normal;
}
/*LETTER SPACING, LINE HEIGHT AND FONT SIZE */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.wall {
  width: 100%;
}
.hall {
  height: 100%;
}
.auto {
  width: auto;
}
.autoy {
  height: auto;
}
.autox {
  width: auto;
  height: auto;
}
.zerox {
  width: 0;
  height: 0;
}
.line {
  width: 100%;
  height: 1px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block,
.ib {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.inlay {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}
/* use with .trbl */
.grey,
.gray {
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*GLOBAL OVERRIDES*/
.fab,
.fas,
.fal,
.far,
.fad {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: 0;
}
/* ==================================================================
	main content-text font sizes
=================================================================== */
/* ===============================================
	body 
=============================================== */
body,
input,
select,
textarea {
  font-family: 'Jost', Arial, sans-serif;
}
form button {
  font-family: 'Jost', Arial, sans-serif;
}
body {
  font-size: 15px;
  color: #564a38;
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 1300px) {
  body {
    font-size: 20px;
    /* desk 1300w */
  }
}
/* ===============================================
	links 
=============================================== */
a {
  text-decoration: none;
}
#content a {
  color: #80a153;
  text-decoration: underline;
  transition: color 0.33s ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #f9af41;
}
/* ===============================================
	h family || hfam 
=============================================== */
h1,
h2:not(.topic),
h3:not(.topic),
h4,
h5,
h6 {
  line-height: 1;
  text-align: left;
  color: #80a153;
  margin: 0 0 1.5em;
  text-rendering: auto;
  text-transform: uppercase;
  font-weight: 400;
}
h1 {
  font-size: 10vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.59183673em;
  color: white;
}
@media only screen and (min-width: 480px) {
  h1 {
    font-size: 2.45em;
    /* mintab 480w */
    position: relative;
    right: 0.08em;
  }
}
.home h1 {
  font-size: 10vw;
  text-align: center;
  margin: 0 0 0.7em;
  color: #564a38;
  line-height: 1.08695652;
}
@media only screen and (min-width: 480px) {
  .home h1 {
    font-size: 2.3em;
    /* mintab 480w */
    position: relative;
    left: 0.03em;
    right: unset;
  }
}
.home h1 .trait {
  display: block;
}
.home h1 .trait.top {
  line-height: 1.2;
  font-size: 0.65217391em;
  color: #6a9137;
  font-weight: 200;
  letter-spacing: 0.25em;
  position: relative;
  left: 0.13em;
  margin-bottom: 0.07em;
}
.home h1 .trait.bottom {
  font-weight: 700;
}
h2:not(.topic) {
  font-size: 1.2em;
  color: #80a153;
}
h3:not(.topic) {
  font-size: 1.1em;
  color: #f9af41;
}
h4 {
  font-size: 1em;
  color: #80a153;
}
h5 {
  font-size: 0.95em;
}
h6 {
  font-size: 0.9em;
}
/* ===============================================
	containers
=============================================== */
.container {
  max-width: 60em;
}
/* ===============================================
	list styles - global overrides
=============================================== */
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*='-after'] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /* list-style-image:none; */
}
/* ==================================================================
	masthead
=================================================================== */
#masthead {
  width: 100%;
  padding: 0;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (min-width: 1024px) {
  #masthead {
    font-size: 1.1em;
    width: 100%;
    /* maxTab 1024w */
    padding: 0 1.5em;
  }
}
@media only screen and (min-width: 1300px) {
  #masthead {
    font-size: inherit;
    position: fixed;
    top: 0;
    z-index: 3000;
    margin-top: 0.7em;
    width: 98%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.33s ease;
    opacity: 1;
    /* desk 1300w */
  }
  #masthead.ready {
    background-color: transparent;
    box-shadow: none;
    opacity: 0;
  }
}
#masthead .container {
  width: 100%;
  max-width: none;
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 1.2em;
  text-align: center;
  height: 43px;
  width: 43px;
  padding: 0;
  margin: 0;
  box-shadow: -1px 1px 0 rgba(128, 161, 83, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 600;
  clear: both;
}
#main-nav .container {
  height: 100%;
  padding: 0;
}
#main-nav .trigger {
  line-height: 43px;
  color: #80a153;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 600;
  transition: color 0.33s ease-in-out;
}
#main-nav .trigger .navicon {
  width: 12px;
  height: 8px;
  display: inline-block;
  position: relative;
  top: -0.2em;
}
#main-nav .trigger .navicon span {
  height: 2px;
  width: 100%;
  background: currentcolor;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: width 0.3s ease, top 0.3s ease, left 0.3s ease, transform 0.3s ease;
}
#main-nav .trigger .navicon span:nth-child(1) {
  top: 0px;
}
#main-nav .trigger .navicon span:nth-child(2),
#main-nav .trigger .navicon span:nth-child(3) {
  top: 50%;
}
#main-nav .trigger .navicon span:nth-child(4) {
  top: 100%;
}
#main-nav .trigger:hover {
  color: #80a153;
}
#main-nav .trigger:hover .navicon span {
  /* background:@color1; */
}
#main-nav .open .trigger {
  color: #f9af41;
}
#main-nav .open .trigger .navicon span:nth-child(1),
#main-nav .open .trigger .navicon span:nth-child(4) {
  width: 0;
  top: 50%;
  left: 50%;
}
#main-nav .open .trigger .navicon span:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#main-nav .open .trigger .navicon span:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
#main-nav ul {
  width: 100vw;
  margin: -43px 0 0;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.99) 100%);
  position: relative;
  float: right;
  z-index: 550;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 2.66666667;
  font-size: 0.75em;
  text-transform: uppercase;
  color: #564a38;
  width: auto;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: color 0.33s ease;
  font-weight: 400;
}
#main-nav ul li.open > a[id],
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #f9af41;
  text-decoration: none;
  transition-duration: 0.15s;
}
#main-nav ul ul {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #6a9137;
  display: inline;
  float: left;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  float: left;
}
#main-nav ul ul li a {
  line-height: 2.66666667;
  font-size: 0.75em;
  color: #fff;
  width: 100%;
  height: 2.66666667em;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  background: #81a155;
  border: none;
}
/* main-nav make li fly in all cool */
#main-nav .collapsible.open > ul {
  animation: flyinmobilenav 0.4s 1;
}
#main-nav .collapsible.open ul ul {
  animation: none;
}
/* make flyouts expand on mobile */
#main-nav ul ul li {
  height: 0;
  overflow: hidden;
  transition-duration: 0.33s;
  opacity: 0;
}
/* all about that open class */
#main-nav .open ul {
  display: inline-block;
}
#main-nav .open ul .open ul {
  padding: 1em 0;
}
#main-nav .open ul .open ul li {
  height: 2em;
  opacity: 1;
}
/* ===============================================
	FULLMOB RULES
=============================================== */
@media only screen and (min-width: 1024px) {
  /* main-nav */
  /* midTab 1024w */
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  color: #80a153;
  padding: 0 0 0.5em;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #hd {
    text-align: right;
    padding: 0;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #hd {
    z-index: 3000;
    /* maxTab 1024w */
  }
}
@media only screen and (min-width: 666px) {
  #hd .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 666px) and (max-width: 1023px) {
  #hd .container {
    padding: 1.3em 0px 1.3em 0;
    /* range 666w - 1023oo */
  }
}
@media only screen and (min-width: 1024px) {
  #hd .container {
    justify-content: flex-end;
    padding: 1.05em 0 0;
    /* midTab 1024w */
  }
}
/* ===============================================
	logo
=============================================== */
#logo {
  line-height: 0;
  font-size: 0.7em;
  width: 8.95em;
  margin: 0.5em auto 1em 2%;
  display: block;
  position: relative;
}
@media only screen and (min-width: 666px) {
  #logo {
    position: absolute;
    top: 0;
    left: 2%;
    /* custom 666w */
  }
}
@media only screen and (min-width: 1024px) {
  #logo {
    font-size: inherit;
    margin: 0;
    top: 0.55em;
    left: 0;
    /* maxTab 1024w */
  }
}
#logo a {
  display: inline-block;
  vertical-align: top;
}
#logo img {
  width: 8.95em;
}
/* ===============================================
	contact info
=============================================== */
#contactinfo {
  text-align: center;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 660px) {
  #contactinfo {
    margin-left: 1em;
    margin-right: 0.1em;
  }
}
@media only screen and (max-width: 659px) {
  #contactinfo {
    display: inline-block;
  }
}
#contactinfo .phone {
  line-height: 1;
  font-size: 0.85em;
  color: #80a153;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
#contactinfo a {
  transition: color 0.33s ease-in-out;
}
#contactinfo a:hover {
  color: #f9af41;
}
/* ===============================================
	utility-nav
=============================================== */
#utilitynav {
  line-height: 0;
  width: auto;
  margin: 0 0 0 .5em;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 400;
}
#utilitynav ul {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li {
  line-height: 0;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
#utilitynav ul li:nth-child(n+2) {
  margin: 0 0 0 0.5em;
}
#utilitynav a {
  line-height: 1;
  font-size: 0.6em;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 0;
  background: transparent;
  border: 1px solid #80a153;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out;
}
#utilitynav a.patient-login {
  width: 10.16666667em;
  height: 2.75em;
  color: #80a153;
}
#utilitynav a.patient-login i {
  margin-right: 0.15em;
}
#utilitynav a:hover {
  color: #fff;
  background-color: #81a155;
}
/* ===============================================
	socialmedia
=============================================== */
.socialmedia {
  line-height: 0;
  text-align: center;
  width: auto;
  height: auto;
  padding: 0;
  position: relative;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socialmedia a {
  line-height: 1;
  font-size: 0.575em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: transform 0.33s ease-in-out, color 0.33s ease-in-out;
  margin: 0 0.3em;
}
.socialmedia a span {
  width: auto;
}
.socialmedia a:hover {
  color: #fff;
  transform: scale(1.44);
}
.socialmedia a .icon {
  position: relative;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  min-height: 38.0952381vw;
  background: #000;
  position: relative;
  z-index: 400;
}
@media only screen and (min-width: 1024px) {
  #slideshow {
    font-size: inherit;
    width: 100%;
    margin-top: 0;
    top: 0;
    /* maxTab 1024w */
  }
}
#slideshow #home-slideshow {
  width: 100%;
  margin: 0;
  aspect-ratio: 2000 /800;
}
@media only screen and (min-width: 1024px) {
  #slideshow #home-slideshow {
    position: relative;
    /* maxTab 1024w */
  }
  #slideshow #home-slideshow .hpslide {
    max-width: none;
    width: 100%;
  }
}
#slideshow #home-slideshow .cycle-slideshow {
  margin: 0 -10em;
}
#slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 100;
}
#slideshow .ssoverlay {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 5.35em;
  transform: translateX(-50%);
  z-index: 420;
  z-index: 111;
}
#slideshow .ssoverlay > img {
  width: 31.3em;
  height: auto;
  margin-bottom: 2.1em;
}
#slideshow .ssoverlay > a {
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid white;
  width: 10.15em;
  height: 2.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  transition: background-color 0.33s ease;
}
#slideshow .ssoverlay > a i {
  margin-right: 0.25em;
}
#slideshow .ssoverlay > a:hover {
  background-color: #80a153;
}
a.fixed {
  position: fixed;
  bottom: 0;
  right: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  width: 6.8em;
  height: 7.25em;
  padding-top: 1.55em;
  transition: transform 0.33s ease;
}
@media only screen and (max-width: 1023px) {
  a.fixed {
    display: none;
  }
}
a.fixed svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 6.8em;
  height: 7.25em;
}
a.fixed p,
a.fixed i {
  position: relative;
}
a.fixed i {
  color: white;
  font-size: 1.75em;
  margin-bottom: 0.4em;
}
a.fixed p {
  margin: 0;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 0.95em;
  line-height: 1.07368421;
  font-weight: 300;
}
a.fixed p span {
  display: block;
  font-weight: bold;
}
a.fixed:hover {
  transform: scale(1.1);
}
/* ==================================================================
	.spotlight
=================================================================== */
.spotlight {
  text-align: center;
  position: relative;
  z-index: 400;
}
.spotlight > div {
  position: relative;
}
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
.spot01 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 410;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .spot01 {
    font-size: 3vw;
    /* mintab opt-out 480oo */
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .spot01 {
    display: block;
  }
}
@media only screen and (min-width: 480px) {
  .spot01 {
    font-size: 1.4vw;
    /* mintab 480w */
  }
  .spot01::before {
    content: '';
    width: 100%;
    height: 17.25em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e7fad1;
    z-index: -1;
    margin-top: -1.1em;
    pointer-events: none;
  }
}
@media only screen and (min-width: 979px) {
  .spot01 {
    font-size: inherit;
    padding: 4.1em 0 4.4em;
    padding-right: 0.5em;
    /* custom 979w */
  }
}
.spot01 > .container {
  width: 70.5em;
  min-width: 70.5em;
  height: 33.85em;
  position: relative;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
@media only screen and (max-width: 479px) {
  .spot01 > .container {
    justify-content: center;
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    height: auto;
  }
}
.spot01 > .container .left {
  width: 90%;
  height: 22.55em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .left {
    width: 32.4em;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 2.1em 1.8em;
  }
}
.spot01 > .container .left .wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  transition: all 0.33s ease;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .left .wrap::after {
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
  }
}
.spot01 > .container .left .wrap img {
  width: 32.4em;
  height: 22.55em;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 479px) {
  .spot01 > .container .left .wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.spot01 > .container .left h2 {
  position: relative;
  color: white;
  margin: 0;
  font-size: 1.55em;
  font-weight: 300;
  line-height: 1.06451613;
  letter-spacing: 0.16em;
  z-index: 10;
  transition: transform 0.33s ease;
}
.spot01 > .container .left h2 span {
  display: block;
  letter-spacing: normal;
  font-size: 1.22580645em;
  font-weight: bold;
  line-height: 0.81578947;
}
.spot01 > .container .left > .rect {
  position: absolute;
  top: 1.5em;
  left: -1.45em;
  z-index: -1;
  width: 9.75em;
  height: 22.25em;
  background-image: linear-gradient(0deg, #81a155 0%, #547924 100%);
  pointer-events: none;
}
@media only screen and (max-width: 479px) {
  .spot01 > .container .left > .rect {
    display: none;
  }
}
.spot01 > .container .left:hover .wrap::after {
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}
.spot01 > .container .left:hover h2 {
  transform: scale(1.1);
}
.spot01 > .container .mid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 22.55em;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .mid {
    width: 23.7em;
    height: 30.1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: white;
    margin-left: 1.35em;
    margin-top: -0.65em;
  }
  .spot01 > .container .mid::before {
    content: '';
    width: 100%;
    height: 17.25em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e7fad1;
    z-index: -1;
    margin-top: -0.3em;
    pointer-events: none;
  }
}
.spot01 > .container .mid .wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .mid .wrap {
    padding: 0 0 1.35em 1.4em;
    width: 19.8em;
    height: 26.15em;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.spot01 > .container .mid .wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0em;
  right: 0em;
  z-index: 1;
  display: block;
  pointer-events: none;
  transition: all 0.33s ease;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .mid .wrap::after {
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
  }
}
.spot01 > .container .mid .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 13px 22px 25px 0px rgba(0, 0, 0, 0.21);
}
.spot01 > .container .mid .wrap:hover h2 {
  transform: scale(1.1);
}
.spot01 > .container .mid .wrap:hover::after {
  height: 26.15em;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}
.spot01 > .container .mid h2 {
  position: relative;
  color: white;
  margin: 0;
  font-size: 1.55em;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.16em;
  z-index: 10;
  text-align: center;
  transition: all 0.33s ease;
}
.spot01 > .container .mid h2 span {
  display: block;
  letter-spacing: normal;
  font-size: 1.22580645em;
  font-weight: bold;
  line-height: 0.81578947;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .mid h2 {
    text-align: left;
  }
}
.spot01 > .container .right {
  width: 30.05em;
  height: 22.55em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .right {
    position: absolute;
    bottom: 0;
    right: 0;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 1.6em 1.4em 0;
  }
}
.spot01 > .container .right > .rect {
  position: absolute;
  top: 1.8em;
  right: -1.6em;
  z-index: -1;
  width: 7.05em;
  height: 22.25em;
  background-image: linear-gradient(180deg, #81a155 0%, #547924 100%);
  pointer-events: none;
}
@media only screen and (max-width: 479px) {
  .spot01 > .container .right > .rect {
    display: none;
  }
}
.spot01 > .container .right .wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  transition: all 0.33s ease;
}
@media only screen and (min-width: 480px) {
  .spot01 > .container .right .wrap::after {
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
  }
}
.spot01 > .container .right img {
  width: 32.4em;
  height: 22.55em;
  position: absolute;
  top: 0;
  left: 0;
}
.spot01 > .container .right h2 {
  position: relative;
  color: white;
  margin: 0;
  font-size: 1.55em;
  font-weight: 300;
  line-height: 1.06451613;
  letter-spacing: 0.16em;
  text-align: right;
  z-index: 10;
  transition: all 0.33s ease;
}
.spot01 > .container .right h2 span {
  display: block;
  letter-spacing: normal;
  font-size: 1.22580645em;
  font-weight: bold;
  line-height: 0.81578947;
}
.spot01 > .container .right:hover .wrap::after {
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}
.spot01 > .container .right:hover h2 {
  transform: scale(1.1);
}
@media only screen and (max-width: 479px) {
  .spot01 > .container a {
    margin-bottom: 1em;
  }
  .spot01 > .container a:nth-last-child(1) {
    margin: 0;
  }
}
/* ==================================================================
	subnav
=================================================================== */
/* TOP ORIENTED */
#subnav {
  text-align: center;
  color: #fff;
  padding: 2.875em 0;
  position: relative;
  overflow: hidden;
  background: url(../images/spotlight/subnav.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#subnav .container {
  max-width: 64.5em;
}
@media only screen and (min-width: 1024px) {
  #subnav::before {
    content: '';
    width: 53.7em;
    height: 11.65em;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/spotlight/rect.png) center / cover no-repeat;
    margin-left: 39.05em;
    z-index: 2;
  }
  #subnav::after {
    content: '';
    width: 100vw;
    height: 0.5em;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    z-index: 1;
    display: block;
  }
}
@media only screen and (min-width: 1300px) {
  #subnav {
    padding-top: 21.6em;
    /* desk 1300w */
  }
}
#subnav p {
  line-height: 1.38461538;
  font-size: 0.65em;
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: 61.15384615em;
  font-weight: 400;
  text-transform: uppercase;
}
#subnav a {
  color: #fff;
  margin: 0.2em 0.8em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #subnav a {
    margin: 0;
    /* maxTab 1024w */
  }
}
#subnav a:after {
  content: '';
  width: 100%;
  height: 1px;
  background: currentcolor;
  display: block;
  position: absolute;
  bottom: 0.08em;
  left: 0;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
  transform: translate3d(0, 0, 0) scaleX(0);
  opacity: 0;
}
#subnav a:hover,
#subnav a.active {
  text-decoration: none;
}
#subnav a:hover:after,
#subnav a.active:after {
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 1;
}
#subnav .divider {
  display: none;
  width: 0.1em;
  height: 0.92307692em;
  background-color: #fff;
}
@media only screen and (min-width: 64em) {
  #subnav .divider {
    margin: 0em 0.7em;
    display: inline-block;
    /* maxTab 1024w */
    position: relative;
    top: 0.15em;
  }
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 3em 0;
  background: #fff;
  position: relative;
  z-index: 400;
  border-bottom: 0.5em solid white;
}
@media only screen and (min-width: 768px) {
  #bd {
    padding: 3em 0 6em;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1024px) {
  #bd::after {
    content: '';
    width: 60em;
    height: 100%;
    position: absolute;
    top: 0em;
    left: 50%;
    transform: translateX(-50%);
    background-color: #564a38;
    z-index: 1;
    margin-left: 42.25em;
  }
}
@media only screen and (min-width: 1300px) {
  #bd {
    padding-left: 0.6em;
  }
}
#bd .container {
  max-width: 64.95em;
}
#content {
  display: block;
}
#content ul {
  margin: 0 0 1.8em 0.6em;
}
#content ul li {
  list-style: none;
  position: relative;
}
#content ul li::before {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  content: "";
  margin: -3px 0.4em 0em 0.3em;
  background-color: #333;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  #content {
    max-width: 39.75em;
    width: 61.20092379%;
    float: left;
    /* midTab 768w */
  }
  #content p {
    text-align: justify;
  }
}
#content .content-text {
  line-height: 1.8;
}
@media only screen and (min-width: 1300px) {
  #content .content-text {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	.home content
=================================================================== */
.home #bd {
  padding: 3em 0;
  background-color: white;
}
@media only screen and (min-width: 768px) {
  .home #bd {
    padding: 7.5em 0 2em;
    /* midTab 768w */
  }
  .home #bd::after {
    content: none;
  }
}
.home #bd .container {
  max-width: 60em;
}
@media only screen and (min-width: 768px) {
  .home #bd #content {
    width: 100%;
    max-width: 39.6em;
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 1300px) {
  .home #bd #content {
    /* desk 1300w */
  }
}
.home #bd #content .content-text h3 {
  color: #80a153;
  font-size: 1.2em;
  margin-bottom: 1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 0.05em;
}
@media only screen and (min-width: 1300px) {
  .home #bd #content .content-text {
    /* desk 1300w */
  }
}
@media only screen and (min-width: 768px) {
  .home #bd #content p {
    text-align: justify;
    /* midTab 768w */
  }
}
.home #bd #content .left {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .home #bd #content .left {
    width: 26.05em;
    height: 41.9em;
    max-width: 50em;
    display: block;
    position: absolute;
    bottom: -2em;
    right: 50%;
    z-index: -1;
    margin-right: 23.95em;
  }
}
.home #bd #content .right {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .home #bd #content .right {
    width: 25.95em;
    height: 48.85em;
    max-width: 50em;
    display: block;
    position: absolute;
    bottom: -2em;
    right: 50%;
    z-index: -1;
    margin-right: -50em;
  }
}
body.layout-full-width #subnav::before {
  content: none;
}
body.layout-full-width #bd::after {
  content: none;
}
body.sitemap #subnav::before {
  content: none;
}
body.sitemap #bd::after {
  content: none;
}
/* ==================================================================
	custom content
=================================================================== */
.mediaslider {
  text-align: center;
}
.mediaslider .cycle-slideshow {
  width: 100%;
  margin: 0.5em 0 1.5em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mediaslider .cycle-slideshow .cycle-slide {
    padding: 0 7%;
    /* midTab opt-out 768oo */
  }
}
.mediaslider .cycle-slideshow > div {
  font-size: 2.8em;
  color: #80a153;
  position: absolute;
  top: 50%;
  z-index: 900;
  transform: translate3d(0, -50%, 0);
}
.mediaslider .cycle-slideshow > div span {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mediaslider .cycle-slideshow > div.cycle-prev {
  text-align: left;
  left: 0;
}
.mediaslider .cycle-slideshow > div.cycle-prev span {
  transform-origin: left center;
}
.mediaslider .cycle-slideshow > div.cycle-next {
  text-align: right;
  direction: rtl;
  right: 0;
}
.mediaslider .cycle-slideshow > div.cycle-next span {
  transform-origin: right center;
}
.mediaslider .cycle-slideshow > div:hover {
  cursor: pointer;
}
.mediaslider .cycle-slideshow > div:hover span {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.68;
}
/* comment line below if patient-login is live and legit */
.financial-information #financial-online-services {
  display: none;
}
/* common treatments */
.before-after-image {
  width: 44%;
  display: inline-block;
  vertical-align: top;
}
.before-after-image img,
.before-after-image span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .before-after-image img,
  .before-after-image span {
    width: 100%;
    /* midTab 768w */
  }
}
@media only screen and (min-width: 768px) {
  .before-after-box,
  p.before-after-text {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }
  /* midTab 768w */
}
/* common procedures */
@media only screen and (min-width: 1300px) {
  .common-procedures #content h2[id] {
    scroll-margin-top: 10em;
  }
  /* desk 1300w */
}
/* preventive-care */
.preventive-care #content ul {
  display: inline-block;
}
/* reduces dimensions of coronavirus tab */
#coronavirus-update {
  font-size: 0.85em;
  padding: 0.5em 1.25em !important;
  left: 0.5em !important;
}
@media only screen and (min-width: 1300px) {
  #coronavirus-update {
    font-size: 1em;
    /* desk 1300w */
  }
}
/* ==================================================================
	meet the team page classes for individual and full team images 
=================================================================== */
.staff {
  width: 45%;
  max-width: 10em;
  margin: 0 0 1em 1em;
  display: block;
  float: right;
}
.team {
  width: 100%;
  max-width: 1000px;
  margin: 2% auto;
  display: block;
}
/* ==================================================================
	sitemap
=================================================================== */
.sitemap #content .column > ul > li {
  margin-bottom: 1em;
}
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content ul li::before,
.sitemap #content ul li::after {
  content: none;
}
.sitemap #content ul a {
  line-height: 1.125;
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #80a153;
  transition-duration: 0s;
}
.sitemap #content ul ul li a {
  line-height: 1.95;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: #564a38;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
.sitemap #content a:hover {
  text-decoration: none;
  color: #f9af41;
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
body.sitemap #content .width1 {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body.sitemap #content .width1 {
    width: 50%;
    /*default 50%*/
    /* midTab 768w */
  }
  body.sitemap #content .width1:not(.first) {
    width: auto;
    float: right;
  }
}
/* global override */
/* ==================================================================
	sidebar
=================================================================== */
#sidebar {
  width: 100%;
  max-width: 17.5em;
  margin: 0 auto 6%;
  display: none;
  padding: 0;
  position: relative;
  z-index: 420;
}
@media only screen and (min-width: 768px) {
  #sidebar {
    width: 26.94380293%;
    margin: -11.4em 0 1em;
    float: right;
    clear: right;
    display: block;
    /* midTab 768w */
  }
}
/* ===============================================
	sitepics
=============================================== */
#hide-stock {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  #hide-stock::before {
    content: '';
    background-color: #81a155;
    width: 16.1em;
    height: 23.5em;
    position: absolute;
    bottom: -2.1em;
    right: -3em;
  }
}
.stock {
  width: 100%;
  position: relative;
  box-shadow: 12.5px 21.651px 25px 0px rgba(0, 0, 0, 0.24);
}
/* ===============================================
	show doctor image on all devices
=============================================== */
/*.home,*/
/*body[class^='meet-the-'], body[class^='meet-our-'],*/
.meet-the-doctor #sidebar,
body[class^='meet-dr-'] #sidebar,
body[class^='meet-doctor-'] #sidebar {
  display: block;
}
body[class~='blog'] #sidebar {
  display: block;
}
body[class~='blog'] #hide-stock {
  display: none;
}
/* END SIDEBAR - */
/* ===============================================
	spot00 || COMMON SERVICES/CALLOUT-LIKE SECTION EXAMPLE
=============================================== */
@media only screen and (min-width: 480px) {
  .spotlight-02 {
    padding: 2em 0 6.5em;
  }
}
@media only screen and (min-width: 1024px) {
  .spotlight-02 {
    padding: 5.75em 0 6.5em;
  }
}
.spot02 {
  text-align: center;
  padding: 2em 0;
  margin: 0;
  background-image: linear-gradient(0deg, #81a155 0%, #547924 100%);
  position: relative;
  z-index: 410;
}
@media only screen and (max-width: 479px) {
  .spot02 {
    font-size: 3.2vw;
    /* mintab opt-out 480oo */
  }
}
@media only screen and (min-width: 480px) {
  .spot02 {
    font-size: 1.2vw;
    /* mintab 480w */
    padding: 7.9em 0 6.15em;
  }
}
@media only screen and (min-width: 979px) {
  .spot02 {
    font-size: inherit;
    /* custom 979w */
  }
}
.spot02 .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 65.2em;
}
.spot02 .mod {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.spot02 .wrap {
  position: relative;
}
@media only screen and (max-width: 479px) {
  .spot02 .wrap {
    font-size: 0.7em;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 480px) {
  .spot02 .wrap {
    position: absolute;
    left: 50%;
    top: -2.15em;
    transform: translateX(-50%);
    margin-left: -29.5em;
    z-index: 2;
    display: block;
  }
  .spot02 .wrap::before {
    content: '';
    width: 31.6em;
    height: 35.25em;
    background: rgba(249, 233, 127, 0.9);
    position: absolute;
    bottom: -6.9em;
    right: -6.85em;
    z-index: -1;
    display: block;
    pointer-events: none;
  }
  .spot02 .wrap::after {
    content: '';
    width: 31.6em;
    height: 17.65em;
    background: rgba(249, 175, 65, 0.9);
    position: absolute;
    top: 9.05em;
    right: -9.65em;
    z-index: -2;
    display: block;
    pointer-events: none;
  }
}
.spot02 .wrap img {
  box-shadow: 10px 15px 25px 0px rgba(0, 0, 0, 0.3);
  width: 41.05em;
  height: 35.35em;
}
.spot02 a {
  color: #fff;
  width: 27.95em;
  height: 4.55em;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: background-color 0.33s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .spot02 a {
    margin: 2%;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 768px) {
  .spot02 a {
    margin: 0 0 1em;
    /* midTab 768w */
  }
}
.spot02 a img {
  position: relative;
}
.spot02 a:nth-child(1) {
  padding-left: 1.1em;
}
.spot02 a:nth-child(1) img {
  margin-right: 1.45em;
  margin-top: 0.85em;
  width: 1.65em;
  height: auto;
}
.spot02 a:nth-child(2) {
  padding-left: 0.8em;
  margin-bottom: 0.85em;
}
.spot02 a:nth-child(2) img {
  margin-right: 1.05em;
  margin-bottom: 0.4em;
  width: 2.35em;
  height: auto;
}
.spot02 a:nth-child(3) {
  padding-left: 1.25em;
}
.spot02 a:nth-child(3) img {
  margin-right: 1.5em;
  width: 1.5em;
  height: auto;
}
.spot02 a:nth-child(4) {
  padding-left: 1.25em;
}
.spot02 a:nth-child(4) img {
  margin-right: 1.54em;
  margin-bottom: 0.15em;
  width: 1.4em;
  height: auto;
}
.spot02 a:hover {
  background-color: #5a7e2b;
}
.spot02 a h2.topic {
  line-height: 1.11111111;
  font-size: 1.55em;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  display: block;
}
/* ===============================================
	spot00 || COMMON TESTIMONIAL SLIDESHOW SECTION EXAMPLE
=============================================== */
.spot03 {
  padding: 3em 0;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom: 0.5em solid white;
}
@media only screen and (max-width: 479px) {
  .spot03 {
    font-size: 3.2vw;
  }
  .spot03::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media only screen and (min-width: 480px) {
  .spot03 {
    font-size: 1.7vw;
  }
}
@media only screen and (min-width: 979px) {
  .spot03 {
    font-size: inherit;
    padding: 3.85em 0 3.35em;
  }
}
.spot03 h2 {
  color: white;
  font-size: 2.85em;
  font-weight: 300;
  margin: 0 0 0.1em;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .spot03 h2 {
    width: 16.84210526em;
    margin: 0 0 0.35em;
    right: 0.03em;
  }
}
.spot03 h2 span {
  font-weight: bold;
}
.spot03 .cycle-slideshow {
  background: rgba(86, 74, 56, 0.9);
  max-width: 48em;
  height: 17.4em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .spot03 .cycle-slideshow {
    background: transparent;
  }
}
.spot03 .cycle-slide {
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: color 0.33s ease-in-out;
  padding: 0 2em;
  padding-top: 0.4em;
}
@media only screen and (min-width: 480px) {
  .spot03 .cycle-slide {
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.35);
  }
}
.spot03 .testimony {
  line-height: 1.5;
  font-size: 1.4em;
  display: block;
  color: white;
  margin-bottom: 1.1em;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .spot03 .testimony {
    width: 880px;
  }
}
.spot03 .testifier {
  line-height: 1.2;
  font-size: 1.05em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  color: white;
}
.spot03 .btns {
  display: flex;
  margin-top: -0.9em;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 479px) {
  .spot03 .btns {
    margin-top: 0;
  }
}
.spot03 .btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  margin: 0 0.16666667em;
  transition: background-color 0.33s ease;
}
.spot03 .btns .btn:nth-child(1) {
  background-color: #f9af41;
  width: 9.33333333em;
  height: 2.53333333em;
}
.spot03 .btns .btn:nth-child(1):hover {
  background-color: #80a153;
}
.spot03 .btns .btn:nth-child(2) {
  background-color: #f99c41;
  width: 15.26666667em;
  height: 2.53333333em;
}
.spot03 .btns .btn:nth-child(2) a {
  transition: transform 0.33s ease;
}
.spot03 .btns .btn:nth-child(2) a i {
  color: white;
  margin: 0 0.2em;
  position: relative;
}
.spot03 .btns .btn:nth-child(2) a:nth-child(1) i {
  left: 0.3em;
}
.spot03 .btns .btn:nth-child(2) a:nth-child(2) i {
  left: 0.2em;
}
.spot03 .btns .btn:nth-child(2) a:hover {
  transform: scale(1.2);
}
.spot03 .controls {
  line-height: 0;
  width: 96%;
  max-width: 64.4em;
  margin: 1em auto;
  display: none;
}
@media only screen and (min-width: 768px) {
  .spot03 .controls {
    display: block;
    text-align: right;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: 1.35em;
    transform: translate3d(0, -50%, 0);
    /* midTab 768w */
  }
}
.spot03 .controls > a {
  text-align: center;
  color: #fff;
  width: 2.05em;
  height: 2.05em;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.33s ease-in-out, opacity 0.33s ease-in-out;
}
.spot03 .controls > a:hover {
  transform: translate3d(0, 0, 0) scale(1.44);
  opacity: 0.5;
}
.spot03 .controls > a.prev {
  margin-right: 1em;
}
@media only screen and (min-width: 768px) {
  .spot03 .controls > a.prev {
    float: left;
    /* midTab 768w */
  }
}
.spot03 .controls > a.next {
  position: relative;
  left: 0.1em;
}
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0;
  background: #ccc url(../images/footer/map.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 500;
}
@media only screen and (max-width: 767px) {
  #ft {
    font-size: 1em;
  }
}
@media only screen and (min-width: 768px) {
  #ft {
    font-size: 1.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  #ft {
    font-size: inherit;
  }
}
@media only screen and (min-width: 1300px) {
  #ft {
    background-size: auto 100%;
    /* desk 1300w */
  }
}
#ft a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#ft a:hover {
  color: #f9af41;
}
/* ===============================================
		locations
=============================================== */
#location {
  width: 100%;
  padding: 3em 0;
  background-color: rgba(128, 161, 83, 0.9);
  display: block;
}
@media only screen and (min-width: 1024px) {
  #location {
    text-align: right;
    width: 50%;
    margin-left: 50%;
    background-color: transparent;
    /* midTab 768w */
    padding: 6.06em 0 3.82em;
  }
}
@media only screen and (min-width: 1024px) {
  #location {
    margin-left: calc(50%);
    padding-left: 9em;
    float: left;
    /* desk 1300w */
  }
}
#location .mod {
  text-align: center;
  width: 100%;
  max-width: 23.25em;
  display: block;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  #location .mod {
    margin: 0 auto;
    /* midTab opt-out 768oo */
  }
}
@media only screen and (min-width: 1024px) {
  #location .mod {
    margin: 0 0 auto 0;
    padding-right: 0.2em;
    /* midTab 768w */
  }
}
#location .mod svg {
  position: absolute;
  bottom: -8.8em;
  left: 0;
  z-index: -1;
  box-shadow: 12.5px 21.651px 25px 0px rgba(0, 0, 0, 0.35);
  width: 23.25em;
  height: 31.55em;
  pointer-events: none;
}
@media only screen and (max-width: 1023px) {
  #location .mod svg {
    display: none;
  }
}
#location .logo {
  line-height: 0;
  text-align: center;
  margin: 0 auto 1.4em;
  display: block;
  transition: transform 0.33s ease;
}
#location .logo img {
  width: 20.45em;
}
#location .logo:hover {
  transform: scale(1.05);
}
#location .phone {
  line-height: 1;
  font-size: 0.9em;
  display: block;
  margin-bottom: 1.4em;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-left: 0.4em;
}
#location .address {
  line-height: 1.125;
  font-size: 0.8em;
  margin: 0 auto 2em;
  display: block;
  padding-left: 0.4em;
  position: relative;
}
#location .address .marker {
  line-height: 1;
  font-size: 4.125em;
  color: #80a153;
  margin-left: 2.4em;
  position: absolute;
  left: 50%;
  top: 2em;
  z-index: 400;
  transition: transform 0.33s ease-in-out;
  transform-origin: center bottom;
}
@media only screen and (max-width: 767px) {
  #location .address .marker {
    display: none;
    /* midTab 768oo */
  }
}
@media only screen and (min-width: 768px) {
  #location .address .marker {
    display: block;
    /* midTab 768w */
    left: -151.2%;
    top: -2.9em;
  }
}
#location .address .marker:before {
  color: currentcolor;
}
#location .address .marker:after {
  content: '';
  width: 1.10606061em;
  height: 1.01515152em;
  background: url(../images/footer/shadowalt.png) no-repeat center center;
  left: 0.2em;
  bottom: -0.15em;
  z-index: -1;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}
#location .address:hover .marker {
  transform: translate3d(0, 0, 0) scale(2);
}
/* ==================================================================
		#links
=================================================================== */
#links {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  margin: 0;
  background-color: #564a38;
  z-index: 501;
}
#links .container {
  max-width: 58em;
}
@media only screen and (min-width: 480px) {
  #links .container {
    padding-left: 1.85em;
  }
}
@media only screen and (min-width: 1024px) {
  #links {
    height: 5em;
    padding: 1.75em 0 0;
    background-color: transparent;
    transform: translateX(-5em);
  }
}
#links .util {
  line-height: 2.5;
  font-size: 0.6em;
  margin-bottom: 2em;
}
@media only screen and (min-width: 480px) {
  #links .util {
    width: auto;
    margin: 0;
    float: left;
    /* mintab 480w */
  }
}
#links .util a {
  color: #fff;
  transition: color 0.33s ease-in-out;
}
#links .util a:hover {
  color: #f9af41;
}
#links .util a,
#links .util .divider {
  display: inline-block;
}
#links .util .divider {
  margin: 0 0em;
}
/* ===============================================
		sesame link
=============================================== */
a#sesame-link .sesameicon {
  width: 1.33333333em;
  height: 1.16666667em;
  margin-right: 0.33333333em;
  display: inline-block;
  vertical-align: middle;
}
a#sesame-link .sesameicon path {
  fill: currentcolor;
  transition: fill 0.33s ease-in-out;
}
/* ===============================================
	backToTop
=============================================== */
#btt {
  text-align: center;
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}
@media only screen and (min-width: 480px) {
  #btt {
    width: auto;
    float: right;
    /* mintab 480w */
    bottom: 0.5em;
  }
}
a#backtotop {
  line-height: 2.06896552;
  font-size: 0.725em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.33s ease-in-out;
  border: 1px solid white;
  width: 9.31034483em;
  height: 3.5862069em;
  text-transform: uppercase;
  position: relative;
  left: 0.05em;
  font-weight: 400;
  padding-left: 0.1em;
}
@media only screen and (max-width: 479px) {
  a#backtotop {
    margin: auto;
  }
}
a#backtotop span {
  font-weight: bold;
  margin-left: 0.2em;
}
a#backtotop:hover {
  background-color: #f9af41;
}
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr aka div.hr */
hr,
.types-of-braces #content div.clear {
  font-size: inherit;
  height: 1px;
  width: 100%;
  margin: 1.58em 0;
  background: #666;
  border: none;
  display: block;
}
.brushing-and-flossing .content-text hr {
  float: left;
}
/* ===============================================
	success message
=============================================== */
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 1rem;
  float: left;
  background: #80a153;
}
/* ===============================================
	Form Buttons
=============================================== */
form button {
  letter-spacing: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: small;
  color: #fff;
  height: 38px;
  padding: 0 1.5em;
  background-color: #80a153;
  border: 1px solid #80a153;
  transition: color 0.33s ease-in-out, background-color 0.33s ease-in-out, border-color 0.33s ease-in-out;
}
form button:hover {
  color: #fff;
  border-color: #f9af41;
  background-color: #f9af41;
}
form p {
  height: auto;
}
/* ===============================================
	chat widget resize for mobile use comfort
=============================================== */
#bc-chat-container {
  font-size: 0.8em !important;
}
.bc-minimize-state {
  width: 11.8em !important;
  height: 7.7em !important;
}
/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Tablet
Supports 768px (768px) and up
=============================================== */
@media only screen and (min-width: 768px) {
  /* ===============================================
	blanket content sidebar hide
=============================================== */
  .sitemap #content,
  .layout-full-width #content {
    width: 100%;
    max-width: none;
  }
  .sitemap #sidebar,
  .layout-full-width #sidebar {
    display: none;
  }
  /* ===============================================
	custom content
=============================================== */
  /*.success{ width:66%; }*/
  /*table.office-hours{ max-width:50%; }*/
  .speed-system img[alt='Speed Braces'] {
    display: block;
  }
  /* ===============================================
	PAGE SPECIFIC
=============================================== */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^='/sesame_media/docs/'] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^='inovation-chart-'] {
    display: inline-block;
    max-width: 50%;
  }
  .in-ovation-before-after #content p {
    text-align: center;
    margin-bottom: 0;
  }
  .in-ovation-before-after .content-text h3 {
    text-align: center;
  }
  .in-ovation-before-after .content-text .img-left,
  .in-ovation-before-after .content-text .border {
    max-width: 44%;
    float: none;
    display: inline-block;
    margin: 2%;
  }
  .in-ovation-videos .content-text h2 {
    text-align: center;
  }
  .in-ovation-videos .content-text .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  body[class*='in-ovation'] .img-right {
    max-width: 40%;
  }
  /*END*/
}
/* ===============================================
Large Tablet Stylings
Supports 1024px (1024px) and up
=============================================== */
@media only screen and (min-width: 1024px) {
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    font-size: inherit;
    width: 100%;
    height: 2.7em;
    margin-top: 0.675em;
    position: relative;
    top: auto;
    z-index: 2900;
    box-shadow: none;
    /*background:none;*/
  }
  #main-nav .container {
    background: none;
    max-width: right;
    padding-right: 0.2em;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 2.7em;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
    float: right;
  }
  #main-nav ul li {
    height: 100%;
    margin: 0 1.15em 0 0;
    background: none;
    vertical-align: top;
    position: relative;
    float: none;
    clear: none;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    line-height: 2.66666667;
    text-align: center;
    text-decoration: none;
    height: 100%;
    z-index: 3000;
  }
  #main-nav ul li a[id]:after {
    bottom: 1.06666667em;
  }
  #main-nav ul ul {
    width: auto;
    height: auto;
    padding: 1.3em 0 1.65em;
    z-index: 2800;
    display: none;
    position: absolute;
  }
  #main-nav ul ul li {
    width: 100%;
    height: 1.1em;
    margin: 0 0 0.1em;
    padding: 0;
    opacity: 1;
    float: left;
  }
  #main-nav ul ul li a {
    line-height: 1.46666667;
    text-align: left;
    white-space: nowrap;
    height: 1.46666667em;
    width: 100%;
    padding: 0 2.46666667em;
    float: left;
    transition-duration: 0s;
    padding: 0 4.85em 0 2.5em;
  }
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    float: right;
  }
  #main-nav ul li:hover ul {
    left: -1.85em;
    /*top:37px;*/
    display: block;
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact:hover ul {
    left: auto;
    right: -1.85em;
    margin: 0;
  }
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
html[data-useragent*='Trident/7.0'] {
  /* END */
}
/* custom animations */
@keyframes flyinmobilenav {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}



  #home-slideshow .cycle-slideshow img {
    -webkit-animation: ease both running kenburns-initial;
       -moz-animation: ease both running kenburns-initial;
         -o-animation: ease both running kenburns-initial;
            animation: ease both running kenburns-initial;
    -webkit-animation-iteration-count: 1;
       -moz-animation-iteration-count: 1;
         -o-animation-iteration-count: 1;
            animation-iteration-count: 1;
  }
  #home-slideshow .cycle-slideshow img.slide1 {
    -webkit-animation: 8s ease infinite alternate forwards kenburns-right;
       -moz-animation: 8s ease infinite alternate forwards kenburns-right;
         -o-animation: 8s ease infinite alternate forwards kenburns-right;
            animation: 8s ease infinite alternate forwards kenburns-right;
  }
  #home-slideshow .cycle-slideshow img.slide2 {
    -webkit-animation: 8s ease infinite alternate forwards kenburns-left;
       -moz-animation: 8s ease infinite alternate forwards kenburns-left;
         -o-animation: 8s ease infinite alternate forwards kenburns-left;
            animation: 8s ease infinite alternate forwards kenburns-left;
  }
  #home-slideshow .cycle-slideshow img.slide3 {
    -webkit-animation: 8s ease infinite alternate forwards kenburns-left;
       -moz-animation: 8s ease infinite alternate forwards kenburns-left;
         -o-animation: 8s ease infinite alternate forwards kenburns-left;
            animation: 8s ease infinite alternate forwards kenburns-left;
  }
  #home-slideshow .cycle-slideshow img.slide4 {
    -webkit-animation: 8s ease infinite alternate forwards kenburns-left;
       -moz-animation: 8s ease infinite alternate forwards kenburns-left;
         -o-animation: 8s ease infinite alternate forwards kenburns-left;
            animation: 8s ease infinite alternate forwards kenburns-left;
  }
  #home-slideshow .cycle-slideshow img.slide5 {
    -webkit-animation: 8s ease infinite alternate forwards kenburns-left;
       -moz-animation: 8s ease infinite alternate forwards kenburns-left;
         -o-animation: 8s ease infinite alternate forwards kenburns-left;
            animation: 8s ease infinite alternate forwards kenburns-left;
  }




@-webkit-keyframes kenburns-initial {
  0% {
  }
  100% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
  }
}

@-moz-keyframes kenburns-initial {
  0% {
  }
  100% {
    -moz-transform: scale(1) translate(0);
         transform: scale(1) translate(0);
  }
}

@-o-keyframes kenburns-initial {
  0% {
  }
  100% {
    -o-transform: scale(1) translate(0);
       transform: scale(1) translate(0);
  }
}

@keyframes kenburns-initial {
  0% {
  }
  100% {
    -webkit-transform: scale(1) translate(0);
       -moz-transform: scale(1) translate(0);
         -o-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
  }
}

@-webkit-keyframes kenburns-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 50%;
            transform-origin: 16% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, 15px);
            transform: scale(1.25) translate(-20px, 15px);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@-moz-keyframes kenburns-left {
  0% {
    -moz-transform: scale(1) translate(0, 0);
         transform: scale(1) translate(0, 0);
    -moz-transform-origin: 16% 50%;
         transform-origin: 16% 50%;
  }
  100% {
    -moz-transform: scale(1.25) translate(-20px, 15px);
         transform: scale(1.25) translate(-20px, 15px);
    -moz-transform-origin: left;
         transform-origin: left;
  }
}

@-o-keyframes kenburns-left {
  0% {
    -o-transform: scale(1) translate(0, 0);
       transform: scale(1) translate(0, 0);
    -o-transform-origin: 16% 50%;
       transform-origin: 16% 50%;
  }
  100% {
    -o-transform: scale(1.25) translate(-20px, 15px);
       transform: scale(1.25) translate(-20px, 15px);
    -o-transform-origin: left;
       transform-origin: left;
  }
}

@keyframes kenburns-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
       -moz-transform: scale(1) translate(0, 0);
         -o-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 50%;
       -moz-transform-origin: 16% 50%;
         -o-transform-origin: 16% 50%;
            transform-origin: 16% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, 15px);
       -moz-transform: scale(1.25) translate(-20px, 15px);
         -o-transform: scale(1.25) translate(-20px, 15px);
            transform: scale(1.25) translate(-20px, 15px);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
  }
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@-moz-keyframes kenburns-top {
  0% {
    -moz-transform: scale(1) translateY(0);
         transform: scale(1) translateY(0);
    -moz-transform-origin: 50% 16%;
         transform-origin: 50% 16%;
  }
  100% {
    -moz-transform: scale(1.25) translateY(-15px);
         transform: scale(1.25) translateY(-15px);
    -moz-transform-origin: top;
         transform-origin: top;
  }
}

@-o-keyframes kenburns-top {
  0% {
    -o-transform: scale(1) translateY(0);
       transform: scale(1) translateY(0);
    -o-transform-origin: 50% 16%;
       transform-origin: 50% 16%;
  }
  100% {
    -o-transform: scale(1.25) translateY(-15px);
       transform: scale(1.25) translateY(-15px);
    -o-transform-origin: top;
       transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
       -moz-transform: scale(1) translateY(0);
         -o-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
       -moz-transform-origin: 50% 16%;
         -o-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
       -moz-transform: scale(1.25) translateY(-15px);
         -o-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
       -moz-transform-origin: top;
         -o-transform-origin: top;
            transform-origin: top;
  }
}

@-webkit-keyframes kenburns-top-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 16%;
            transform-origin: 84% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(20px, -15px);
            transform: scale(1.25) translate(20px, -15px);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}

@-moz-keyframes kenburns-top-right {
  0% {
    -moz-transform: scale(1) translate(0, 0);
         transform: scale(1) translate(0, 0);
    -moz-transform-origin: 84% 16%;
         transform-origin: 84% 16%;
  }
  100% {
    -moz-transform: scale(1.25) translate(20px, -15px);
         transform: scale(1.25) translate(20px, -15px);
    -moz-transform-origin: right top;
         transform-origin: right top;
  }
}

@-o-keyframes kenburns-top-right {
  0% {
    -o-transform: scale(1) translate(0, 0);
       transform: scale(1) translate(0, 0);
    -o-transform-origin: 84% 16%;
       transform-origin: 84% 16%;
  }
  100% {
    -o-transform: scale(1.25) translate(20px, -15px);
       transform: scale(1.25) translate(20px, -15px);
    -o-transform-origin: right top;
       transform-origin: right top;
  }
}

@keyframes kenburns-top-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
       -moz-transform: scale(1) translate(0, 0);
         -o-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 16%;
       -moz-transform-origin: 84% 16%;
         -o-transform-origin: 84% 16%;
            transform-origin: 84% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(20px, -15px);
       -moz-transform: scale(1.25) translate(20px, -15px);
         -o-transform: scale(1.25) translate(20px, -15px);
            transform: scale(1.25) translate(20px, -15px);
    -webkit-transform-origin: right top;
       -moz-transform-origin: right top;
         -o-transform-origin: right top;
            transform-origin: right top;
  }
}

@-webkit-keyframes kenburns-top-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 16%;
            transform-origin: 16% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, -15px);
            transform: scale(1.25) translate(-20px, -15px);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}

@-moz-keyframes kenburns-top-left {
  0% {
    -moz-transform: scale(1) translate(0, 0);
         transform: scale(1) translate(0, 0);
    -moz-transform-origin: 16% 16%;
         transform-origin: 16% 16%;
  }
  100% {
    -moz-transform: scale(1.25) translate(-20px, -15px);
         transform: scale(1.25) translate(-20px, -15px);
    -moz-transform-origin: top left;
         transform-origin: top left;
  }
}

@-o-keyframes kenburns-top-left {
  0% {
    -o-transform: scale(1) translate(0, 0);
       transform: scale(1) translate(0, 0);
    -o-transform-origin: 16% 16%;
       transform-origin: 16% 16%;
  }
  100% {
    -o-transform: scale(1.25) translate(-20px, -15px);
       transform: scale(1.25) translate(-20px, -15px);
    -o-transform-origin: top left;
       transform-origin: top left;
  }
}

@keyframes kenburns-top-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
       -moz-transform: scale(1) translate(0, 0);
         -o-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 16%;
       -moz-transform-origin: 16% 16%;
         -o-transform-origin: 16% 16%;
            transform-origin: 16% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, -15px);
       -moz-transform: scale(1.25) translate(-20px, -15px);
         -o-transform: scale(1.25) translate(-20px, -15px);
            transform: scale(1.25) translate(-20px, -15px);
    -webkit-transform-origin: top left;
       -moz-transform-origin: top left;
         -o-transform-origin: top left;
            transform-origin: top left;
  }
}

@-webkit-keyframes kenburns-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 50%;
            transform-origin: 84% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translateX(20px);
            transform: scale(1.25) translateX(20px);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@-moz-keyframes kenburns-right {
  0% {
    -moz-transform: scale(1) translate(0, 0);
         transform: scale(1) translate(0, 0);
    -moz-transform-origin: 84% 50%;
         transform-origin: 84% 50%;
  }
  100% {
    -moz-transform: scale(1.25) translateX(20px);
         transform: scale(1.25) translateX(20px);
    -moz-transform-origin: right;
         transform-origin: right;
  }
}

@-o-keyframes kenburns-right {
  0% {
    -o-transform: scale(1) translate(0, 0);
       transform: scale(1) translate(0, 0);
    -o-transform-origin: 84% 50%;
       transform-origin: 84% 50%;
  }
  100% {
    -o-transform: scale(1.25) translateX(20px);
       transform: scale(1.25) translateX(20px);
    -o-transform-origin: right;
       transform-origin: right;
  }
}

@keyframes kenburns-right {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
       -moz-transform: scale(1) translate(0, 0);
         -o-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 84% 50%;
       -moz-transform-origin: 84% 50%;
         -o-transform-origin: 84% 50%;
            transform-origin: 84% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translateX(20px);
       -moz-transform: scale(1.25) translateX(20px);
         -o-transform: scale(1.25) translateX(20px);
            transform: scale(1.25) translateX(20px);
    -webkit-transform-origin: right;
       -moz-transform-origin: right;
         -o-transform-origin: right;
            transform-origin: right;
  }
}

@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@-moz-keyframes kenburns-bottom {
  0% {
    -moz-transform: scale(1) translateY(0);
         transform: scale(1) translateY(0);
    -moz-transform-origin: 50% 84%;
         transform-origin: 50% 84%;
  }
  100% {
    -moz-transform: scale(1.25) translateY(15px);
         transform: scale(1.25) translateY(15px);
    -moz-transform-origin: bottom;
         transform-origin: bottom;
  }
}

@-o-keyframes kenburns-bottom {
  0% {
    -o-transform: scale(1) translateY(0);
       transform: scale(1) translateY(0);
    -o-transform-origin: 50% 84%;
       transform-origin: 50% 84%;
  }
  100% {
    -o-transform: scale(1.25) translateY(15px);
       transform: scale(1.25) translateY(15px);
    -o-transform-origin: bottom;
       transform-origin: bottom;
  }
}

@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
       -moz-transform: scale(1) translateY(0);
         -o-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
       -moz-transform-origin: 50% 84%;
         -o-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
       -moz-transform: scale(1.25) translateY(15px);
         -o-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
       -moz-transform-origin: bottom;
         -o-transform-origin: bottom;
            transform-origin: bottom;
  }
}

