:root {
  --black: #3D3D3D;
  --charcoal: #1c1c1c;
  --white: #fff;
  --red: #772332;
  --green: #184735;
  --light-green: #54826f;
  --dark-green: #0b2118;
  --grey: #808080;
  --grey1: #f2f2f2;
  --grey2: #eaeae5;
  --grey3: #f2f2f2;
  --text-grey: #52524A;
  --blue: #213F8F;
  --aqua-blue: #27B1DF;
  --pale-blue: #EDF8FD;
  --faded-blue: #DDF6FF;
  --orange: #FBB03B;
  --pale-orange: #FFF8EE;
}

@keyframes kenburnes {
  from {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  to {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}
@keyframes fadeInOut {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    margin-bottom: 0;
    height: 0;
  }
}
@keyframes slideInOut {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    width: 9rem;
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .carousel-item.active .kenburn {
    animation: 5s ease-in-out kenburnes;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
}

.hide {
  display: none !important;
}

/*
# ----------------------------------------------------------------
#			HTML
# ----------------------------------------------------------------
*/
html, body {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  width: 100vw !important;
  overflow-x: hidden;
}
@media (min-width: 1400px) {
  html, body {
    overflow-x: inherit;
  }
}

h1, h2, h3, h4, h5, h6, h7, ul, ol, li, p {
  margin: 0;
  padding: 0;
}

a {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

.larger {
  font-size: 1.2em;
}

.page-content h2 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  padding: 0 0 2rem 0;
  font-size: 2rem;
  margin: 0;
}
.page-content h3 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  padding: 0 0 1.5rem 0;
  font-size: 1.5rem;
  margin: 0;
}
.page-content p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: var(--text-grey);
  margin: 0 0 1.5rem 0;
}
.page-content ul {
  list-style-type: none;
  padding: 0 30px 2rem 30px;
}
.page-content ul li {
  font-size: 1.1rem;
  position: relative;
  padding: 0 0 0 1.2rem;
}
.page-content ul li:before {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 0.9rem;
}
@media (min-width: 992px) {
  .page-content ul {
    margin: 0;
    padding: 0 0 2rem 0;
  }
}
.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1200px) {
  .page-content h2 {
    font-size: 3rem;
  }
  .page-content h3 {
    font-size: 2rem;
  }
  .page-content p {
    font-size: 1.1rem;
  }
}

.new-section {
  padding-top: 3rem !important;
}

.bg-pale-blue {
  background: var(--pale-blue);
}

.overlay {
  display: block;
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 590;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  z-index: 590;
}

.back-to-top {
  position: fixed;
  display: block;
  right: 30px;
  bottom: 30px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  font-size: 2rem;
  z-index: 100;
  padding: 10px;
  border: solid 1px red;
  display: none;
}
@media (min-width: 992px) {
  .back-to-top {
    display: none;
  }
}

.scrolled .back-to-top {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  pointer-events: auto;
}

/*
# ----------------------------------------------------------------
#			REUSABLE
# ----------------------------------------------------------------
*/
.btn {
  background: var(--blue);
  padding: 8px 30px;
  border-radius: 30px;
  color: var(--white);
  cursor: pointer;
}
.btn.btn-open {
  border: solid 2px var(--blue);
  background: transparent;
  color: var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.2rem;
}
.btn.btn-open:hover {
  background: var(--blue);
  color: var(--white);
}

.logo {
  /* a */
  display: block;
  position: relative;
  background: url("/site/img/morvan-logo-02.svg");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 50px;
}
.logo span {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

.logos img {
  max-height: 100px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1400px) {
  .logos {
    max-width: 70%;
    margin: 0 auto;
  }
  .logos .col-lg {
    @inlude display-flex: @include align-items(center);
    height: 100% !important;
    background: red;
    flex: 1;
  }
}

.nav-opener {
  display: block;
  width: 30px;
  height: 30px;
  position: fixed;
  overflow: hidden;
  right: 30px;
  top: 40px;
  z-index: 210;
}
.nav-opener span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--blue);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav-opener span:nth-child(1) {
  top: 0;
  left: 0;
}
.nav-opener span:nth-child(2) {
  top: 10px;
  left: 0;
}
.nav-opener span:nth-child(3) {
  top: 19px;
  left: 0;
}
.nav-opener.toggled span:nth-child(1) {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 15px;
}
.nav-opener.toggled span:nth-child(2) {
  left: -100%;
}
.nav-opener.toggled span:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
}
@media (min-width: 1200px) {
  .nav-opener {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
  }
}

.scrolled .nav-opener span {
  background: var(--blue);
}

.editBtn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  position: absolute !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  z-index: 550;
}
.editBtn a {
  color: var(--yellow) !important;
}
.editBtn:hover {
  color: var(--yellow) !important;
}

div:hover > .editBtn {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
div:hover > .editBtn a {
  color: var(--yellow) !important;
}

.large-text {
  font-size: 20px;
}

.title {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  font-size: 2rem;
}
@media (min-width: 1400px) {
  .title {
    font-size: 2.5rem;
  }
}

.centred {
  text-align: center;
}

/*
# ----------------------------------------------------------------
#			TARGETTED
# ----------------------------------------------------------------
*/
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}
.header {
  position: relative;
}
.header .container .logo-container h1, .header .container .logo-container .mobile-logo {
  padding: 15px 0;
}
.header .container .logo-container h1 .logo, .header .container .logo-container .mobile-logo .logo {
  height: 80px;
  background-image: url("/site/img/morvan-logo-02.svg") !important;
}
.header .container .logo-container h2 {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 1.7rem;
}
.header .container .logo-container h1 {
  display: none;
}
.header .container .nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .container .nav-menu .mobile-logo {
  border-bottom: solid 1px #ccc;
  padding: 15px;
}
.header .container .nav-menu .mobile-logo .logo {
  height: 80px;
  background-image: url("/site/img/morvan-logo-02.svg") !important;
}
.header .container .nav-menu .top-teaser-block {
  padding: 30px 20px;
  display: none;
}
.header .container .nav-menu .top-teaser-block span {
  display: none;
}
.header .container .nav-menu .top-teaser-block .btn {
  margin: 0 auto;
  display: block;
  color: var(--white);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}
.header .container .nav-menu .menu-default-holder > ul {
  position: relative;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .container .nav-menu .menu-default-holder > ul li {
  display: block;
}
.header .container .nav-menu .menu-default-holder > ul li > a {
  display: block;
  border-bottom: solid 1px #ccc;
  color: var(--blue);
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
}
.header .container .nav-menu .menu-default-holder > ul li > a span {
  flex: 1;
  padding: 20px;
}
.header .container .nav-menu .menu-default-holder > ul li > a > .fa-angle-down {
  float: right;
  display: inline-block;
  flex: 0;
  width: 10%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.header .container .nav-menu .menu-default-holder > ul li > a > .fa-angle-down:before {
  content: '\f105';
}
.header .container .nav-menu .menu-default-holder > ul li.active > a span, .header .container .nav-menu .menu-default-holder > ul li.active-child > a span {
  background: var(--blue);
  color: var(--white);
}
.header .container .nav-menu .menu-default-holder > ul li > ul, .header .container .nav-menu .menu-default-holder > ul li .drop-down, .header .container .nav-menu .menu-default-holder > ul li > .mobile-sub-nav {
  display: none;
}
.header .container .nav-menu .menu-default-holder > ul li.current-active > ul, .header .container .nav-menu .menu-default-holder > ul li.current-active > .drop-down, .header .container .nav-menu .menu-default-holder > ul li.current-active > .drop-down > ul, .header .container .nav-menu .menu-default-holder > ul li.current-active > .drop-down > .mobile-sub-nav, .header .container .nav-menu .menu-default-holder > ul li.current-active > .mobile-sub-nav {
  display: block;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  z-index: 220;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down .mobile-section-return {
  display: block;
  border-bottom: solid 1px #ccc;
  color: var(--blue);
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down .mobile-section-return span {
  flex: 1;
  padding: 20px;
  flex: 1;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down .mobile-section-return > .fa-angle-left {
  float: right;
  display: inline-block;
  flex: 0;
  width: 10%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li a {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li a span {
  padding-left: 15%;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li > .mobile-sub-nav {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  z-index: 220;
}
.header .container .nav-menu .menu-default-holder > ul > li .drop-down > ul > li > .mobile-sub-nav {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  z-index: 220;
}
.header .container .nav-menu .menu-default-holder > ul.show-level-1 {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.header .container .nav-menu .menu-default-holder > ul.show-level-1 > li > a > .fa-angle-down:before {
  content: '\f104';
}
.header .container .nav-menu .menu-default-holder > ul.show-level-2 {
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}
.header .container .nav-menu .menu-default-holder > ul.show-level-2 > li > a > .fa-angle-down:before {
  content: '\f104';
}
.header .container .nav-menu .menu-default-holder > ul.show-level-3 {
  -moz-transform: translateX(-300%);
  -ms-transform: translateX(-300%);
  -webkit-transform: translateX(-300%);
  transform: translateX(-300%);
}
.header .container .nav-menu .menu-default-holder > ul.show-level-3 > li > a > .fa-angle-down:before {
  content: '\f104';
}
.header .container .nav-menu .menu-default-holder > ul.show-level-4 {
  -moz-transform: translateX(-400%);
  -ms-transform: translateX(-400%);
  -webkit-transform: translateX(-400%);
  transform: translateX(-400%);
}
.header .container .nav-menu .menu-default-holder > ul.show-level-4 > li > a > .fa-angle-down:before {
  content: '\f104';
}
.header .container .nav-menu .menu-default-holder > ul > li:last-child {
  padding: 20px;
  text-align: center;
}
.header .container .nav-menu .menu-default-holder > ul > li:last-child > a {
  background: var(--blue);
  padding: 8px 30px;
  border-radius: 30px;
  color: var(--white);
  padding: 12px 30px !important;
  height: auto;
  display: block;
}
.header .container .nav-menu .menu-default-holder > ul .drop-down > .mobile-sub-nav > ul > li .mobile-sub-nav li:last-child {
  display: none !important;
}
@media (min-width: 1200px) {
  .header {
    position: sticky;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    border-bottom: solid 1px var(--grey1);
  }
  .header .container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .container .logo-container {
    width: 200px;
  }
  .header .container .logo-container h1 {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }
  .header .container .logo-container h1 a.logo {
    height: 140px;
  }
  .header .container .logo-container .mobile-logo {
    display: none;
  }
  .header .container .nav-menu {
    position: inherit;
    left: inherit;
    top: inherit;
    width: inherit;
    height: inherit;
    background: inherit;
    z-index: inherit;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    text-align: right;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    pointer-events: auto;
  }
  .header .container .nav-menu .mobile-logo {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .header .container .nav-menu .top-teaser-block {
    color: var(--aqua-blue);
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 10px;
    order: 1;
    padding: inherit;
    display: block;
  }
  .header .container .nav-menu .top-teaser-block span {
    display: inline;
  }
  .header .container .nav-menu .top-teaser-block a {
    color: var(--aqua-blue);
  }
  .header .container .nav-menu .top-teaser-block .btn {
    margin-left: 15px;
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    display: inline-block;
    color: var(--white);
  }
  .header .container .nav-menu .menu-default-holder {
    order: 2;
  }
  .header .container .nav-menu .menu-default-holder > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  .header .container .nav-menu .menu-default-holder > ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .header .container .nav-menu .menu-default-holder > ul li a {
    display: block;
    padding: 5px;
    margin: 0 10px 0 0;
  }
  .header .container .nav-menu .menu-default-holder > ul li {
    position: relative;
  }
  .header .container .nav-menu .menu-default-holder > ul li > a {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.3rem;
    font-size: 18px;
    padding: inherit;
    border-bottom: none;
    display: inline-block;
    position: relative;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  .header .container .nav-menu .menu-default-holder > ul li > a {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .header .container .nav-menu .menu-default-holder > ul li > a span {
    padding: inherit;
    color: inherit;
    background: none !important;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .container .nav-menu .menu-default-holder > ul li > a .fa-angle-down {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .header .container .nav-menu .menu-default-holder > ul li:hover > a span, .header .container .nav-menu .menu-default-holder > ul li.active > a span, .header .container .nav-menu .menu-default-holder > ul li.active-child > a span {
    color: var(--blue);
  }
  .header .container .nav-menu .menu-default-holder > ul li .mobile-sub-nav {
    position: inherit;
    left: inherit;
    top: inherit;
    width: auto;
    height: inherit;
  }
  .header .container .nav-menu .menu-default-holder > ul > li {
    margin-left: 20px;
    /*&:first-child {
    	@include hide;
    }*/
  }
  .header .container .nav-menu .menu-default-holder > ul > li > a {
    color: var(--blue);
  }
  .header .container .nav-menu .menu-default-holder > ul > li > a:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--aqua-blue);
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    text-align: left;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
    left: inherit;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: inherit;
    display: block;
    margin-top: 3px;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down .mobile-sub-nav {
    position: relative;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down .mobile-section-return {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down ul {
    padding-left: inherit;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li {
    display: block;
    margin: 0;
    padding: 1rem 0 0 0;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li a {
    color: var(--black);
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li a span {
    margin: 0;
    padding: 0;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down ul li:nth-child(1) {
    padding: 0;
  }
  .header .container .nav-menu .menu-default-holder > ul > li .drop-down > .mobile-sub-nav > ul > li > .mobile-sub-nav > ul > li:last-child {
    display: block !important;
    background: red;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:hover > a:after, .header .container .nav-menu .menu-default-holder > ul > li.active > a:after, .header .container .nav-menu .menu-default-holder > ul > li.active-child > a:after {
    left: 0 !important;
    right: 0 !important;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:hover .drop-down {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    pointer-events: auto;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child {
    padding: inherit;
    text-align: auto;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    width: 0;
    margin-left: 0;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child > a {
    background: var(--blue);
    padding: 8px 30px;
    border-radius: 30px;
    color: var(--white);
    padding: 8px 10px !important;
    height: auto;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child > a span {
    color: var(--white) !important;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child > a:after {
    display: none;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child:hover > a {
    color: var(--white) !important;
  }
  .header .container .nav-menu .menu-default-holder > ul > li:last-child:hover > a span {
    color: red !important;
  }
}

@media (min-width: 1400px) {
  .is-hotel .header .container .logo-container {
    width: auto;
    padding: 20px 0;
  }
  .is-hotel .header .container .logo-container h2 {
    display: block;
    position: relative;
    width: inherit;
    height: inherit;
    overflow: auto;
    left: inherit;
    color: var(--blue);
    padding-bottom: 0.5rem;
  }
  .is-hotel .header .container .logo-container h2 a {
    color: var(--blue);
  }
  .is-hotel .header .container .logo-container h1 a {
    height: 60px;
  }
  .is-hotel .menu-default-holder > ul > li {
    display: none !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child {
    display: block !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child > a > span {
    display: none;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    pointer-events: auto;
    position: relative !important;
    width: 100% !important;
    padding: 0 !important;
    opacity: 1 !important;
    background: none !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down a, .is-hotel .menu-default-holder > ul > li:first-child .drop-down a span {
    /*color: var(--white); */
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > a {
    display: none;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > ul > li > a {
    background: red;
    display: none !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > ul > li > .mobile-sub-nav > ul > li > a:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--aqua-blue);
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > ul > li > .mobile-sub-nav > ul > li:hover > a:after {
    left: 0;
    right: 0;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > ul > li > .mobile-sub-nav > ul > li.active > a:after, .is-hotel .menu-default-holder > ul > li:first-child .drop-down > .mobile-sub-nav > ul > li > .mobile-sub-nav > ul > li.active-child > a:after {
    left: 0;
    right: 0;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li {
    padding: 0;
    display: none;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li > a {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.3rem;
    font-size: 20px;
    padding: inherit;
    border-bottom: none;
    display: inline-block;
    position: relative;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child {
    display: block;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > a, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > a {
    /*display: none; */
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav {
    display: -webkit-flex;
    display: flex;
    position: relative !important;
    left: inherit !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li {
    display: block !important;
    padding: 0 10px;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:nth-last-child(2), .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:nth-last-child(2) {
    display: none !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child {
    display: block !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child {
    padding: inherit;
    text-align: auto;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    width: 0;
    margin-left: 0;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child > a, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child > a {
    background: var(--blue);
    padding: 8px 30px;
    border-radius: 30px;
    color: var(--white);
    padding: 8px 10px !important;
    height: auto;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child > a span, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child > a span {
    color: var(--white) !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child > a:after, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child > a:after {
    display: none;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child:hover > a, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child:hover > a {
    color: var(--white) !important;
  }
  .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active > .mobile-sub-nav > ul > li:last-child:last-child:hover > a span, .is-hotel .menu-default-holder > ul > li:first-child .drop-down .mobile-sub-nav > ul > li.active-child > .mobile-sub-nav > ul > li:last-child:last-child:hover > a span {
    color: red !important;
  }
  .is-hotel.is-hotel-monterey-hotel .header .container .logo-container {
    width: auto;
    padding: 20px 0;
  }
  .is-hotel.is-hotel-monterey-hotel .header .container .logo-container h2 {
    display: block;
    position: relative;
    width: inherit;
    height: inherit;
    overflow: auto;
    left: inherit;
    color: var(--blue);
    padding-bottom: 0.5rem;
  }
  .is-hotel.is-hotel-monterey-hotel .header .container .logo-container h1 .logo {
    background-image: url("/site/img/sure-hotel-logo.jpg") !important;
    height: 40px;
    min-height: 40px;
  }
  .is-hotel.is-hotel-royal-hotel .header .container .logo-container {
    width: auto;
    padding: 20px 0;
  }
  .is-hotel.is-hotel-royal-hotel .header .container .logo-container h2 {
    display: block;
    position: relative;
    width: inherit;
    height: inherit;
    overflow: auto;
    left: inherit;
    color: var(--blue);
    padding-bottom: 0.5rem;
  }
  .is-hotel.is-hotel-royal-hotel .header .container .logo-container h1 .logo {
    background-image: url("/site/img/bw-logo.png") !important;
    height: 40px;
    min-height: 40px;
    width: auto;
  }
}
@media (min-width: 1400px) {
  .is-hotel.scrolled .header {
    top: 2.2rem;
  }
  .is-hotel.scrolled .header .container .logo-container h2 {
    padding-bottom: 0;
  }
  .is-hotel.scrolled .header .container .logo-container h1 {
    display: none;
  }
}

.mobile-visible .header .container .nav-menu {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1200px) {
  .has-hero .header {
    position: fixed;
    border-bottom: none;
  }
  .has-hero .header .container .logo-container h1 a.logo {
    background-image: url("/site/img/morvan-logo-02.white.svg") !important;
  }
  .has-hero .header .container .nav-menu .menu-default-holder > ul > li > a {
    color: var(--white);
  }
  .has-hero .header .container .nav-menu .menu-default-holder > ul > li > a span {
    color: var(--white);
  }
  .has-hero .header .container .nav-menu .menu-default-holder > ul > li:hover > a span, .has-hero .header .container .nav-menu .menu-default-holder > ul > li.active > a span, .has-hero .header .container .nav-menu .menu-default-holder > ul > li.active-child > a span {
    color: var(--white);
  }
  .has-hero .header .container .nav-menu .top-teaser-block {
    color: var(--white);
  }
}

@media (min-width: 1200px) {
  .scrolled .header {
    background: var(--white);
  }
  .scrolled .header .container .nav-menu .top-teaser-block {
    color: var(--black);
    animation: 0.1s ease-in-out fadeInOut;
    animation-fill-mode: forwards;
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul li a, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active a, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active-child a {
    color: var(--black);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul li a span, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active a span, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active-child a span {
    color: var(--black);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul li:hover a span, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active:hover a span, .scrolled .header .container .nav-menu .menu-default-holder > ul li.active-child:hover a span {
    color: var(--black) !important;
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul > li:last-child > a span {
    color: var(--white);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul > li:last-child {
    animation: 0.7s ease-in-out slideInOut;
    animation-fill-mode: forwards;
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul > li:last-child:hover > a {
    background: var(--aqua-blue);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul > li:last-child:hover > a span {
    color: var(--white) !important;
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul .drop-down .mobile-nav-holder ul > li:last-child > a span {
    color: var(--white);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul .drop-down .mobile-nav-holder ul > li:last-child {
    animation: 0.7s ease-in-out slideInOut;
    animation-fill-mode: forwards;
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul .drop-down .mobile-nav-holder ul > li:last-child:hover > a {
    background: var(--aqua-blue);
  }
  .scrolled .header .container .nav-menu .menu-default-holder > ul .drop-down .mobile-nav-holder ul > li:last-child:hover > a span {
    color: var(--white) !important;
  }
  .scrolled .header .container .logo-container h1 a.logo {
    background-image: url("/site/img/morvan-logo-02.svg") !important;
    height: 70px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .scrolled .header .container .logo-container.hotel-logo-monterey-hotel h1 a.logo {
    background-image: url("/site/img/monterey-logo.svg");
  }
}

.demo-page-content {
  min-height: 200vh;
}

.hero-legacy {
  min-height: 50vw;
  overflow: hidden;
  /*
  # ---------------------------------------------------------------------
  # NEW BOOKING WIDGET PLACEMENT
  # ---------------------------------------------------------------------
  */
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-image {
  position: relative;
  height: 50vh;
  min-height: 500px;
  overflow: hidden;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-image:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45);
  opacity: 0.45;
  /*background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5C5C5 100%); */
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  z-index: 90;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-image:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45);
  opacity: 0.45;
  /*background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5C5C5 100%); */
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  z-index: 90;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container > div .container {
  padding: 0;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container > div .container .hero-content {
  text-align: center;
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50vh;
  z-index: 125;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding: 30px;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container > div .container .hero-content h2 {
  font-size: 2rem;
  text-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  color: var(--white);
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container > div .container .hero-content p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3rem;
}
.hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-content-container > div .container .booking-block {
  padding: 0;
  color: var(--blue);
  position: relative;
  height: auto;
}
@media (min-width: 992px) {
  .hero-legacy .hero-content {
    padding: 0 15% 100px 15% !important;
  }
}
@media (min-width: 1400px) {
  .hero-legacy {
    height: 50vw;
    min-height: inherit;
    position: relative;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-item .hero-image {
    position: relative;
    height: 50vh;
    min-height: 50vw;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: stretch;
    padding: 0 0 30px 0;
    z-index: 91;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div {
    width: 100%;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    padding: 0 50px !important;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content {
    order: 2;
    padding: 50px 30px !important;
    position: relative !important;
    height: inherit !important;
    z-index: inherit;
    display: block !important;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content h2 {
    font-size: 2rem !important;
    text-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content p {
    font-size: 1.1rem !important;
    line-height: 1.6rem !important;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .booking-block {
    order: 1;
    padding-top: 0 !important;
    z-index: 130;
  }
}
@media (min-width: 1400px) {
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content {
    padding: 50px 100px 220px 100px !important;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content h2 {
    font-size: 3rem !important;
  }
  .hero-legacy .carousel .carousel-inner .carousel-item .hero-content-container > div .container .hero-content p {
    font-size: 1.4rem !important;
    line-height: 2rem !important;
  }
}
.hero-legacy.hero-small {
  min-height: 20vw;
}
@media (min-width: 1400px) {
  .hero-legacy.hero-small {
    height: 20vw;
  }
}
.hero-legacy.hero-medium {
  min-height: 40vw;
}
@media (min-width: 1400px) {
  .hero-legacy.hero-medium {
    height: 40vw;
  }
}
@media (min-width: 1400px) {
  .hero-legacy .booking-block {
    position: absolute !important;
    bottom: 80px;
    left: 0;
    width: 100%;
  }
}

.hero {
  /*
  # ---------------------------------------------------------------------
  # HERO REDONE
  # ---------------------------------------------------------------------
  */
  position: relative;
}
.hero .hero-item {
  overflow: hidden;
  height: 60vh;
}
.hero .hero-item .hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero .hero-item .hero-image picture, .hero .hero-item .hero-image img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  max-width: 100%;
  object-position: center center;
}
.hero .hero-item .hero-image:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=55);
  opacity: 0.55;
  /*background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5C5C5 100%); */
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65%;
  z-index: 10;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero .hero-item .hero-content-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  z-index: 30;
  padding: 0 10px 20px 10px;
}
.hero .hero-item .hero-content-container h2, .hero .hero-item .hero-content-container p, .hero .hero-item .hero-content-container a {
  color: var(--white);
}
.hero .hero-item .hero-content-container h2 {
  font-size: 1.8rem;
  padding: 0 0 5px 0;
}
.hero .hero-item .hero-content-container p {
  font-size: 1rem;
  line-height: 140%;
}
@media (min-width: 768px) {
  .hero .hero-item {
    height: 70vw;
  }
  .hero .hero-item .hero-content-container {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 0 20px 50px 20px;
  }
  .hero .hero-item .hero-content-container h2 {
    font-size: 2rem;
    padding: 0 0 10px 0;
  }
  .hero .hero-item .hero-content-container p {
    font-size: 1.3rem;
    line-height: 140%;
  }
}
@media (min-width: 992px) {
  .hero .hero-item {
    height: 70vw;
  }
  .hero .hero-item .hero-content-container {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 0 20px 50px 20px;
  }
  .hero .hero-item .hero-content-container h2 {
    font-size: 2rem;
    padding: 0 0 10px 0;
  }
  .hero .hero-item .hero-content-container p {
    font-size: 1.3rem;
    line-height: 140%;
  }
}
@media (min-width: 1200px) {
  .hero {
    height: 50vw;
  }
  .hero .hero-item {
    height: inherit;
  }
  .hero .hero-item .hero-image:before {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45);
    opacity: 0.45;
    /*background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5C5C5 100%); */
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 45%;
    z-index: 10;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
    background-image: -moz-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    background-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
    pointer-events: none;
    background-color: transparent;
  }
  .hero .hero-item .hero-image:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=55);
    opacity: 0.55;
    /*background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #C5C5C5 100%); */
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    z-index: 10;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
    background-image: -moz-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
    background-image: -webkit-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
    pointer-events: none;
  }
  .hero .hero-item .hero-content-container {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 50px 100px 180px 100px;
  }
  .hero .hero-item .hero-content-container h2 {
    font-size: 3rem;
  }
  .hero .hero-item .hero-content-container p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1400px) {
  .hero .hero-item .hero-content-container {
    padding: 50px 180px 220px 180px;
  }
}
.hero .booking-block .booking-bar-teaser {
  text-align: center;
  padding: 10px;
  color: var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  background: var(--faded-blue);
  margin: 10px 0;
}
@media (min-width: 1200px) {
  .hero .booking-block .booking-bar-teaser {
    position: absolute;
    display: block;
    font-size: 1.5rem;
    z-index: 40;
    margin: 0;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0 !important;
    border: solid 1px var(--blue);
    top: -50px;
  }
}
.hero .booking-block .booking-bar-form {
  position: relative;
  background: var(--white);
  z-index: 41;
  border: solid 1px var(--blue);
  padding: 15px 5px 5px 5px;
}
.hero .booking-block .booking-bar-form .form {
  margin: 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 15px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1200px) {
  .hero .booking-block .booking-bar-form .form {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.hero .booking-block .booking-bar-form .form .d-flex {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.hero .booking-block .booking-bar-form .form .form-group {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 0 10px 0;
  padding: 0 5px;
}
.hero .booking-block .booking-bar-form .form .form-group.no-border {
  border-right: none;
}
.hero .booking-block .booking-bar-form .form .form-group.mobile-border-right:after {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  height: 20px;
  border-right: solid 1px var(--blue);
}
.hero .booking-block .booking-bar-form .form .form-group label {
  margin: 0;
  color: var(--text-grey);
}
.hero .booking-block .booking-bar-form .form .form-group label span {
  display: block;
  font-size: 0.8rem;
}
.hero .booking-block .booking-bar-form .form .form-group.book-now-container {
  text-align: right;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 100%;
}
.hero .booking-block .booking-bar-form .form .form-group.book-now-container button {
  width: 100%;
}
@media (min-width: 992px) {
  .hero .booking-block .booking-bar-form .form .form-group.book-now-container {
    width: auto;
  }
  .hero .booking-block .booking-bar-form .form .form-group.book-now-container button {
    width: auto;
  }
}
.hero .booking-block .booking-bar-form .form .form-group.offer_code_container #offer_code {
  border: solid 1px var(--blue);
  padding: .19rem .75rem;
  height: inherit;
}
.hero .booking-block .booking-bar-form .form .fa {
  margin-right: 5px;
  display: inline-block;
  color: var(--blue);
}
.hero .booking-block .booking-bar-form .form input {
  border: none;
  background: none;
}
.hero .booking-block .booking-bar-form .form input.date-input {
  width: 80px;
  font-size: 0.9rem;
}
.hero .booking-block .booking-bar-form .form input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.hero .booking-block .booking-bar-form .form button {
  color: var(--white);
}
.hero .booking-block .booking-bar-form .form .clear-divider {
  width: 100%;
  height: 1px;
}
.hero .booking-block .booking-bar-form .form .date-field {
  text-align: center;
}
.hero .booking-block .booking-bar-form .form .date-field input {
  width: 100%;
}
@media (min-width: 992px) {
  .hero .booking-block .form .d-flex {
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .hero .booking-block {
    position: absolute !important;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .hero .booking-block .form {
    flex-wrap: no-wrap;
  }
  .hero .booking-block .form .d-flex {
    width: auto !important;
  }
  .hero .booking-block .form .form-group {
    padding: 20px 5px;
  }
}
@media (min-width: 1400px) {
  .hero .booking-block {
    bottom: 60px;
  }
  .hero .booking-block .form {
    flex-wrap: no-wrap;
  }
  .hero .booking-block .date-field {
    min-width: 150px;
  }
}
.hero.hero-small {
  height: auto;
}
.hero.hero-small .hero-item {
  height: 40vw;
}
.hero.hero-small .hero-content-container {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .hero.hero-small .hero-item {
    height: 30vw;
    min-height: auto;
  }
}
@media (min-width: 1200px) {
  .hero.hero-small {
    height: 20vw;
    min-height: inherit;
  }
  .hero.hero-small .hero-item {
    height: auto;
  }
  .hero.hero-small .hero-content-container {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
.hero.hero-medium {
  height: auto;
}
.hero.hero-medium .hero-item {
  height: 60vh;
}
.hero.hero-medium .hero-content-container {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .hero.hero-medium .hero-item {
    height: 60vw;
  }
}
@media (min-width: 1200px) {
  .hero.hero-medium {
    height: 40vw;
    min-height: 40vw;
  }
  .hero.hero-medium .hero-item {
    height: auto;
  }
  .hero.hero-medium .hero-content-container {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}

@media (min-width: 992px) {
  .includes-booking-bar .hero {
    overflow: inherit;
  }
}

.booking-bar-popup .booking-block {
  min-height: 100px;
  z-index: 10;
  width: 100%;
  height: 100px;
  position: relative;
}
.booking-bar-popup .booking-block .booking-bar-teaser {
  color: var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  padding: 10px;
}
@media (min-width: 992px) {
  .booking-bar-popup .booking-block .booking-bar-teaser {
    background: var(--faded-blue);
    padding: 10px 20px;
    position: absolute;
    z-index: 100;
    border-radius: 5px 5px 0 0 !important;
    border: solid 1px var(--blue);
    top: -50px;
    text-align: left;
  }
}
.booking-bar-popup .booking-block .booking-bar-form {
  position: relative;
  z-index: 50;
}
.booking-bar-popup .booking-block .booking-bar-form .form {
  margin: 0;
  padding: 0 15px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 5px;
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group.no-border {
  border-right: none;
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group.mobile-border-right:after {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  height: 20px;
  border-right: solid 1px var(--blue);
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group label {
  margin: 0;
  color: var(--text-grey);
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group label span {
  display: block;
  font-size: 0.8rem;
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group.book-now-container {
  flex: 1;
  text-align: right;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.booking-bar-popup .booking-block .booking-bar-form .form .form-group.book-now-container button {
  width: 100%;
}
.booking-bar-popup .booking-block .booking-bar-form .form .fa {
  margin-right: 5px;
  display: inline-block;
  color: var(--blue);
}
.booking-bar-popup .booking-block .booking-bar-form .form input {
  border: none;
  background: none;
}
.booking-bar-popup .booking-block .booking-bar-form .form input.date-input {
  width: 80px;
  font-size: 0.9rem;
}
.booking-bar-popup .booking-block .booking-bar-form .form input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.booking-bar-popup .booking-block .booking-bar-form .form button {
  color: var(--white);
}
.booking-bar-popup .booking-block .booking-bar-form .form .clear-divider {
  width: 100%;
  height: 1px;
}
@media (min-width: 992px) {
  .booking-bar-popup .booking-block {
    min-height: inherit;
  }
  .booking-bar-popup .booking-block .booking-bar-teaser {
    z-index: 10 !important;
  }
  .booking-bar-popup .booking-block .booking-bar-form {
    z-index: 30 !important;
    background: var(--white);
    border: solid 1px var(--blue);
  }
  .booking-bar-popup .booking-block .booking-bar-form .form {
    margin: 0;
    padding: 0 15px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .form-group {
    position: relative;
    margin: 15px 0 !important;
    padding: 5px 15px !important;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .form-group label span {
    font-size: 0.9rem;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .form-group.book-now-container {
    width: auto !important;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .form-group.book-now-container button {
    width: inherit;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form input.date-input {
    width: 100px !important;
    font-size: 1rem;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .fa-holder {
    padding: 0 0 0 15px !important;
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .form-divider {
    top: -25px;
    bottom: 25px;
    border-right: solid 1px var(--blue);
  }
  .booking-bar-popup .booking-block .booking-bar-form .form .clear-divider {
    width: 1px !important;
    height: inherit !important;
  }
}

.booking-block-legacy {
  position: relative;
}
.booking-block-legacy .booking-block-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: block;
  content: '';
  z-index: 101;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.open-booking-form .booking-block-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: block;
  content: '';
  z-index: 40;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .open-booking-form .booking-block-legacy {
    position: relative;
  }
  .open-booking-form .booking-block-legacy .booking-block-inner {
    z-index: 1001;
    position: relative;
  }
}

.booking-bar-popup {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  content: '';
  z-index: 300;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.booking-bar-popup .booking-bar-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  content: '';
  z-index: 300;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  background: #000;
  cursor: pointer;
}
.booking-bar-popup .booking-bar-popup-inner {
  width: 100%;
  z-index: 301;
  position: relative;
  z-index: 302;
}

.display-booking-form .booking-bar-popup {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .scrolled.open-booking-form .hero-content-container .booking-block-legacy {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: -webkit-flex;
    display: flex;
    content: '';
    z-index: 500 !important;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--blue);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #ffffff 33%);
}
.select select, .select::after {
  grid-area: select;
}
.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.7rem;
  height: 0.7rem;
  /* background-color: var(--grey);*/
  border-left: solid 1px var(--blue);
  border-bottom: solid 1px var(--blue);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-bottom: 8px;
}

.int-selector .select {
  min-width: 5ch;
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to 
   * show all of it
   * Firefox and Chrome allow showing 
   * a partial option
   */
  height: 6rem;
  /* 
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}
select[multiple] option {
  white-space: normal;
  font-size: 0.9rem;
  outline-color: var(--select-focus);
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #dddddd, #eeeeee 33%);
}

label {
  font-size: 1.125rem;
  font-weight: 500;
}

.select + label {
  margin-top: 2rem;
}

.easepick-wrapper {
  z-index: 2;
}

.sample-content {
  min-height: 100vh;
}

.block {
  padding: 30px 0;
}
@media (min-width: 1400px) {
  .block {
    padding: 50px 0;
  }
}

.offer-block-container .container {
  padding: 0 15px;
}
.offer-block-container .container .offer-block {
  background: var(--aqua-blue);
  color: var(--white);
  display: block;
  padding: 15px;
}
.offer-block-container .container .offer-block h2 {
  color: var(--white);
  text-align: center;
  padding: 0 0 10px 0;
}
.offer-block-container .container .offer-block p {
  color: var(--white);
}
.offer-block-container .container .offer-block p span {
  display: block;
  text-align: center;
  margin: 0 0 5px 0;
}
@media (min-width: 992px) {
  .offer-block-container {
    display: block;
  }
  .offer-block-container .container {
    padding: 0 30px;
  }
  .offer-block-container .container .offer-block {
    display: -webkit-flex;
    display: flex;
    position: relative;
    -moz-box-shadow: 0 0 5px #555;
    -webkit-box-shadow: 0 0 5px #555;
    box-shadow: 0 0 5px #555;
    padding: 0;
  }
  .offer-block-container .container .offer-block .offer-block-content {
    flex: 1;
    padding: 15px 30px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .offer-block-container .container .offer-block .offer-block-content h2 {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 0 0 1rem 0;
    text-align: left;
  }
  .offer-block-container .container .offer-block .offer-block-content p {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1em;
    color: var(--white);
  }
  .offer-block-container .container .offer-block .offer-block-image {
    position: relative;
    width: 49%;
    max-height: 100% !important;
  }
  .offer-block-container .container .offer-block .offer-block-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url("#svgPath");
    -webkit-clip-path: url("#svgPath");
  }
}
@media (min-width: 1400px) {
  .offer-block-container .container {
    padding: 0 100px;
  }
}

.hotel-summaries .container .col-lg-6 {
  margin-bottom: 30px;
  position: relative;
}
.hotel-summaries .container .hotel-summary {
  display: block;
  color: var(--black);
  background: var(--pale-blue);
  height: 100%;
  flex-grow: 1;
}
.hotel-summaries .container .hotel-summary .hotel-summary-image {
  padding-top: 100%;
  position: relative;
}
.hotel-summaries .container .hotel-summary .hotel-summary-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-summaries .container .hotel-summary .hotel-summary-content {
  padding: 0 30px;
}
.hotel-summaries .container .hotel-summary .hotel-summary-content > h2 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  font-size: 1.8rem;
}
.hotel-summaries .container .hotel-summary .hotel-summary-content p {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.hotel-summaries .container .hotel-summary .hotel-summary-content > .btn {
  border: solid 2px var(--blue);
  background: var(--white);
  color: var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.2rem;
}
.hotel-summaries .container .hotel-summary .hotel-summary-content > .btn:hover {
  background: var(--blue);
  color: var(--white);
}
@media (min-width: 992px) {
  .hotel-summaries {
    padding: 70px 0;
  }
  .hotel-summaries .container .hotel-summary {
    cursor: pointer;
  }
  .hotel-summaries .container .hotel-summary .hotel-summary-image {
    overflow: hidden;
  }
  .hotel-summaries .container .hotel-summary .hotel-summary-image img {
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  .hotel-summaries .container .hotel-summary .hotel-summary-image img:hover {
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }
  .hotel-summaries .container .hotel-summary .hotel-summary-content > h2 {
    padding-right: 20%;
  }
}

.section-two-blocks .container {
  background: var(--pale-blue);
}
.section-two-blocks .container .row .col-lg-6 {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.section-two-blocks .container .row .col-lg-6 .col-inner {
  display: block;
  cursor: pointer;
}
.section-two-blocks .container .row .col-lg-6 .col-inner h2 {
  padding-bottom: 1rem;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
}
.section-two-blocks .container .row .col-lg-6 .col-inner p {
  padding-bottom: 1.5rem;
}
.section-two-blocks .container .row .col-lg-6.has-image {
  display: block;
}
.section-two-blocks .container .row .col-lg-6.has-image .col-inner {
  padding-top: 100%;
}
@media (min-width: 1400px) {
  .section-two-blocks .container .row .col-lg-6 {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .section-two-blocks .container .row .col-lg-6 .col-inner {
    padding: 0 120px;
  }
}
.section-two-blocks.full-bg-images {
  background: var(--pale-blue);
}
.section-two-blocks.full-bg-images .section-two-blocks-inner {
  position: relative;
}
@media (min-width: 1400px) {
  .section-two-blocks.full-bg-images .section-two-blocks-inner .container .row .col-lg-6.has-image .col-inner {
    padding-top: 70%;
  }
}
@media (min-width: 1400px) {
  .section-two-blocks.full-bg-images .section-two-blocks-inner:after {
    position: absolute;
    display: block;
    content: '';
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
  }
}

.section-multiple-blocks {
  margin-top: 5rem;
}
.section-multiple-blocks.section-multiple-blocks-no-intro {
  margin-top: 0;
  padding-top: 0 !important;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block {
  display: block;
  color: var(--blue);
  background: var(--white);
  border: solid 1px var(--white);
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-top: 1rem;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .large-multiple-block-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-image {
  position: relative;
  padding-top: 80%;
  overflow: hidden;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-image:hover img {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-content {
  text-align: center;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-content > h2 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  padding-bottom: 0.7rem;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-content > h3 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.2rem;
  padding-bottom: 0.7rem;
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-content .multiple-block-blurb {
  font-size: 1rem;
  padding-bottom: 2rem;
  color: var(--grey);
}
.section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block .multiple-block-content .multiple-block-blurb p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .section-multiple-blocks .multiple-blocks-row {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder {
    flex-basis: 100%;
    padding: 10px;
    max-width: 50%;
  }
  .section-multiple-blocks .multiple-blocks-row .multiple-blocks-holder .multiple-block {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .section-multiple-blocks {
    background-size: cover;
    background-position: center center;
  }
  .section-multiple-blocks.has-bg .multiple-blocks-row .multiple-blocks-holder .multiple-block:hover {
    -moz-box-shadow: 0 0 7px #555;
    -webkit-box-shadow: 0 0 7px #555;
    box-shadow: 0 0 7px #555;
    border-color: var(--blue);
  }
  .section-multiple-blocks.multiple-blocks-3 .multiple-blocks-row .multiple-blocks-holder {
    max-width: 33% !important;
  }
  .section-multiple-blocks a.multiple-block.no-hover:hover {
    box-shadow: none !important;
    border-color: transparent !important;
  }
}
@media (min-width: 992px) {
  .section-multiple-blocks.full-size .multiple-blocks-row .multiple-blocks-holder {
    max-width: 50% !important;
  }
}

.email-sign-up {
  background: var(--aqua-blue);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}
.email-sign-up a {
  color: var(--white);
}
.email-sign-up h2 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 0.3rem;
  font-size: 2rem;
  color: var(--white);
}
.email-sign-up .rows .form {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin: 0;
  flex-wrap: wrap !important;
  padding: 20px 0 0 0;
}
.email-sign-up .rows .form .form-group {
  margin: 0 0 10px 0;
}
.email-sign-up .rows .form .form-group input, .email-sign-up .rows .form .form-group .btn {
  width: 100%;
  margin-left: 10px;
}
.email-sign-up .rows .form .form-group:nth-child(1), .email-sign-up .rows .form .form-group:nth-child(2) {
  flex: 1;
}
.email-sign-up .rows .form .form-group:nth-child(3) {
  width: 100%;
}
@media (min-width: 992px) {
  .email-sign-up .rows {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .email-sign-up .rows .column-1 {
    width: 40%;
  }
  .email-sign-up .rows .column-2 {
    flex: 1;
  }
  .email-sign-up .rows .form .form-group {
    width: auto;
    flex: 1;
  }
}

.footer-links {
  text-align: center;
}
.footer-links .container .col-lg {
  margin-bottom: 30px;
}
.footer-links .container h2 {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  font-size: 1.4rem;
  padding-bottom: 1rem;
}
.footer-links .container a {
  color: var(--blue);
}
.footer-links .container ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0 1rem 0;
}
.footer-links .container ul li {
  font-size: 1rem;
  margin: 0;
  padding: 0 0 0.5rem 0;
  color: var(--blue);
}
@media (min-width: 992px) {
  .footer-links .container ul {
    text-align: center;
  }
}

.sub-footer .container {
  border-top: solid 1px var(--aqua-blue);
  padding: 40px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.sub-footer .container img {
  display: inline-block;
  max-height: 90px;
  max-width: 80px;
  margin: 0 15px 30px 15px;
}
@media (min-width: 992px) {
  .sub-footer .container img {
    max-width: 200px;
  }
}

.disclaimers .container {
  padding: 0 0 20px 0;
  text-align: center;
}
.disclaimers .container a {
  padding: 0 5px 0;
  color: var(--grey);
  font-size: 0.9rem;
}
.disclaimers .container a:hover {
  color: var(--blue);
}

.blue-pullout {
  background: var(--pale-blue);
  padding: 30px;
  margin: 2rem 0 !important;
}
.blue-pullout p:last-child {
  padding-bottom: 0;
}
.blue-pullout a {
  color: var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}

p.blue-pullout {
  margin: 4rem 0 0 0 !important;
}

.section-default .section-default-inner {
  padding: 15px;
}
@media (min-width: 1400px) {
  .section-default .section-default-inner {
    padding: 0 100px;
  }
}

#offer_teasers_intro {
  padding: 2rem 0;
}
#offer_teasers_intro:empty {
  display: none;
}

.offers-section .container .offer-teaser-block {
  display: block;
  margin-bottom: 2rem;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner {
  position: relative;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-image {
  position: relative;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-image img {
  width: 100%;
  height: auto;
  position: relative;
  object-fit: cover;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content {
  background: var(--pale-orange);
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-colour-bar {
  background: var(--aqua-blue);
  padding: 30px;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-colour-bar h3 {
  padding: 0;
  color: var(--white);
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-offer {
  padding: 30px 40px;
  display: -webkit-flex;
  display: flex;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-offer .offer-teaser-block-offer-inner .btn {
  border: solid 2px var(--blue);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}
.offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-offer .offer-teaser-block-offer-inner .btn:hover {
  color: var(--blue);
  background-color: transparent;
}
.offers-section .container .offer-teaser-block:nth-child(odd) .offer-teaser-block-inner .offer-teaser-block-content {
  background: var(--pale-blue);
}
.offers-section .container .offer-teaser-block:nth-child(odd) .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-colour-bar {
  background: var(--aqua-blue);
}
@media (min-width: 992px) {
  .offers-section .container {
    padding: 0 100px;
  }
  .offers-section .container .offer-teaser-block {
    display: block;
  }
  .offers-section .container .offer-teaser-block .offer-teaser-block-inner {
    display: -webkit-flex;
    display: flex;
  }
  .offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-image {
    width: 35%;
    height: 100%;
  }
  .offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content {
    flex: 1;
  }
  .offers-section .container .offer-teaser-block .offer-teaser-block-inner .offer-teaser-block-content .offer-teaser-block-offer {
    height: 100%;
  }
  .offers-section .container .offer-teaser-block:nth-child(odd) .offer-teaser-block-image {
    order: 2;
  }
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-bottom .block {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .section-hotel-icons .section-default-inner {
    padding: 0 10%;
  }
  .section-hotel-icons .section-default-inner h2 {
    margin-bottom: 1rem;
  }
}

.icon-holder {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--aqua-blue);
  text-align: center;
}
.icon-holder span {
  display: none;
}
.icon-holder img {
  display: inline-block;
  margin-right: 10px;
  max-height: 35px;
}
@media (min-width: 992px) {
  .icon-holder span {
    display: inherit;
  }
}

.pre-blue-bar {
  display: none;
}
@media (min-width: 1400px) {
  .pre-blue-bar {
    display: block;
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .pre-blue-bar .container ul {
    display: -webkit-flex;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 4px 0;
  }
  .pre-blue-bar .container ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .pre-blue-bar .container ul li a {
    display: block;
    padding: 5px;
    margin: 0 10px 0 0;
  }
  .pre-blue-bar .container ul li:first-child {
    flex: 1;
  }
  .pre-blue-bar .container ul li:first-child a span:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    content: "\f060";
  }
  .pre-blue-bar .container ul li a {
    color: var(--white);
  }
}

#testimonialCarousel {
  position: relative;
  text-align: center;
}
#testimonialCarousel blockquote {
  font-size: 1.5rem;
}
#testimonialCarousel blockquote p {
  font-size: 1.8rem;
  line-height: 2.5rem;
}
#testimonialCarousel blockquote cite {
  font-size: 1rem;
  font-style: normal;
}
#testimonialCarousel .carousel-control-prev-icon {
  background-image: none;
}
#testimonialCarousel .carousel-control-prev-icon:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  content: "\f053";
  font-size: 2rem;
  margin: 0;
  color: var(--aqua-blue);
}
#testimonialCarousel .carousel-control-next-icon {
  background-image: none;
}
#testimonialCarousel .carousel-control-next-icon:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  content: "\f054";
  font-size: 2rem;
  margin: 0;
  color: var(--aqua-blue);
}
@media (min-width: 1400px) {
  #testimonialCarousel {
    padding: 0 15%;
  }
  #testimonialCarousel .carousel-control {
    width: 15%;
  }
}

.bedrooms .container .room {
  background: #EDF8FD;
  margin: 0 0 30px 0;
  position: relative;
}
.bedrooms .container .room .room-imagery .rooms-carousel {
  width: 100%;
  min-height: 300px;
  height: 40%;
}
.bedrooms .container .room .room-imagery .rooms-carousel .carousel-inner .carousel-item a {
  display: block;
}
.bedrooms .container .room .room-imagery .rooms-carousel .carousel-inner .carousel-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bedrooms .container .room .room-content {
  padding: 15px;
}
.bedrooms .container .room .room-content .room-facilities-has-more .room-facilities-details ul {
  padding-bottom: 1rem !important;
}
.bedrooms .container .room .room-content h3 {
  font-size: 1.6rem;
}
.bedrooms .container .room .room-content h4 {
  font-size: 1.2rem;
  padding-bottom: 5px;
  color: var(--blue);
}
.bedrooms .container .room .room-content ul li {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}
.bedrooms .container .room:nth-child(even) {
  background: #EDF8FD;
}
.bedrooms .container .room .show-cont {
  display: none;
}
@media (min-width: 992px) {
  .bedrooms .container .room .show-cont {
    display: block;
  }
}
@media (min-width: 992px) {
  .bedrooms .container .room .room-facilitie-cont {
    display: none;
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .bedrooms .container .room {
    display: -webkit-flex;
    display: flex;
  }
  .bedrooms .container .room .room-imagery {
    height: 100%;
    flex: 1;
  }
  .bedrooms .container .room .room-content {
    padding: 30px;
    width: 33%;
  }
}

.section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded {
  padding: 0 15%;
  background: var(--pale-blue);
  text-align: center;
}
.section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded a.btn {
  color: var(--white) !important;
  padding-top: 10px !important;
  display: inline-block;
}
.section-blue-call-bar .section-pale-blue-inner ul {
  list-style-type: none;
}
.section-blue-call-bar .section-pale-blue-inner ul li {
  display: inline;
  position: relative;
  margin: 0 10px 0 0;
}
.section-blue-call-bar .section-pale-blue-inner ul li:before {
  display: inline-block;
  top: 0.6rem;
}
.section-blue-call-bar .section-pale-blue-inner ul li:nth-child(1):before {
  display: none;
}
@media (min-width: 992px) {
  .section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded {
    padding: 40px 15%;
    background: var(--pale-blue);
    text-align: center;
  }
  .section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded p {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
    color: var(--blue);
  }
  .section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded p a {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    color: var(--blue);
  }
  .section-blue-call-bar .section-pale-blue-inner .section-pale-blue-padded p a.btn {
    color: var(--white) !important;
    margin-top: 10px;
  }
}

@media (min-width: 992px) {
  .small-gallery .small-gallery-intro {
    padding: 0 15% 0 15%;
  }
}
@media (min-width: 992px) {
  .small-gallery .small-gallery-outro {
    padding: 0 15% 0 15%;
  }
}
.small-gallery .col-sm-4, .small-gallery .col-sm-8 {
  position: relative;
}
.small-gallery .col-sm-8 {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .small-gallery .col-sm-8 {
    margin-bottom: 0px;
  }
}
.small-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.small-gallery .two-vertical-images .image {
  height: 50%;
}
.small-gallery .two-vertical-images .image:first-child {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .small-gallery .two-vertical-images .image:first-child {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .menus-menus .col {
    max-width: 50%;
  }
}
.menus-menus .col a {
  position: relative;
  display: block;
  padding-top: 100%;
  overflow: hidden;
}
.menus-menus .col a h4 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 3;
  color: var(--white);
}
.menus-menus .col a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  display: block;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.menus-menus .col a:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--black);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.menus-menus .col a:hover img {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.menus-menus .col a:hover:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}

table.contact-details {
  width: 100%;
}
table.contact-details tr td {
  vertical-align: top;
  padding: 10px;
}
table.contact-details tr td:nth-child(1) {
  width: 200px;
  font-weight: bold;
}
@media (min-width: 992px) {
  table.contact-details {
    margin: 0 auto;
    width: 900px;
  }
}

table.pricing {
  width: 100%;
}
table.pricing tbody tr td {
  vertical-align: top;
  padding: 10px;
  width: 30%;
}
table.pricing tbody tr td:nth-child(1) {
  width: auto;
  font-weight: bold;
}
table.pricing tbody tr td p {
  padding: 0;
  margin: 0;
}
table.pricing tbody tr:nth-row(1) td {
  font-weight: bold !important;
}
@media (min-width: 992px) {
  table.pricing {
    margin: 0 auto;
    width: 900px;
  }
}

.features {
  border: double 3px var(--aqua-blue);
  padding: 20px;
}
.features ul {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}
.features ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.map {
  min-height: 300px;
  height: 30vh;
  margin-bottom: 50px;
  border: solid 1px var(--text-grey);
}

.privacy-details table {
  border: none;
}
.privacy-details table img {
  margin-right: 30px !important;
  display: block;
}
.privacy-details table td ul {
  margin-left: 30px;
}

.map-label {
  background: var(--orange);
  color: var(--white);
  padding: 5px;
  border-radius: 5px;
  font-size: 1rem;
}
.map-label:after {
  position: absolute;
  left: 50%;
  bottom: -15px;
  margin-left: -10px;
  background: transparent;
  border-top: solid 15px var(--orange);
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  display: block;
  content: '';
}

.page-40 table tr, .page-40 table th, .page-40 table td {
  display: block;
}
@media (min-width: 992px) {
  .page-40 table {
    display: table;
  }
  .page-40 table tr {
    display: table-row;
  }
  .page-40 table tr th, .page-40 table tr td {
    display: table-cell;
  }
}

#sqg-page-notice {
  pointer-events: none;
}
