/* CSS Document */
/* GREEN #697a65 */
/* VERY LIGHT GRAY #dfe1e0 */
/* LIGHT GRAY #707070 */
/* DARK GRAY #31302d */ :root {
  --sage: #697a65;
  --heading-sage: #6a7b5b;
  --light-sage: #9cb796;
  --very-light-gray: #dfe1e0;
  --dark-gray: #31302d;
}
html {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 15px;
  padding: 0px;
  margin: 0px;
  color: #3e3e3e;
}
img {
  max-width: 100%;
}
a {
  transition: color 0.3s;
}
h1 {
  font-size: 26px;
  color: var(--heading-sage);
  margin-bottom: 5px;
  font-weight: 300;
  margin-top: 0px;
}
h2 {
  font-family: "Playfiar Display", serif;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 21px;
  color: #5e6060;
  font-weight: 400;
  margin-top: 0px;
}
h3 {
  font-size: 20px;
  color: var(--heading-sage);
  margin-bottom: 5px;
  font-weight: 300;
  margin-top: 0px;
}
.content p {
  margin-bottom: 12px;
}
p strong {
  font-weight: 400;
}
/* FLEX RULES */
.row {
  position: relative;
}
.row .content {
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  position: relative;
  text-align: left;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
}
.col {
  width: calc(50% - 30px);
  position: relative;
}
.col.contact {
  width: calc(40% - 30px);
}
.col.map {
  width: calc(60% - 30px);
}
.button {
  background: var(--sage);
  color: #fff !important;
  padding: 5px 25px;
  line-height: 100%;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  margin: 12px auto 6px auto;
  transition: background 0.3s;
}
.button:hover, .button:active, .button:focus {
    color:#fff !important;
  background: #a49035;
}
hr {
  border-top: 1px solid #e7e7e8;
  margin: 20px auto;
}
#container {
  padding-bottom: 200px;
}
#header {
  height: 130px;
  position: fixed;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 50px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.5s ease;
}
#header #header-content {
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
  position: relative;
}
#header img {
  max-width: 450px;
  width: 40%;
  min-width: 181px;
}
#header img.mobile {
  max-width: 24px;
  min-width: 24px;
}
#navs {
  position: absolute;
  right: 55px;
  top: 15px;
  white-space: nowrap;
  transition: height 0.5s, top 1s;
}
#navs a {
  font-weight: 400;
  text-decoration: none;
  color: #707070;
  padding: 3px 15px;
  font-size: 19px;
  position: relative;
  transition: color 1s, font-size 1s, padding 1s;
}
#navs a:hover {
  color: #31302d;
}
#navs a:hover::before {
  position: absolute;
  content: "";
  border-radius: 10px;
  height: 6px;
  width: 6px;
  background: #7e927a;
  top: 15px;
  left: 4px;
  transition: all 1s;
}
#emergency {
  line-height: 100%;
  padding: 4px 21px 5px 21px;
  text-align: left;
  transform: rotate(270deg);
  position: absolute;
  top: 144px;
  left: calc(50% + 600px);
  background: var(--sage);
  transform-origin: bottom left;
  box-sizing: border-box;
  font-size: 16px;
  transition: background 0.3s, top 0.3s;
  white-space: nowrap;
}
#emergency:hover {
  background: #a49035;
  top: 205px;
}
#emergency span {
  opacity: 0;
  padding: 21px;
  transition: opacity 0.3s;
}
#emergency:hover span {
  opacity: 1;
}
#emergency a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0px;
}
#hero-slideshow, .parallax-window {
  min-height: 100vh;
  background: transparent;
  position: relative;
}
#arrow-down {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  border: 22px transparent solid;
  border-top: var(--sage) solid 15px;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes arrow-animation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes arrow-animation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes arrow-animation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-animation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#arrow-down {
  -webkit-animation: arrow-animation 10s infinite;
  -moz-animation: arrow-animation 10s infinite;
  -o-animation: arrow-animation 10s infinite;
  animation: arrow-animation 10s infinite;
}
.callout {
  background: var(--sage);
  text-align: center;
  color: #fff;
  padding: 80px 100px 100px 100px;
  box-shadow: 0 0 10px 2px #8c8d8c;
  z-index: 10;
  position: relative;
}
.callout * {
  max-width: 1060px;
  margin: 0px auto;
}
.callout h2 {
  font-family: "Playfair Display";
  font-style: italic;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}
.callout p {
  font-size: 17px;
  margin-bottom: 20px;
}
.callout.testimonial {
  padding: 90px 100px 80px 100px;
}
.callout.testimonial p {
  font-style: italic;
  font-size: 21px;
  color: var(--very-light-gray);
  font-family: "Playfair Display";
  font-weight: 400;
}
.callout.testimonial p.testimonial-name {
  font-family: "Oswald";
  font-weight: 300;
  color: var(--light-sage);
  font-style: normal;
}
.callout.testimonial p.testimonial-name span {
  color: #fff;
}
#ourteam, #contact, #diagnosis, #comfort {
  padding: 80px 0px;
  background: transparent;
  z-index: 5;
}
#treatment {
  padding: 80px 0px;
  background: #fff;
  box-shadow: 0 0 10px 2px #8c8d8c;
  z-index: 10;
}
#treatment .cycle-slideshow{
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
    padding-bottom:150%;
}
#contact {
  background: #fff;
  background-image: none;
}
#ourteam {
  padding-top: 20px;
}
#ourteam img {
  max-width: 225px;
  display: block;
  margin-bottom: 20px;
  margin-top: 60px;
}
#diagnosis img {
  max-height: 530px;
  box-shadow: 0 0 10px 2px #8c8d8c;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
#comfort img {
  box-shadow: 0 0 10px 2px #8c8d8c;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
#contact img {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
#contact a{color:var(--sage);text-decoration:none;}
#contact a:hover, #contact a:active, #contact a:focus{color:#a49035;}  
.image-row {
  display: flex;
  justify-content: space-between;
  height: 26.2vw;
  margin-top: 70px;
}
.image-row img {
  height: 100%;
}
#faux-footer{
    display:none;
  background: var(--dark-gray);
  font-family: "Teko", sans-serif;
  position: absolute;
  bottom: 80px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 300 !important;
  text-align: center;
  box-shadow: 0 0 10px 2px #0000008c;
}
#faux-footer-content {
  height: 84px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faux-footer-tagline {
  font-size: 43px;
  color: #eeeae6;
  letter-spacing: 1px;
  text-align: left;
    margin: 0 auto;
    transition:font-size 1s;
}
#footer {
  background: var(--dark-gray);
  font-family: "Teko", sans-serif;
  position: fixed;
  bottom: 80px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 300 !important;
  text-align: center;
  z-index: 200;
  box-shadow: 0 0 10px 2px #0000008c;
    transition:bottom 0.5s ease-in-out;
}
#footer a {
  color: #eeeae6;
  text-decoration: none;
}
#footer-content {
  height: 84px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#tagline {
  font-size: 43px;
  color: #eeeae6;
  letter-spacing: 1px;
  text-align: left;
  transition: opacity 1s;
}
#copyright-and-credit {
  color: #eeeae6;
  top: 0px;
  text-align: right;
  line-height: 120%;
}
#copyright {
  font-size: 18px;
}
#footer a#maplink {
  color: #7a9075;
  padding-left: 7px;
  transition: color 0.3s;
}
#footer a#maplink:hover {
  color: #a49035;
}
#credit {
  font-size: 16px;
}
.mobile {
  display: none;
  cursor: pointer;
  height: 24px;
  width: 24px !important;
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
#footer-logo {
  position: absolute;
  opacity: 0;
  margin-top: 5px;
  transition: opacity 1s;
}
#footer-logo img {
  max-width: 100%;
  width: 315px;
}
@media screen and (max-width:1334px) {
  #emergency {
    left: 95%;
  }
}
@media screen and (max-width:1200px) {
  #navs a {
    padding: 3px 8px;
    font-size: 18px;
  }
  #navs {
    top: 10px !important;
  }
  #navs a:hover::before {
    left: 0px;
  }
}
@media screen and (max-width:980px) {
  #container {
    padding-bottom: 30px;
  }
  .mobile {
    display: block;
    position: absolute;
    right: 105px;
  }
  #header img {
    width: calc(100% - 125px);
    max-width: 350px;
  }
  #navs {
    position: absolute;
    right: -5.5%;
    background: rgba(255, 255, 255, 0.7);
    width: 111.111%;
    white-space: normal;
    transition: height 0.5s ease;
    height: 0px;
    overflow: hidden;
    top: 80px !important;
  }
  #navs.open {
    height: 180px;
  }
  #navs a {
    display: inline-block;
    float: right;
    clear: right;
    font-weight: 400;
    text-decoration: none;
    color: #707070;
    padding: 3px 105px 3px 17px;
    text-align: right;
    font-size: 19px;
    position: relative;
    transition: none;
    width: auto;
  }
  #navs a:hover {
    color: #31302d;
  }
  #navs a:hover::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    height: 6px;
    width: 6px;
    background: #7e927a;
    top: 15px;
    left: 4px;
    transition: all 1s;
  }
  .callout h2 {
    font-size: 40px;
  }
  #footer {
    position: relative;
    bottom: auto !important;
  }
  #footer-content {
    height: auto;
    flex-wrap: wrap;
  }
  #tagline {
      display:none;
    width: 100%;
    }
    #footer-logo{position:relative;opacity:1 !important;margin-top:20px;margin-bottom:9px;}
  #copyright-and-credit {
    width: 100%;
    text-align: left;
    margin-bottom: 18px;
  }
    
#faux-footer{
    display:block;
}
}
@media screen and (max-width:700px) {
  #navs a {
    padding: 3px 75px 3px 17px;
  }
  .mobile {
    right: 75px;
  }
  .col, .col.contact, .col.map {
    width: 100% !important;
    position: relative;
    margin-bottom: 15px;
  }
  .col.slideshow {
    margin-bottom: 15px;
  }
  .callout.testimonial p {
    font-size: 16px;
    margin-bottom: 15px;
  }
.image-row {
  height: 25vw;
}
  #diagnosis img {
    display: none;
  }
  .callout {
    padding: 10% !important;
  }
  .callout h2 {
    font-size: 30px;
  }
  #ourteam, #contact, #diagnosis, #comfort, #treatment {
    padding: 5% 0px;
  }
  #ourteam img {
    margin-top: 30px;
  }
  #footer-logo {
  }
  #tagline {
    margin-top: 15px;
    font-size: 24px;
  }
  #copyright {
    font-size: 14px;
  }
  #credit {
    font-size: 14px;
  }
    #faux-footer-tagline{
    font-size: 39px;
    }
}
@media screen and (max-width:500px) {
    #faux-footer-tagline{
    font-size: 31px;
    }}
@media screen and (max-width:413px) {
    #faux-footer-tagline{
    font-size: 28px;
    }}
@media screen and (max-width:330px) {
    #faux-footer-tagline{
    font-size: 24px;
    }}