@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Thin.woff2") format("woff2"), url("/fonts/Graphik-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Bold.woff2") format("woff2"), url("/fonts/MabryPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Medium.woff2") format("woff2"), url("/fonts/MabryPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Black.woff2") format("woff2"), url("/fonts/MabryPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-LightItalic.woff2") format("woff2"), url("/fonts/MabryPro-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Light.woff2") format("woff2"), url("/fonts/MabryPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-BlackItalic.woff2") format("woff2"), url("/fonts/MabryPro-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-MediumItalic.woff2") format("woff2"), url("../fonts/MabryPro-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Italic.woff2") format("woff2"), url("/fonts/MabryPro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mabry";
  src: url("../fonts/MabryPro-Regular.woff2") format("woff2"), url("/fonts/MabryPro-Regular.woff") format("woff");
  font-weight: 400;
}
* {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*:before,
*:after,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Mabry";
  position: relative;
  min-width: 375px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}

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

a {
  text-decoration: none;
}

table {
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.background-image {
  min-height: 70vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .background-image {
    min-height: 100vh;
  }
}

.hamburger {
  z-index: 999;
  transition: 0.3s all ease-in-out;
  width: 41px;
  height: 41px;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.hamburger:before, .hamburger:after,
.hamburger span {
  background: #453d38;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
  height: 4px;
  margin-top: -2px;
  transition: all 0.2s linear;
}
.hamburger:before, .hamburger:after {
  content: "";
  top: 25%;
}
.hamburger:after {
  top: 75%;
}
.nav-active .hamburger span {
  opacity: 0;
}
.nav-active .hamburger:after, .nav-active .hamburger:before {
  transform: rotate(45deg);
  top: 50%;
  left: 10%;
  right: 10%;
  background: #00b2bd;
}
.nav-active .hamburger:after {
  transform: rotate(-45deg);
}
.nav-active .hamburger:hover {
  opacity: 0.9;
}

.revert:before, .revert:after,
.revert span {
  background: #00b2bd !important;
}

.sidebar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #453d38;
  max-width: 100%;
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  transform: translateX(200%);
  transition: all 0.4s linear;
  padding: 50px 30px;
  overflow-y: auto;
}
@media (min-width: 576px) {
  .sidebar {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .sidebar {
    max-width: 400px;
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .sidebar {
    max-width: 797px;
  }
}
.nav-active .sidebar {
  transform: translateX(0%);
}
.sidebar ul {
  max-width: 300px;
  width: 100%;
}
@media (min-width: 576px) {
  .sidebar ul {
    max-width: 476px;
  }
}
.sidebar ul li {
  margin-bottom: 25px;
}
.sidebar ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
  text-align: left;
  color: #fff;
  transition: 0.5s all ease-in-out;
  max-width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .sidebar ul a {
    font-size: 40px;
    line-height: 44px;
    gap: 37px;
  }
}
@media (min-width: 992px) {
  .sidebar ul a {
    font-size: 70px;
    line-height: 75px;
  }
}
.sidebar ul a img {
  opacity: 0;
  transition: 0.5s all ease-in-out;
  max-width: 40px;
}
@media (min-width: 768px) {
  .sidebar ul a img {
    max-width: 50px;
  }
}
@media (min-width: 992px) {
  .sidebar ul a img {
    max-width: 64px;
  }
}
.sidebar ul a:hover {
  color: #00b2bd;
}
.sidebar ul a:hover img {
  opacity: 1;
}
.sidebar ul .nav-active {
  color: #00b2bd;
}
.sidebar ul .nav-active img {
  opacity: 1;
}

footer {
  padding: 30px 0;
  background-color: #453d38;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/footer-layer.png");
}
@media (min-width: 768px) {
  footer {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  footer {
    padding: 74px 0;
  }
}
footer .col-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  footer .col-wrap {
    flex-wrap: nowrap;
  }
}
footer .contact-col {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  footer .contact-col {
    margin-bottom: 35px;
  }
}
@media (min-width: 1440px) {
  footer .contact-col {
    font-size: 22px;
    line-height: 26px;
  }
}
footer .contact-col:last-child {
  margin-bottom: 0;
}
footer .contact-col strong {
  color: #00b2bd;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  footer .contact-col strong {
    margin-bottom: 15px;
  }
}
footer .contact-col a {
  display: block;
  color: #eae2d8;
  text-decoration: none;
}
footer .SHW {
  width: auto;
}
footer .SHW .logo {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  footer .SHW .logo {
    height: 40px;
  }
}
@media (min-width: 992px) {
  footer .SHW .logo {
    height: 64px;
    margin-bottom: 30px;
  }
}
footer .SHW .logo img {
  width: auto;
  height: 50px;
}
@media (min-width: 768px) {
  footer .SHW .logo img {
    height: 40px;
  }
}
@media (min-width: 992px) {
  footer .SHW .logo img {
    height: 64px;
  }
}
footer .BNP .logo {
  margin-bottom: 15px;
  height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  footer .BNP .logo {
    height: 40px;
  }
}
@media (min-width: 992px) {
  footer .BNP .logo {
    margin-bottom: 30px;
    height: 64px;
  }
}
footer .BNP .logo img {
  width: auto;
  height: 50px;
}
@media (min-width: 768px) {
  footer .BNP .logo img {
    height: 40px;
  }
}
@media (min-width: 992px) {
  footer .BNP .logo img {
    height: 64px;
  }
}
footer .bussiness-address {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  footer .bussiness-address {
    text-align: center;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    margin-top: 0;
  }
}
footer .bussiness-address .logo {
  max-width: 150px;
  margin-bottom: 25px;
  display: none;
}
@media (min-width: 768px) {
  footer .bussiness-address .logo {
    margin: 0 auto 25px;
    display: block;
  }
}
@media (min-width: 992px) {
  footer .bussiness-address .logo {
    max-width: 200px;
  }
}
@media (min-width: 1440px) {
  footer .bussiness-address .logo {
    max-width: 224px;
    margin: 0 0 50px;
  }
}
footer .bussiness-address address {
  font-style: normal;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 22px;
  width: 100%;
}
footer .bussiness-address address br {
  display: none;
}
@media (min-width: 768px) {
  footer .bussiness-address address br {
    display: block;
  }
}
@media (min-width: 1440px) {
  footer .bussiness-address address {
    font-size: 22px;
    line-height: 26px;
  }
}
footer .bussiness-address a {
  color: #00b2bd;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1440px) {
  footer .bussiness-address a {
    font-size: 22px;
    line-height: 26px;
  }
}
footer .bussiness-address a span {
  color: #eae2d8;
}

.relative {
  position: relative;
}

@media (min-width: 768px) {
  .contact-col-first {
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  .contact-col-first {
    margin-right: 80px;
  }
}

#wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

header {
  padding: 20px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 99;
  transition: all 0.5s ease-in-out;
  background-color: rgba(69, 61, 56, 0.7);
}
@media (min-width: 992px) {
  header {
    padding: 20px 38px;
    top: 0;
    height: 110px;
  }
}
header .logo-wrapper {
  position: absolute;
  z-index: 2;
  max-width: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  header .logo-wrapper {
    max-width: 122px;
  }
}
header .logo-wrapper img {
  width: 100%;
  height: auto;
}
header.scrolledNav {
  background-color: rgba(69, 61, 56, 0.9);
}

.custom-container {
  max-width: 1920px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .custom-container {
    padding: 0 52px;
  }
}

.lg-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .lg-container {
    padding: 0 88px;
  }
}

.home-hero-section {
  min-height: 100svh;
  display: flex;
  position: relative;
  background-image: url("../images/home-banner-3.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  align-items: end;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .home-hero-section {
    background-position: center bottom;
  }
}
.home-hero-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.home-hero-section .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  text-align: left;
  margin-bottom: 40px;
}
@media (min-width: 1220px) {
  .home-hero-section .text-wrap {
    max-width: 745px;
    text-align: left;
    margin-bottom: 60px;
  }
}
.home-hero-section .text-wrap h1 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .home-hero-section .text-wrap h1 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .home-hero-section .text-wrap h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (min-width: 1220px) {
  .home-hero-section .text-wrap h1 {
    font-size: 50px;
    line-height: 54px;
  }
}
@media (min-width: 1440px) {
  .home-hero-section .text-wrap h1 {
    font-size: 64px;
    line-height: 68px;
  }
}

.image-wrap-main {
  max-width: 1920px;
}

.space-wrapper .two-col {
  background: #453d38;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .space-wrapper .two-col {
    padding: 50px 0;
  }
}
@media (min-width: 992px) {
  .space-wrapper .two-col {
    padding: 78px 0;
  }
}
.space-wrapper .two-col .image-wrap {
  max-width: 869px;
  width: 100%;
}
.space-wrapper .two-col .text-wrap {
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .space-wrapper .two-col .text-wrap {
    max-width: 591px;
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .two-col .text-wrap {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .two-col .text-wrap {
    margin: 0 auto;
    font-size: 32px;
    line-height: 36px;
  }
}
.space-wrapper .silder-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .space-wrapper .silder-wrapper {
    padding: 50px 0 40px 0;
  }
}
@media (min-width: 992px) {
  .space-wrapper .silder-wrapper {
    padding: 90px 0;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .silder-wrapper {
    padding: 90px 0 120px;
  }
}
@media (max-width: 1200px) {
  .space-wrapper .silder-wrapper .lg-container {
    padding: 0 20px;
  }
}
.space-wrapper .silder-wrapper .slick-slider .slide-card {
  max-width: 702px;
}
.space-wrapper .silder-wrapper .slick-slider .slide-card img {
  width: 100%;
  height: auto;
  padding-right: 20px;
}
.space-wrapper .silder-wrapper .slick-slider .slick-list {
  overflow: visible;
}
.space-wrapper .silder-wrapper .slick-slider .slick-dots {
  bottom: -31px;
}
@media (min-width: 768px) {
  .space-wrapper .silder-wrapper .slick-slider .slick-dots {
    bottom: -41px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .silder-wrapper .slick-slider .slick-dots {
    bottom: -88px;
  }
}
.space-wrapper .silder-wrapper .slick-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #453d38;
}
@media (min-width: 768px) {
  .space-wrapper .silder-wrapper .slick-slider .slick-dots li button {
    width: 13px;
    height: 13px;
  }
}
.space-wrapper .silder-wrapper .slick-slider .slick-dots li button::before {
  display: none;
}
.space-wrapper .silder-wrapper .slick-slider .slick-dots .slick-active button {
  background: #00b2bd;
}
.space-wrapper .parking-wrapper {
  padding: 40px 0;
  background: #453d38;
}
@media (min-width: 768px) {
  .space-wrapper .parking-wrapper {
    padding: 50px 0 150px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .parking-wrapper {
    padding: 100px 0 200px;
  }
}
.space-wrapper .parking-wrapper .image-wrapper-parking {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.space-wrapper .parking-wrapper .parking-text-wrap {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .space-wrapper .parking-wrapper .parking-text-wrap {
    max-width: 591px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .parking-wrapper .parking-text-wrap {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .parking-wrapper .parking-text-wrap {
    margin: 70px auto 0;
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1750px) {
  .space-wrapper .parking-wrapper .parking-text-wrap {
    font-size: 32px;
    line-height: 36px;
  }
}
.space-wrapper .parking-wrapper .image-wrapper-parking-cycle {
  max-width: 400px;
}
@media (min-width: 768px) {
  .space-wrapper .parking-wrapper .image-wrapper-parking-cycle {
    position: absolute;
    right: -150px;
    bottom: -100px;
    max-width: 200px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .parking-wrapper .image-wrapper-parking-cycle {
    position: absolute;
    right: -150px;
    bottom: -100px;
    max-width: 400px;
  }
}
@media (min-width: 1750px) {
  .space-wrapper .parking-wrapper .image-wrapper-parking-cycle {
    max-width: 590px;
  }
}
.space-wrapper .work-specification {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .space-wrapper .work-specification {
    padding: 50px 0 35px 0;
  }
}
@media (min-width: 992px) {
  .space-wrapper .work-specification {
    padding: 70px 0;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .work-specification {
    padding: 150px 0;
  }
}
.space-wrapper .work-specification {
  color: #fff;
}
.space-wrapper .work-specification h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  text-align: left;
  max-width: 435px;
  margin-bottom: 44px;
  text-align: center;
}
@media (min-width: 992px) {
  .space-wrapper .work-specification h2 {
    font-size: 45px;
    line-height: 49px;
    margin-bottom: 64px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .space-wrapper .work-specification h2 {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 84px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .work-specification h2 {
    font-size: 70px;
    line-height: 74px;
  }
}
.space-wrapper .work-specification .specification-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .space-wrapper .work-specification .specification-wrap {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .work-specification .specification-wrap {
    row-gap: 50px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .work-specification .specification-wrap {
    grid-template-columns: repeat(auto-fit, minmax(397px, 1fr));
  }
}
.space-wrapper .work-specification .specification-wrap .specification-col {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}
.space-wrapper .work-specification .specification-wrap .specification-col br {
  display: none;
}
@media (min-width: 768px) {
  .space-wrapper .work-specification .specification-wrap .specification-col {
    max-width: none;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .space-wrapper .work-specification .specification-wrap .specification-col br {
    display: block;
  }
}
@media (min-width: 1199px) {
  .space-wrapper .work-specification .specification-wrap .specification-col {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .work-specification .specification-wrap .specification-col {
    font-size: 26px;
    line-height: 36px;
    max-width: 397px;
  }
}
.space-wrapper .work-specification .specification-wrap .specification-col .col-image {
  max-width: 60px;
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  .space-wrapper .work-specification .specification-wrap .specification-col .col-image {
    max-width: 80px;
    margin: 0 auto 30px;
  }
}
@media (min-width: 1440px) {
  .space-wrapper .work-specification .specification-wrap .specification-col .col-image {
    max-width: 140px;
  }
}

.availability-wrapper .background-image {
  background-position: center top;
}
@media (min-width: 768px) {
  .availability-wrapper .background-image {
    background-position: center center;
  }
}
.availability-wrapper .building-structure {
  background: #eae2d8;
  padding: 50px 0;
  color: #372d25;
}
@media (min-width: 1199px) {
  .availability-wrapper .building-structure {
    padding: 100px 0;
  }
}
@media (min-width: 1440px) {
  .availability-wrapper .building-structure {
    padding: 157px 0;
  }
}
.availability-wrapper .building-structure h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .availability-wrapper .building-structure h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (min-width: 1199px) {
  .availability-wrapper .building-structure h2 {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 1440px) {
  .availability-wrapper .building-structure h2 {
    font-size: 81px;
    line-height: 85px;
    margin-bottom: 41px;
  }
}
.availability-wrapper .building-structure .availability-text {
  font-size: 22x;
  line-height: 26px;
  font-weight: 400;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .availability-wrapper .building-structure .availability-text {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1440px) {
  .availability-wrapper .building-structure .availability-text {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.availability-wrapper .building-structure .accommodation-structure-table {
  max-width: 100%;
  color: #453d38;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .availability-wrapper .building-structure .accommodation-structure-table {
    max-width: 454px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .availability-wrapper .building-structure .accommodation-structure-table {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 100px;
  }
}
.availability-wrapper .building-structure .accommodation-structure-table thead th {
  padding: 10px 4px;
  border-bottom: 2px #00b2bd solid;
  text-align: right;
}
.availability-wrapper .building-structure .accommodation-structure-table thead th:first-child {
  text-align: left;
}
.availability-wrapper .building-structure .accommodation-structure-table tfoot td {
  padding: 10px 4px;
  border-top: 2px #00b2bd solid;
  text-align: right;
}
.availability-wrapper .building-structure .accommodation-structure-table tfoot td:first-child {
  text-align: left;
}
.availability-wrapper .building-structure .accommodation-structure-table tbody td {
  padding: 8px 4px;
  text-align: right;
}
.availability-wrapper .building-structure .accommodation-structure-table tbody td:first-child {
  text-align: left;
}
.availability-wrapper .building-structure .image-wrap {
  max-width: 576px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .availability-wrapper .building-structure .image-wrap {
    max-width: 742px;
    margin-left: 30px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .availability-wrapper .building-structure .image-wrap {
    margin-left: auto;
  }
}
.availability-wrapper .building-structure .enquire-btn {
  width: 100%;
  border-radius: 42px;
  background: #00b2bd;
  color: #fff;
  padding: 14px 25px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .availability-wrapper .building-structure .enquire-btn {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
  }
}
.availability-wrapper .building-structure hr {
  border: 2px solid #453d38;
}

.brighton-wrapper .stretch {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .stretch {
    padding: 150px 0;
    font-size: 24px;
    line-height: 30px;
  }
}
.brighton-wrapper .stretch .text-wrap {
  margin-bottom: 40px;
}
@media (min-width: 1440px) {
  .brighton-wrapper .stretch .text-wrap {
    margin-bottom: 100px;
  }
}
.brighton-wrapper .stretch .text-wrap h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
}
@media (min-width: 1199px) {
  .brighton-wrapper .stretch .text-wrap h2 {
    font-size: 50px;
    line-height: 54px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .stretch .text-wrap h2 {
    font-size: 70px;
    line-height: 74px;
  }
}
.brighton-wrapper .stretch .text-wrap .desc {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  max-width: 100%;
}
@media (min-width: 576px) {
  .brighton-wrapper .stretch .text-wrap .desc {
    max-width: 295px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .stretch .text-wrap .desc {
    font-size: 20px;
    line-height: 24px;
  }
}
.brighton-wrapper .stretch .distance-col-wrap-main {
  padding-top: 45px;
  position: relative;
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch .distance-col-wrap-main {
    padding-left: 20px;
    padding-top: 0;
  }
}
.brighton-wrapper .stretch .distance-col-wrap-main .minute-wrap {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: -10px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch .distance-col-wrap-main .minute-wrap {
    font-size: 20px;
    line-height: 24px;
    top: 14px;
    left: -16px;
    transform: rotate(-90deg);
    width: auto;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch .distance-col-wrap-main {
    padding-left: 30px;
  }
}
.brighton-wrapper .stretch .distance-col-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  row-gap: 20px;
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch .distance-col-wrap {
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    row-gap: 30px;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .stretch .distance-col-wrap {
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  }
}
.brighton-wrapper .stretch .distance-col-wrap .distance-col {
  max-width: 158px;
  text-align: center;
}
.brighton-wrapper .stretch .distance-col-wrap .mint-title {
  display: block;
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 26px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .brighton-wrapper .stretch .distance-col-wrap .mint-title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .stretch .distance-col-wrap .mint-title {
    font-size: 50px;
    line-height: 54px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .stretch .distance-col-wrap .mint-title {
    font-size: 70px;
    line-height: 74px;
  }
}
.brighton-wrapper .map-wrap {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .brighton-wrapper .map-wrap {
    margin-bottom: 70px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .map-wrap {
    margin-bottom: 110px;
  }
}
.brighton-wrapper .map-wrap .image-wrap-main {
  margin: 0 auto;
}
.brighton-wrapper .map-wrap .image-wrap-main img {
  width: 200%;
  margin-left: -50%;
  max-width: none;
}
@media (min-width: 768px) {
  .brighton-wrapper .map-wrap .image-wrap-main img {
    width: 130%;
    margin-left: -15%;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .map-wrap .image-wrap-main img {
    width: 100%;
    margin-left: 0;
  }
}
.brighton-wrapper .further-distance {
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .brighton-wrapper .further-distance {
    font-size: 17px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .further-distance {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 110px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .further-distance {
    font-size: 22px;
    line-height: 28px;
  }
}
.brighton-wrapper .further-distance h3 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
  text-align: left;
  color: #00b2bd;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .brighton-wrapper .further-distance h3 {
    font-size: 45px;
    line-height: 49px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .further-distance h3 {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .further-distance h3 {
    margin-bottom: 60px;
    font-size: 70px;
    line-height: 74px;
  }
}
.brighton-wrapper .further-distance .title {
  color: #00b2bd;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 768px) {
  .brighton-wrapper .further-distance .title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .further-distance .title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .further-distance .title {
    font-size: 48px;
    line-height: 52px;
  }
}
.brighton-wrapper .further-distance .image-wrap-map {
  max-width: 100%;
}
.brighton-wrapper .further-distance .image-wrap-map img {
  width: 100%;
}
@media (min-width: 992px) {
  .brighton-wrapper .further-distance .image-wrap-map {
    max-width: 675px;
  }
}
.brighton-wrapper .further-distance .table-wrap {
  max-width: 100%;
}
@media (min-width: 576px) {
  .brighton-wrapper .further-distance .table-wrap {
    max-width: 416px;
  }
}
.brighton-wrapper .further-distance .table-wrap .table tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .brighton-wrapper .further-distance .table-wrap .table tr td {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
.brighton-wrapper .further-distance .table-wrap .table tr td:first-child {
  padding-left: 0;
  text-align: left;
}
.brighton-wrapper .further-distance .table-wrap .table tr td:last-child {
  padding-right: 0;
  text-align: right;
}
.brighton-wrapper .further-distance .table-wrap .heading-wrap {
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 2px solid #453d38;
}
@media (min-width: 768px) {
  .brighton-wrapper .further-distance .table-wrap .heading-wrap {
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
}
.brighton-wrapper .everything {
  padding: 40px 0;
  background: #453d38;
}
@media (min-width: 1199px) {
  .brighton-wrapper .everything {
    padding: 120px 0;
  }
}
.brighton-wrapper .everything .text-wrap {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  max-width: 491px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .brighton-wrapper .everything .text-wrap {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .everything .text-wrap {
    font-size: 35px;
    line-height: 39px;
    margin-bottom: 175px;
  }
}
@media (min-width: 1440px) {
  .brighton-wrapper .everything .text-wrap {
    font-size: 48px;
    line-height: 52px;
  }
}
.brighton-wrapper .everything .text-wrap span {
  color: #00b2bd;
}
.brighton-wrapper .everything .image-wrap img {
  display: block;
  margin-bottom: 10px;
}
.brighton-wrapper .everything .image-wrap {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.brighton-wrapper .everything .second-col {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .brighton-wrapper .everything .second-col {
    max-width: 250px;
    margin: 112px auto 0;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .everything .second-col {
    margin: 112px auto 0;
    max-width: 390px;
  }
}
.brighton-wrapper .everything .third-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
@media (min-width: 576px) {
  .brighton-wrapper .everything .third-col {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .brighton-wrapper .everything .third-col {
    align-items: flex-end;
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .brighton-wrapper .everything .third-col {
    align-items: center;
    max-width: 537px;
    display: block;
    margin-left: auto;
    gap: 30px;
  }
}
.brighton-wrapper .everything .third-col .right {
  max-width: 413px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .brighton-wrapper .everything .third-col .right {
    margin-left: auto;
    margin-bottom: 50px;
  }
}
@media (min-width: 1199px) {
  .brighton-wrapper .everything .third-col .right {
    margin-bottom: 100px;
  }
}

@media (min-width: 992px) {
  .contact-wrapper-main {
    display: flex;
    align-items: center;
    flex-grow: 1;
  }
}
@media (min-width: 992px) {
  .contact-wrapper-main {
    display: block;
  }
}
.contact-wrapper-main .contact-wrap {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.contact-wrapper-main .contact-wrap .cta {
  padding: 56px 20px 56px 20px;
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact-wrapper-main .contact-wrap .cta {
    padding: 56px 20px 56px 20px;
  }
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin: 96px 89px 96px auto;
    padding: 0;
    min-height: calc(100vh - 192px);
  }
}
@media (min-width: 1500px) {
  .contact-wrapper-main .contact-wrap .cta {
    margin: 96px 60px 96px auto;
    min-height: calc(100vh - 192px);
  }
}
@media (min-width: 1700px) {
  .contact-wrapper-main .contact-wrap .cta {
    margin: 96px 89px 96px auto;
    min-height: calc(100vh - 192px);
  }
}
.contact-wrapper-main .contact-wrap .cta-links {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.contact-wrapper-main .contact-wrap .cta-links .contact-col {
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 35px;
}
@media (min-width: 1440px) {
  .contact-wrapper-main .contact-wrap .cta-links .contact-col {
    font-size: 22px;
    line-height: 26px;
  }
}
.contact-wrapper-main .contact-wrap .cta-links .contact-col:last-child {
  margin-bottom: 0;
}
.contact-wrapper-main .contact-wrap .cta-links .contact-col strong {
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
.contact-wrapper-main .contact-wrap .cta-links .contact-col a {
  display: block;
  color: #eae2d8;
  text-decoration: none;
}
.contact-wrapper-main .contact-wrap .cta-links .SHW {
  width: auto;
}
.contact-wrapper-main .contact-wrap .cta-links .SHW .logo {
  width: auto;
  height: 40px;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .cta-links .SHW .logo {
    height: 64px;
    margin-bottom: 30px;
  }
}
.contact-wrapper-main .contact-wrap .cta-links .SHW .logo img {
  width: auto;
  height: 40px;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .cta-links .SHW .logo img {
    height: 64px;
  }
}
.contact-wrapper-main .contact-wrap .cta-links .BNP .logo {
  width: auto;
  height: 40px;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .cta-links .BNP .logo {
    height: 64px;
    margin-bottom: 30px;
  }
}
.contact-wrapper-main .contact-wrap .cta-links .BNP .logo img {
  width: auto;
  height: 40px;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .cta-links .BNP .logo img {
    height: 64px;
  }
}
.contact-wrapper-main .contact-wrap .anchor-download {
  max-width: 250px;
  width: 100%;
  border-radius: 42px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  padding: 14px 25px;
  color: #453d38;
  background: #fff;
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .anchor-download {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .contact-wrapper-main .contact-wrap .anchor-download {
    margin-left: auto;
  }
}
@media (min-width: 1199px) {
  .contact-wrapper-main .contact-wrap .anchor-download {
    font-size: 20px;
    line-height: 24px;
  }
}
.contact-wrapper-main .business-wrap-cover {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}
.contact-wrapper-main .business-wrap-cover .vector2 {
  max-width: 205px;
}
.contact-wrapper-main .bussiness-address {
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .contact-wrapper-main .bussiness-address {
    text-align: center;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 230px;
    top: 13%;
    position: absolute;
    padding-top: 0;
  }
}
.contact-wrapper-main .bussiness-address .logo {
  width: 150px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .contact-wrapper-main .bussiness-address .logo {
    width: 224px;
  }
}
.contact-wrapper-main .bussiness-address address {
  font-style: normal;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 22px;
  width: 100%;
}
.contact-wrapper-main .bussiness-address address br {
  display: none;
}
@media (min-width: 992px) {
  .contact-wrapper-main .bussiness-address address br {
    display: block;
  }
}
@media (min-width: 992px) {
  .contact-wrapper-main .bussiness-address address {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.contact-wrapper-main .bussiness-address a {
  color: #00b2bd;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 1800px) {
  .contact-wrapper-main .bussiness-address a {
    font-size: 22px;
    line-height: 26px;
  }
}
.contact-wrapper-main .bussiness-address a span {
  color: #eae2d8;
}

body.contact-page {
  min-height: 100vh;
  background-image: url(../images/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: -150px top;
  background-color: #453d38;
}
@media (min-width: 768px) {
  body.contact-page {
    background-position: left top;
  }
}
body.contact-page header {
  background-color: transparent;
}

body.contact-page #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.contact-page #wrapper {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  body.contact-page #wrapper {
    justify-content: none;
  }
}

.brighton-slider > div {
  background-position: center top;
}

.space-wrapper.brighton .silder-wrapper {
  padding-top: 0;
}
.space-wrapper.brighton h3 {
  padding-top: 40px;
  color: #453d38;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .space-wrapper.brighton h3 {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .space-wrapper.brighton h3 {
    padding-top: 90px;
  }
}

.brighton-pier {
  -o-object-fit: cover;
     object-fit: cover;
  height: 240px;
  width: 100%;
  -o-object-position: center -60px;
     object-position: center -60px;
}
@media (min-width: 768px) {
  .brighton-pier {
    height: auto;
    -o-object-position: left top;
       object-position: left top;
  }
}/*# sourceMappingURL=main.css.map */