@charset "UTF-8";
@font-face {
  font-family: "Cinzel";
  src: url("../assets/fonts/Cinzel-Bold.woff2") format("woff2"), url("../assets/fonts/Cinzel-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Regular.woff2") format("woff2"), url("../assets/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Light";
  src: url("../assets/fonts/Gotham-Light.woff2") format("woff2"), url("../assets/fonts/Gotham-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Bold";
  src: url("../assets/fonts/Gotham-Bold.woff2") format("woff2"), url("../assets/fonts/Gotham-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body#web #register {
  padding-top: 50px;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#401c13), color-stop(30%, #371812), to(#2c1411));
  background: linear-gradient(to bottom, #401c13 0%, #371812 30%, #2c1411 100%);
}

body#web #register .register-head {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  body#web #register .register-head {
    margin-bottom: unset;
  }
}

body#web #register .register-round {
  width: 65px;
  display: inline-block;
}

body#web #register .register-form-head {
  margin-left: 20px;
  display: inline-block;
}

body#web #register .register-form-head p {
  color: #9c7d6f;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: unset;
  font-size: 20px;
  font-family: "Cinzel";
}

@media screen and (min-width: 768px) {
  body#web #register .register-form::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #9c7d6f;
    /* or add it to the track */
  }
}

@media screen and (min-width: 768px) {
  body#web #register .register-form::-webkit-scrollbar-thumb {
    background: #4c2f28;
  }
}

body#web #register .register-form {
  overflow-y: auto;
  position: relative;
  height: 100%;
  padding: 10vh 0;
}

body#web #register .register-form input[type="text"],
body#web #register .register-form input[type="email"],
body#web #register .register-form textarea,
body#web #register .register-form select {
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid #4c2f28;
  border-radius: unset;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: #9c7d6f;
  margin-bottom: 20px;
}

body#web #register .register-form label,
body#web #register .register-form small {
  color: #9c7d6f;
}

body#web #register .register-form input::-webkit-input-placeholder,
body#web #register .register-form textarea::-webkit-input-placeholder,
body#web #register .register-form select::-webkit-input-placeholder {
  color: #9c7d6f;
}

body#web #register .register-form input::-moz-placeholder,
body#web #register .register-form textarea::-moz-placeholder,
body#web #register .register-form select::-moz-placeholder {
  color: #9c7d6f;
}

body#web #register .register-form input::-ms-input-placeholder,
body#web #register .register-form textarea::-ms-input-placeholder,
body#web #register .register-form select::-ms-input-placeholder {
  color: #9c7d6f;
}

body#web #register .register-form input::placeholder,
body#web #register .register-form textarea::placeholder,
body#web #register .register-form select::placeholder {
  color: #9c7d6f;
}

body#web #register .register-form a {
  text-decoration: none;
}

body#web #register .btn-go-back {
  text-decoration: none;
  border: unset;
  padding: unset;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 150px;
  display: block;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  body#web #register .btn-go-back {
    margin-left: auto;
    margin-bottom: unset;
  }
}

body#web #register a {
  color: #9c7d6f;
  text-decoration: underline !important;
}

body#web #register .hide {
  display: none;
}

body#web #register .submit {
  margin-top: 100px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#d97f46), to(#d57f49));
  background: linear-gradient(to bottom, #d97f46, #d57f49);
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

body#web #tnc-template {
  width: 100%;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 60px;
}

body#web #tnc-template .tnc {
  padding: 50px;
  border-radius: 50px;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.9);
}

body#web #header {
  background: transparent;
  -webkit-transition: background ease 0.5s;
  transition: background ease 0.5s;
  padding: 23px 0px;
  z-index: 1;
  position: fixed;
}

body#web #header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1366px) {
  body#web #header {
    padding: 16.5px 0px;
  }
}

body#web #header .header-hugoz-logo {
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s;
}

body#web #header .header-hugoz-logo .hugoz-logo {
  width: 130px;
  height: auto;
}

@media screen and (max-width: 1366px) {
  body#web #header .header-hugoz-logo .hugoz-logo {
    width: 100px;
  }
}

body#web #header .navbar-toggler {
  border: unset;
  padding: unset;
  background: unset;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 1366px) {
  body#web #header .navbar-toggler {
    width: 24px;
    height: 24px;
  }
}

body#web #header .navbar-toggler .navbar-toggler-long {
  width: 100%;
  height: 2px;
  background: #c5ab78;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
}

@media screen and (max-width: 1366px) {
  body#web #header .navbar-toggler .navbar-toggler-long {
    height: 1px;
  }
}

body#web #header .navbar-toggler .navbar-toggler-short {
  width: 70%;
  height: 2px;
  background: #c5ab78;
  margin: 5px 0px;
  margin-left: auto;
}

@media screen and (max-width: 1366px) {
  body#web #header .navbar-toggler .navbar-toggler-short {
    height: 1px;
    margin: 4px 0px;
    margin-left: auto;
  }
}

body#web #header .navbar-toggler:hover .navbar-toggler-long:first-child {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

body#web #header .navbar-toggler:hover .navbar-toggler-long:last-child {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

body#web #header.theme {
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
}

body#web #header.others {
  position: absolute;
  top: 0px;
  left: 0px;
  background: transparent;
  box-shadow: unset;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  z-index: 50;
}

body#web .sidebar-overlay {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  z-index: 999;
}

body#web .sidebar-overlay.active {
  display: block;
}

body#web #sidebar {
  position: fixed;
  z-index: 1040;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#fdf5ed));
  background: linear-gradient(to bottom, #fefefe, #fdf5ed);
  height: 100vh;
  overflow-y: auto;
  width: 353px;
  top: 0px;
  right: 0px;
  padding: 32px 46px;
  -webkit-transform: translateX(353px);
          transform: translateX(353px);
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1366px) {
  body#web #sidebar {
    width: 254px;
    -webkit-transform: translateX(254px);
            transform: translateX(254px);
    padding: 22px 30px;
  }
}

body#web #sidebar button {
  background: transparent;
  border: inherit;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

body#web #sidebar .sidebar-close {
  padding: unset;
  border: unset;
  background: transparent;
  outline: unset;
}

body#web #sidebar .sidebar-close img {
  height: 23px;
  width: 23px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .sidebar-close img {
    height: 16px;
    width: 16px;
  }
}

body#web #sidebar .sidebar-close + .header-link-wrapper {
  margin-top: 127px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .sidebar-close + .header-link-wrapper {
    margin-top: 91px;
  }
}

body#web #sidebar .header-link a {
  font-family: Montserrat;
  font-size: 16px;
  color: #111111;
  text-decoration: none;
  letter-spacing: 1px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .header-link a {
    font-size: 11.5px;
  }
}

body#web #sidebar .header-link a:hover,
body#web #sidebar .header-link a:focus {
  color: #bc592f;
}

body#web #sidebar .header-link + .header-link {
  margin-top: 21px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .header-link + .header-link {
    margin-top: 8px;
  }
}

body#web #sidebar .header-logo {
  text-align: center;
  margin: 24px 0 48px 0;
}

body#web #sidebar .header-logo img {
  height: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web #sidebar .sidebar-exsim-img {
  width: 150px;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-top: 50px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .sidebar-exsim-img {
    width: 100px;
    margin-top: 100px;
  }
}

body#web #sidebar .exsim-social {
  max-width: 100px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body#web #sidebar .exsim-social a {
  text-decoration: none;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

body#web #sidebar .exsim-social a .facebook-img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

body#web #sidebar .exsim-social a .insta-img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

body#web #sidebar .exsim-social a .youtube-img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

body#web #sidebar .sidebar-copyright {
  text-align: center;
  display: block;
  font-family: "Montserrat";
  font-size: 14px;
  color: #111111;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .sidebar-copyright {
    font-size: 11px;
  }
}

body#web #sidebar .sidebar-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #111111;
  font-size: 11px;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 5px;
}

@media screen and (max-width: 1366px) {
  body#web #sidebar .sidebar-terms {
    font-size: 9px;
  }
}

body#web #sidebar .sidebar-terms a {
  font-family: "Montserrat";
  color: #111111;
  text-decoration: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
}

body#web #sidebar.show {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

body#web #home h1 {
  font-family: "Cinzel";
  font-size: 45px;
  margin-bottom: unset;
  text-transform: uppercase;
}

@media screen and (max-width: 1366px) {
  body#web #home h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  body#web #home h1 {
    text-align: center;
  }
}

body#web #home p {
  font-family: "Montserrat";
  font-size: 16px;
  margin-bottom: unset;
}

@media screen and (max-width: 1366px) {
  body#web #home p {
    font-size: 11.5px;
  }
}

body#web #home h1.h1-standing-1 {
  color: #bc592f;
}

body#web #home h1.h1-standing-2 {
  color: #c5ab78;
}

body#web #home section#landing {
  background-image: url("../assets/img/home/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0px;
}

body#web #home section#landing .exsim-logo {
  width: 140px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 1366px) {
  body#web #home section#landing .exsim-logo {
    width: 130px;
  }
}

body#web #home section#landing .hugoz-logo {
  max-width: 430px;
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-top: -22px;
}

@media screen and (max-width: 1366px) {
  body#web #home section#landing .hugoz-logo {
    max-width: 370px;
  }
}

body#web #home section#landing a.btn-load-more {
  padding: unset;
  background: unset;
  border: unset;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 1366px) {
  body#web #home section#landing a.btn-load-more {
    width: 44px;
    height: 44px;
  }
}

body#web #home section#landing a.btn-load-more img {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

body#web #home section#landing button.btn-load-more:hover img {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

body#web #home section#standing-out {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0px;
}

@media screen and (max-width: 991px) {
  body#web #home section#standing-out {
    padding: 50px 0px;
  }
}

body#web #home section#standing-out .standing-out-img {
  width: 100%;
}

body#web #home section#standing-out .standing-out-img + h1 {
  margin-top: 50px;
}

body#web #home section#standing-out h1 + p.standing-p {
  margin-top: 30px;
}

body#web #home section#standing-out h1 {
  text-align: center;
}

body#web #home section#standing-out p.standing-p {
  color: #111111;
  max-width: 810px;
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

@media screen and (max-width: 1366px) {
  body#web #home section#standing-out p.standing-p {
    max-width: 600px;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#standing-out p.standing-p {
    margin-bottom: 50px;
  }
}

body#web #home section#heart-of-the-city {
  background-image: url("../assets/img/home/heart-of-the-city.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 991px) {
  body#web #home section#heart-of-the-city {
    min-height: 50vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body#web #home section#heart-of-the-city .heart-of-the-city-wrapper {
  min-height: 50vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1366px) {
  body#web #home section#heart-of-the-city .heart-of-the-city-wrapper {
    min-height: 46.5vh;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#heart-of-the-city .heart-of-the-city-wrapper {
    min-height: unset;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#heart-of-the-city h1 {
    margin: 0 auto;
  }
}

body#web #home section#heart-of-the-city p {
  color: #ffffff;
  max-width: 823px;
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 1366px) {
  body#web #home section#heart-of-the-city p {
    max-width: 591.3px;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#heart-of-the-city p {
    text-align: center;
    margin: 0 auto;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#heart-of-the-city .title-wrapper + .desc-wrapper {
    margin-top: 20px;
  }
}

body#web #home section#hugoz-home-detail-wrapper {
  padding: 100px 0px;
}

body#web #home section#hugoz-home-detail-wrapper .hugoz-detail-content {
  max-width: 400px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #home section#hugoz-home-detail-wrapper h1 + p {
  margin-top: 15px;
}

body#web #home section#hugoz-home-detail-wrapper .mb-50 {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  body#web #home section#hugoz-home-detail-wrapper .mt-md-50 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 991px) {
  body#web #home section#hugoz-home-detail-wrapper .mb-md-50 {
    margin-bottom: 70px;
  }
}

body#web #home section#discover-spot {
  min-height: 45vh;
  width: 100%;
  background-image: url("../assets/img/home/footer-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body#web #home section#discover-spot h6 {
  margin-bottom: unset;
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 17px;
  text-align: center;
}

body#web #home section#discover-spot h1 {
  text-align: center;
}

body#web #home section#discover-spot h6 + h1 {
  margin-top: 10px;
}

body#web #home section#discover-spot h1 + .btn-register {
  margin-top: 30px;
}

body#web #home section#discover-spot .btn-register {
  background-color: #d97f46;
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
}

@media (max-width: 500px) {
  body#web #home section#discover-spot .footer-top + .footer-wrapper {
    margin-top: 20px;
  }
}

body#web #home section#discover-spot .footer-wrapper .footer-p {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  margin-bottom: unset;
  display: inline-block;
}

@media screen and (max-width: 1366px) {
  body#web #home section#discover-spot .footer-wrapper .footer-p {
    font-size: 10px;
  }
}

@media screen and (max-width: 500px) {
  body#web #home section#discover-spot .footer-wrapper .footer-p {
    display: block;
  }
}

body#web #home section#discover-spot .footer-wrapper a {
  font-family: Montserrat;
  font-size: 12px;
  color: #bc592f;
}

@media screen and (max-width: 1366px) {
  body#web #home section#discover-spot .footer-wrapper a {
    font-size: 10px;
  }
}

body#web #home section#discover-spot .footer-wrapper span {
  font-family: Montserrat;
  font-size: 12px;
  color: #bc592f;
}

@media screen and (max-width: 1366px) {
  body#web #home section#discover-spot .footer-wrapper span {
    font-size: 10px;
  }
}

body#web #home section#discover-spot .footer-more-info {
  padding: 0px 40px;
}

@media screen and (max-width: 1366px) {
  body#web #home section#discover-spot .footer-more-info {
    padding: 0px 10px;
  }
}

body#web #home section#discover-spot .footer-more-info small {
  font-family: "Montserrat";
  color: #ffffff;
  font-size: 9px;
  display: block;
  line-height: 15px;
}

@media (max-width: 500px) {
  body#web #home section#discover-spot .footer-more-info small {
    margin-top: 10px;
    font-size: 7px;
  }
}

body#web #gallery {
  position: relative;
  overflow-y: hidden;
  height: 100vh;
}

body#web #gallery .carousel-inner {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #gallery .carousel-inner {
    max-height: 100%;
    min-height: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  body#web #gallery .carousel-inner {
    max-height: 100%;
    min-height: 100%;
  }
}

body#web #gallery .carousel-item .carousel-caption {
  position: absolute;
  top: 50px;
  z-index: 1;
}

body#web #gallery .carousel-item .box-image {
  background-color: black;
  width: 100%;
  height: 100vh;
}

body#web #gallery .carousel-item .img-custom-fluid {
  width: 100%;
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web #gallery .carousel-control-prev,
body#web #gallery .carousel-control-next {
  cursor: pointer;
}

body#web #floor-plan {
  background-image: url("../assets/img/floor-plan/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #floor-plan h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #bc592f;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan h1 {
    font-size: 32px;
    margin-bottom: 69px;
  }
}

body#web #floor-plan .compass-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 340px;
  margin: 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan .compass-img {
    max-width: 290px;
  }
}

body#web #floor-plan .desktop-compass-img {
  max-width: 300px;
  position: absolute;
  top: 0px;
  right: -45px;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan .desktop-compass-img {
    max-width: 230px;
  }
}

@media screen and (max-width: 1199px) {
  body#web #floor-plan .desktop-compass-img {
    display: none;
  }
}

body#web #floor-plan .floor-plan-img {
  width: 90%;
  height: auto;
  display: block;
  max-width: 340px;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan .floor-plan-img {
    max-width: 282px;
  }
}

@media screen and (max-width: 767px) {
  body#web #floor-plan .floor-plan-img {
    margin-bottom: 50px;
  }
}

body#web #floor-plan .floor-plan-icon-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan .floor-plan-icon-wrapper {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  body#web #floor-plan .floor-plan-icon-wrapper {
    margin-bottom: 40px;
  }
}

body#web #floor-plan .floor-plan-icon-wrapper .floor-plan-icon-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1366px) {
  body#web #floor-plan .floor-plan-icon-wrapper .floor-plan-icon-img {
    width: 50px;
    height: 50px;
  }
}

body#web #floor-plan .floor-plan-icon-wrapper .floor-plan-icon-img + .floor-plan-icon-img {
  margin-left: 18px;
}

body#web #layoutPlan {
  background-image: url("../assets/img/layout-plan/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #layoutPlan h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #bc592f;
  text-align: center;
  text-transform: uppercase;
  margin-top: 31px;
  margin-bottom: 38px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan h1 {
    margin-top: unset;
    font-size: 32px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan h1 {
    font-size: 27px;
  }
}

body#web #layoutPlan .layout-plan-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1117px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-plan-nav {
    max-width: 812px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-plan-nav {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-plan-nav .nav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

body#web #layoutPlan .layout-plan-nav button.nav-pills-prev-button,
body#web #layoutPlan .layout-plan-nav button.nav-pills-next-button {
  background: transparent;
  outline: unset;
  border: unset;
  padding: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 56px;
  height: 56px;
  position: absolute;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-plan-nav button.nav-pills-prev-button,
  body#web #layoutPlan .layout-plan-nav button.nav-pills-next-button {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 725px) {
  body#web #layoutPlan .layout-plan-nav button.nav-pills-prev-button,
  body#web #layoutPlan .layout-plan-nav button.nav-pills-next-button {
    display: none;
  }
}

body#web #layoutPlan .layout-plan-nav button.nav-pills-prev-button:hover,
body#web #layoutPlan .layout-plan-nav button.nav-pills-next-button:hover {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

body#web #layoutPlan .layout-plan-nav button.nav-pills-prev-button {
  left: 15px;
}

body#web #layoutPlan .layout-plan-nav button.nav-pills-next-button {
  right: 15px;
}

@media only screen and (max-width: 575px) {
  body#web #layoutPlan .layout-plan-nav .nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 31%;
  }
}

body#web #layoutPlan .layout-plan-nav .nav-item .nav-link {
  background: transparent;
  font-family: Cinzel;
  font-size: 27px;
  color: #bc592f;
  border: 1px solid transparent;
  border-radius: 0px;
  padding: 0.5rem 4.8rem;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-plan-nav .nav-item .nav-link {
    padding: 0.45rem 3.55rem;
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  body#web #layoutPlan .layout-plan-nav .nav-item .nav-link {
    padding: 0.45rem 0px;
    width: 100%;
    font-size: 13px;
  }
}

body#web #layoutPlan .layout-plan-nav .nav-item .nav-link.active {
  border: 1px solid #d97f46;
  background: #f4f3f1;
}

body#web #layoutPlan .layout-plan-nav .nav-item + .nav-item {
  margin-left: 12px;
}

body#web #layoutPlan .layout-content {
  padding-top: 43px;
}

body#web #layoutPlan .layout-content .glightbox {
  display: block;
}

body#web #layoutPlan .layout-content .glightbox .type-a-img {
  max-width: 670px;
  height: 580px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .glightbox .type-a-img {
    max-width: 477px;
    height: 378px;
  }
}

body#web #layoutPlan .layout-content .glightbox .type-b-img {
  max-width: 670px;
  height: 657px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .glightbox .type-b-img {
    max-width: 463px;
    height: 427px;
  }
}

body#web #layoutPlan .layout-content .glightbox .type-c-img {
  max-width: 752px;
  height: 566px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .glightbox .type-c-img {
    max-width: 539px;
    height: 427px;
  }
}

body#web #layoutPlan .layout-content .glightbox .type-a-img,
body#web #layoutPlan .layout-content .glightbox .type-b-img,
body#web #layoutPlan .layout-content .glightbox .type-c-img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  body#web #layoutPlan .layout-content .glightbox .type-a-img,
  body#web #layoutPlan .layout-content .glightbox .type-b-img,
  body#web #layoutPlan .layout-content .glightbox .type-c-img {
    height: 400px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .glightbox .type-a-img,
  body#web #layoutPlan .layout-content .glightbox .type-b-img,
  body#web #layoutPlan .layout-content .glightbox .type-c-img {
    height: 200px;
  }
}

body#web #layoutPlan .layout-content .layout-desc {
  padding: 107px 72px;
  padding-right: 0px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc {
    padding: 56px 48px;
  }
}

@media screen and (max-width: 991px) {
  body#web #layoutPlan .layout-content .layout-desc {
    padding: 0px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc {
    margin: 0 auto;
    max-width: 275px;
    width: 100%;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  padding-bottom: 26px;
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 18px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout {
    margin-bottom: 12px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout h2 {
  font-family: "Gotham Light";
  font-size: 41px;
  color: #623a1d;
  margin-bottom: unset;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout h2 {
    font-size: 30px;
    line-height: 22px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout h2 {
    font-size: 25px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout h2::after {
  content: " ";
  display: block;
  width: 9px;
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout span {
  font-family: "Gotham Bold";
  display: block;
  font-size: 81px;
  line-height: 43px;
  color: #623a1d;
  margin-bottom: unset;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout span {
    font-size: 61px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout span {
    font-size: 56px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout span::after {
  content: " ";
  display: block;
  width: 80px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout span::after {
    width: 57px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout .main-layout-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 45px;
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout .main-layout-optional b {
  font-family: "Gotham Bold";
  font-size: 42px;
  color: #623a1d;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: unset;
  line-height: 30px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout .main-layout-optional b {
    font-size: 29px;
    line-height: 22px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout .main-layout-optional b {
    font-size: 24px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper .main-layout .main-layout-optional b + b {
  margin-top: 6px;
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 {
  font-family: "Gotham Light";
  color: #623a1d;
  clear: both;
  font-size: 32px;
  margin-bottom: unset;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 {
    font-size: 23px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 {
    font-size: 18px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 span {
  font-family: "Gotham Bold";
  font-size: 43px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 span {
    font-size: 32px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper h3 span {
    font-size: 27px;
  }
}

body#web #layoutPlan .layout-content .layout-desc .main-layout-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #623a1d;
  bottom: 0px;
  left: 0px;
}

body#web #layoutPlan .layout-content .layout-desc .layout-list {
  width: 100%;
  padding-top: 21px;
}

body#web #layoutPlan .layout-content .layout-desc .layout-list ol {
  padding-left: 22px;
}

body#web #layoutPlan .layout-content .layout-desc .layout-list ol li {
  font-family: "Gotham Light";
  font-size: 26px;
  font-weight: bold;
  color: #623a1d;
  letter-spacing: 0px;
}

@media screen and (max-width: 1366px) {
  body#web #layoutPlan .layout-content .layout-desc .layout-list ol li {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  body#web #layoutPlan .layout-content .layout-desc .layout-list ol li {
    font-size: 13px;
  }
}

body#web #facilities-plan {
  background-image: url("../assets/img/floor-plan/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #facilities-plan {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #facilities-plan .facilities {
  width: 50%;
}

body#web #facilities-plan h1 {
  font-family: "Cinzel";
  font-size: 100px;
  color: #a77f6a;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 59px;
  opacity: 0.2;
  margin-bottom: 0;
}

@media screen and (max-width: 1400px) {
  body#web #facilities-plan h1 {
    font-size: 54px;
    padding-bottom: 49px;
  }
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan h1 {
    display: none;
  }
}

body#web #facilities-plan h2 {
  font-family: "Cinzel";
  color: #a77f6a;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.2;
  margin-bottom: 0;
  display: none;
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan h2 {
    font-size: 48px;
    padding-bottom: 49px;
    display: block;
  }
}

@media screen and (max-width: 450px) {
  body#web #facilities-plan h2 {
    font-size: 36px;
    padding-bottom: 41px;
    display: block;
  }
}

body#web #facilities-plan .relative {
  position: relative;
}

@media screen and (min-width: 767px) {
  body#web #facilities-plan .height500 {
    height: 500px;
  }
}

body#web #facilities-plan .facilities-plan-img {
  display: block;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .facilities-plan-img {
    width: 100%;
  }
}

body#web #facilities-plan .desktop-compass-facilities {
  max-width: 70px;
  position: absolute;
  top: -48px;
  left: 1200px;
}

@media screen and (max-width: 1400px) {
  body#web #facilities-plan .desktop-compass-facilities {
    max-width: 55px;
    top: -7%;
    left: 246%;
  }
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .desktop-compass-facilities {
    max-width: 86px;
    top: -8%;
    left: 77%;
  }
}

@media screen and (max-width: 550px) {
  body#web #facilities-plan .desktop-compass-facilities {
    max-width: 75px;
    top: -8%;
    left: 75%;
  }
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .small-screen-center {
    width: 80%;
  }
}

body#web #facilities-plan p {
  margin-top: 0;
  margin-bottom: 0rem;
}

body#web #facilities-plan .group-blue {
  color: #4077AC;
  font-family: "Gotham Light";
  font-weight: bold;
}

body#web #facilities-plan .group-pink {
  color: #C72E54;
  font-family: "Gotham Light";
  font-weight: bold;
}

body#web #facilities-plan .group-yellow {
  color: #DF9247;
  font-family: "Gotham Light";
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .group-yellow {
    padding-top: 0;
  }
}

body#web #facilities-plan .group-cocoa {
  color: #935829;
  font-family: "Gotham Light";
  font-weight: bold;
}

body#web #facilities-plan .group-text {
  font-size: 95%;
  font-weight: bold;
  font-family: "Gotham Light";
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .group-text {
    font-size: 110%;
  }
}

body#web #facilities-plan .flex-block {
  display: block;
}

@media screen and (min-width: 768px) {
  body#web #facilities-plan .flex-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

body#web #facilities-plan .facilities-plan-img2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  body#web #facilities-plan .facilities-plan-img2 {
    width: 100%;
  }
}

body#web #facilities-plan .plan {
  font-family: "Cinzel";
  font-size: 100px;
  color: #a77f6a;
  text-transform: uppercase;
  opacity: 0.2;
  margin-bottom: 0;
  display: none;
}

@media screen and (max-width: 1400px) {
  body#web #facilities-plan .plan {
    font-size: 54px;
  }
}

@media only screen and (min-width: 767px) {
  body#web #facilities-plan .plan {
    display: block;
  }
}

body#web #facilities-plan .width30 {
  width: 28%;
  padding-left: 0;
  padding-right: 0;
  margin-right: 4%;
}

body#web #facilities-plan .width301 {
  width: 28%;
  padding-left: 0;
  padding-right: 0;
}

body#web #facilities-plan .width40 {
  width: 36%;
  padding-left: 0;
  padding-right: 0;
  margin-right: 4%;
}

@media (max-width: 767px) {
  body#web #facilities-plan .width40,
  body#web #facilities-plan .width30,
  body#web #facilities-plan .width301 {
    width: 100%;
  }
}

@media (min-width: 767px) {
  body#web #facilities-plan .d-flex-min {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  body#web #facilities-plan .padding-left0 {
    padding-left: 0;
  }
}

body#web #facilities-plan ol, body#web #facilities-plan ul {
  padding-left: 1rem;
}

body#web #location-map {
  background-image: url("../assets/img/location-map/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #location-map {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #location-map h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #e6ac74;
  text-align: center;
  text-transform: uppercase;
  margin-top: 31px;
  margin-bottom: 63px;
}

@media screen and (max-width: 1366px) {
  body#web #location-map h1 {
    margin-top: unset;
    font-size: 32px;
    margin-bottom: 44px;
  }
}

@media screen and (max-width: 575px) {
  body#web #location-map h1 {
    font-size: 27px;
  }
}

body#web #location-map .location-map-img {
  max-width: 875px;
  width: 100%;
  display: block;
  margin: 0 auto;
  -webkit-transform: translateX(54px);
          transform: translateX(54px);
}

@media screen and (max-width: 1366px) {
  body#web #location-map .location-map-img {
    max-width: 625px;
    -webkit-transform: translateX(39px);
            transform: translateX(39px);
  }
}

@media screen and (max-width: 575px) {
  body#web #location-map .location-map-img {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

body#web #developer {
  background-image: url("../assets/img/developer/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #developer {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #developer h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #bc592f;
  text-align: center;
  margin-top: 49px;
  margin-bottom: 63px;
}

@media screen and (max-width: 1366px) {
  body#web #developer h1 {
    margin-top: unset;
    font-size: 32px;
    margin-bottom: 44px;
  }
}

@media screen and (max-width: 575px) {
  body#web #developer h1 {
    font-size: 27px;
  }
}

body#web #developer .industrial-arrow-left,
body#web #developer .industrial-arrow-right {
  height: 20px;
  cursor: pointer;
}

body#web #developer .industrial-arrow-left,
body#web #developer .high-rise-arrow-left {
  position: relative;
  left: -30px;
}

body#web #developer .industrial-arrow-right,
body#web #developer .high-rise-arrow-right {
  position: relative;
  right: -30px;
}

body#web #developer .high-rise-arrow-left,
body#web #developer .high-rise-arrow-right {
  height: 20px;
  cursor: pointer;
}

body#web #developer .carousel-vertical-item {
  position: relative;
  height: 100px;
  width: 100%;
}

body#web #developer .carousel-vertical-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#web #developer .carousel-vertical-wrap {
  max-height: 500px;
  width: 200px;
  overflow: hidden;
}

body#web #developer .carousel-vertical-wrap .carousel-arrow-wrap {
  position: absolute;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 0;
}

body#web #developer .carousel-vertical-wrap .carousel-arrow-wrap .carousel-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 500px;
}

body#web #developer .carousel-vertical-wrap .carousel-vertical-inner-wrap {
  position: relative;
}

body#web #developer .carousel-vertical-wrap .carousel-vertical-inner-wrap img {
  height: 100px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web #developer .macalisterz, body#web #developer .dclover {
  width: 80% !important;
}

body#web #developer a {
  color: #d97f46;
}

body#web #developer h4 {
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
}

body#web #developer p {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
}

body#web #developer .title-wrapper {
  font-weight: bold;
  font-style: normal;
  font-size: 50px;
  margin-bottom: 50px;
}

body#web #developer .developer-title-wrapper {
  margin-bottom: 20px;
}

body#web #developer .developer-title-wrapper h5 {
  font-size: 25px;
  text-align: center;
  font-family: "Montserrat";
  color: #bc592f;
}

body#web #developer .custom-col-left {
  min-height: 68.7vh;
}

@media screen and (max-width: 575px) {
  body#web #developer .custom-col-left {
    min-height: unset;
    margin-bottom: 50px;
  }
}

body#web #developer .find-out-wrapper {
  padding-top: 30px;
}

body#web #developer .find-out-wrapper h4,
body#web #developer .find-out-wrapper a {
  font-weight: bold;
  font-style: normal;
  text-align: center;
}

body#web #developer .find-out-wrapper h4 {
  font-size: 17px;
}

@media screen and (max-width: 575px) {
  body#web #developer .find-out-wrapper h4 {
    font-size: 13px;
  }
}

body#web #developer .find-out-wrapper a {
  font-size: 28px;
  text-decoration: underline;
}

@media screen and (max-width: 1366px) {
  body#web #developer .find-out-wrapper a {
    font-size: 18px;
  }
}

body#web #developer .logo-wrapper img {
  width: 100%;
  height: 168px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1366px) {
  body#web #developer .logo-wrapper img {
    height: 110px;
  }
}

@media screen and (max-width: 575px) {
  body#web #developer .logo-wrapper img {
    height: 100px;
  }
}

body#web #developer .custom-col-right {
  min-height: 66.7vh;
  max-width: 600px;
  width: 100%;
}

body#web #developer .desc-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #developer .desc-wrapper {
    margin-top: 30px;
  }
}

@media screen and (max-width: 575px) {
  body#web #developer .desc-wrapper {
    margin-top: 20px;
  }
}

body#web #developer .desc-wrapper p {
  font-family: "Montserrat";
  max-width: 705px;
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
}

@media screen and (max-width: 1366px) {
  body#web #developer .desc-wrapper p {
    font-size: 13px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  body#web #developer .desc-wrapper p {
    font-size: 12px;
  }
}

body#web #developer .desc-wrapper:after {
  content: " ";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 70%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #623a1d;
}

body#web #contact {
  background-image: url("../assets/img/contact-us/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  padding: 78px 0px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  body#web #contact {
    padding: 78px 0px;
    padding-bottom: 60px;
  }
}

body#web #contact h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #e6ac74;
  text-align: center;
  text-transform: uppercase;
  margin-top: 34px;
  margin-bottom: 110px;
}

@media screen and (max-width: 1366px) {
  body#web #contact h1 {
    font-size: 32px;
    margin-top: 0px;
    margin-bottom: 95px;
  }
}

@media screen and (max-width: 575px) {
  body#web #contact h1 {
    margin-bottom: 50px;
  }
}

body#web #contact .hugoz-logo-wrapper {
  max-width: 320px;
  margin: 0 auto;
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}

@media screen and (max-width: 1366px) {
  body#web #contact .hugoz-logo-wrapper {
    max-width: 220px;
  }
}

@media screen and (max-width: 575px) {
  body#web #contact .hugoz-logo-wrapper {
    -webkit-transform: unset;
            transform: unset;
  }
}

body#web #contact .exsim-logo-wrapper {
  max-width: 250px;
  margin: 0 auto;
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}

@media screen and (max-width: 1366px) {
  body#web #contact .exsim-logo-wrapper {
    max-width: 150px;
  }
}

@media screen and (max-width: 575px) {
  body#web #contact .exsim-logo-wrapper {
    -webkit-transform: unset;
            transform: unset;
  }
}

body#web #contact .app-name-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  body#web #contact .app-name-wrapper {
    margin-bottom: 15px;
  }
}

body#web #contact .app-name-wrapper .exsim-content {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: unset;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 1366px) {
  body#web #contact .app-name-wrapper .exsim-content {
    font-size: 14px;
    line-height: 17px;
  }
}

body#web #contact .app-name-wrapper .exsim-content-2 {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: unset;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 1366px) {
  body#web #contact .app-name-wrapper .exsim-content-2 {
    font-size: 14px;
    line-height: 17px;
  }
}

body#web #contact .app-name-wrapper small {
  font-family: "Montserrat";
  font-size: 10px;
  color: #ffffff;
  line-height: 12px;
  text-align: center;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1366px) {
  body#web #contact .app-name-wrapper small {
    font-size: 8px;
    line-height: 10px;
  }
}

body#web #contact .address span {
  font-family: "Montserrat";
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  display: block;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 1366px) {
  body#web #contact .address span {
    font-size: 11px;
  }
}

body#web #contact .exsim-content + .address {
  margin-top: 15px;
}

body#web #contact .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 360px;
  margin: 0 auto;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper {
    max-width: 260px;
  }
}

body#web #contact .contact-wrapper .label-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 90px;
}

body#web #contact .contact-wrapper .label-wrapper img {
  margin-right: 10px;
}

body#web #contact .contact-wrapper .label-wrapper .contact-us-img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper .label-wrapper .contact-us-img {
    width: 20px;
    height: 20px;
  }
}

body#web #contact .contact-wrapper .label-wrapper .mobile-img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper .label-wrapper .mobile-img {
    width: 20px;
    height: 20px;
  }
}

body#web #contact .contact-wrapper .label-wrapper .website-img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper .label-wrapper .website-img {
    width: 20px;
    height: 20px;
  }
}

body#web #contact .contact-wrapper .label-wrapper .email-img {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper .label-wrapper .email-img {
    width: 20px;
    height: 20px;
  }
}

body#web #contact .contact-wrapper .label-wrapper .fax-img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

body#web #contact .contact-wrapper .label-wrapper .label-content-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

body#web #contact .contact-wrapper .label-wrapper .label-content-wrapper p {
  font-family: "Montserrat";
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: unset;
}

@media screen and (max-width: 1366px) {
  body#web #contact .contact-wrapper .label-wrapper .label-content-wrapper p {
    font-size: 12px;
  }
}

body#web #contact .contact-wrapper + .contact-wrapper {
  margin-top: 15px;
}

body#web #contact .map-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 170px;
  margin: 0 auto;
}

body#web #contact .map-wrapper .map-img {
  display: block;
}

body#web #contact .map-wrapper .map-img img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1366px) {
  body#web #contact .map-wrapper .map-img img {
    width: 50px;
    height: 50px;
  }
}

body#web #contact .contact-wrapper + .map-wrapper {
  margin-top: 70px;
}

@media screen and (max-width: 575px) {
  body#web #contact .contact-wrapper + .map-wrapper {
    margin-top: 35px;
    margin-bottom: 50px;
  }
}

body#web #contact .contact-wrapper + .contact-wrapper + .map-wrapper {
  margin-top: 52px;
}

@media screen and (max-width: 575px) {
  body#web #contact .contact-wrapper + .contact-wrapper + .map-wrapper {
    margin-top: 35px;
  }
}

body#web #site-progress section.section-site-progress {
  background-image: url(../assets/img/layout-plan/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  text-align: center;
  padding: 78px 0px;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-height: 999999px;
  height: 100%;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-btn {
  border: 1px solid #c8653d;
  border-radius: 30px;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: unset;
  padding: 8px 16px;
  font-family: "Cinzel";
  font-size: 15px;
  color: #bc592f;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-btn::after {
  content: "";
  color: #bc592f;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: calc(50% - 7.5px);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-btn.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  border: 1px solid #c8653d;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 15px;
  width: 100%;
  padding: 10px 0px;
  background: #ffffff;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-content.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
  -ms-touch-action: auto;
      touch-action: auto;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-content a {
  font-family: "Cinzel";
  color: #111111;
  font-size: 15px;
  font-weight: 100;
  text-decoration: none;
  text-align: left;
  padding: 0px 16px;
}

body#web #site-progress section.section-site-progress .select-dropdown-wrapper .select-dropdown-content a.active {
  color: #bc592f;
  font-weight: bold;
}

body#web #site-progress section.section-site-progress .ratio-16x10 {
  --bs-aspect-ratio: calc(10 / 16 * 100%);
}

body#web #site-progress section.section-site-progress [data-fancybox] {
  overflow: hidden;
}

body#web #site-progress section.section-site-progress [data-fancybox] img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
}

body#web #site-progress section.section-site-progress [data-fancybox]:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body#web #site-progress section.section-site-progress h1 {
  font-family: "Cinzel";
  font-size: 45px;
  color: #bc592f;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}

body#web .loading-wrapper {
  width: 100vw;
  height: 100vh;
  background-color: #2c1411;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web .loading-wrapper img {
  width: 350px;
}

@media screen and (min-width: 821px) {
  body#web .zoomImg {
    display: none !important;
  }
}

body#web .t-50 {
  top: 50px;
}

body#web .social-media {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

body#web .social-media ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

body#web .social-media ul .social-item {
  margin-bottom: 20px;
}

body#web .social-media ul .social-item img {
  width: 40px;
}

body#web .pool-wrapper {
  position: relative;
  bottom: 0px;
  left: 0px;
  height: 50%;
  width: 100%;
  background-image: url("../assets/img/home/pool.png");
  background-size: cover;
  background-position: center top;
}

body#web .pool-wrapper .water {
  position: relative;
  bottom: 0px;
  left: 0px;
  height: 50%;
  width: 100%;
  background-image: url("../assets/img/home/pool-mask.png");
  background-size: cover;
  background-position: center top;
  -webkit-filter: url("#turbulence");
          filter: url("#turbulence");
}

body#web .segment {
  width: 100%;
  position: relative;
}

body#web .justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

body#web .pt-50 {
  padding-top: 50px !important;
}

body#web .pt-100 {
  padding-top: 100px !important;
}

body#web .pl-190 {
  padding-left: 190px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web .pl-190 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web .pl-190 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  body#web .pl-190 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web .pl-190 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  body#web .pl-190 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

body#web .green-img {
  position: fixed;
  right: 0px;
  top: 23%;
  width: 200px;
}

@media screen and (max-width: 1366px) {
  body#web .green-img {
    top: 20%;
    width: 170px;
  }
}

@media screen and (max-width: 575px) {
  body#web .green-img {
    width: 100px;
  }
}

body {
  position: relative;
  overflow: overlay;
}

body[data-scroll="true"] {
  overflow: overlay;
}

body[data-scroll="false"] {
  overflow: hidden;
}

::-webkit-scrollbar {
  background: transparent;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #623a1d;
}

.hugoz-container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .hugoz-container {
    max-width: 994px;
  }
}

@media screen and (min-width: 1400px) {
  .hugoz-container {
    max-width: 1388px;
  }
}

.hugoz-new .nav-tabs {
  border-bottom: none !important;
}

.hugoz-new .nav-link {
  border: none !important;
}

.hugoz-new .nav-link .active {
  border: none !important;
}

.vr360-floating {
  background-image: url("./../assets/img/home/vr360-inactive.png");
  background-repeat: no-repeat;
  background-size: contain;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  width: 48px;
  height: 185px;
  position: fixed;
  top: 35.1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  z-index: 100;
  text-decoration: none;
  box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0);
  -moz-box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0);
  -webkit-transition: all ease linear;
  transition: all ease linear;
}

@media screen and (max-width: 1366px) {
  .vr360-floating {
    top: 31%;
    width: 37px;
    height: 142px;
  }
}

@media screen and (max-width: 428px) {
  .vr360-floating {
    width: 40px;
    height: 153px;
  }
}

.vr360-floating.active {
  background-image: url("./../assets/img/home/vr360-active.png");
}

.vr360-floating:hover {
  color: #d0c5a9;
  box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0.3);
}

table.dataTable tr th.select-checkbox.selected::after {
  content: "\2714";
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: #b0bed9 1px 1px, #b0bed9 -1px -1px, #b0bed9 1px -1px, #b0bed9 -1px 1px;
}

.js-cookie-consent {
  background-color: #42e45459;
  padding: 10px;
  text-align: center;
}

.js-cookie-consent button {
  background-color: aliceblue;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-left: 20px;
}

.dataTable .selected {
  background-color: #b7f7e4 !important;
}

body#backend {
  position: relative;
}

.box-tools .breadcrumb {
  background-color: #fff;
  margin-bottom: 0px !important;
}

.box-tools .breadcrumb a {
  background-color: #3c8dbc;
  margin-left: 10px;
  color: #fff;
  padding: 10px;
}

.glightbox-layout-map img {
  background-color: #ffffff;
}

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

.types button {
  background-color: transparent;
  outline: none;
  border: none;
}

.types button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-body .type-img {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .dialog-floor-plan {
    max-width: 1500px !important;
  }
}

.dialog-floor-plan #layoutPlan {
  min-height: unset !important;
}
