﻿@import url("https://fonts.googleapis.com/css?family=Lato:300,400");
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,700");
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* START GENERAL STYLES */
* {
  -webkit-text-size-adjust: 100%;
  outline: 0;
}

.animated {
  visibility: hidden;
}

a.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.field-validation-error {
  color: red;
  display: block;
  text-align: left;
}

.field-validation-success {
  color: green;
  display: block;
  text-align: left;
}

a:link,
a:visited {
  text-decoration: none;
  color: #a7bdea;
  transition: all 0.2s linear;
}

a:hover {
  color: #2a2d3d;
}

p,
li {
  margin: 0px 0px 20px 0px;
  font-size: 1em;
  color: #585a60;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  /*@media(max-width:$singleColumnSmall) {
      font-size: 1.3em;
  }*/
}

li {
  margin: 0 0 0 0;
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  margin: 0 0 20px 0;
  color: #a8a8a8;
  font-size: 1.5em;
  font-weight: 500;
}

h2 {
  margin: 0 0px 20px 0px;
  font-size: 1.5em;
  color: #ffffff;
  font-weight: 300;
}

h3 {
  margin: 15px 0px 20px 0px;
  font-size: 1.3em;
  font-weight: 500;
  color: rgb(184, 164, 155);
}

h4 {
  margin: 10px 0px 20px 0px;
  font-size: 1em;
  color: #ffffff;
}

ul {
  list-style: disc outside;
  padding: 0 0 20px 25px;
  margin: 0 0 0 0;
}

/*li {
    padding: 0 0 5px 0;
    font-size: 1.05em;
    line-height: 1.3em;
    color: #ffffff;
    font-family: $body_font;
}*/
strong, b, strong *, b * {
  font-weight: 500 !important;
}

em, em * {
  font-style: italic !important;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
textarea,
select {
  font-size: 1em;
  padding: 8px;
  border: 1px solid #cccccc;
  width: 100%;
  border-radius: 5px;
}
@media (max-width: 500px) {
  input[type=text],
  input[type=number],
  input[type=password],
  input[type=email],
  textarea,
  select {
    font-size: 16px;
  }
}

.field {
  display: table-row;
}
.field .label {
  font-size: 1em;
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 10px 0;
  color: rgb(184, 164, 155);
  white-space: nowrap;
}
.field .labelTop {
  vertical-align: top;
  padding-top: 3px;
}
.field .labelTopNoPadding {
  vertical-align: top;
}
.field .input,
.field .value {
  font-size: 1em;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 10px 0;
  /* This is to align checkboxes and labels */
}
.field .input input,
.field .input label,
.field .value input,
.field .value label {
  vertical-align: middle;
}
.field .inputPostcode input {
  width: 120px;
}

.inputNoLabel {
  margin: 0 0 15px 0;
}

@media (max-width: 500px) {
  .field {
    display: block;
    width: 100%;
    padding: 0 0 5px 0;
  }
  .field label,
  .field .label,
  .field .input {
    display: block;
    width: 100%;
    padding: 0 0 3px 0;
  }
  .field .input {
    padding: 0 0 4px 0;
    text-align: center;
  }
  .field .input input[type=text],
  .field .input input[type=password],
  .field .input select,
  .field .input textarea {
    width: 100%;
  }
}
input[type=submit],
button,
.submitButton {
  padding: 13px 30px;
  border: none;
  border: 1px solid #fff;
  background: #7f736e;
  color: #fff !important;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 400;
  white-space: nowrap;
  display: inline-block;
  -webkit-appearance: none;
  font-family: "Montserrat", sans-serif;
  border-radius: 20px;
  transition: all 0.2s linear;
  text-transform: uppercase;
  /*@media(max-width: $mobile) {
      padding: 6px 20px 8px 20px;
  }*/
}
input[type=submit]:hover,
button:hover,
.submitButton:hover {
  background: #999;
}

.submitButtonInverse {
  background: none;
  border: 1px solid #fff;
}

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

:-moz-placeholder { /* Firefox 18- */
  color: #999;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #999;
}

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

textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.highlightedText {
  color: #c0c0c0;
}

.clickableDiv {
  cursor: pointer;
}

.textRight {
  text-align: right !important;
}

.serviceLinks {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.serviceLinks .service {
  position: relative;
  height: 350px;
  width: 50%;
  /*   margin-right: gutter(of 12);
     margin-bottom: gutter(of 12);*/
  border-radius: 5px;
  border: 1px solid #e2e2e2;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 680px) {
  .serviceLinks .service {
    width: 100%;
    margin-right: 0;
  }
}
.serviceLinks .service:nth-child(even) {
  margin-right: 0;
}
.serviceLinks .service .serviceFooter {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 5px 5px;
}
.serviceLinks .service .serviceFooter .serviceFooterDetails {
  width: 70%;
  text-align: left;
  padding: 20px 25px;
  color: #fff;
  font-size: 0.8em;
}
@media (max-width: 900px) {
  .serviceLinks .service .serviceFooter .serviceFooterDetails {
    padding: 10px !important;
  }
}
.serviceLinks .service .serviceFooter .serviceFooterDetails h2 {
  color: #cd9a9d;
  text-transform: uppercase;
  font-size: 1.8em;
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  transition: all linear 0.2s;
}
.serviceLinks .service .serviceFooter .seeMoreLink {
  background: rgb(184, 164, 155);
  color: #fff;
  font-size: 0.8em;
  text-transform: uppercase;
  width: 30%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0 0 5px 0;
  transition: all linear 0.2s;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .serviceLinks .service .serviceFooter .seeMoreLink {
    width: 32%;
  }
}
.serviceLinks .service .serviceFooter .seeMoreLink span {
  display: flex;
  justify-content: center;
}
.serviceLinks .service .serviceFooter .seeMoreLink span i {
  font-size: 1.3em;
}
.serviceLinks .service:hover .seeMoreLink {
  background: #999;
}
.serviceLinks .service.otherServices .serviceFooter {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  align-items: center;
}
.serviceLinks .service.otherServices .serviceFooter .serviceFooterDetails {
  text-align: center;
  border-radius: 0;
}
.serviceLinks .service.otherServices .serviceFooter .seeMoreLink {
  background: none;
  justify-content: center;
  border-radius: 30px;
  padding: 10px;
  border: 1px solid #fff;
  width: auto;
}

.highslide img {
  border: 1px solid #ffffff;
}
.highslide img:hover {
  border: 1px solid #c0c0c0;
}

.showOnSingleColumn {
  display: none;
}

@media (max-width: 900px) {
  .hideOnSingleColumn {
    display: none;
  }
  .showOnSingleColumn {
    display: block;
  }
}
.contactForm {
  width: 100%;
  max-width: 350px;
  padding: 5px 0;
  text-align: left;
  margin: 0 0 0 0;
  /*@media(max-width:$singleColumn) {
      float: left;
      width: span(1 of 2);
      margin: 0 0 0 20px;
  }

  @media(max-width:$tablet) {
      float: none;
      width: 100%;
      margin: 0 auto 40px auto;
  }*/
}
.contactForm h2 {
  padding: 0 0 10px 0;
}

.testimonials .testimonial {
  margin: 0 0 40px 0;
}
.testimonials .testimonial .customer {
  margin: -15px 0 0 0;
  text-align: right;
  display: block;
  font-style: italic;
  color: rgb(184, 164, 155);
}

@media (max-width: 500px) {
  .imageLeft,
  .imageRight {
    float: none;
    margin: 0;
  }
}

.socialLink .fa {
  color: #fff;
  font-size: 1.8em;
  margin: 0 0 0 10px;
}
.socialLink .fa:hover {
  color: rgb(184, 164, 155);
}

/* END GENERAL STYLES */
/* START QTIP STYLES */
.qtip {
  max-width: 450px !important;
  line-height: normal !important;
  width: 450px !important;
  font-size: 1em;
  border-radius: 0;
}
@media (max-width: 500px) {
  .qtip {
    max-width: 350px !important;
    width: 350px !important;
  }
}
@media (max-width: 380px) {
  .qtip {
    max-width: 280px !important;
    width: 280px !important;
  }
}
.qtip .actions {
  margin: 15px 0 0 0;
  text-align: center;
}
.qtip .actions .submitButton {
  padding: 6px 20px 6px 20px;
}

.qtip-content {
  max-height: none !important;
}

.qtip-bootstrap .qtip-titlebar {
  font-size: 1em;
  line-height: 1em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.qtip-error .qtip-titlebar {
  background: #ffc1c1;
}

/* END QTIP STYLES */
/* START MAIN LAYOUT STYLES */
body {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #000000;
  margin: 0;
  padding: 0 0 0 0 !important;
  width: 100%;
  min-height: 100%;
  position: relative;
  font-weight: 400;
  /*@media(max-width:$singleColumn) {
      font-size: 0.8em;
  }*/
  /*@media(max-width:930px) {
      font-size: 0.85em;
  }

  @media(max-width:$singleColumn) {
      font-size: 0.8em;
  }*/
}
@media (max-width: 980px) {
  body {
    font-size: 0.95em;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 0.9em;
  }
}

#container {
  width: 100%;
  padding: 0 0 0 0;
  margin: 0 auto;
  position: relative;
  background: #dabbbd;
}
#container #containerBg {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("/images/backgrounds/cala-blanca-sunset.jpg") no-repeat center center fixed;
  background-color: rgb(72, 87, 118);
  background-size: cover;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 900px) {
  #container #containerBg {
    background-position-y: 60px !important;
    background-attachment: contain !important;
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
  }
}
#container #header {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 0 0 0;
  z-index: 1000;
  padding: 30px 20px 30px 20px;
  font-family: "Montserrat", sans-serif;
  background: rgb(184, 164, 155);
  /*&.small {
      padding: 15px 10px 15px 10px;

      #headerContent {
          .logo {
              width: 120px;
          }
      }
  }*/
}
@media (max-width: 900px) {
  #container #header {
    position: relative;
    background: rgb(184, 164, 155);
    padding: 20px;
  }
}
#container #header #headerContent {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
  z-index: 1000;
  align-items: center;
}
#container #header #headerContent .logo {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1000;
  transition: all linear 0.2s;
}
@media (max-width: 900px) {
  #container #header #headerContent .logo {
    width: 160px;
  }
}
#container #header #headerContent .mainMenu {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1000;
  margin: 0 auto;
}
#container #header #headerContent .headerRight {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: right;
  width: 250px;
}
@media (max-width: 900px) {
  #container #header #headerContent .headerRight {
    display: none;
  }
}
@media (max-width: 1060px) {
  #container #header #headerContent .headerRight .socialLink {
    display: none;
  }
}
#container #header #headerContent .headerRight .contactUsLink {
  display: inline-block;
  padding: 0 0 0 20px;
}
@media (max-width: 1060px) {
  #container #header #headerContent .headerRight .contactUsLink {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  #container #header #headerContent .headerRight .contactUsLink .submitButton {
    padding: 10px 18px;
  }
}
#container #header #headerContent .headerRight .break {
  width: 100%;
}
#container #header #headerContent .headerRight .telephone {
  margin: 10px 5px 0 0;
  font-size: 1.6em;
  color: #fff;
}

#horizMenu {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 0;
  z-index: 1000;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 900px) {
  #horizMenu {
    display: none;
  }
}
#horizMenu ul {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0;
  z-index: 2000;
}
#horizMenu ul li {
  position: relative;
  padding: 0 0 0 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.2s linear;
  /* Sub menu styles */
}
#horizMenu ul li a:link,
#horizMenu ul li a:visited,
#horizMenu ul li p,
#horizMenu ul li span {
  display: inline-block;
  padding: 0 15px;
  margin: 0;
  font-size: 1.2em !important;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1200px) {
  #horizMenu ul li a:link,
  #horizMenu ul li a:visited,
  #horizMenu ul li p,
  #horizMenu ul li span {
    padding: 0 7px;
  }
}
#horizMenu ul li a:link:hover,
#horizMenu ul li a:visited:hover,
#horizMenu ul li p:hover,
#horizMenu ul li span:hover {
  opacity: 0.8;
}
#horizMenu ul li:hover ul {
  display: block;
}
#horizMenu ul li p,
#horizMenu ul li span,
#horizMenu ul li a.noLink {
  cursor: default;
}
#horizMenu ul li ul {
  display: none;
  position: absolute;
  /*border-bottom: 5px solid $secondary_colour;*/
  padding: 15px 10px 5px 10px;
  text-align: left;
  left: 0;
  top: 100%;
  width: auto;
  background: #c0c0c0;
  margin: 0 0 0 0;
  min-width: 100%;
}
#horizMenu ul li ul li {
  display: block;
  clear: both;
  border-bottom: none !important;
}
#horizMenu ul li ul li a:link,
#horizMenu ul li ul li a:visited {
  display: block;
  font-size: 0.9em !important;
  border-left: none !important;
  padding: 0 5px 10px 5px;
  background: none;
  margin: 0;
  color: #ffffff !important;
}
#horizMenu ul li ul li a:link:hover,
#horizMenu ul li ul li a:visited:hover {
  color: #ccc !important;
}
#horizMenu ul li ul li.active a:link,
#horizMenu ul li ul li.active a:visited {
  /*color: $secondary_colour !important;*/
}
#horizMenu ul .bookNow {
  display: none;
}

#mobileMenu {
  display: none;
  z-index: 500;
  margin-left: auto;
}
@media (max-width: 900px) {
  #mobileMenu {
    display: block;
  }
}
#mobileMenu .burgerIcon,
#mobileMenu .closeMobileMenu {
  color: rgb(255, 255, 255);
  font-size: 3em;
}
#mobileMenu .closeMobileMenu {
  display: none;
}
#mobileMenu ul {
  padding: 0 0 0 10px;
  margin: 0;
}
#mobileMenu ul li {
  list-style: none;
  cursor: pointer;
}
#mobileMenu ul li ul {
  padding: 10px 20px 60px 20px;
  display: none;
  background: rgb(184, 164, 155);
  width: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 111px;
}
#mobileMenu ul li ul li {
  padding: 8px 0 0 0;
}
#mobileMenu ul li ul li.active a {
  color: #dadada;
}
#mobileMenu ul li ul li a,
#mobileMenu ul li ul li span {
  color: #fff;
  font-size: 18px;
  display: block;
  padding: 3px 0;
}
#mobileMenu ul li ul li a:hover,
#mobileMenu ul li ul li span:hover {
  color: #dadada;
}
#mobileMenu ul li ul li span,
#mobileMenu ul li ul li a.noLink {
  cursor: default;
}
#mobileMenu ul li ul li ul {
  padding: 0 0 0 25px;
  display: none !important;
}
#mobileMenu ul li ul li ul li a {
  color: #fff !important;
}
#mobileMenu ul li ul li ul li:hover a, #mobileMenu ul li ul li ul li.active a {
  color: #2a2d3d !important;
}
#mobileMenu ul li ul li.active ul, #mobileMenu ul li ul li.clicked ul {
  display: block !important;
}
#mobileMenu ul li ul .bookNow {
  width: 100%;
  background: #7f736e;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}
#mobileMenu ul li.active ul, #mobileMenu ul li.clicked ul {
  display: block;
}
#mobileMenu .telephone {
  position: absolute;
  right: 10px;
  top: 6px;
  color: #ffffff;
  font-size: 1.5em;
}
#mobileMenu .telephone a {
  color: #ffffff;
}

#bodyContentContainer {
  width: 100%;
  padding: 0 0 0 0;
}

.backgroundOverlay {
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.2;
}

.heading1 {
  padding: 10px 0 0 0;
}

#subFooter {
  width: 100%;
  margin: 0 0 0 0;
}
#subFooter #subFooterContent {
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
  padding: 60px 20px 80px 20px;
  display: table;
  width: 100%;
  max-width: 1250px;
}
#subFooter #subFooterContent h2 {
  color: rgb(184, 164, 155);
}
#subFooter #subFooterContent li {
  display: inline-block;
  margin: 0 15px 10px 5px;
  list-style-position: inside;
}

#footer {
  width: 100%;
  background: rgb(184, 164, 155);
  border-bottom: 3px solid rgb(184, 164, 155);
  margin: 0 0 0 0;
}
#footer a {
  color: #fff;
}
#footer #footerContent {
  /*max-width: $site_width;*/
  text-align: left;
  overflow: hidden;
  margin: 0 auto;
  padding: 35px 20px 20px 20px;
  display: table;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  #footer #footerContent .footerLogo {
    display: none;
  }
}
#footer #footerContent .footerMenu {
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  #footer #footerContent .footerMenu {
    display: none;
  }
}
#footer #footerContent .footerMenu ul {
  margin: 0 auto;
  padding: 0;
  z-index: 2000;
}
#footer #footerContent .footerMenu ul li {
  position: relative;
  padding: 0 0 0 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.2s linear;
}
#footer #footerContent .footerMenu ul li:last-child {
  display: none;
}
#footer #footerContent .footerMenu ul li a:link,
#footer #footerContent .footerMenu ul li a:visited,
#footer #footerContent .footerMenu ul li p,
#footer #footerContent .footerMenu ul li span {
  display: inline-block;
  padding: 0 15px;
  margin: 0;
  font-size: 1.2em !important;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
#footer #footerContent .footerMenu ul li a:link:hover,
#footer #footerContent .footerMenu ul li a:visited:hover,
#footer #footerContent .footerMenu ul li p:hover,
#footer #footerContent .footerMenu ul li span:hover {
  color: rgb(184, 164, 155);
}
#footer #footerContent .footerMenu ul li:hover ul {
  display: block;
}
#footer #footerContent .socialLinks {
  display: none;
}
@media (max-width: 1250px) {
  #footer #footerContent .socialLinks {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  #footer #footerContent .socialLinks {
    margin-left: 0;
    font-size: 1.5em;
  }
}
/* END MAIN LAYOUT STYLES */
/* START STANDARD PAGE STYLES */
.standardContainer {
  position: relative;
  text-align: center;
}
.standardContainer .row1 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 900px;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .standardContainer .row1 {
    background-attachment: scroll;
    height: 250px;
  }
}
.standardContainer .row1 .rowContent {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}
.standardContainer .row1 .rowContent .text {
  width: 100%;
}
.standardContainer .row1 .rowContent .text h1 {
  color: #c0c0c0;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 600;
  margin: 0 0 5px 0;
  padding: 0;
}
@media (max-width: 900px) {
  .standardContainer .row1 .rowContent .text h1 {
    font-size: 2.3em;
  }
}
@media (max-width: 500px) {
  .standardContainer .row1 .rowContent .text h1 {
    font-size: 2em;
  }
}
@media (max-width: 375px) {
  .standardContainer .row1 .rowContent .text h1 {
    font-size: 1.8em;
  }
}
.standardContainer .row1 .rowContent .text h2 {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 5px 0;
  padding: 0;
}
@media (max-width: 900px) {
  .standardContainer .row1 .rowContent .text h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 500px) {
  .standardContainer .row1 .rowContent .text h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 375px) {
  .standardContainer .row1 .rowContent .text h2 {
    font-size: 1.5em;
  }
}
.standardContainer .row1 .rowContent .text h3 {
  color: #fff;
  font-size: 1.1em;
  font-weight: 300;
  margin: 0 0 5px 0;
  padding: 0;
}
.standardContainer .row1 .rowContent .text .actionButtons {
  margin: 35px 0 0 0;
}
.standardContainer .row1 .rowContent .text .actionButtons a {
  margin: 0 5px 5px 5px;
}
.standardContainer .row2 {
  background: #fff;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
.standardContainer .row2 .rowContent {
  position: relative;
  padding: 30px;
  max-width: 1250px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1250px) {
  .standardContainer .row2 .rowContent {
    padding: 0 30px;
  }
}
@media (max-width: 900px) {
  .standardContainer .row2 .rowContent {
    padding: 0 15px;
  }
}
.standardContainer .row2 .rowContent .text {
  float: left;
  width: 100%;
  padding: 30px 0 0 0;
}
.standardContainer .row2 .rowContent .text h2 {
  color: #2a2d3d;
  padding: 0 10px;
  border-left: 5px solid rgb(184, 164, 155);
  border-right: 5px solid rgb(184, 164, 155);
  display: inline-block;
  font-weight: 600;
  font-size: 1.2em;
  margin: 0 0 20px 0;
}

/* END STANDARD PAGE STYLES */
/* START SERVICE STYLES */
.serviceContainer .backgroundOverlay,
.testimonialsContainer .backgroundOverlay,
.contactContainer .backgroundOverlay {
  opacity: 0.5;
}
.serviceContainer .row1,
.testimonialsContainer .row1,
.contactContainer .row1 {
  height: 700px;
}
@media (max-width: 900px) {
  .serviceContainer .row1,
  .testimonialsContainer .row1,
  .contactContainer .row1 {
    height: 245px;
  }
}
.serviceContainer .row1 .rowContent .text,
.testimonialsContainer .row1 .rowContent .text,
.contactContainer .row1 .rowContent .text {
  color: #fff;
}
.serviceContainer .row2 .rowContent .text,
.testimonialsContainer .row2 .rowContent .text,
.contactContainer .row2 .rowContent .text {
  width: 65%;
  margin-right: 20px;
  text-align: left;
}
@media (max-width: 900px) {
  .serviceContainer .row2 .rowContent .text,
  .testimonialsContainer .row2 .rowContent .text,
  .contactContainer .row2 .rowContent .text {
    width: 100%;
    margin-right: 0;
  }
}
.serviceContainer .row2 .rowContent .text h2,
.testimonialsContainer .row2 .rowContent .text h2,
.contactContainer .row2 .rowContent .text h2 {
  border: none;
  padding: 0;
}
.serviceContainer .row2 .rowContent .sidebar,
.testimonialsContainer .row2 .rowContent .sidebar,
.contactContainer .row2 .rowContent .sidebar {
  float: right;
  width: 30%;
  margin: 30px 0 0 0;
}
@media (max-width: 900px) {
  .serviceContainer .row2 .rowContent .sidebar,
  .testimonialsContainer .row2 .rowContent .sidebar,
  .contactContainer .row2 .rowContent .sidebar {
    width: 100%;
    margin: 80px 0 0 0;
  }
}
.serviceContainer .row2 .rowContent .sidebar h2,
.testimonialsContainer .row2 .rowContent .sidebar h2,
.contactContainer .row2 .rowContent .sidebar h2 {
  color: rgb(184, 164, 155);
}
.serviceContainer .row2 .rowContent .sidebar .serviceLinks .service,
.testimonialsContainer .row2 .rowContent .sidebar .serviceLinks .service,
.contactContainer .row2 .rowContent .sidebar .serviceLinks .service {
  height: 330px;
  width: 100%;
  margin: 0 0 20px 0;
}
.serviceContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter,
.testimonialsContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter,
.contactContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter {
  background: rgba(0, 0, 0, 0.6);
}
.serviceContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter h2,
.testimonialsContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter h2,
.contactContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter h2 {
  color: #cd9a9d;
}
.serviceContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter .serviceFooterDetails,
.testimonialsContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter .serviceFooterDetails,
.contactContainer .row2 .rowContent .sidebar .serviceLinks .service .serviceFooter .serviceFooterDetails {
  padding: 20px 20px;
}
.serviceContainer .treatments,
.testimonialsContainer .treatments,
.contactContainer .treatments {
  float: left;
  width: 100%;
  margin: 10px 0 0 0;
  color: #3e3e3e;
}
.serviceContainer .treatments h4,
.testimonialsContainer .treatments h4,
.contactContainer .treatments h4 {
  margin: 35px 0px 20px 0px;
  font-size: 1.1em;
  color: rgb(184, 164, 155);
}
.serviceContainer .treatments .sectionDescription,
.testimonialsContainer .treatments .sectionDescription,
.contactContainer .treatments .sectionDescription {
  font-size: 0.9em;
  padding: 0px 0 15px 0;
  margin: -15px 0 0 0;
}
.serviceContainer .treatments .sectionDescription p,
.testimonialsContainer .treatments .sectionDescription p,
.contactContainer .treatments .sectionDescription p {
  padding: 0;
  margin: 0;
}
.serviceContainer .treatments .treatment,
.testimonialsContainer .treatments .treatment,
.contactContainer .treatments .treatment {
  margin: 0 0 35px 0;
}
.serviceContainer .treatments .treatment .header,
.testimonialsContainer .treatments .treatment .header,
.contactContainer .treatments .treatment .header {
  display: flex;
  justify-content: space-between;
}
.serviceContainer .treatments .treatment .header .name,
.testimonialsContainer .treatments .treatment .header .name,
.contactContainer .treatments .treatment .header .name {
  font-weight: 500;
  font-size: 1.1em;
}
.serviceContainer .treatments .treatment .header .dots,
.testimonialsContainer .treatments .treatment .header .dots,
.contactContainer .treatments .treatment .header .dots {
  flex: 1;
  background-image: radial-gradient(circle closest-side, #b3b3b3 99%, rgba(0, 0, 0, 0) 1%);
  background-position: center 12px;
  background-repeat: repeat-x;
  background-size: 6px 2px;
  margin: 0 5px;
  padding: 0 15px;
}
.serviceContainer .treatments .treatment .header .price,
.testimonialsContainer .treatments .treatment .header .price,
.contactContainer .treatments .treatment .header .price {
  font-weight: 500;
}
.serviceContainer .treatments .treatment .description,
.testimonialsContainer .treatments .treatment .description,
.contactContainer .treatments .treatment .description {
  font-size: 0.9em;
  padding: 5px 0 0 0;
}
.serviceContainer .treatments .treatment .description p,
.testimonialsContainer .treatments .treatment .description p,
.contactContainer .treatments .treatment .description p {
  padding: 0;
  margin: 0 0 10px 0;
}
.serviceContainer .treatments .treatment .description p:last-child,
.testimonialsContainer .treatments .treatment .description p:last-child,
.contactContainer .treatments .treatment .description p:last-child {
  margin: 0;
}
.serviceContainer .bookNowButton,
.testimonialsContainer .bookNowButton,
.contactContainer .bookNowButton {
  float: left;
  width: 100%;
  text-align: center;
  margin: 15px 0 0 0;
}

/* END SERVICE STYLES */
/* START CLIENTS STYLES */
.clientsContainer .clientLogos .logo {
  float: left;
  margin: 0 0 80px 0;
  width: 33%;
  text-align: center;
  height: 180px;
}
@media (max-width: 900px) {
  .clientsContainer .clientLogos .logo {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .clientsContainer .clientLogos .logo {
    width: 100%;
    height: auto;
    margin: 10px 0 40px 0;
  }
}
.clientsContainer .clientLogos .logo img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .clientsContainer .clientLogos .logo img {
    top: auto;
    transform: none;
  }
}

/* END CLIENTS STYLES */
/* START TESTIMONIALS STYLES */
.testimonialsContainer .row1 .rowContent .testimonials .testimonial {
  margin: 0 0 100px 0;
}
.testimonialsContainer .row1 .rowContent .testimonials .testimonial img {
  margin: 0 0 10px 0;
}
.testimonialsContainer .row1 .rowContent .testimonials .testimonial p {
  margin: 0;
  font-size: 1.3em;
  color: #000;
}
.testimonialsContainer .row1 .rowContent .testimonials .testimonial .author {
  font-weight: 500;
  font-style: italic;
}

/* END TESTIMONIALS STYLES */
/* START CONTACT STYLES */
.contactContainer .telephone,
.contactContainer .email {
  margin: 0 0 1em 0;
  font-size: 3em;
  font-weight: 300;
  color: rgb(184, 164, 155);
}
@media (max-width: 500px) {
  .contactContainer .email {
    font-size: 1.6em;
    word-wrap: break-word;
  }
}

/* END CONTACT STYLES */
.contactUsForQuote {
  display: table;
  margin: 0 auto -50px auto;
  text-align: center;
}
@media (max-width: 600px) {
  .contactUsForQuote {
    margin-bottom: -25px;
  }
}
.contactUsForQuote a {
  background: #5a5a5a;
  font-size: 1.6em;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  color: #fff;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .contactUsForQuote a {
    width: 160px;
    height: 160px;
  }
}
.contactUsForQuote a strong {
  font-weight: 700 !important;
}

/* START GALLERY STYLES */
.lightboxgallery-modal-wrapper {
  background: rgba(0, 0, 0, 0.95) !important;
}

.lightboxgallery-gallery {
  display: block;
  margin: 0 -10px;
}

.lightboxgallery-gallery-item {
  cursor: zoom-in;
  display: block;
  float: left;
  width: 33.3333%;
}
@media (max-width: 600px) {
  .lightboxgallery-gallery-item {
    width: 50%;
  }
}
.lightboxgallery-gallery-item img {
  width: 100%;
  display: block;
}
.lightboxgallery-gallery-item > div {
  position: relative;
  margin: 10px;
}
.lightboxgallery-gallery-item > div:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}
.lightboxgallery-gallery-item:hover > div:after {
  opacity: 1;
}

.lightboxgallery-gallery-item-content {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

.lightboxgallery-gallery-item:hover .lightboxgallery-gallery-item-content {
  opacity: 1;
}

.lightboxgallery-gallery-item-title {
  display: block;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.lightboxgallery-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightboxgallery-modal {
  transform: none !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
@media (max-width: 900px) {
  .lightboxgallery-modal {
    width: 100% !important;
  }
}

.lightboxgallery-next,
.lightboxgallery-prev {
  z-index: 2000;
}
@media (max-width: 900px) {
  .lightboxgallery-next,
  .lightboxgallery-prev {
    opacity: 1 !important;
    width: 25px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: auto !important;
    padding: 15px 0 5px 0 !important;
  }
}

@media (max-width: 900px) {
  .lightboxgallery-prev {
    left: -10px !important;
    width: 40px !important;
  }
}

.lightboxgallery-close {
  z-index: 2100 !important;
  font-size: 35px !important;
  font-weight: normal !important;
}
@media (max-width: 900px) {
  .lightboxgallery-close {
    padding: 0 10px 0 0 !important;
  }
}

/* END GALLERY STYLES */
#bodyContentContainer,
.accreditationsContainer,
#footer {
  display: none;
}
