/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
html, body, div, section, main, header, nav, footer, form, input, button, textarea,
aside, blockquote, span, hr, a, p, h1, h2, h3, h4, h5, ul, ol, li {
  box-sizing: border-box;
}

html {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 10px;
}

body {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -.015em;
  background-color: #fff;
  color: #333;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 1025px;
}

@media screen and (max-width: 420px) {
  body {
    min-width: 0;
    max-width: 100%;
  }
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: transparent;
}

hr.h-line {
  background-color: #c6afa8;
}

hr.h-line-light {
  background-color: #feebdd;
}

::-moz-selection {
  color: #fff;
  background: #db6767;
}

::selection {
  color: #fff;
  background: #db6767;
}

@media screen and (min-width: 1025px) {
  .hide-on-desktop {
    display: none;
  }
}

@media screen and (max-width: 420px) {
  .hide-on-mobile {
    display: none;
  }
}

.show-on-mobile {
  display: none;
}

@media screen and (max-width: 420px) {
  .show-on-mobile {
    display: initial;
  }
}

.inline-block {
  display: inline-block;
}

.flexy {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 auto;
}

.flexy .spacer {
  flex: 1;
}

.sysinfo {
  font-family: monospace;
  font-size: 12px;
  color: #9f9;
  background-color: #000;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 2px 10px;
  z-index: 1000;
  display: none;
}

/* Colours */
.cl-white {
  color: #fff;
}

.cl-primary {
  color: #507262;
}

.cl-secondary {
  color: #db6767;
}

.bg-primary {
  background-color: #507262;
}

.bg-secondary {
  background-color: #db6767;
}

.bg-black {
  background-color: #333;
}

.bg-jet-black {
  background-color: #000;
}

.bg-photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-peach-light {
  background-color: #fff8f4;
}

.bg-peach-medium {
  background-color: #feebdd;
}

.bg-peach-dark {
  background-color: #c6afa8;
}

.bg-grey-light {
  background-color: #fcfafa;
}

.frame-light {
  border: 2px solid #fff8f4;
}

.map-frame {
  border: 2px solid #fff8f4;
}

.map-frame iframe {
  display: block;
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
a {
  color: #db6767;
  text-decoration: underline;
}

.goto-url {
  cursor: pointer;
}

.read-more,
.more-link {
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-right: 2rem;
  transition: color .3s;
}

.read-more:hover,
.more-link:hover {
  color: #507262;
}

.read-more:hover::after,
.more-link:hover::after {
  opacity: 1;
}

.read-more::after,
.more-link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  height: 100%;
  width: 100%;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: .5;
  transition: opacity .3s;
}

p > .more-link {
  margin-top: 1rem;
}

.icon-link {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.icon-link img {
  display: block;
  width: 20px;
  height: 20px;
}

.text-link {
  font-size: 1.4rem;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 1rem 0;
  color: #333;
}

@media screen and (max-width: 420px) {
  p {
    line-height: 1.35;
  }
}

p.compact {
  line-height: 1;
}

p.fs-xsmall {
  font-size: 1.3rem;
}

p.fs-small {
  font-size: 1.4rem;
}

p.fs-medium {
  font-size: 1.75rem;
}

p.fs-large {
  font-size: 2.5rem;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

p.caption {
  font-size: 1.4rem;
  color: #545454;
}

p.author {
  margin-top: -1rem;
  margin-bottom: 3rem;
}

ul, ol {
  padding: 0 0 0 2rem;
}

ul:first-child, ol:first-child {
  margin-top: 0;
}

ul:last-child, ol:last-child {
  margin-bottom: 0;
}

li {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0.5rem 0;
  color: #333;
}

li.fs-small {
  font-size: 1.4rem;
}

li.fs-medium {
  font-size: 1.75rem;
}

li.fs-large {
  font-size: 3.6rem;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 2rem 0;
  color: #333;
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 2.5rem;
  }
}

h1:first-child {
  margin-top: 0;
}

h1:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: -.025em;
  color: #333;
}

h2:not(:first-child) {
  margin-top: 4rem;
}

@media screen and (max-width: 420px) {
  h2 {
    font-size: 2.7rem;
  }
}

h2.fs-large {
  font-size: 5rem;
  line-height: 1;
}

h2:first-child {
  margin-top: 0;
}

h2:last-child {
  margin-bottom: 0;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 3rem 0 1rem 0;
  color: #333;
  letter-spacing: -.025em;
}

@media screen and (max-width: 420px) {
  h3 {
    font-size: 1.575rem;
    line-height: 1;
  }
}

h3:first-child {
  margin-top: 0;
}

h3:last-child {
  margin-bottom: 0;
}

h4 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 1rem 0 1rem 0;
  color: #333;
}

@media screen and (max-width: 420px) {
  h4 {
    font-size: 1.5rem;
  }
}

h4:first-child {
  margin-top: 0;
}

h4:last-child {
  margin-bottom: 0;
}

.light-text {
  color: #fff;
}

.light-text h1, .light-text h2, .light-text h3, .light-text h4 {
  color: #fff;
}

.light-text p {
  color: #fff;
}

.light-text ul, .light-text ol, .light-text li {
  color: #fff;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

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

@media screen and (max-width: 420px) {
  .text-align-center-mobile {
    text-align: center;
  }
}

.fw-normal {
  font-weight: 300;
}

.fw-medium {
  font-weight: 400;
}

.fw-bold {
  font-weight: 500;
}

.fw-black {
  font-weight: 700;
}

.to-uppercase {
  text-transform: uppercase;
}

.white-text h1, .white-text h2, .white-text h3, .white-text h4 {
  color: #fff;
}

.white-text p {
  color: #fff;
}

.white-text ul, .white-text ol, .white-text li {
  color: #fff;
}

.white-text a {
  color: #fff8f4;
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}

section {
  position: relative;
  margin: 1px auto;
}

section.no-margin {
  margin: 0;
}

section .content {
  margin: 0 auto;
  max-width: 1280px;
  padding: 3rem 3rem;
  position: relative;
}

section .content.spaced {
  padding: 6rem 3rem;
}

section .content-inner {
  padding: 4rem;
  margin: 0 auto;
}

section .content-inner.flush-left {
  margin: 0 auto 0 0;
}

section .content-inner.flush-right {
  margin: 0 0 0 auto;
}

.full-width .image-container {
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.full-width .image-container img {
  object-fit: cover;
}

.full-width-medium {
  height: 50rem;
}

.full-width-medium .image-container {
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.full-width-medium .image-container img {
  object-fit: cover;
}

.grid {
  display: grid;
  margin: 0 auto;
}

.grid.cols-min-auto {
  grid-template-columns: min-content auto;
}

.grid.cols-1-1 {
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1d5-1 {
  grid-template-columns: 1.5fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1d5-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-2 {
  grid-template-columns: 1fr 2fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-3 {
  grid-template-columns: 1fr 3fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-4 {
  grid-template-columns: 1fr 4fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-2-1 {
  grid-template-columns: 2fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-2-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-3-1 {
  grid-template-columns: 3fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-3-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-3-2 {
  grid-template-columns: 3fr 2fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-3-2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-4-1 {
  grid-template-columns: 4fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-4-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-1-1 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-2-1-1 {
  grid-template-columns: 2fr 1fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-2-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-1-1-1 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-1-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.cols-1-1-1-1-1 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 420px) {
  .grid.cols-1-1-1-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.grid.rows-auto {
  grid-template-rows: auto;
}

.grid.gap-x1 {
  grid-gap: 1rem;
}

.grid.gap-x2 {
  grid-gap: 2rem;
}

.grid.gap-x3 {
  grid-gap: 3rem;
}

@media screen and (max-width: 420px) {
  .grid.gap-x3 {
    grid-gap: 2.25rem;
  }
}

.grid.gap-x4 {
  grid-gap: 4rem;
}

@media screen and (max-width: 420px) {
  .grid.gap-x4 {
    grid-gap: 1.5rem;
  }
}

.grid.gap-x5 {
  grid-gap: 5rem;
}

@media screen and (max-width: 420px) {
  .grid.gap-x5 {
    grid-gap: 2rem;
  }
}

.grid.gap-x6 {
  grid-gap: 6rem;
}

.flex {
  display: flex;
  flex: 1 1 auto;
}

.flex.column {
  flex-direction: column;
}

.flex.column-reverse {
  flex-direction: column-reverse;
}

.flex.row {
  flex-direction: row;
}

@media screen and (max-width: 420px) {
  .flex.row {
    flex-direction: column;
  }
}

.flex.row-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 420px) {
  .flex.row-reverse {
    flex-direction: column;
  }
}

.block {
  display: block;
}

/* Margins */
.no-margin {
  margin: 0;
}

@media screen and (max-width: 420px) {
  .no-margin-mobile {
    margin: 0 !important;
  }
}

.mt-none {
  margin-top: 0;
}

.mt-x1 {
  margin-top: 1rem;
}

.mt-x2 {
  margin-top: 2rem;
}

.mt-x3 {
  margin-top: 3rem;
}

.mt-x4 {
  margin-top: 4rem;
}

.mr-none {
  margin-right: 0;
}

.mr-x1 {
  margin-right: 1rem;
}

.mr-x2 {
  margin-right: 2rem;
}

.mr-x3 {
  margin-right: 3rem;
}

.mr-x4 {
  margin-right: 4rem;
}

.mb-none {
  margin-bottom: 0;
}

.mb-x1 {
  margin-bottom: 1rem;
}

.mb-x2 {
  margin-bottom: 2rem;
}

.mb-x3 {
  margin-bottom: 3rem;
}

.mb-x4 {
  margin-bottom: 4rem;
}

.ml-none {
  margin-left: 0;
}

.ml-x1 {
  margin-left: 1rem;
}

.ml-x2 {
  margin-left: 2rem;
}

.ml-x3 {
  margin-left: 3rem;
}

.ml-x4 {
  margin-left: 4rem;
}

/* Padding */
.no-padding {
  padding: 0;
}

@media screen and (max-width: 420px) {
  .no-padding-mobile {
    padding: 0 !important;
  }
}

.pt-none {
  padding-top: 0;
}

.pt-x1 {
  padding-top: 1rem;
}

.pt-x2 {
  padding-top: 2rem;
}

.pt-x3 {
  padding-top: 3rem;
}

.pt-x4 {
  padding-top: 4rem;
}

.pr-none {
  padding-right: 0;
}

.pr-x1 {
  padding-right: 1rem;
}

.pr-x2 {
  padding-right: 2rem;
}

.pr-x3 {
  padding-right: 3rem;
}

.pr-x4 {
  padding-right: 4rem;
}

.pb-none {
  padding-bottom: 0;
}

.pb-x1 {
  padding-bottom: 1rem;
}

.pb-x2 {
  padding-bottom: 2rem;
}

.pb-x3 {
  padding-bottom: 3rem;
}

.pb-x4 {
  padding-bottom: 4rem;
}

.pl-none {
  padding-left: 0;
}

.pl-x1 {
  padding-left: 1rem;
}

.pl-x2 {
  padding-left: 2rem;
}

.pl-x3 {
  padding-left: 3rem;
}

.pl-x4 {
  padding-left: 4rem;
}

.padding-x1 {
  padding: 1rem;
}

.padding-x2 {
  padding: 2rem;
}

.padding-x3 {
  padding: 3rem;
}

.padding-x4 {
  padding: 4rem;
}

.padding-h-x1 {
  padding: 0 1rem;
}

.padding-h-x2 {
  padding: 0 2rem;
}

.padding-h-x3 {
  padding: 0 3rem;
}

.padding-h-x4 {
  padding: 0 4rem;
}

.padding-v-x1 {
  padding: 1rem 0;
}

.padding-v-x2 {
  padding: 2rem 0;
}

.padding-v-x3 {
  padding: 3rem 0;
}

.padding-v-x4 {
  padding: 4rem 0;
}

.relative {
  position: relative;
}

/* Min Height */
.mih-40 {
  min-height: 40rem;
}

.mih-50 {
  min-height: 50rem;
}

/* Max Width */
.mw-30 {
  max-width: 30rem;
}

.mw-40 {
  max-width: 40rem;
}

.mw-50 {
  max-width: 50rem;
}

.mw-60 {
  max-width: 60rem;
}

.mw-two-thirds {
  max-width: 66%;
}

@media screen and (max-width: 420px) {
  .mw-two-thirds {
    max-width: none;
  }
}

.mw-three-quarters {
  max-width: 75%;
}

@media screen and (max-width: 420px) {
  .mw-three-quarters {
    max-width: none;
  }
}

.mw-xsmall {
  max-width: 640px;
}

@media screen and (max-width: 420px) {
  .mw-xsmall {
    max-width: none;
  }
}

.mw-small {
  max-width: 800px;
}

@media screen and (max-width: 420px) {
  .mw-small {
    max-width: none;
  }
}

.mw-medium {
  max-width: 1024px;
}

@media screen and (max-width: 420px) {
  .mw-medium {
    max-width: none;
  }
}

.mw-large {
  max-width: 1200px;
}

@media screen and (max-width: 420px) {
  .mw-large {
    max-width: none;
  }
}

.mw-40vw {
  max-width: 40vw;
}

@media screen and (max-width: 420px) {
  .mw-40vw {
    max-width: none;
  }
}

.mw-50vw {
  max-width: 50vw;
}

@media screen and (max-width: 420px) {
  .mw-50vw {
    max-width: none;
  }
}

.mw-60vw {
  max-width: 60vw;
}

@media screen and (max-width: 420px) {
  .mw-60vw {
    max-width: none;
  }
}

.mw-70vw {
  max-width: 70vw;
}

@media screen and (max-width: 420px) {
  .mw-70vw {
    max-width: none;
  }
}

.mw-80vw {
  max-width: 80vw;
}

@media screen and (max-width: 420px) {
  .mw-80vw {
    max-width: none;
  }
}

/* Aligment & Positioning */
.position-center {
  margin-left: auto;
  margin-right: auto;
}

.m-auto {
  margin: 0 auto;
}

.align-text-center {
  text-align: center;
}

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

.align-content-center {
  display: flex;
  flex: 1;
  align-content: center;
  align-items: center;
}

.align-items-center {
  align-items: center;
  justify-content: space-between;
}

.align-self-center {
  display: flex;
  flex: 1;
  align-self: center;
}

.justify-content-center {
  display: flex;
  flex: 1;
  justify-content: center;
}

.align-block-center {
  margin: 0 auto;
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
header {
  background-color: #fff;
  height: auto;
}

header .top-header {
  background-color: #507262;
  text-align: center;
}

header .top-header.bg-grey-light {
  background-color: #848484;
}

header .top-header.bg-grey-light .content {
  padding: 0.5rem 3rem;
}

header .top-header .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: center;
  align-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3rem;
}

header .top-header .content .button {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1;
  align-items: center;
}

header .top-header .content > div {
  width: 100%;
  white-space: nowrap;
}

header .top-header .content > div:nth-child(1) {
  text-align: left;
}

header .top-header .content > div:nth-child(1) .icon-link {
  margin: 0 3rem 0 0;
  opacity: .75;
}

header .top-header .content > div:nth-child(1) .icon-link:hover {
  opacity: 1;
}

header .top-header .content > div:nth-child(1) .text-link {
  margin: 0 3rem 0 0;
  color: #fff;
  opacity: .75;
}

header .top-header .content > div:nth-child(1) .text-link:hover {
  opacity: 1;
}

header .top-header .content > div:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

header .top-header .content > div:nth-child(2) .icon-link {
  margin: 0 0 0 3rem;
  opacity: .75;
}

header .top-header .content > div:nth-child(2) .icon-link:hover {
  opacity: 1;
}

header .top-header .content > div:nth-child(2) .text-link {
  margin: 0 0 0 3rem;
}

header .navigation .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: center;
  align-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3rem;
}

header .navigation .content > div {
  width: 100%;
  white-space: nowrap;
}

header .navigation .content > div:nth-child(1) {
  text-align: left;
}

header .navigation .content > div:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

header .navigation .content .logo-container img.logo {
  display: inline-block;
  max-width: 16rem;
}

header .navigation .content .logo-container img.logo2 {
  display: inline-block;
  max-width: 20rem;
}

header .navigation .content nav {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 420px) {
  header .navigation .content nav {
    display: none;
  }
}

header .navigation .content nav a {
  display: inline-block;
  line-height: 1;
  color: #343434;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 1rem;
  transition: color .3s;
  white-space: nowrap;
  margin: 0;
  letter-spacing: .015em;
  -moz-osx-font-smoothing: initial;
  -webkit-font-smoothing: initial;
}

header .navigation .content nav a:hover {
  color: #507262;
}

header .navigation .content nav a.special {
  color: #db6767;
}

footer {
  background-color: #fff;
  margin-top: 3rem;
}

footer .content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

footer .logo {
  display: block;
  width: 16rem;
  height: auto;
}

@media screen and (min-width: 1025px) {
  footer .logo {
    min-width: 16rem;
  }
}

footer .social-media {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 2rem;
}

footer .social-media a {
  display: block;
  margin: 0 0.75rem;
  opacity: .5;
}

footer .social-media a:hover {
  opacity: 1;
}

footer .clinics p {
  font-size: 1.3rem;
  color: #333;
  line-height: 2;
  margin: 0;
}

footer h5 {
  color: #333;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

footer a {
  color: #333;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer nav a {
  display: block;
  font-size: 1.3rem;
  line-height: 2;
}

footer .hbspt-form {
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  margin: 0 auto;
  max-height: 180px;
  overflow: hidden;
}

.in-page-navigation {
  text-align: center;
  padding: 3rem 0 0 0;
  font-weight: 400;
}

.in-page-navigation a {
  text-decoration: none;
  padding: 0 1rem;
  color: #507262;
}

.in-page-navigation a:hover {
  color: #db6767;
  text-decoration: underline;
}

.hero {
  height: 50rem;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-auto-columns: auto;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}

.hero .left-spacer {
  background-color: #c6afa8;
}

.hero .content-container {
  min-width: 1280px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.hero.bg-center-right {
  background-position: center right;
}

.hero.content-left .content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  background-color: #c6afa8;
  padding: 4rem 3rem;
  width: 37.5%;
  height: 100%;
  margin: 0 auto 0 0;
}

.hero.content-left .content h1 {
  color: #fff;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0 0 1rem 0;
}

.hero.content-left .content h2 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.hero.content-left .content.cl-light h1 {
  color: #fff;
}

.hero.content-left .content.cl-light h2 {
  color: #fff;
}

.hero.content-left .content.cl-dark h1 {
  color: #333;
}

.hero.content-left .content.cl-dark h2 {
  color: #333;
}

.hero.alt .left-spacer {
  background-color: rgba(0, 0, 0, 0.05);
}

.hero.alt .content {
  background-color: rgba(0, 0, 0, 0.05);
}

.hero.alt2 .left-spacer {
  background-color: rgba(128, 128, 128, 0.75);
}

.hero.alt2 .content {
  background-color: rgba(0, 0, 0, 0.75);
}

.features-bar {
  background-color: #507262;
}

.features-bar.black {
  background-color: #000;
  padding: 0.5rem 0;
}

.features-bar .content {
  font-size: 1.4rem;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 3rem;
}

.features-bar .content span {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 0.5rem;
}

.features-bar .content span img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.features-bar.large .content {
  font-size: 1.4rem;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

.features-bar.large .content span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
}

.features-bar.large .content span img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.opening-times {
  border-left: 3px solid #f5e2d3;
  padding-left: 4rem;
}

.opening-times-grid {
  margin: 2rem 0;
}

.opening-times-grid p {
  display: grid;
  grid-template-columns: .75fr 1fr;
  margin: 0.75rem 0;
  line-height: 1.2;
}

.logos-bar .content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

.logos-bar .content.spaced {
  padding: 4rem 3rem;
}

.logos-bar .content p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  white-space: nowrap;
  color: #c6afa8;
  margin: 0 0 1.5rem 0;
}

.logos-bar .content p span {
  padding: 0 1rem;
}

.logos-bar .content p::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #feebdd;
}

.logos-bar .content p::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #feebdd;
}

.logos-bar .content img {
  display: block;
  width: 100%;
  height: auto;
}

.flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 2rem;
}

.flex-grid.large-items {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 3rem;
}

.flex-grid.four-per-row {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 3rem;
}

.flex-grid.five-per-row {
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 3rem;
}

.flex-grid.square-items::before {
  content: '';
  width: 0;
  padding-bottom: 100%;
  grid-row: 1 / 1;
  grid-column: 1 / 1;
  visibility: hidden;
}

.flex-grid.square-items > *:first-child {
  grid-row: 1 / 1;
  grid-column: 1 / 1;
}

.flex-grid .item {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.flex-grid .item > div:nth-child(1) {
  padding: 1rem 0.5rem;
}

.flex-grid .item h2 {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.flex-grid .item h3 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #333;
  margin: 1rem 0 0 0;
  text-transform: uppercase;
}

.flex-grid .item h3 a {
  color: inherit;
  text-decoration: none;
}

.flex-grid .item p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0.5rem 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.flex-grid .item .info {
  background-color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 1rem 0.5rem 1.2rem 0.5rem;
}

.flex-grid .block-item {
  display: block;
  position: relative;
}

.flex-grid .block-item h2 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #333;
  margin: 1.5rem 0 0 0;
  text-transform: uppercase;
}

.flex-grid .block-item h2.fs-medium {
  font-size: 1.75rem;
}

.flex-grid .block-item h2 a {
  color: inherit;
  text-decoration: none;
}

.flex-grid .block-item h2 a:hover {
  color: #db6767;
}

.flex-grid .block-item h2.fs-large {
  font-size: 2.5rem;
  line-height: 1;
  text-transform: none;
  color: #343434;
}

.flex-grid .block-item p {
  font-size: 1.4rem;
  font-weight: 300;
  color: #333;
  margin: 0.5rem 0 0 0;
}

.flex-grid .block-item a {
  display: block;
}

.flex-grid .block-item a img {
  display: block;
  width: 100%;
  height: auto;
}

.treatment-conditions {
  background-color: #feebdd;
}

.treatment-conditions .content {
  max-width: 1280px;
  padding: 3rem;
  margin: 0 auto;
}

.treatment-conditions a {
  background-color: #fff8f4;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 1rem;
  color: #333;
  transition: background-color .25s, color .25s;
  text-transform: uppercase;
}

.treatment-conditions a:hover {
  background-color: #fff;
  color: #db6767;
}

.image-gallery {
  width: auto;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-bottom: 4rem;
}

.image-gallery .gallery-image {
  width: auto;
  height: 38rem;
}

.image-gallery .gallery-image img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.image-gallery .swiper-pagination {
  transform: scale(1.35);
  color: #c6afa8;
}

.image-gallery .swiper-button-prev {
  color: #c6afa8;
  top: 50%;
  transform: scale(0.8) translateY(-50%);
}

.image-gallery .swiper-button-next {
  color: #c6afa8;
  top: 50%;
  transform: scale(0.8) translateY(-50%);
}

.image-gallery .swiper-pagination-bullet {
  background-color: #c6afa8;
}

.faq {
  column-count: 3;
  column-gap: 4rem;
  column-rule: 1px solid #f5e2d3;
}

.faq div {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem;
}

.faq .faq-item {
  padding-bottom: 2rem;
}

.faq h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.faq h2:not(:first-child) {
  margin-top: 3rem;
}

.faq h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.faq h3:not(:first-child) {
  margin-top: 3rem;
}

.faq p {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.faq ul {
  margin: 0.5rem 0;
}

.faq li {
  font-size: 1.4rem;
  margin: 0;
}

.service-banner {
  background-color: lightsalmon;
  min-height: 35rem;
  padding: 3rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-banner#banner-1 {
  background-image: url("../images/temp-medium.jpg");
}

.service-banner h2 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.service-banner h2 span {
  display: block;
  font-size: 3.6rem;
  letter-spacing: -.025em;
}

.service-banner h3 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.service-banner p.price {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.service-banner p.price span {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}

.service-banner .title-price {
  display: flex;
  flex: 0 1 auto;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
}

.service-banner .buttons .button.outlined {
  color: #fff;
  border-color: #fff;
}

.service-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100%;
  align-content: center;
}

.service-highlights div {
  padding: 4rem 2rem;
  border-right: 2px solid #545454;
}

.service-highlights div:last-child {
  border-right: none;
}

.service-highlights p {
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  letter-spacing: -.05em;
}

.pricing-block h3 {
  margin-bottom: 3rem;
}

.pricing-block .pricing-item {
  border: 1px solid #feebdd;
  padding: 3rem;
}

.pricing-block .pricing-item-prices {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.pricing-block .pricing-item-prices > div:first-child {
  min-width: 50%;
}

.pricing-block .price-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 0.5rem;
  width: 100%;
  white-space: nowrap;
}

.pricing-block .price-list .price-item .quantity {
  display: block;
  text-align: center;
  padding: 1rem;
  background-color: #fff8f4;
  text-decoration: none;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}

.pricing-block .price-list .price-item .quantity:hover {
  background-color: #feebdd;
}

.pricing-block .price-list .price-item .quantity.selected {
  color: #fff;
  font-weight: 700;
  background-color: #c6afa8;
}

.pricing-block .price-list .price-item .price {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 1.75rem;
  padding: 1rem;
}

.tabs {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  margin-bottom: 3rem;
}

.tabs a {
  font-size: 1.75rem;
  text-decoration: none;
  padding: 0.5rem 4rem;
  color: #333;
  font-weight: 500;
}

.tabs a.active {
  font-weight: 700;
  color: #333;
  border-bottom: 3px solid #db6767;
}

.tabs a:not(.active):hover {
  border-bottom: 3px solid #feebdd;
}

.product-order-block .product-category-tabs {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  margin-bottom: 3rem;
}

.product-order-block .product-category-tabs a {
  font-size: 1.75rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 4rem;
  color: #333;
  font-weight: 500;
}

.product-order-block .product-category-tabs a.active {
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #feebdd;
}

.product-order-block .product-category-tabs a:not(.active):hover {
  border-bottom: 3px solid #db6767;
}

.product-order-block .product-category-tabs a.small-tab {
  font-size: 1.5rem;
}

.product-order-block .product-category-tabs.cl-white a {
  color: #fff;
}

.product-order-block .product-category-tabs.cl-white a.active {
  color: #fff;
  border-bottom: 3px solid #db6767;
}

.product-order-block .product-category-tabs.cl-white a:not(.active):hover {
  border-bottom: 3px solid #feebdd;
}

.product-order-block .product-category-tabs.cl-white a.small-tab {
  font-size: 1.5rem;
}

.product-order-block .product-grid {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
}

.product-order-block .product-grid.hidden {
  display: none;
}

.product-order-block .product-grid h3 {
  margin-bottom: 2rem;
}

.product-order-block .product-grid .product-item {
  background-color: #fff;
  padding: 2rem;
  display: block;
  margin: 1.5rem;
  min-width: calc(25% - 3rem);
  max-width: calc(25% - 3rem);
}

.product-order-block .product-grid .product-item.is-popular {
  position: relative;
  padding: 3.5rem 2rem 2rem 2rem;
}

.product-order-block .product-grid .product-item.is-popular::before {
  content: "Popular";
  display: block;
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 0.75;
  text-transform: uppercase;
  background-color: #db6767;
  color: #fff;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}

.product-order-block .product-grid .product-item .price {
  font-weight: 500;
}

.product-order-block .product-grid .product-item .price.sale {
  color: #db6767;
}

.product-order-block .product-grid .product-item .price.sale s {
  font-weight: 300;
  color: #848484;
}

/* Spacers */
.v-spacer-small {
  height: 1rem;
}

.v-spacer {
  height: 3rem;
}

.v-spacer-x2 {
  height: 6rem;
}

.v-spacer-quad {
  height: 4rem;
}

.section-spacer {
  height: 6rem;
}

.flex-spacer {
  flex: 1;
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/* Images */
img {
  display: block;
  margin: 0;
}

img.auto-fit {
  width: 100%;
  height: auto;
}

.auto-fit img {
  width: 100%;
  height: auto;
}

.image-box {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.image-box.r1x1 {
  padding-top: 100%;
}

.image-box.r6x4 {
  padding-top: calc(100% * .666);
}

.image-box.r16x9 {
  padding-top: calc(100% * .5625);
}

.image-box.small {
  width: 120px;
}

.image-box.medium {
  width: 240px;
}

.image-box.large {
  width: 320px;
}

.image-box img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
}

/* Videos */
.video-container {
  position: relative;
}

/* Icons */
.icon {
  width: 24px;
  height: auto;
}

.icon.medium {
  width: 36px;
  height: auto;
}

.icon.large {
  width: 110px;
  height: auto;
}

@media screen and (max-width: 420px) {
  .icon.large {
    width: 93.5px;
  }
}

.icon.xlarge {
  width: 128px;
  height: auto;
}

@media screen and (max-width: 420px) {
  .icon.xlarge {
    width: 96px;
  }
}

.icon.xxlarge {
  width: 256px;
  height: auto;
}

@media screen and (max-width: 420px) {
  .icon.xxlarge {
    width: 192px;
  }
}

.icon.xxxlarge {
  width: 384px;
  height: auto;
}

@media screen and (max-width: 420px) {
  .icon.xxxlarge {
    width: 320px;
  }
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
form {
  margin: 0;
}

form.subscribe {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 60rem;
}

form .row {
  padding-bottom: 2rem;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
  width: 100%;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  display: inline-block;
  background-color: #fff;
  color: #0c2c3c;
  padding: 1rem;
  transition: background-color .3s, box-shadow .3s;
  border: 1px solid #848484;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-color: #ececec;
  border-radius: 0;
  outline: none;
}

input[type="text"].w100,
input[type="number"].w100,
input[type="email"].w100,
input[type="password"].w100,
input[type="tel"].w100 {
  width: 100%;
}

input[type="text"].outlined,
input[type="number"].outlined,
input[type="email"].outlined,
input[type="password"].outlined,
input[type="tel"].outlined {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

input[type="text"].fs-large,
input[type="number"].fs-large,
input[type="email"].fs-large,
input[type="password"].fs-large,
input[type="tel"].fs-large {
  font-size: 1.75rem;
}

select,
select.select {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  display: inline-block;
  background-color: #fff;
  color: #0c2c3c;
  padding: 1rem;
  transition: background-color .3s, box-shadow .3s;
  border: 1px solid #848484;
}

.select2-container .select2-selection--single {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  background-color: #fff;
  color: #0c2c3c;
  transition: background-color .3s, box-shadow .3s;
  border: 1px solid #848484;
  border-radius: 0;
}

.select2-container .select2-results__options {
  border: 1px solid #848484;
}

textarea {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  display: inline-block;
  background-color: #fff;
  color: #0c2c3c;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: background-color .3s, box-shadow .3s;
  border: 1px solid #fcfafa;
  width: 100%;
}

textarea:focus {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-color: #ececec;
  border-radius: 0;
  outline: none;
}

::-webkit-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
}

.buttons .button {
  display: inline-block;
}

.buttons .button:not(last-child) {
  margin-right: 1rem;
}

button,
input[type="submit"],
button[type="submit"],
button[type="submit"].button,
a.button,
.woocommerce button.button,
.woocommerce a.button {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #507262;
  text-align: center;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid #507262;
  transition: background-color .3s, border-color .3s;
  border-radius: 0;
}

button.transparent,
input[type="submit"].transparent,
button[type="submit"].transparent,
button[type="submit"].button.transparent,
a.button.transparent,
.woocommerce button.button.transparent,
.woocommerce a.button.transparent {
  background-color: transparent;
  border-color: transparent;
}

button.checkout-button,
input[type="submit"].checkout-button,
button[type="submit"].checkout-button,
button[type="submit"].button.checkout-button,
a.button.checkout-button,
.woocommerce button.button.checkout-button,
.woocommerce a.button.checkout-button {
  border-radius: 0;
  color: #db6767;
}

button.checkout-button.alt,
input[type="submit"].checkout-button.alt,
button[type="submit"].checkout-button.alt,
button[type="submit"].button.checkout-button.alt,
a.button.checkout-button.alt,
.woocommerce button.button.checkout-button.alt,
.woocommerce a.button.checkout-button.alt {
  border-radius: 0;
  background-color: #db6767;
}

button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
button[type="submit"].button:hover,
a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background-color: #5b816f;
  border-color: #5b816f;
}

button.secondary,
input[type="submit"].secondary,
button[type="submit"].secondary,
button[type="submit"].button.secondary,
a.button.secondary,
.woocommerce button.button.secondary,
.woocommerce a.button.secondary {
  background-color: #db6767;
  color: #fff;
  border-color: #db6767;
}

button.secondary:hover,
input[type="submit"].secondary:hover,
button[type="submit"].secondary:hover,
button[type="submit"].button.secondary:hover,
a.button.secondary:hover,
.woocommerce button.button.secondary:hover,
.woocommerce a.button.secondary:hover {
  background-color: #e07c7c;
  border-color: #e07c7c;
}

button:disabled, button:disabled[disabled],
input[type="submit"]:disabled,
input[type="submit"]:disabled[disabled],
button[type="submit"]:disabled,
button[type="submit"]:disabled[disabled],
button[type="submit"].button:disabled,
button[type="submit"].button:disabled[disabled],
a.button:disabled,
a.button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled] {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #507262;
  text-align: center;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 1px solid #507262;
}

button.light,
input[type="submit"].light,
button[type="submit"].light,
button[type="submit"].button.light,
a.button.light,
.woocommerce button.button.light,
.woocommerce a.button.light {
  background-color: #fff;
  color: #333;
  border-color: #fff;
}

button.light:hover,
input[type="submit"].light:hover,
button[type="submit"].light:hover,
button[type="submit"].button.light:hover,
a.button.light:hover,
.woocommerce button.button.light:hover,
.woocommerce a.button.light:hover {
  background-color: white;
  border-color: white;
}

button.outlined,
input[type="submit"].outlined,
button[type="submit"].outlined,
button[type="submit"].button.outlined,
a.button.outlined,
.woocommerce button.button.outlined,
.woocommerce a.button.outlined {
  background: transparent;
  border: 1px solid #333;
  color: #333;
}

button.outlined:hover,
input[type="submit"].outlined:hover,
button[type="submit"].outlined:hover,
button[type="submit"].button.outlined:hover,
a.button.outlined:hover,
.woocommerce button.button.outlined:hover,
.woocommerce a.button.outlined:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

button.outlined.cl-white,
input[type="submit"].outlined.cl-white,
button[type="submit"].outlined.cl-white,
button[type="submit"].button.outlined.cl-white,
a.button.outlined.cl-white,
.woocommerce button.button.outlined.cl-white,
.woocommerce a.button.outlined.cl-white {
  border-color: #fff;
  color: #fff;
}

button.outlined.cl-white:hover,
input[type="submit"].outlined.cl-white:hover,
button[type="submit"].outlined.cl-white:hover,
button[type="submit"].button.outlined.cl-white:hover,
a.button.outlined.cl-white:hover,
.woocommerce button.button.outlined.cl-white:hover,
.woocommerce a.button.outlined.cl-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

button.outlined.light,
input[type="submit"].outlined.light,
button[type="submit"].outlined.light,
button[type="submit"].button.outlined.light,
a.button.outlined.light,
.woocommerce button.button.outlined.light,
.woocommerce a.button.outlined.light {
  color: #fff;
  border-color: #fff;
}

button.rounded,
input[type="submit"].rounded,
button[type="submit"].rounded,
button[type="submit"].button.rounded,
a.button.rounded,
.woocommerce button.button.rounded,
.woocommerce a.button.rounded {
  border-radius: 1rem;
}

button.block,
input[type="submit"].block,
button[type="submit"].block,
button[type="submit"].button.block,
a.button.block,
.woocommerce button.button.block,
.woocommerce a.button.block {
  display: block;
}

button.compact,
input[type="submit"].compact,
button[type="submit"].compact,
button[type="submit"].button.compact,
a.button.compact,
.woocommerce button.button.compact,
.woocommerce a.button.compact {
  line-height: 1.2;
  padding: 0.75rem 2rem;
}

@media screen and (max-width: 420px) {
  button.compact,
  input[type="submit"].compact,
  button[type="submit"].compact,
  button[type="submit"].button.compact,
  a.button.compact,
  .woocommerce button.button.compact,
  .woocommerce a.button.compact {
    padding: 1rem;
    line-height: 1;
  }
}

button.with-icon,
input[type="submit"].with-icon,
button[type="submit"].with-icon,
button[type="submit"].button.with-icon,
a.button.with-icon,
.woocommerce button.button.with-icon,
.woocommerce a.button.with-icon {
  display: inline-flex;
  padding: 1rem 2rem 1rem 1rem;
}

button.with-icon img,
input[type="submit"].with-icon img,
button[type="submit"].with-icon img,
button[type="submit"].button.with-icon img,
a.button.with-icon img,
.woocommerce button.button.with-icon img,
.woocommerce a.button.with-icon img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

button.with-icon.compact,
input[type="submit"].with-icon.compact,
button[type="submit"].with-icon.compact,
button[type="submit"].button.with-icon.compact,
a.button.with-icon.compact,
.woocommerce button.button.with-icon.compact,
.woocommerce a.button.with-icon.compact {
  padding: 0.75rem 1rem 0.75rem 0.75rem;
}

.drop-down {
  display: block;
  position: relative;
}

.drop-down a.drop-down-select {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 1.5rem;
  border: 1px solid #333;
  transition: background-color .3s, border-color .3s;
  background: transparent url("../images/icons/icon-chevron-down.svg") no-repeat calc(100% - 1rem) center/16px;
}

.drop-down a.drop-down-select:hover {
  border-color: #db6767;
  background-color: rgba(0, 0, 0, 0.05);
}

.drop-down a.drop-down-option {
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: background-color .3s, border-color .3s;
}

.drop-down a.drop-down-option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.drop-down a.drop-down-option:after {
  content: "+ ADD";
  color: #db6767;
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
  padding-left: 1rem;
}

.drop-down .drop-down-options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #333;
  z-index: 1000;
  transform: translateY(-1px);
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
#image-laser-hair-removal {
  background-image: url("../images/temp-medium-2.jpg");
}

#image-skin-treatments {
  background-image: url("../images/temp-medium-3.jpg");
}

#image-meet-the-team {
  background-image: url("../images/temp-team.jpg");
}

#image-find-a-clinic {
  background-image: url("../images/temp-medium-4.jpg");
}

#image-home-hero {
  background-image: url("../images/temp-hero-1.jpg");
}

#image-concerns-hero {
  background-image: url("../images/temp-hero-2.jpg");
}

#image-treatments-hero {
  background-image: url("../images/temp-hero-3.jpg");
}

#image-clinics-hero {
  background-image: url("../images/temp-hero-4.jpg");
}

#image-prices-hero {
  background-image: url("../images/temp-prices-hero.jpg");
}

#item-1 {
  background-image: url("../images/temp-square-small.jpg");
}

/** Fonts **/
/** Dimensions **/
/** Colours **/
/** Shadows **/
