@charset "utf-8";@media screen,projection{/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  /*padding: 15px 15px;*/
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: #289392;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }
}
@media screen,projection{/*Появление элементов*/
.hidd {
   visibility: none;
   opacity: 0;
   }

.gently {
   visibility: visible;
   opacity: 1;
   -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: gentl;
  animation-name: gentl;
  -webkit-animation-timing-function: easing;
    animation-timing-function: easing;
   }

@-webkit-keyframes gentl {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3%, 0);
    transform: translate3d(0, 3%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes gentl {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3%, 0);
    transform: translate3d(0, 3%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


.appear {
   -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: opacit;
  animation-name: opacit;
  -webkit-animation-timing-function: easing;
    animation-timing-function: easing;
   }

@-webkit-keyframes opacit {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opacit {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





.fromtop {
   visibility: visible;
   opacity: 1;
   -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: top;
  animation-name: top;
  -webkit-animation-timing-function: easing;
    animation-timing-function: easing;
   }

@-webkit-keyframes top {
  from {
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes top {
  from {
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}





.fromright {
   visibility: visible;
   opacity: 1;
   -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: right;
  animation-name: right;
  -webkit-animation-timing-function: easing;
    animation-timing-function: easing;
   }

@-webkit-keyframes right {
  from {
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes right {
  from {
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.fromleft {
   visibility: visible;
   opacity: 1;
   -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: left;
  animation-name: left;
  -webkit-animation-timing-function: easing;
    animation-timing-function: easing;
   }

@-webkit-keyframes left {
  from {
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes left {
  from {
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}



/*Крылышки*/

.krill {
  visibility: visible;
  opacity: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: krill;
  animation-name: krill;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
   }
   
@-webkit-keyframes krill {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(10deg);
  }
}

@keyframes krill {
  from {
    transform: rotate(0);
  }

  to {
     transform: rotate(10deg);
  }
}
   
.krilr {
  visibility: visible;
  opacity: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: krilr;
  animation-name: krilr;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
   }
   
@-webkit-keyframes krilr {
  from {
    transform: rotate(10deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes krilr {
  from {
    transform: rotate(10deg);
  }

  to {
     transform: rotate(0);
  }
}


/*парящий блок*/
.parblo {
  visibility: visible;
  opacity: 1;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: parblo;
  animation-name: parblo;
  animation-iteration-count: infinite; 
  -webkit-animation-iteration-count: infinite; 
  animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
   }
   
@-webkit-keyframes parblo {
  from {
    transform: rotate(-1deg);
  }

  to {
    transform: rotate(1deg);
  }
}

@keyframes parblo {
  from {
    transform: rotate(-1deg);
  }

  to {
    transform: rotate(1deg);
  }
}

/*Знак вопроса*/
.quest:hover .voprtext {
  visibility: visible;
  opacity: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: voprtext;
  animation-name: voprtext;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
   }
   
@-webkit-keyframes voprtext {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes voprtext {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/*ОФИС - телефон*/
.office-phone img, .tourist-phone, .barman-phone {
   -webkit-transition: all 0.4s;
   -moz-transition: all 0.4s;
   -o-transition: all 0.4s;
   }
   
.office-phone:hover img, .tourist-phone:hover, .barman-phone:hover {
   animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
   }

@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
   
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/*ОФИС - баблы*/

.office-phone:hover .topbubble {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -webkit-animation-name: topbubble;
  animation-name: topbubble;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ethernet:hover .topbubble1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-name: topbubble;
  animation-name: topbubble;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes topbubble {
  from {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;
  }

}

@keyframes topbubble {
  from {
    opacity: 0;
    visibility: hidden;
  }

  to {
    opacity: 1;
    visibility: visible;
  }

}

/*ОФИС - ethernet*/
.ethernet:hover img {
   -webkit-animation-name: ether;
  animation-name: ether;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
   }
   
@-webkit-keyframes ether {
  10%, 90% {
    background: url(../images/ethernet-glow.svg) no-repeat top left;
    background-size: 100% auto;
  }
  
  20%, 80% {
    background: transparent;
    background-size: 100% auto;
  }

  30%, 50%, 70% {
    background: url(../images/ethernet-glow.svg) no-repeat top left;
    background-size: 100% auto;
  }

  40%, 60% {
    background: transparent;
    background-size: 100% auto;
  }
}
   
@keyframes ether {
  10%, 90% {
    background: url(../images/ethernet-glow.svg) no-repeat top left;
    background-size: 100% auto;
  }
  
  20%, 80% {
    background: transparent;
    background-size: 100% auto;
  }

  30%, 50%, 70% {
    background: url(../images/ethernet-glow.svg) no-repeat top left;
    background-size: 100% auto;
  }

  40%, 60% {
    background: transparent;
    background-size: 100% auto;
  }
}

/*РЕСТОРАН - Девушка*/
.girlblock:hover .wi1b, .touristblock:hover .wi1b, .hipsterblock:hover .wi1b {
   -webkit-animation-name: wi1b;
  animation-name: wi1b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
   }
   
.acti .wi1b {
   -webkit-animation-name: wi1b;
  animation-name: wi1b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
   }
   
@-webkit-keyframes wi1b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

@keyframes wi1b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

.girlblock:hover .wi2b, .touristblock:hover .wi2b, .hipsterblock:hover .wi2b {
   -webkit-animation-name: wi2b;
  animation-name: wi2b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
   }
   
.acti .wi2b {
   -webkit-animation-name: wi2b;
  animation-name: wi2b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
   }
   
@-webkit-keyframes wi2b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

@keyframes wi2b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

.girlblock:hover .wi3b, .touristblock:hover .wi3b, .hipsterblock:hover .wi3b {
   -webkit-animation-name: wi3b;
  animation-name: wi3b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
   }
   
.acti .wi3b {
   -webkit-animation-name: wi3b;
  animation-name: wi3b;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
   }
   
@-webkit-keyframes wi3b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

@keyframes wi3b {
  from {
    opacity: 0;
    visibility: hidden;
  }

  50% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

/*РЕСТОРАНЫ - баблы*/

.barman-phone:hover .topbubble {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -webkit-animation-name: topbubble;
  animation-name: topbubble;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*РЕСТОРАНЫ - бармен*/
.barmen:hover .barmenhand {
  -webkit-animation-name: barmenhand;
  animation-name: barmenhand;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform-origin: 15% top;
    -moz-transform-origin: 15% top;
    -o-transform-origin: 15% top;
    -ms-transform-origin: 15% top;
    transform-origin: 15% top;
}

@-webkit-keyframes barmenhand {
  from {
        transform:rotate(0deg);
    }
    
    50% {
        transform:rotate(-7deg);
    }
    
    to {
        transform:rotate(0deg);
    }

}

@keyframes barmenhand {
  from {
        transform:rotate(0deg);
    }
    
    50% {
        transform:rotate(-7deg);
    }
    
    to {
        transform:rotate(0deg);
    }

}


/*РЕСТОРАНЫ - хипстер*/
.hipsterblock:hover .flash-phone {
  -webkit-animation-name: hipster;
  animation-name: hipster;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes hipster {
  from {
    opacity: 0;
    visibility: hidden;
  }

  25% {
    opacity: 1;
    visibility: visible;
  }
  
  50% {
    opacity: 0;
    visibility: hidden;
  }

  75% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

@keyframes hipster {
  from {
    opacity: 0;
    visibility: hidden;
  }

  25% {
    opacity: 1;
    visibility: visible;
  }
  
  50% {
    opacity: 0;
    visibility: hidden;
  }

  75% {
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    visibility: hidden;
  }

}

/*Обратная связь*/
.rightphone {
  -webkit-animation-name: rightphone;
  animation-name: rightphone;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.rightphone.active {
  -webkit-animation-name: rightphone1;
  animation-name: rightphone1;
}


@-webkit-keyframes rightphone {
0% {
    transform: rotate(0deg); } 
    
1% {
    transform: rotate(-0.5deg); }  

2% {
    transform: rotate(0.5deg); }  
    
3% {
    transform: rotate(-0.5deg); } 

4% {
    transform: rotate(0.5deg); } 
    
5% {
    transform: rotate(-0.5deg); }  

6% {
    transform: rotate(0.5deg); }  
    
7% {
    transform: rotate(-0.5deg); } 

8% {
    transform: rotate(0.5deg); } 
    
9% {
    transform: rotate(-0.5deg); } 
    
10% {
    transform: rotate(0deg); } 
}

@keyframes rightphone {
0% {
    transform: rotate(0deg); } 
    
1% {
    transform: rotate(-0.5deg); }  

2% {
    transform: rotate(0.5deg); }  
    
3% {
    transform: rotate(-0.5deg); } 

4% {
    transform: rotate(0.5deg); } 
    
5% {
    transform: rotate(-0.5deg); }  

6% {
    transform: rotate(0.5deg); }  
    
7% {
    transform: rotate(-0.5deg); } 

8% {
    transform: rotate(0.5deg); } 
    
9% {
    transform: rotate(-0.5deg); } 
    
10% {
    transform: rotate(0deg); }   
}


}@media only screen and (max-width: 590px), only not all{

@-webkit-keyframes parblo {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes parblo {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(0deg);
  }
}
}


@media only screen and (max-width: 790px), only not all{
/*парящий блок*/
.parblo {
  -webkit-animation-name: none;
  animation-name: none;
   }
   
.krill, .krilr {
   display: none;
   }
   
}
@media screen,projection{body,
html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 21px;
  color: #000;
  -webkit-text-size-adjust: 100%;
}
body { 
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.clear {
  clear: both;
}
input,
textarea,
button {
  outline: none;
}
a img {
  border: none;
}
form {
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
#system-message {
  display: none !important;
}

.content {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
  box-sizing: border-box;
}

.btn {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  padding: 13px 13px;
  font-weight: 500;
  font-size: 24px;
  display: inline-block;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

.btn-primary {
  background: #289392;
  color: #fff;
  border-color: #289392;
}

.btn-primary a {
  color: #fff;
  padding: 10px 55px;
  display: block;
}

.btn-primary:hover {
  background: transparent;
  color: #289392;
}

.btn-primary:hover a {
  color: #289392;
}

.table {
  display: table;
  vertical-align: middle;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.notice {
  text-align: center;
  min-height: 20px;
  background-color: #e91b25;
  text-shadow: 1px 1px #000;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 20px;
  padding: 8px 2% 10px;
  width: 96%;
  }

.notice a {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  }

.notice a:hover {
  text-decoration: underline;
  }

/*Navbar*/
nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: #ffffff;
  transition: all 0.3s;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

#homepage nav {
  background: rgb(255 255 255 / 90%);
  position: absolute;
}

#homepage nav.slide {
  background: #ffffff;
  position: fixed;
}

nav.slide {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

nav.slide.fixed {
  opacity: 1;
  max-height: 2000px;
  overflow: visible;
}

nav .content {
  max-width: 3000px;
  display: flex;
  align-items: center;
  padding: 0;
}

.inner-logo {
  padding: 10px 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-logo img {
  max-width: 100%;
  height: auto;
}

.mobile-logo {
  display: none;
}

.topmenu {
  margin: 0 auto 0 auto;
}

.topmenu ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.topmenu li {
  list-style: none;
  position: relative;
  padding: 0 2px 9px 0;
}

.topmenu li.parent:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 0;
  height: 0;
  margin-right: 8px;
  vertical-align: middle;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.topmenu li a,
span.nav-header,
span.span-separator {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  transition: all 0.3s;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 3px;
}

.topmenu li.parent a {
  padding: 6px 20px 6px 12px;
}

.topmenu li.active li a {
  color: #fff;
  border-bottom: 3px solid transparent;
}

.topmenu li a:hover,
.topmenu li.active a,
.topmenu li li a:hover,
.topmenu li.active li a:hover,
.topmenu li li.active a {
  border-bottom: 3px solid #000;
}

.topmenu li.parent li a {
  padding: 6px 12px;
  color: #fff;
}

.topmenu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  display: block;
  background: #ffffff;
  max-height: 0;
  overflow-y: hidden;
  transition: all 0.2s;
}

nav.fixed .topmenu li ul {
  background: #ffffff;
}

.topmenu li:hover ul {
  padding-top: 10px;
  max-height: 3000px;
  overflow-y: auto;
}

.topmenu li li {
  display: block;
  padding: 10px;
}

.top-right {
  margin: 0 10px 0 auto;
  text-align: right;
}

.top-phone,
.top-phone a {
  display: inline-block;
  vertical-align: top;
  font-size: 34px;
  font-weight: 500;
  color: #289392;
}

.top-phone {
  /*margin: -3px 10px 0 0;*/
  margin: -1px 10px 0 0;
}

.top-loc {
  font-family: "Lato", sans-serif;
  color: #535353;
  font-size: 21px;
  display: block;
  margin-right: 8px;
}

nav .social-btns {
  display: inline-flex;
  margin-top: 4px;
}

nav .social-btn {
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  vertical-align: middle;
}

nav .social-btn:hover {
  transform: scale(1.1);
}

nav .fb-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  white-space: nowrap;
  margin-right: 5px;
}

nav .fb-wrap iframe,
nav .fb-wrap .fb-like {
  width: 32px !important;
  height: 32px !important;
  overflow: hidden;
}

nav .fb-ico {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

nav .fb-wrap:hover .fb-ico {
  transform: scale(1.1);
}

.hamburger {
  display: none;
}

nav p {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.topline {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000000;
}

/*Top Buttons*/
.top-buttons {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.top-button {
  font-size: 24px;
  font-weight: 600;
  color: #fff !important;
  background: #289392;
  border: 2px solid #289392;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  transition: 0.3s all;
}

.top-button:hover {
  color: #289392 !important;
  background: #fff;
  border: 2px solid #289392;
}

.top-button.exi {
  background: #196e6e;
  border: 2px solid #196e6e;
}

.top-button.exi:hover {
  color: #196e6e !important;
  background: #fff;
  border: 2px solid #196e6e;
}

/* Slider block*/
.slider-block {
  text-align: center;
  position: relative;
}

.nivo-slider-wrapper {
  position: relative;
  z-index: 10;
}

.maintext-block-wrapper {
  position: absolute;
  top: 240px;
  left: 0;
  width: 100%;
  z-index: 11;
}

.maintext-block {
  display: inline-block;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  margin-top: 6%;
}

.maintext-block h2 {
  font-size: 33px;
  color: #fff;
  font-weight: 400;
  font-family: "Cabin", sans-serif;
  margin: 0px 0 10px 0;
}

.maintext-block ul {
  padding: 0;
  margin: 0;
}

.maintext-block li {
  display: block;
  list-style: none;
  padding: 5px 0 5px 35px;
  position: relative;
}

.maintext-block li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  background: url(https://www.steppingitup.org/templates/theme/images/bullet.png) no-repeat center;
}

.maintext-block li a {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.maintext-block li a:hover {
  text-decoration: underline;
}

.subtext-block {
  font-family: "Lato", sans-serif;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 20px 15px;
  background: rgb(55 148 146 / 50%);
  left: 0;
  width: 100%;
  z-index: 11;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  box-sizing: border-box;
  display: none;
}

.subtext-block p {
  padding: 0;
  margin: 0;
}

.nivo-caption {
  background: transparent;
  padding: 0;
  opacity: 1;
}

.theme-pure .nivoSlider {
  margin-bottom: 0;
}

/* OLD :: Services block*/
/* .services-block {
    padding: 50px 0;
    background: #fff;
	}

.services-block .content {
    text-align: center;
  	max-width: 1350px;
	}

.services-block h2 {
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    text-align: center;
    font-weight: 400;
    color:#289392;
    padding-bottom: 20px;
    margin: 0 auto 0 auto;
    position: relative;
	}

.service-block {
    display: inline-flex;
    margin: 10px;
    transition: all 0.2s;
	}

.service-block:hover {
    background-size: 120% auto;
	}

.service1 {
    background: url(../images/service1.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service2 {
    background: url(../images/service2.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service3 {
    background: url(../images/service3.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service4 {
    background: url(../images/service4.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service5 {
    background: url(../images/service5.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service6 {
    background: url(../images/service6.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service7 {
    background: url(../images/service7.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service8 {
    background: url(../images/service8.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service9 {
    background: url(../images/service9.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service10 {
    background: url(../images/service10.jpg) no-repeat center;
    background-size: 100% auto;
	}

.service-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 240px;
    height: 213px;
	}

.service-block .service-title {
    width: 100%;
    padding: 10px 10px;
    background: rgb(55 148 146 / 75%);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
	} */

/*Services block*/
.services-block {
  padding: 50px 0 0;
  background: #fff;
}

.services-block h2 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  text-align: center;
  font-weight: 400;
  color: #289392;
  padding: 0 15px 50px;
  margin: 0 auto 0 auto;
  position: relative;
}

/* .services-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    height: 2px;
    background-color: #289392;
	} */

.services-block-wrap {
  display: flex;
  position: relative;
}

.services-item {
  height: 470px;
  padding: 25px;
  display: flex;
  flex: 1;
  align-items: flex-end;
  text-align: center;
  transition: all 0.3s;
}

.services-item.item1 {
  background: url(https://www.steppingitup.org/templates/theme/images/service1.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item.item2 {
  background: url(https://www.steppingitup.org/templates/theme/images/service2.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item.item3 {
  background: url(https://www.steppingitup.org/templates/theme/images/service3.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item.item4 {
  background: url(https://www.steppingitup.org/templates/theme/images/service4.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item.item5 {
  background: url(https://www.steppingitup.org/templates/theme/images/service5.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item.item6 {
  background: url(https://www.steppingitup.org/templates/theme/images/service6.webp) no-repeat center;
  background-size: auto 100%;
}

.services-item:hover {
  background-size: auto 120%;
}

.services-item a {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-top: 5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.services-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgb(118 197 213 / 30%) 15%, rgba(0, 0, 0, 0) 60%);
}

/*About-block*/
.about-block {
  padding: 30px 0;
  /*background: url(https://www.steppingitup.org/templates/theme/images/about-bg.jpg) no-repeat center;*/
  background-size: cover;
  background: #e6e6e6;
}

.about-block h2 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  color: #000000;
  text-align: center;
  font-weight: 400;
  position: relative;
  padding: 20px 0;
  margin: 0 auto 20px auto;
  position: relative;
}

.about-block h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 2px;
  background-color: #289392;
}

.about-wrapper {
  display: flex;
}

.about-block .about-text {
  order: 1;
  color: #000000;
}

.about-block .about-text a {
  color: #289392;
  font-weight: 700;
}

.about-block .doctors {
  order: 2;
  white-space: nowrap;
}

.about-block .doctor {
  display: inline-block;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  width: 280px;
}

.doctor a {
  font-family: "Lato", sans-serif;
  display: block;
  font-size: 20px;
  color: #289392;
  font-weight: 700;
}

.about-block .doctor img {
  max-width: 100%;
  box-shadow: 3px 5px 3px rgba(0, 0, 0, 0.2);
  display: block;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.about-block .doctor:hover img {
  transform: scale(1.02);
}

.more-text {
  display: none;
}

.read-more {
  color: #fff !important;
  padding: 10px 15px;
  background: #379492;
  border-radius: 5px;
  display: block;
  max-width: 125px;
  text-align: center;
}

.read-more:hover {
  cursor: pointer;
}

.video__block {
  display: flex;
  padding: 0 25px 25px;
  box-sizing: border-box;
  background: #e6e6e6;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/*Five Reasons Block*/
.five__reasons {
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 25px;
}

.reasons__box {
  max-width: 250px;
  color: #000;
  font-weight: 400;
}

.reasons__box span {
  font-size: 20px;
  color: #289392;
}

.reasons__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin: 35px auto;
}

.five__reasons h3 {
  margin: 5px auto;
}

/*Did You Know Block*/
.did__you-know {
  display: flex;
}

.did__you-left {
  display: flex;
  max-width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 25px;
  width: 100%;
  background: #e6e6e6;
}

.did__you-left h3 {
  color: #289392;
}

.did__you-left p {
  color: #000000;
  max-width: 430px;
  font-weight: 400;
  text-align: justify;
}

.did__button {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #289392;
  border: 2px solid #289392;
  padding: 7px 18px;
  border-radius: 7px;
  display: block;
  margin: 35px auto;
  max-width: 200px;
}

.did__button {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #289392;
  border: 2px solid #289392;
  padding: 7px 18px;
  border-radius: 7px;
  display: block;
  margin: 35px auto;
}

.did__button:hover {
  color: #289392;
  background: #ffffff;
  border: 2px solid #289392;
}

.did__you-right {
  position: relative;
  overflow: hidden;
  height: 750px;
}

.did__you-right img {
  position: fixed;
  top: 0px;
  z-index: -1;
}

/*Locations block*/
.locations-block {
  background: url(https://www.steppingitup.org/templates/theme/images/locations-bg.webp) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}

.locations-block .content {
  display: flex;
  justify-content: space-around;
}

.loc {
  margin: 0 10px;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  background: #e6e6e6;
  text-align: center;
  border: 0px solid #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 3px #0000006b;
}

.loc h2 {
  font-weight: 400;
  color: #000000;
  font-family: "Cabin", sans-serif;
  font-size: 44px;
  margin: 0;
}

.loc .address {
  font-size: 21px;
  margin: 10px 0 30px 0;
  color: #141414;
}

.loc .phone {
  font-size: 26px;
  font-weight: 500;
  color: #289392;
  white-space: nowrap;
}

.loc .shedule {
  margin: 15px auto 0 auto;
  font-size: 21px;
  color: #141414;
  font-weight: 500;
}

.loc .day {
  padding-right: 10px;
}

.loc .note {
  font-size: 20px;
  color: #141414;
  font-weight: 500;
  max-width: 360px;
  margin: 5px auto 0;
}

.loc .btn {
  text-align: center;
  margin: 25px auto 10px auto;
  padding: 0;
  border-radius: 10px;
}

.direction__note {
  font-size: 15px;
}

/*Blogs block*/
.blogs-block {
  padding: 40px 0 50px;
  background: url(https://www.steppingitup.org/templates/theme/images/blogs-bg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}

.blogs-block .content {
  text-align: center;
}

.blogs-block h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  display: block;
  margin: 10px 0;
}

.blogs-list ul {
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}

.blogs-list li {
  list-style: none;
  display: block;
  padding: 8px 0 8px 15px;
  position: relative;
}

.blogs-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 10px;
  color: #fff;
}

.blogs-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.blogs-list li a:hover {
  text-decoration: underline;
}

.blogs-block .btn {
  margin-top: 30px;
}

/*Connect block*/
.connect-block {
  padding: 20px 0;
  background: #fff;
}

.connect-block .content {
  text-align: center;
}

.connect-block h3 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 44px;
  color: #289392;
  text-align: center;
  padding: 30px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.connect-block .social-btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.connect-block .social-btn {
  font-size: 14px;
  color: #fff;
  height: 26px;
  padding: 3px 15px 3px 35px;
  box-sizing: border-box;
  border: 1px solid #289392;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 2px;
  display: inline-block;
  vertical-align: middle;
}

.connect-block .fb-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 97px;
  white-space: nowrap;
  padding: 0;
  margin: 0px 2px 0;
}

.connect-block .fb-ico {
  background: url(https://www.steppingitup.org/templates/theme/images/fb-ico.png) #289392 no-repeat 10px center;
  position: absolute;
  left: 0;
  margin-top: -13px;
}

.connect-block .fb-wrap:hover .fb-ico {
  background: url(https://www.steppingitup.org/templates/theme/images/fb-ico.png) #fff no-repeat 10px center;
  color: #289392;
}

.connect-block .twit-ico {
  background: url(https://www.steppingitup.org/templates/theme/images/twit-ico.png) #289392 no-repeat 10px center;
}

.connect-block .twit-ico:hover a {
  color: #289392;
}

.connect-block .twit-ico:hover {
  background: url(https://www.steppingitup.org/templates/theme/images/twit-ico.png) #fff no-repeat 10px center;
  color: #289392;
}

.connect-block .goog-ico {
  background: url(https://www.steppingitup.org/templates/theme/images/goog-ico.png) #289392 no-repeat 10px center;
}

.connect-block .goog-ico:hover a {
  color: #289392;
}

.connect-block .goog-ico:hover {
  background: url(https://www.steppingitup.org/templates/theme/images/goog-ico.png) #fff no-repeat 10px center;
  color: #289392;
}

.connect-block .instagram-ico {
  background: url(https://www.steppingitup.org/templates/theme/images/instagram-ico-bot.png) #289392 no-repeat 10px center;
}

.connect-block .instagram-ico:hover a {
  color: #289392;
}

.connect-block .instagram-ico:hover {
  background: url(https://www.steppingitup.org/templates/theme/images/instagram-ico-bot.png) #fff no-repeat 10px center;
  color: #289392;
}

.bot-social-btns {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  display: none;
}

.bot-social-btns div {
  height: 45px;
  width: 45px;
  box-sizing: border-box;
  border: 1px solid #289392;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 2px;
  display: inline-block;
  vertical-align: middle;
}

.bot-fb-ico {
  height: 45px;
  width: 45px;
  background: url(https://www.steppingitup.org/templates/theme/images/bot-fb.png) no-repeat center #289392;
}

.bot-fb-ico:hover {
  transform: scale(1.1);
}

.bot-twit-ico {
  height: 45px;
  width: 45px;
  background: url(https://www.steppingitup.org/templates/theme/images/bot-twit.png) no-repeat center #289392;
}

.bot-twit-ico:hover {
  transform: scale(1.1);
}

/*Footer*/
footer {
  background: #1d1c1c;
}

footer .content {
  text-align: center;
}

.logo-footer {
  display: inline-block;
  vertical-align: middle;
  padding: 30px;
  max-width: 430px;
}

.quick-links-block {
  display: inline-block;
  vertical-align: middle;
  padding: 30px;
  text-align: left;
}

footer h4 {
  font-size: 18px;
  font-weight: 400;
  color: #289392;
  margin-top: 0;
  padding-top: 0;
}

.quick-links-block ul {
  padding: 0;
  margin: 0;
}

.quick-links-block li {
  display: block;
  list-style: none;
  padding: 2px 0;
}

.quick-links-block li a {
  color: #d1d1d0;
  font-size: 18px;
  line-height: 25px;
  text-decoration: none;
}

.quick-links-block li a:hover {
  text-decoration: underline;
}

.quick-links-block ul ul {
  padding: 0;
  margin: 2px 0 0 10px;
}

.bottom-loc-block {
  display: inline-block;
  vertical-align: top;
  padding: 30px 0 30px 30px;
  text-align: left;
  color: #d1d1d0;
  font-size: 18px;
  line-height: 25px;
}

.white-text {
  color: #fff;
}

.offices-block {
  display: flex;
}

.office {
  padding-right: 30px;
}

.copy-left,
.copy-right {
  text-align: left;
  float: left;
  color: #6e6d6d;
  font-size: 14px;
  padding: 30px;
}

.copy-left a,
.copy-right a {
  color: #6e6d6d;
  text-decoration: none;
}

.copy-left a:hover,
.copy-right a:hover {
  text-decoration: underline;
}

.copy-right {
  text-align: right;
  float: right;
}

.scroll-to-top {
  position: fixed;
  bottom: 72px;
  left: 20px;
  z-index: 8999;
  opacity: 1;
  transition: all 0.3s;
  display: none;
  cursor: pointer;
}

.scroll-to-top.active {
  display: block;
}

.scroll-to-top:hover {
  opacity: 0.8;
}

.rabutton {
  max-width: 350px;
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99;
}

.rabutton .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rabutton .buttonrs {
  min-width: 255px;
  min-height: 45px;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff;
  background: #b71c1c;
  border: none;
  border-radius: 3px;
  box-shadow: 12px 12px 24px rgb(25 54 78 / 22%);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 20px;
}

.rabutton .buttonrs::before {
  content: "";
  border-radius: 13px;
  min-width: calc(250px + 28px);
  min-height: calc(40px + 4px);
  border: 4px solid #bf0000;
  box-shadow: 0 0 60px rgb(195 195 195 / 64%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.rabutton .buttonrs:hover,
.buttonrs:focus {
  color: #da0000;
  transform: translateY(-6px);
  background: #fff;
}

.rabutton .buttonrs:hover::before,
.rabutton .buttonrs:focus::before {
  opacity: 1;
}

.rabutton .buttonrs::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #cccccc;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
  animation-delay: 7s;
}

.rabutton .buttonsr:hover::after,
.buttonrs:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

/*Joomla corrections*/
.social-btns p,
.top-phone p,
.connect-block p,
.about-block h2 p,
.topline p {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.social-btns a {
  color: #fff;
}

.social-btns a:hover {
  color: #3dc1fd;
}

/*Rate US*/

.inner-wrap {
  padding: 50px 2% 100px;
  text-align: center;
}

.inner-wrap h2 {
  font-size: 44px;
  margin: 0 auto;
  font-weight: 500;
}

.inner-wrap h5 {
  margin: 25px auto;
}

.google-review {
  margin-top: 60px;
}

.google-review img:hover {
  transform: scale(1.02);
  transition: all 300ms ease;
}

/*Rate Us --- END*/

/* How Are We Doing? */

.thumbs-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 2% 100px;
}

.thumbs-wrap .item {
  margin: 0 20px;
  max-width: 300px;
}

.thumbs-wrap .item:hover {
  transform: scale(1.02);
  transition: all 300ms ease;
}

.thumbs-wrap .item img {
  width: 100%;
  height: auto;
}

.thumbs-wrap .item span {
  font-size: 23px;
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

/* How Are We Doing? --- END */

/*Inner pages*/
tr.rsform-block.rsform-block-ref {
  vertical-align: text-bottom;
}

.inner-pages {
  padding-bottom: 30px;
}

.inner-pages a {
  color: #289392;
}

.inner-pages img {
  max-width: 100% !important;
  height: auto !important;
}

.inner-pages .page-header {
  margin-bottom: 20px;
}

.inner-pages .page-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  color: #289392;
  text-align: center;
  font-weight: 400;
  position: relative;
  padding: 20px 0;
  margin: 0 auto 20px auto;
  position: relative;
}

.inner-pages .page-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 2px;
  background-color: #289392;
}

.one {
  float: left;
  width: 49%;
  padding-right: 2%;
  margin-bottom: 20px;
}

.two {
  width: 49%;
  float: right;
  margin-bottom: 20px;
}

.offices {
  margin: 0;
  width: 100%;
  float: left;
}

.one .address {
  float: left;
  width: 45%;
  margin-bottom: 20px;
}

.week {
  float: left;
  width: 120px;
  margin-bottom: 0;
}

.hours {
  float: left;
  width: 170px;
  margin-bottom: 0;
}

.note-inner {
  float: left;
  width: 300px;
  font-weight: 700;
  font-size: 16px;
  margin: 5px 0 20px;
}

.offices.images {
  margin: 3px auto 27px;
  text-align: center;
}

.offices.images .n2-section-smartslider {
  max-width: 450px;
  margin: 0 auto;
}

.coloredtext.semi {
  font-weight: 600;
}

.inner-pages .doctor {
  float: right;
  text-align: center;
  margin: 0 0 5px 10px;
  max-width: 250px;
  font-size: 20px;
  color: #289392;
  font-weight: 500;
}

.inner-pages .doctor img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.orhto__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px auto;
}

.fo__button {
  font-size: 18px;
  font-weight: 600;
  color: #fff !important;
  background: #289392;
  border: 2px solid #289392;
  padding: 7px 18px;
  border-radius: 7px;
  display: block;
  margin: 0;
  text-align: center;
  max-width: 415px;
  transition: 0.3s all;
}

.fo__button:hover {
  color: #289392 !important;
  background: #fff;
  border: 2px solid #289392;
}

.orhto__buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.fo__button.exi {
  background: #196e6e;
  border: 2px solid #196e6e;
}

.fo__button.exi:hover {
  color: #196e6e !important;
  background: #fff;
  border: 2px solid #196e6e;
}

.images-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px auto;
}

/*K2*/
div.latestItemsCategory {
  background: transparent;
  border: none;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}

div.latestItemsCategory h2 {
  display: none;
}

h2.latestItemTitle a {
  color: #289392;
}

#k2Container {
  padding-top: 30px;
}

div.itemToolbar {
  display: none;
}

div.k2LatestCommentsBlock ul,
div.k2TopCommentersBlock ul,
div.k2ItemsBlock ul,
div.k2LoginBlock ul,
div.k2UserBlock .k2UserBlockActions,
div.k2UserBlock .k2UserBlockRenderedMenu,
div.k2ArchivesBlock ul,
div.k2AuthorsListBlock ul,
div.k2CategoriesListBlock ul,
div.k2UsersBlock ul {
  padding: 10px 20px;
  margin: 0;
}

div.k2LatestCommentsBlock li,
div.k2TopCommentersBlock li,
div.k2ItemsBlock li,
div.k2LoginBlock li,
div.k2ArchivesBlock li,
div.k2AuthorsListBlock li,
div.k2CategoriesListBlock li,
div.k2UsersBlock li {
  margin: 0;
  display: block;
  padding: 8px 0 8px 15px;
}

.clearList {
  display: none !important;
}

.formTableLayout {
  margin: 0 auto;
}

.formTableLayout input#Send {
  background: #289392;
  color: #fff;
  border-color: #289392;
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 19px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  border: 2px solid transparent;
}

.formTableLayout input#Send:hover {
  background: #fff;
  color: #289392;
  border-color: #fff;
  border: 2px solid;
  cursor: pointer;
}

.formTableLayout tr.rsform-block > td {
  padding: 5px;
  font-weight: 600;
}

input,
textarea,
button,
select {
  outline: none;
  padding: 4px;
}

#rsform .inner-pages {
  padding-bottom: 0;
}

.availability-block {
  max-width: 767px;
  box-sizing: border-box;
  padding: 0 15px;
  text-align: center;
  margin: 0 auto 50px;
}

.availability-block p {
  text-align: center;
  background-color: #ff0000;
  font-weight: 700;
  font-size: 22px;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.availability-block .top-button.exi {
  font-size: 19px !important;
}

.osmap-items li .even {
  padding: 2px 0 !important;
}

.pe ul {
  margin: 0;
}

p.form-p {
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 24px;
}

/*Joomla content*/

body#homepage .content.h {
  display: none;
}

.content.full {
  flex-wrap: wrap;
  display: flex;
}

.divContent {
  flex: 0 0 80%;
  /*max-width: 1000px;
	float: left;*/
}

.divRight {
  flex: 0 0 20%;
  /*max-width: 300px;
	float: right;*/
}

.divRight .moduletable {
  margin-top: 25px;
  padding-left: 40px;
}

.divRight .moduletable ul {
  padding: 0px 4px !important;
}

.divRight .moduletable li {
  padding: 5px 0 5px 3px !important;
}

body#bfa #k2Container {
  padding-top: 0;
}

.latestItemsCategory {
  float: right;
  width: 30px;
}

div.genericItemReadMore {
  display: none !important;
}

div.k2ArchivesBlock li a {
  color: #289392;
}

/* #custom-page .inner-pages .page-header,
#custom-page nav,
#custom-page footer,
#custom-page .rabutton,
#custom-page .connect-block,
#custom-page .elfsight-app-37b67bff-5845-4b1f-93ee-c7bc92ce1298 {
  display: none;
} */

#custom-page .inner-pages .page-header {
  display: none;
}

#custom-page .content.h {
  width: 100%;
  max-width: 100%;
  border-top: 25px solid #0c9292;
}

#custom-page .inner-pages .content {
  max-width: 1400px;
}

#custom-page .heel-pain-block {
  text-align: center;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
  /* border-radius: 30px; */
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: "Montserrat",sans-serif;
  padding: 20px 0;
}

#custom-page .heel-pain-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 auto 80px;
}

#custom-page .heel-pain-item-text,
#custom-page .heel-pain-item-img {
  flex: 1;
}

#custom-page .heel-pain-item-img {
  padding: 0 20px 0 0;
}

#custom-page .heel-pain-block h2 {
  font-size: 32px;
  margin: 10px auto 30px;
}

#custom-page .heel-pain-block h2::after {
  content: "";
  width: 85%;
  height: 2px;
  background-color: #003297;
  display: block;
  margin: 5px auto 0;
}

#custom-page .heel-pain-block p {
  padding: 0 20px;
  font-size: 17px;
  text-align: left;
}

#custom-page .ra-btn {
  background-color: #0c9292;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border: 2px solid #0c9292;
  border-radius: 10px;
  display: inline-block;
  margin: 10px auto 30px;
  transition: 0.3s all;
}

#custom-page .ra-btn:hover {
  background-color: #fff;
  color: #0c9292;
}

#custom-page .form-block {
  background-color: #c5e8e8;
  padding: 20px 15px 0;
  margin: 0 auto 30px;
}

#custom-page .form-block p {
  text-align: center;
  margin-top: 0;
  max-width: 520px;
  margin: 0 auto 5px;
}

#custom-page tbody#rsform_6_page_0 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  max-width: 520px;
}

#custom-page .formTableLayout tr.rsform-block>td:first-child,
#custom-page .formTableLayout tr.rsform-block>td:last-child {
  display: none;
  }

#custom-page .formTableLayout tr.rsform-block,
#custom-page .formTableLayout tr.rsform-block>td {
  max-width: 260px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
}

#custom-page tr.rsform-block.rsform-block-send {
  flex: 100%;
  display: flex;
  justify-content: flex-end;
}

#custom-page input#Your_Name,
#custom-page input#Phone {
  width: 100% !important;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #000;
  padding: 7px 10px;
  box-sizing: border-box;
  font-family: "Montserrat",sans-serif;
}

#custom-page .formTableLayout input#Send {
  background: #0a2021;
  color: #fff;
  border-color: #0a2021;
  padding: 5px 42px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Montserrat",sans-serif;
  border: 2px solid transparent;
  transition: 0.3s all;
  box-sizing: border-box;
}

#custom-page .formTableLayout input#Send:hover {
  background: #fff;
  color: #0a2021;
  border-color: #fff;
  border: 2px solid;
  cursor: pointer;
}

#custom-page .heel-pain-item-text img {
  padding: 0 15px;
  box-sizing: border-box;
}

#custom-page .google-review-badge {
  max-width: 280px !important;
}

#custom-page .color-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

#custom-page .color-text p {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 31px;
  color: #0c9292;
}

#custom-page .small-text p {
  font-size: 16px;
  text-align: center;
  color: #616161;
}

#custom-page .heel-pain-bottom p {
  font-size: 16px;
  text-align: center;
}

#custom-page .heel-pain-bottom img {
  padding: 0 15px;
  box-sizing: border-box;
}

#custom-page .heel-pain-bottom a {
  display: inline-block;
  transition: 0.3s all;
}

#custom-page .heel-pain-bottom a:hover {
  opacity: 0.8;
}



}@media only screen and (max-width: 1800px), only not all{
  .topline {
    margin-bottom: 5px;
  }

  .maintext-block {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 1700px), only not all{
  footer {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 1550px), only not all{
  .maintext-block-wrapper {
    top: 225px;
  }

  .maintext-block h2 {
    font-size: 26px;
  }

  .maintext-block li {
    padding: 3px 0 3px 30px;
  }

  .maintext-block li a {
    font-size: 20px;
  }

  .maintext-block li:before {
    top: 7px;
    width: 20px;
    height: 20px;
    background-size: contain;
  }

  .subtext-block {
    font-size: 27px;
  }

  /* Services block*/
  .services-block-wrap {
    flex-wrap: wrap;
    position: relative;
  }

  .services-item {
    flex: 33.333%;
    height: 170px;
    padding: 10px;
    box-sizing: border-box;
  }

  .services-item.item1 {
    background-size: 100% auto;
  }

  .services-item.item2 {
    background-size: 100% auto;
  }

  .services-item.item3 {
    background-size: 100% auto;
  }

  .services-item.item4 {
    background-size: 100% auto;
  }

  .services-item.item5 {
    background-size: 100% auto;
  }

  .services-item.item6 {
    background-size: 100% auto;
  }

  .services-item:hover {
    background-size: 120% auto;
  }

  .services-item {
    height: 270px;
    padding: 15px;
  }
}

@media only screen and (max-width: 1440px), only not all{
  /* Slider block */
  .maintext-block h2 {
    font-size: 22px;
  }

  .maintext-block li {
    padding: 1px 0 1px 30px;
  }

  .maintext-block li a {
    font-size: 18px;
  }

  .maintext-block li:before {
    top: 6px;
    height: 18px;
    width: 18px;
    background-size: cover;
  }
}

@media only screen and (max-width: 1310px), only not all{
/*Slider block*/
  .slider-block {
    background: url(https://www.steppingitup.org/templates/theme/images/topbg-mob.webp) no-repeat center;
    background-size: cover;
  }

  .nivo-slider-wrapper {
    display: none;
  }

  .maintext-block-wrapper {
    padding-top: 260px;
    padding-bottom: 20px;
    position: relative;
    top: 0;
  }

  .maintext-block {
    top: 0;
    margin: 0 auto;
    display: block;
    width: 275px;
  }

  .maintext-block h2 {
    font-size: 20px;
  }

  .subtext-block {
    position: relative;
    bottom: 0;
    padding: 10px 15px;
    margin-top: 50px;
    font-size: 22px;
  }

  .slider-holder {
    min-height: unset !important;
  }
}

@media only screen and (max-width: 1250px), only not all{
  /*Slider block*/
 /*  .maintext-block {
    top: 130px;
  }

  .maintext-block h2 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .maintext-block li {
    padding: 0px 0 0px 20px;
  }

  .maintext-block li a {
    font-size: 14px;
  }

  .subtext-block {
    font-size: 16px;
    padding: 10px 15px;
  }

  .maintext-block li:before {
    top: 10px;
    width: 15px;
    height: 15px;
    background: url(../images/bullet.png) no-repeat center;
    background-size: cover;
  } */

  /*Locations block*/
  .loc h2 {
    font-size: 34px;
  }

  .loc .phone {
    font-size: 23px;
  }

  .loc .shedule,
  .loc .note {
    font-size: 17px;
  }

  .loc .note {
    max-width: 300px;
  }

  /*Inner pages*/
  .one .address {
    width: 100%;
  }

  .note-inner {
    width: 100%;
  }

  .map iframe {
    height: 742px;
  }

  #custom-page tbody#rsform_6_page_0 {
    flex-direction: column;
  }

  #custom-page .heel-pain-block h2 {
    font-size: 26px;
    margin: 10px auto;
    padding: 0 15px;
  }

  #custom-page .heel-pain-block p {
    font-size: 16px;
  }

  #custom-page .ra-btn {
    margin: 5px auto 20px;
    font-size: 16px;
    padding: 10px;
  }

  #custom-page .color-text p {
    font-size: 18px;
    line-height: 24px;
  }

  #custom-page .small-text p,
  #custom-page .heel-pain-bottom p {
    font-size: 15px;
  }

  #custom-page .heel-pain-wrap {
    flex-direction: column;
  }

  #custom-page .heel-pain-block {
    max-width: 767px;
    margin: 0 auto;
  }

  #custom-page .heel-pain-item-img {
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
    flex-direction: column;
  }

  #custom-page .heel-pain-item-img .google-review {
    margin-top: 30px;
    padding: 0 30px 0;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 1150px), only not all{
  /*Navbar*/
  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 15px;
  }

  .top-right {
    text-align: right;
  }

  /*Services block*/
  .service-inner {
    width: 200px;
    height: 173px;
  }

  /*Connect block*/
  .connect-block h3 {
    padding: 15px 0;
    margin: 0;
    display: block;
  }

  .connect-block .social-btns {
    padding: 0 0 20px 0;
  }

  /*Footer */
  .logo-footer {
    max-width: 330px;
  }
}

@media only screen and (max-width: 1080px), only not all{
  .top-right {
    margin: 3px 10px 0 auto;
  }

  .top-button {
    font-size: 16px;
  }

  nav .social-btns {
    margin-top: 1px;
  }

  .topmenu {
    margin: -3px auto 0px auto;
  }

  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 14px;
  }

  .topmenu li.parent:after {
    top: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
  }

  .top-phone,
  .top-phone a {
    /*font-size: 24px;*/
    font-size: 31px;
  }

  .top-phone {
    /*margin: 3px 10px 0 0;*/
    margin: -2px 10px 0 0;
  }

  .top-loc {
    font-size: 14px;
  }

  .inner-logo {
    max-width: 45%;
  }

  /*Slider block*/
  /* .maintext-block h2 {
	font-size: 17px;
	}
  
.maintext-block-wrapper {
    top: 185px;
	} */

  /*Services block*/
  .services-item {
    height: 270px;
    padding: 15px;
  }

  .services-item a {
    font-size: 18px;
    height: 30px;
  }

  /*About block*/
  .about-wrapper {
    display: block;
  }

  .about-block .about-text {
    order: 2;
  }

  .about-block .doctors {
    order: 1;
    white-space: normal;
    text-align: center;
  }

  .doctor a {
    font-size: 16px;
  }

  /*Locations block*/
  .loc h2 {
    font-size: 26px;
  }

  .loc .address {
    font-size: 17px;
  }

  .loc .phone {
    font-size: 18px;
  }

  .loc .shedule,
  .loc .note {
    font-size: 16px;
  }

  /*Footer*/
  .logo-footer {
    display: block;
    margin: 0 auto;
  }

  /*sidebar*/

  .divContent {
    flex: 0 0 70%;
  }

  .divRight {
    flex: 0 0 30%;
  }

  /*Rate Us*/

  .inner-wrap {
    padding: 30px 2% 60px;
  }

  .inner-wrap h2 {
    font-size: 32px;
  }

  .google-review img {
    width: 300px !important;
    height: auto !important;
  }

  /*Rate Us -- END*/
}

@media only screen and (max-width: 1000px), only not all{
  nav .social-btns {
    margin: 1px 0 3px;
  }

  .top-buttons {
    margin: 10px 0 5px;
  }

  .top-button {
    font-size: 20px;
    padding: 5px 18px;
  }
}

@media only screen and (max-width: 930px), only not all{
  .pe td {
    display: block;
  }

  .pe ul {
    margin: 0;
  }
}

@media only screen and (max-width: 890px), only not all{
  .topline {
    padding-bottom: 0;
  }

  .topmenu li a,
  span.nav-header,
  span.span-separator {
    padding: 4px 6px;
  }

  .topmenu li.parent a {
    padding: 4px 20px 4px 6px;
  }

  /*Services block*/
  .service-inner {
    width: 160px;
    height: 133px;
  }

  .service-block .service-title {
    font-size: 15px;
  }

  .map iframe {
    height: 713px;
  }
}

@media only screen and (max-width: 800px), only not all{
  body .accessib-block {
    top: 40% !important;
  }
  
  .notice a {
    font-size: 16px;
  }

  .topline {
    margin-bottom: 19px;
    padding-bottom: 0;
  }

  .topmenu {
    margin: -10px auto 0px auto;
  }

  .copy-left,
  .copy-right {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .copy-right p {
    margin-top: 0;
  }

  /* How Are We Doing? */
  .thumbs-wrap .item {
    max-width: 35%;
    margin: 0 10px 20px 10px;
  }

  .thumbs-wrap .item span {
    font-size: 18px;
  }

  /* How Are We Doing? --- END */
}

@media only screen and (max-width: 768px), only not all{
  .formCaption {
    width: 100% !important;
  }

  input#Email,
  input#Your_Email {
    width: 90% !important;
  }

  form#userForm textarea {
    width: 90% !important;
  }
}

@media only screen and (max-width: 767px), only not all{
  body {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    max-width: 180px;
    border-radius: 5px;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 15px;
  }

  .btn-primary a {
    padding: 10px 50px;
  }

  .top-right {
    margin: 0 auto;
    text-align: center;
    align-items: flex-start;
    padding: 5px 0 8px;
  }

  .top-loc {
    margin-right: 0;
  }

  .top-buttons {
    padding: 0 15px;
    justify-content: center;
  }

  /*Navbar*/
  .mobile-logo {
    display: inline-block;
    width: 70%;
    max-width: 300px;
    padding: 10px 5px 10px 15px;
  }

  .mobile-logo img {
    max-width: 100%;
    height: auto;
  }

  .inner-logo {
    display: none;
  }

  .hamburger {
    display: inline-block;
    position: relative;
    z-index: 9002;
    margin: 10px 20px 10px auto;
  }

  body .accessib-block {
    top: 50% !important;
  }

  nav.slide {
    max-height: 3000px;
    overflow: visible;
    opacity: 1;
  }

  .topmenu {
    position: fixed;
    z-index: 9001;
    top: -150%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    transition: all 0.3s;
    margin: 0;
  }

  .topmenu.active {
    top: 0;
  }

  .topmenu ul {
    display: block;
    padding: 40px 15px 15px 15px;
  }

  .topmenu li {
    display: block;
    padding: 5px;
  }

  .topmenu li.parent:after {
    display: none;
  }

  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 15px;
  }

  .topmenu li ul {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    display: block;
    background: transparent;
    max-height: 3000px;
    overflow-y: visible;
    padding: 5px 0 0 0;
  }

  .topmenu li li {
    padding: 5px 10px;
  }

  nav.fixed .topmenu li ul {
    background: transparent;
  }

  .topmenu li:hover ul {
    overflow-y: visible;
    padding: 5px 0 0 0;
  }

  .hamburger.hamburger--slider.is-active {
    position: fixed;
    right: 0;
    top: 15px !important;
  }

  .inner-nav.slide {
    display: none;
  }

  .inner-nav.slide.fixed {
    display: block;
  }

  nav .content {
    display: flex;
  }

  .inner-logo {
    max-width: 250px;
  }

  .inner-logo {
    max-width: 100%;
    height: auto;
  }

  .topline {
    margin-bottom: 0;
  }

  .maintext-block-wrapper {
    padding-top: 280px;
    position: relative;
    top: 0;
  }

  /*Services block*/
  .services-block h2 {
    font-size: 28px;
  }

  /*About block*/
  .about-block h2 {
    font-size: 28px;
  }

  .about-block .doctor {
    padding: 20px;
    max-width: 350px;
  }

  .doctor a {
    font-size: 17px;
  }

  /*Locations block*/
  .locations-block {
    background: url(https://www.steppingitup.org/templates/theme/images/locations-bg-mob.webp) no-repeat center;
    background-size: cover;
  }

  .loc {
    flex: 100%;
  }

  /*Blogs block*/
  .blogs-block h2 {
    font-size: 28px;
  }

  .blogs-list li a {
    font-size: 15px;
  }

  /*Connect block*/
  .connect-block h3 {
    font-size: 26px;
    padding: 15px;
    margin: 0 auto;
    display: block;
  }

  /*Footer*/
  footer {
    padding-bottom: 80px;
  }

  footer .content {
    text-align: left;
  }

  .logo-footer {
    display: block;
    vertical-align: top;
    padding: 30px 0 15px;
    max-width: 90%;
  }

  .copy-left,
  .copy-right {
    font-size: 12px;
  }

  footer h4 {
    font-size: 14px;
  }

  .quick-links-block li a {
    font-size: 14px;
    line-height: 18px;
  }

  .bottom-loc-block {
    font-size: 14px;
    line-height: 18px;
  }

  .scroll-to-top {
    width: 45px;
    bottom: 15px;
    left: 15px;
  }

  .rabutton {
    max-width: 250px;
    bottom: 15px;
  }

  .rabutton .buttonrs {
    min-width: 250px;
    font-size: 15px;
  }

  .rabutton .buttonrs::before {
    min-width: calc(234px + 16px);
    min-height: calc(36px + 9px);
  }

  /*Inner pages*/
  .inner-pages .page-header h2 {
    font-size: 28px;
  }

  .one {
    float: none;
    width: 100%;
    padding-right: 0;
  }

  .two {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .week {
    width: 105px;
  }

  .hours {
    width: 150px;
  }

  .map iframe {
    height: 450px;
  }

  p.form-p {
    font-size: 20px;
  }

  /*sidebar*/

  .divContent {
    flex: 0 0 70%;
  }

  .divRight {
    flex: 0 0 30%;
  }
}

@media only screen and (max-width: 750px), only not all{
  .did__you-know {
    display: flex;
    flex-direction: column;
  }

  .did__you-left {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 25px;
    width: 100%;
    background: #e6e6e6;
  }

  .did__you-right {
    position: relative;
    overflow: hidden;
    height: unset;
  }

  .did__you-right img {
    position: relative;
    top: 0px;
    z-index: -1;
  }
}

@media only screen and (max-width: 730px), only not all{
  img.pe,
  img.se,
  img.np {
    float: none !important;
    margin: 0 0 10px 0 !important;
    max-width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 630px), only not all{
  /*Nav*/
  nav .fb-wrap {
    width: 30px;
    height: 30px;
  }

  nav .fb-wrap iframe,
  nav .fb-wrap .fb-like {
    width: 30px !important;
    height: 30px !important;
    overflow: hidden;
  }

  nav .social-btns {
    margin: 2px 0 3px;
  }

  .social-btn img {
    height: 30px;
    width: auto;
  }

  /*Inner pages*/
  .inner-pages .doctor {
    float: none;
    text-align: center;
    margin: 0 auto 10px auto;
  }

  .video__block iframe {
    width: 320px !important;
    height: 180px !important;
  }

  .video__block video {
    width: 320px !important;
    height: 180px !important;
  }
}

@media only screen and (max-width: 590px), only not all{
  /*sidebar*/

  .divContent,
  .divRight {
    flex: 0 0 100%;
  }

  .divRight .moduletable {
    padding-left: 5px;
  }
}

@media only screen and (max-width: 550px), only not all{
  /* .top-button {
    max-width: 120px;
  } */

  .maintext-block-wrapper {
    padding-top: 300px;
  }

  /* Services block*/
  .services-item {
    flex: 100%;
    height: 220px;
    padding: 30px;
    box-sizing: border-box;
    transition: unset;
  }

  .services-item.item1 {
    background-size: 100% auto;
  }

  .services-item.item2 {
    background-size: 100% auto;
  }

  .services-item.item3 {
    background-size: 100% auto;
  }

  .services-item.item4 {
    background-size: 100% auto;
  }

  .services-item.item5 {
    background-size: 100% auto;
  }

  .services-item.item6 {
    background-size: 100% auto;
  }

  .services-item:hover {
    background-size: 120% auto;
  }

  /*Locations block*/
  .locations-block .content {
    display: block;
    flex: auto;
    text-align: center;
  }

  .loc {
    margin: 10px auto;
  }

  .loc h2 {
    font-size: 23px;
  }

  .loc .address {
    font-size: 16px;
  }

  .loc .phone {
    font-size: 18px;
  }

  .loc .shedule {
    font-size: 16px;
  }

  /*Footer*/
  .logo-footer {
    display: block;
    margin: 0 auto;
  }

  /*Connect block*/
  .connect-block .social-btn {
    font-size: 12px;
    padding: 5px 6px 3px 26px;
  }

  .connect-block .fb-wrap {
    width: 72px;
  }

  .connect-block .fb-ico {
    background: url(https://www.steppingitup.org/templates/theme/images/fb-ico.png) #289392 no-repeat 5px center;
  }

  .connect-block .fb-wrap:hover .fb-ico {
    background: url(https://www.steppingitup.org/templates/theme/images/fb-ico.png) no-repeat 5px center;
  }

  .connect-block .twit-ico {
    background: url(https://www.steppingitup.org/templates/theme/images/twit-ico.png) #289392 no-repeat 5px center;
  }

  .connect-block .twit-ico:hover {
    background: url(https://www.steppingitup.org/templates/theme/images/twit-ico.png) no-repeat 5px center;
  }

  .connect-block .goog-ico {
    background: url(https://www.steppingitup.org/templates/theme/images/goog-ico.png) #289392 no-repeat 5px center;
  }

  .connect-block .goog-ico:hover {
    background: url(https://www.steppingitup.org/templates/theme/images/goog-ico.png) no-repeat 5px center;
  }

  .connect-block .instagram-ico {
    background: url(https://www.steppingitup.org/templates/theme/images/instagram-ico-bot.png) #289392 no-repeat 5px center;
  }

  .connect-block .instagram-ico:hover {
    background: url(https://www.steppingitup.org/templates/theme/images/instagram-ico-bot.png) no-repeat 5px center;
  }

  /*Footer*/
  .offices-block {
    display: block;
  }

  tbody#rsform_3_page_0 td,
  tbody#rsform_4_page_0 td {
    display: block;
  }

  textarea#Message,
  tbody#rsform_4_page_0 textarea {
    width: 90%;
    display: block;
  }

  .rsform-input-box {
    width: 65% !important;
    display: block;
  }

  table#cal4_0 tbody td {
    display: table-cell;
  }

  .office {
    padding-right: 10px;
    margin-bottom: 25px;
  }

  .bottom-loc-block {
    padding: 30px 0 0px 30px;
  }

  tbody#rsform_5_page_0 td {
    display: block;
  }
}
@media screen,projection{body a.underlinedLink {
    text-decoration: underline !important;
}
body .grayScaled {
    filter: grayscale(100%) !important;
}
body .negatBg {
    background-color: #000 !important;
    color: #fff !important;
}
.n2-ss-layer .negatBg , .n2-ss-layers-container.n2-ss-slide-limiter.n2-ow.negatBg .negatBg , .n2-ss-layers-container.n2-ss-slide-limiter.n2-ow.negatBg .negatBg , .animate__slideInUp.negatBg , .jch-lazyloaded.negatBg , .serv-hov.negatBg  , .n2-ss-slide .negatBg , .n2-ss-layers-container .negatBg , .n2-ss-slider .negatBg , .maintext-block-serv-wrapper.rha.gently.negatBg , .maintext-block-serv-wrapper .content.negatBg {
    background-color: unset !important;
}

body .ligBg {
    background-color: #fff !important;
    color: #000 !important;
}

.n2-ss-layer .ligBg , .n2-ss-layers-container.n2-ss-slide-limiter.n2-ow.ligBg .ligBg , .n2-ss-layers-container.n2-ss-slide-limiter.n2-ow.ligBg .ligBg , .animate__slideInUp.ligBg , .jch-lazyloaded.ligBg , .serv-hov.ligBg , .n2-ss-slide .ligBg , .n2-ss-layers-container .ligBg , .n2-ss-slider .ligBg , .maintext-block-serv-wrapper.rha.gently.ligBg , .maintext-block-serv-wrapper .content.ligBg {
    background-color: unset !important;
}

body .accessib-block {
    position: fixed;
    top: 25%;
    right: -190px;
    z-index: 9999;
    display: flex;
    background: transparent !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  	height: 40px;
}

body .accessib-block.active {
    right: 0;
	height: unset !important;
}

.accessib-btn {
    width: 40px;
    height: 40px;
    background-color: #4885ed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessib-btn path {
    fill: #fff;
}

.accessib-btn.ligBg path {
    fill: #000 !important;
}

.accessib-tools {
    width: 190px;
    background: #fff;
}

.accessib-tools button {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 13px;
    padding: 5px 10px;
    margin: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.accessib-tools button.active {
    background: #4885ed;
    color: #fff;
}

.accessib-tools button.active path {
    fill: #fff;
}

.accessib-tools button.negatBg path {
    fill: #fff !important;
}

.accessib-tools button.ligBg.active {
    background: #000!important;
    color: #fff !important;
}

.accessib-tools button.ligBg.active svg {
    background: #000!important;
}

.accessib-tools button svg {
    margin-right: 10px;
}}
