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

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

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

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

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

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

body#web #bg-video-register {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  outline: 0px;
}

@media screen and (max-width: 767px) {
  body#web .d-block-mb {
    margin-bottom: 5px;
  }
}

body#web #register {
  position: relative;
  z-index: 7;
  -webkit-transition: display 0.5s ease-in-out;
  transition: display 0.5s ease-in-out;
}

@-webkit-keyframes sliderMainContentReverse {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes sliderMainContentReverse {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes sliderMainContent {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes sliderMainContent {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

body#web .overlay-register {
  overflow: hidden;
  position: absolute;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 7;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

body#web .overlay-register .register-pattern-wrapper {
  position: relative;
  width: 100%;
}

body#web .overlay-register .register-expend {
  width: 100%;
}

body#web .overlay-register button {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 30px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-family: "Montserrat";
  padding: 0;
  background: transparent;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

@media only screen and (max-width: 575px) {
  body#web .overlay-register button {
    bottom: 95px;
  }
}

@media screen and (max-width: 280px) {
  body#web .overlay-register button {
    right: 30px;
    bottom: 40px;
  }
}

body#web .overlay-register button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Scale up by 10% on hover */
}

body#web .overlay-register .register-expend {
  position: absolute;
  top: 0;
  font-family: "Montserrat";
  background: none !important;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s ease-in-out !important;
  transition: -webkit-transform 0.3s ease-in-out !important;
  transition: transform 0.3s ease-in-out !important;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out !important;
  right: 0;
}

body#web .overlay-register .register-expend.active {
  -webkit-animation: sliderMainContent 1s ease-in-out forwards;
          animation: sliderMainContent 1s ease-in-out forwards;
}

body#web .overlay-register .register-expend.reverse {
  -webkit-animation: sliderMainContentReverse 1s ease-in-out forwards;
          animation: sliderMainContentReverse 1s ease-in-out forwards;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body#web .overlay-register .register-expend .circle {
  width: 10vw;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

@media screen and (max-width: 500px) {
  body#web .overlay-register .register-expend .circle {
    width: 20vw;
  }
}

body#web .overlay-register .register-expend .arrow {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  body#web .overlay-register {
    overflow-x: hidden;
  }
}

body#web .overlay-register.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web .overlay-register .form-control {
  background: none;
  border: none;
  border-radius: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 2.3;
}

body#web .overlay-register .form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 4px 1000px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px;
}

body#web .overlay-register .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body#web .overlay-register .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body#web .overlay-register .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body#web .overlay-register .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

body#web .overlay-register .form-control:focus {
  outline: none;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  background: none;
}

body#web .overlay-register input::-webkit-input-placeholder,
body#web .overlay-register select,
body#web .overlay-register textarea::-webkit-input-placeholder {
  color: #fff;
}

body#web .overlay-register input::-moz-placeholder,
body#web .overlay-register select,
body#web .overlay-register textarea::-moz-placeholder {
  color: #fff;
}

body#web .overlay-register input::-ms-input-placeholder,
body#web .overlay-register select,
body#web .overlay-register textarea::-ms-input-placeholder {
  color: #fff;
}

body#web .overlay-register input::placeholder,
body#web .overlay-register select,
body#web .overlay-register textarea::placeholder {
  color: #fff;
}

body#web .overlay-register input,
body#web .overlay-register textarea {
  color: #fff;
}

body#web .overlay-register option {
  color: #460b3b;
}

body#web .overlay-register small,
body#web .overlay-register label {
  color: #fff;
}

body#web .overlay-register .register-tt {
  color: #fbc78b;
  font-family: "Montserrat";
  font-size: 30px;
}

@media screen and (max-width: 575px) {
  body#web .overlay-register .register-tt {
    font-size: 20px;
  }
}

@media screen and (max-width: 280px) {
  body#web .overlay-register .register-tt {
    letter-spacing: 10.3px;
  }
}

body#web .overlay-register .register-logo:first-child {
  width: 200px;
}

body#web .overlay-register .register-logo:last-child {
  width: 200px;
}

body#web .overlay-register .register-bottom-wrapper {
  width: 100%;
  background-color: #fff;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
}

body#web .overlay-register .register-bottom-wrapper .h-150 {
  height: 150px;
}

body#web .overlay-register .register-bottom-wrapper a {
  color: #626263;
}

body#web .overlay-register .register-padding-top {
  padding-top: 40px;
}

body#web .overlay-register .register-label {
  width: 25%;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}

body#web .overlay-register .register-label .register-label-logo {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  body#web .overlay-register .register-label .register-label-logo {
    display: none;
  }
}

body#web .overlay-register .register-logo-left {
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  cursor: pointer;
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  body#web .overlay-register .register-logo-left {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  body#web .overlay-register .register-logo-left {
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}

body#web .overlay-register .register-logo-right {
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  body#web .overlay-register .register-logo-right {
    -webkit-transform: translateX(80%);
            transform: translateX(80%);
  }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  body#web .overlay-register .register-logo-right {
    -webkit-transform: translateX(80%);
            transform: translateX(80%);
  }
}

body#web .overlay-register .submit {
  border: none;
  font-weight: bold;
  margin-top: 50px;
  width: 100%;
  height: 65px;
  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: #460b3b;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  font-family: "Montserrat";
}

@media screen and (max-width: 1440px) {
  body#web .overlay-register .submit {
    height: 40px;
  }
}

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

body#web .overlay-register .d-flex-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@-webkit-keyframes sliderMainContentReverseS {
  0% {
    -webkit-transform: translateY(-700%);
            transform: translateY(-700%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes sliderMainContentReverseS {
  0% {
    -webkit-transform: translateY(-700%);
            transform: translateY(-700%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes sliderMainContentS {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-700%);
            transform: translateY(-700%);
  }
}

@keyframes sliderMainContentS {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-700%);
            transform: translateY(-700%);
  }
}

body#web .logo-register-section {
  position: absolute;
  top: 0;
  z-index: 2;
  bottom: 0;
  width: 50%;
  -webkit-animation: slideInFromBottom 3s ease-in-out forwards;
          animation: slideInFromBottom 3s ease-in-out forwards;
  padding-left: 80px;
  padding-top: 60px;
}

body#web .logo-register-section.active {
  -webkit-animation: sliderMainContentS 1s ease-in-out forwards;
          animation: sliderMainContentS 1s ease-in-out forwards;
}

body#web .logo-register-section.reverse {
  -webkit-animation: sliderMainContentReverseS 1s ease-in-out forwards;
          animation: sliderMainContentReverseS 1s ease-in-out forwards;
}

@media screen and (max-width: 820px) {
  body#web .logo-register-section {
    padding-left: 15px;
    width: 100%;
  }
}

body#web .logo-register-section .exsim-logo {
  width: 120px;
}

@media screen and (max-width: 767px) {
  body#web .logo-register-section .exsim-logo {
    width: 75px;
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 820px) {
  body#web .logo-register-section .exsim-logo {
    width: 75px;
    margin-bottom: 140px;
  }
}

body#web .logo-section {
  position: absolute;
  z-index: 2;
  top: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  body#web .logo-section {
    top: 40%;
  }
}

body#web .logo-section.active {
  -webkit-animation: sliderMainContentS 1s ease-in-out forwards;
          animation: sliderMainContentS 1s ease-in-out forwards;
}

body#web .logo-section.reverse {
  -webkit-animation: sliderMainContentReverseS 1s ease-in-out forwards;
          animation: sliderMainContentReverseS 1s ease-in-out forwards;
}

body#web .logo-section .exsim-logo {
  width: 40%;
}

@media screen and (max-width: 500px) {
  body#web .logo-section .exsim-logo {
    width: 80%;
  }
}

body#web .booking-pattern-wrapper {
  width: 100%;
}

body#web .booking-expend {
  position: absolute;
  top: 0;
  font-family: "Montserrat";
  background: none !important;
  height: 100vh;
  left: 70px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  body#web .booking-expend {
    left: 10px;
  }
}

body#web .booking-expend.active {
  -webkit-animation: sliderMainContent 1s ease-in-out forwards;
          animation: sliderMainContent 1s ease-in-out forwards;
}

body#web .booking-expend.reverse {
  -webkit-animation: sliderMainContentReverse 1s ease-in-out forwards;
          animation: sliderMainContentReverse 1s ease-in-out forwards;
}

body#web .booking-expend button {
  outline: none;
  border: none;
  position: fixed;
  bottom: 40px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

body#web .booking-expend button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body#web .booking-expend button .menu {
  width: 1vw;
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  body#web .booking-expend button .menu {
    width: 1.5vw;
  }
}

@media screen and (max-width: 768px) {
  body#web .booking-expend button .menu {
    width: 1.7vw;
  }
}

body#web .booking-expend button span {
  color: white;
  white-space: nowrap;
  font-family: "Montserrat";
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  body#web .booking-expend button span {
    font-size: 10px;
  }
}

body#web .booking-expend button span.active {
  -webkit-animation: sliderMainContent 1s ease-in-out forwards;
          animation: sliderMainContent 1s ease-in-out forwards;
}

body#web .booking-expend button span.reverse {
  -webkit-animation: sliderMainContentReverse 1s ease-in-out forwards;
          animation: sliderMainContentReverse 1s ease-in-out forwards;
}

body#web .logos-01 {
  margin-bottom: 20px;
}

body#web .pd-register-wrap {
  height: 100vh;
}

body#web .how-did {
  font-weight: normal;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 575px) {
  body#web .how-did {
    font-size: 11px;
  }
}

body#web .how-to-know {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
}

@media screen and (max-width: 378px) {
  body#web .how-to-know {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body#web #acknowledgement {
  margin-top: 5px !important;
}

body#web .d-flex-ack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

body#web .checkbox-round {
  margin-right: 10px;
  padding: 6px !important;
  border-radius: 0;
}

body#web .checkbox-round:not(:checked) {
  padding: 6px !important;
}

body#web .checkbox-round:checked {
  background-color: #fbc78b;
  color: #fbc78b;
}

body#web .checkbox-round:checked::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #460b3b;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fbc78b;
}

body#web input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #fff !important;
}

body#web .button-round {
  background-color: transparent;
  color: #fff;
  width: 100px;
  padding: 10px 0px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  text-align: center;
}

body#web .selected {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 820px) {
  body#web #register.container {
    max-width: unset;
  }
}

body#web .container-tnc-rnr {
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
  font-family: "Montserrat";
  font-size: 14px;
  position: relative;
}

@media only screen and (min-width: 821px) {
  body#web .container-tnc-rnr {
    padding: 0 45px;
  }
}

@media screen and (max-width: 820px) {
  body#web .container-tnc-rnr {
    font-size: 11px;
    margin-bottom: 0;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  body#web .container-tnc-rnr .border-solid {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}

body#web .container-tnc-rnr a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 2.5px;
}

@media screen and (max-width: 767px) {
  body#web .container-tnc-rnr a {
    text-decoration: underline;
    padding-top: 5px;
    padding-bottom: 5px;
    letter-spacing: unset;
  }
}

body#web .container-tnc-rnr a:hover {
  text-decoration: none !important;
}

body#web .d-flex-top-lbl {
  position: absolute;
  top: 50px;
  right: 50px;
}

body#web .cross-to-close {
  padding: 0;
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

body#web .cross-to-close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Scale up by 10% on hover */
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body#web .cross-to-close .circle {
  width: 10vw;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

@media screen and (max-width: 500px) {
  body#web .cross-to-close .circle {
    width: 20vw;
  }
}

body#web .cross-to-close .arrow {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#web .kyliez-fixed .register-pattern-wrapper {
  position: relative;
  width: 100%;
}

body#web .kyliez-fixed .register-expend {
  width: 100%;
}

body#web .kyliez-fixed button {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 30px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-family: "Montserrat";
  padding: 0;
  background: transparent;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

@media only screen and (max-width: 575px) {
  body#web .kyliez-fixed button {
    bottom: 95px;
  }
}

@media screen and (max-width: 280px) {
  body#web .kyliez-fixed button {
    right: 30px;
    bottom: 40px;
  }
}

body#web .kyliez-fixed button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Scale up by 10% on hover */
}

body#web .kyliez-fixed .register-expend {
  position: absolute;
  top: 0;
  font-family: "Montserrat";
  background: none !important;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s ease-in-out !important;
  transition: -webkit-transform 0.3s ease-in-out !important;
  transition: transform 0.3s ease-in-out !important;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out !important;
  right: 0;
}

body#web .kyliez-fixed .register-expend.active {
  -webkit-animation: sliderMainContent 1s ease-in-out forwards;
          animation: sliderMainContent 1s ease-in-out forwards;
}

body#web .kyliez-fixed .register-expend.reverse {
  -webkit-animation: sliderMainContentReverse 1s ease-in-out forwards;
          animation: sliderMainContentReverse 1s ease-in-out forwards;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body#web .kyliez-fixed .register-expend .circle {
  width: 10vw;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

@media screen and (max-width: 500px) {
  body#web .kyliez-fixed .register-expend .circle {
    width: 20vw;
  }
}

body#web .kyliez-fixed .register-expend .arrow {
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#web .noordinz-360 {
  z-index: 7;
  height: 60%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

body#web .noordinz-360 img {
  width: 145px;
}

@media screen and (max-width: 1536px) {
  body#web .noordinz-360 img {
    width: 115px;
  }
}

@media screen and (max-width: 820px) {
  body#web .noordinz-360 img {
    width: 55px;
  }
}

body#web .vr-logo {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat";
}

@media screen and (max-width: 820px) {
  body#web .vr-logo {
    font-size: 11px;
  }
}

body#web .vr-logo img {
  width: 55px;
}

@media screen and (max-width: 820px) {
  body#web .vr-logo img {
    width: 30px;
  }
}

body#web .vr-logo:hover {
  text-decoration: none !important;
}

body#web .bt-360-wrapper {
  position: fixed;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  padding-top: 60px;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

body#web .bt-360-wrapper.active {
  -webkit-animation: sliderMainContentS 0.95s ease-in-out forwards;
          animation: sliderMainContentS 0.95s ease-in-out forwards;
}

body#web .bt-360-wrapper.reverse {
  -webkit-animation: sliderMainContentReverseS 0.95s ease-in-out forwards;
          animation: sliderMainContentReverseS 0.95s ease-in-out forwards;
}

@-webkit-keyframes slideInFromRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 320px) {
  body#web .bt-360-wrapper.active {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
}

body#web .bt-360-wrapper .bt-360-all {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}

body#web .bt-360-img img {
  width: 50px;
}

@media only screen and (max-width: 575px) {
  body#web .bt-360-img img {
    width: 35px;
  }
}

body#web .logos-certs {
  bottom: -220px;
  position: relative;
  -webkit-animation: slideInFromBottom 2s ease-out forwards;
          animation: slideInFromBottom 2s ease-out forwards;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

@media screen and (max-width: 767px) {
  body#web .logos-certs.active {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

@-webkit-keyframes slideInFromTop {
  0% {
    top: -300px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  0% {
    top: -300px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes slideInFromBottom {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    right: -300px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@-webkit-keyframes slideInFromLeft {
  0% {
    left: -155px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    left: -155px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

body#web .d-flex-rules {
  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;
}

@media (max-width: 767px) {
  body#web .align-items-start {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

@media (max-width: 767px) {
  body#web .align-items-end {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

body#web .form-check-inline {
  margin-right: 5px;
}

body#web .form-check-inline .form-check-input {
  margin-top: 5px;
}

body#web #contact-wrapper {
  scrollbar-color: transparent transparent;
  overflow: auto;
  position: relative;
  bottom: -500px;
  opacity: 0;
  -webkit-animation: slideBottomForm 1.5s ease-in-out forwards;
          animation: slideBottomForm 1.5s ease-in-out forwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  font-size: 14px;
}

body#web #contact-wrapper .form-control {
  padding-left: 0;
  font-family: "Montserrat";
}

@media screen and (max-width: 820px) {
  body#web #contact-wrapper .form-control {
    font-size: 11px;
  }
}

body#web #contact-wrapper .checkbox-content {
  font-family: "Montserrat";
}

@media screen and (max-width: 820px) {
  body#web #contact-wrapper .checkbox-content {
    font-size: 11px;
  }
}

body#web #contact-wrapper .btn-wrapper {
  padding: 0 45px;
  width: 100%;
  cursor: pointer;
  bottom: 0;
}

body#web #contact-wrapper .btn-wrapper img {
  width: 50vw;
}

body#web #contact-wrapper .btn-wrapper .submit {
  font-size: 25px;
}

@media screen and (max-width: 1440px) {
  body#web #contact-wrapper .btn-wrapper .submit {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) {
  body#web #contact-wrapper .btn-wrapper .submit {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  body#web #contact-wrapper .btn-wrapper .submit {
    font-size: 11px;
  }
}

@-webkit-keyframes slideBottomForm {
  0% {
    bottom: -500px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideBottomForm {
  0% {
    bottom: -500px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes logoDesktopEase {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logoDesktopEase {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body#web .kyliez-logo {
  position: fixed;
  top: 50%;
  z-index: 7;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 20%;
  display: none;
}

@media screen and (min-width: 768px) {
  body#web .kyliez-logo {
    -webkit-transition: display 0.5s ease-in-out;
    transition: display 0.5s ease-in-out;
    -webkit-animation: logoDesktopEase 2s ease-in-out forwards;
            animation: logoDesktopEase 2s ease-in-out forwards;
  }
}

@media screen and (max-width: 1400px) {
  body#web .kyliez-logo {
    left: 30%;
  }
}

@media screen and (min-width: 1025px) {
  body#web .kyliez-logo {
    display: block;
  }
}

body#web .kyliez-logo img {
  width: 360px;
}

@-webkit-keyframes opacityLogos {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacityLogos {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body#web .kyliez-logo-v2 {
  margin-bottom: 150px;
  opacity: 0;
  -webkit-animation: opacityLogos 2s ease-in-out forwards;
          animation: opacityLogos 2s ease-in-out forwards;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@media screen and (max-width: 1199px) {
  body#web .kyliez-logo-v2 {
    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;
  }
}

@media screen and (min-width: 1200px) {
  body#web .kyliez-logo-v2 {
    position: fixed;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}

body#web .kyliez-logo-v2 img {
  width: 360px;
}

@media screen and (max-width: 767px) {
  body#web .kyliez-logo-v2 img {
    width: 260px;
  }
}

body#web .register-bt-abs {
  bottom: 0;
  cursor: pointer;
}

body#web .form-h {
  height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  body#web .form-h {
    height: 90vh;
  }
}

@media only screen and (max-width: 767px) {
  body#web .form-h {
    height: 80vh;
  }
}

body#web .form-h form {
  height: 100%;
}

body#web .form-h .form-inter-ele {
  padding: 0 45px;
  padding-bottom: 5px;
}

@media only screen and (max-width: 820px) {
  body#web .form-h .form-inter-ele {
    padding: 0 35px;
  }
}

body#web .header-form {
  padding: 45px;
}

@media only screen and (max-width: 820px) {
  body#web .header-form {
    padding: 35px 0px;
    display: grid;
  }
}

@media only screen and (min-width: 821px) {
  body#web .header-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body#web .header-form .header-form-title {
  color: white;
  font-family: "Montserrat";
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

@media only screen and (max-width: 820px) {
  body#web .header-form .header-form-title {
    text-align: center;
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (max-width: 820px) {
  body#web .header-form .header-form-logo {
    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;
    margin-bottom: 15px;
  }
}

body#web .header-form .header-form-logo img {
  width: 280px;
}

body#web .back-to-home {
  position: relative;
  z-index: 9;
  cursor: pointer;
  bottom: 40px;
  right: 40px;
}

@media screen and (max-width: 280px) {
  body#web .back-to-home {
    right: 30px;
    bottom: 40px;
  }
}

body#web .exsim-inter {
  position: fixed;
  bottom: 0;
  right: 0;
}

body#web .pd-r-0 {
  padding-right: 0 !important;
}

body#web .btn-wrapper-mb {
  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;
  padding: 0 45px;
  cursor: pointer;
}

@media screen and (max-width: 820px) {
  body#web .btn-wrapper-mb {
    padding: 0 35px;
  }
}

body#web .btn-wrapper-mb .btn-inner-txt {
  margin-top: 45px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Montserrat";
  background-color: white;
  padding: 20px 30px;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  body#web .btn-wrapper-mb .btn-inner-txt {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 10px 30px;
    font-size: 14px;
  }
}

body#web .btn-wrapper-mb .btn-inner-txt button {
  position: relative;
  bottom: unset;
  right: unset;
  height: unset;
  margin-top: 0px;
}

body#web .register-bt-wrap-mb .register-bt-abs {
  z-index: 8;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
}

body#web .register-bt-wrap-mb .register-bt-abs img {
  width: 100%;
}

@media only screen and (min-width: 821px) {
  body#web .register-bt-wrap-mb .register-bt-abs {
    display: none;
  }
}

body#web .register-bt-wrap-mb .register-bt-abs.active {
  position: fixed;
  -webkit-animation: sliderMainContentZ 1s ease-in-out forwards;
          animation: sliderMainContentZ 1s ease-in-out forwards;
}

body#web .register-bt-wrap-mb .register-bt-abs.reverse {
  position: absolute;
  -webkit-animation: sliderMainContentReverseZ 1s ease-in-out forwards;
          animation: sliderMainContentReverseZ 1s ease-in-out forwards;
}

@-webkit-keyframes sliderMainContentReverseZ {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: 0;
  }
}

@keyframes sliderMainContentReverseZ {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: 0;
  }
}

@-webkit-keyframes sliderMainContentZ {
  0% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

@keyframes sliderMainContentZ {
  0% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

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

body#web .bg-pink {
  background-color: #EEDBD3;
}

body#web #home {
  height: 100vh;
}

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

body#web #gallery .carousel-control-prev-icon {
  background: url("../assets/img/gallery/left@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  body#web #gallery .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }
}

body#web #gallery .carousel-control-prev-icon:hover {
  background: url("../assets/img/gallery/left_hover@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  body#web #gallery .carousel-control-prev-icon:hover {
    width: 45px;
    height: 45px;
  }
}

body#web #gallery .carousel-control-next-icon {
  background: url("../assets/img/gallery/right@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  body#web #gallery .carousel-control-next-icon {
    width: 45px;
    height: 45px;
  }
}

body#web #gallery .carousel-control-next-icon:hover {
  background: url("../assets/img/gallery/right_hover@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  body#web #gallery .carousel-control-next-icon:hover {
    width: 45px;
    height: 45px;
  }
}

body#web #gallery .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #ffffff;
}

body#web #gallery .carousel-indicators .active {
  background-color: #ffffff;
}

body#web #gallery h3 {
  font-family: EBGaramond-Medium;
  font-size: 40px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  background: transparent;
  margin-bottom: 0;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  padding-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  body#web #gallery h3 {
    font-size: 30px;
  }
}

body#web #gallery h3.active-current {
  -webkit-animation: activeCurrent 300ms linear forwards;
          animation: activeCurrent 300ms linear forwards;
}

body#web #gallery h3.active {
  -webkit-animation: activeCurrentStage2 300ms linear forwards;
          animation: activeCurrentStage2 300ms linear forwards;
}

@-webkit-keyframes activeCurrentStage2 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
}

@keyframes activeCurrentStage2 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
}

@-webkit-keyframes activeCurrent {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes activeCurrent {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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-indicators {
  z-index: 1;
}

body#web #gallery .carousel-item .carousel-caption {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0 !important;
}

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;
}

@media only screen and (max-width: 1024px) {
  body#web #gallery .carousel-item .img-custom-fluid {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

body#web #gallery .carousel-item .img-custom-tight {
  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;
  color: #fff;
  opacity: 1;
  bottom: 1.25rem;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

body#web #gallery .gradient-wrap {
  position: relative;
}

body#web #gallery .gradient-wrap .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(transparent), color-stop(transparent), color-stop(transparent), to(#39050A));
  background: linear-gradient(to bottom, transparent, transparent, transparent, transparent, #39050A);
}

body#web #location {
  background: url("/assets/img/location_map/location_bg@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body#web #location.active .leaf1 {
  -webkit-transform: translatex(0);
          transform: translatex(0);
  opacity: 1;
}

body#web #location.active .leaf2 {
  -webkit-transform: translatey(0);
          transform: translatey(0);
  opacity: 1;
}

body#web #location.active .location-map .location-normal, body#web #location.active .location-map .location-small {
  -webkit-transform: translatex(0) !important;
          transform: translatex(0) !important;
  opacity: 1 !important;
}

body#web #location.active .campass {
  opacity: 1 !important;
}

body#web #location.active .location-txt .txt {
  -webkit-transform: translatey(0) !important;
          transform: translatey(0) !important;
  opacity: 1 !important;
}

body#web #location.active .desc {
  -webkit-transform: translatey(0) !important;
          transform: translatey(0) !important;
  opacity: 1 !important;
}

body#web #location.active .point {
  -webkit-clip-path: rect(0% 100% 100% 0%) !important;
          clip-path: rect(0% 100% 100% 0%) !important;
}

body#web #location .leaf1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translatex(-10%);
          transform: translatex(-10%);
  -webkit-transition: all 700ms linear;
  transition: all 700ms linear;
  opacity: 0;
}

body#web #location .leaf1 img {
  width: 40%;
}

@media only screen and (max-width: 1024px) {
  body#web #location .leaf1 {
    display: none;
  }
}

body#web #location .leaf2 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translatey(100%);
          transform: translatey(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  opacity: 0;
}

body#web #location .leaf2 img {
  width: 40%;
}

@media only screen and (max-width: 1024px) {
  body#web #location .leaf2 {
    display: none;
  }
}

body#web #location .content-wrapper {
  margin-top: 150px;
  margin-left: 80px;
  margin-right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
}

@media only screen and (max-width: 991px) {
  body#web #location .content-wrapper {
    display: block;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #location .content-wrapper {
    margin-top: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  body#web #location .content-wrapper {
    margin-left: 60px;
    margin-right: 60px;
  }
}

body#web #location .content-wrapper .campass {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  body#web #location .content-wrapper .campass img {
    width: 50px !important;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1536px) {
  body#web #location .content-wrapper .campass img {
    width: 60px !important;
  }
}

@media only screen and (max-width: 539px) {
  body#web #location .content-wrapper .campass {
    top: 50%;
  }
  body#web #location .content-wrapper .campass img {
    width: 40px !important;
  }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
  body#web #location .content-wrapper .campass {
    top: 30%;
  }
  body#web #location .content-wrapper .campass img {
    width: 40px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #location .content-wrapper .campass {
    top: 30%;
  }
  body#web #location .content-wrapper .campass img {
    width: 60px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #location .content-wrapper .campass img {
    width: 60px !important;
  }
}

body#web #location .content-wrapper .campass img {
  width: 80px;
}

body#web #location .content-wrapper .location-txt-wrap {
  width: 80%;
}

@media only screen and (max-width: 1180px) {
  body#web #location .content-wrapper .location-txt-wrap {
    width: 100%;
  }
}

body#web #location .content-wrapper .location-txt {
  color: #39050a;
  overflow: hidden;
}

body#web #location .content-wrapper .location-txt .txt {
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translatey(100%);
          transform: translatey(100%);
  opacity: 0;
  font-size: 60px;
  font-family: 'EBGaramond-SemiBold';
  line-height: 1.2;
  margin-bottom: 35px;
}

@media only screen and (min-width: 1025px) and (max-width: 1299px) {
  body#web #location .content-wrapper .location-txt .txt {
    font-size: 35px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1500px) {
  body#web #location .content-wrapper .location-txt .txt {
    font-size: 45px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #location .content-wrapper .location-txt .txt {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web #location .content-wrapper .location-txt .txt {
    font-size: 35px;
  }
}

body#web #location .content-wrapper .desc {
  width: 80%;
  color: #39050a;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translatey(100%);
          transform: translatey(100%);
  opacity: 0;
  font-family: 'Gotham-Book';
  display: block;
}

@media only screen and (max-width: 1366px) {
  body#web #location .content-wrapper .desc {
    font-size: 13px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1536px) {
  body#web #location .content-wrapper .desc {
    width: 100%;
  }
}

body#web #location .content-wrapper .location-map {
  position: relative;
  right: 75px;
}

@media only screen and (min-width: 1025px) and (max-width: 1466px) {
  body#web #location .content-wrapper .location-map {
    right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  body#web #location .content-wrapper .location-map .location-normal {
    display: none !important;
  }
  body#web #location .content-wrapper .location-map .location-small {
    display: block !important;
    width: 100%;
    margin-top: 30px;
  }
}

body#web #location .content-wrapper .location-map .location-small {
  display: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

body#web #location .content-wrapper .location-map .location-normal {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

@media only screen and (max-width: 1024px) {
  body#web #location .content-wrapper .location-map {
    right: 0;
  }
}

body#web #location .content-wrapper .location-map img {
  width: 100%;
}

body#web #site-progress {
  min-height: 100vh;
  padding: 90px 0px;
  background: #eedbd3;
  --swiper-pagination-progressbar-bg-color: #e2c3be;
  --swiper-pagination-color: #7b0010;
}

body#web #site-progress section.section-site-progress {
  text-align: center;
  overflow: hidden;
}

@media (max-width: 991px) {
  body#web #site-progress section.section-site-progress {
    overflow: auto;
  }
}

body#web #site-progress section.section-site-progress .section-title {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  body#web #site-progress section.section-site-progress .section-title {
    margin-bottom: 50px;
  }
}

body#web #site-progress section.section-site-progress .section-title h4 {
  font-family: 'EBGaramond-Medium';
  font-size: 40px;
  line-height: 50px;
  color: #450D10;
}

body#web #site-progress .float-site {
  position: absolute;
  top: 40%;
  left: 25%;
  width: 400px;
  max-height: 250px;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

body#web #site-progress .float-site:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/img/site-progress/site.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

body#web #site-progress .float-progress {
  position: absolute;
  top: 70%;
  left: 60%;
  width: 800px;
  max-height: 250px;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

body#web #site-progress .float-progress:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/img/site-progress/progress.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

body#web #site-progress .swiper-vertical-title {
  display: inline-block;
  margin-left: 200px;
}

@media (max-width: 991px) {
  body#web #site-progress .swiper-vertical-title {
    margin-left: 0px;
    text-align: left;
  }
}

body#web #site-progress .swiper-vertical-title.no-margin {
  margin-left: 0px;
}

body#web #site-progress .swiper-vertical-title h6 {
  font-family: 'Montserrat';
  font-size: 30px;
  line-height: 40px;
  color: #7b0010;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0px;
  font-weight: 600;
}

@media (max-width: 991px) {
  body#web #site-progress .swiper-vertical-title h6 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

body#web #site-progress .swiper-pagination-progressbar {
  bottom: 0px;
  top: unset;
}

body#web #site-progress .swiper-site-progress {
  overflow: unset;
}

@media (max-width: 991px) {
  body#web #site-progress .swiper-site-progress {
    overflow: hidden;
    max-height: calc(100vh - 300px);
  }
}

body#web #site-progress .swiper-site-progress .swiper-slide {
  width: unset;
}

body#web #site-progress .swiper-site-progress .swiper-slide .img-wrapper {
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  body#web #site-progress .swiper-site-progress .swiper-slide .img-wrapper {
    margin-bottom: 0px;
  }
}

body#web #site-progress .swiper-site-progress .swiper-slide img {
  height: 500px;
  width: auto;
}

body#web #developer {
  background-image: url("../assets/img/developer/developer_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 120px 0px;
}

@media only screen and (max-width: 1199px) {
  body#web #developer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body#web #developer .right-shiny {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-clip-path: rect(100% 100% 100% 0%);
          clip-path: rect(100% 100% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 4;
}

body#web #developer .right-shiny img {
  width: 350px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #developer .right-shiny img {
    width: 250px;
  }
}

@media only screen and (max-width: 575px) {
  body#web #developer .right-shiny img {
    width: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web #developer .right-shiny img {
    width: 180px;
  }
}

body#web #developer .swiper {
  --swiper-theme-color: #909090;
  --swiper-navigation-size: 20px;
}

body#web #developer p {
  color: #fff;
}

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

body#web #developer .box-btn-wrapper {
  min-height: 140px;
  width: 150px;
  position: relative;
}

body#web #developer .box-btn-wrapper button {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  width: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#web #developer .box-developer-wrapper {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.3);
  -webkit-clip-path: rect(0% 50% 100% 50%);
          clip-path: rect(0% 50% 100% 50%);
  opacity: 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

body#web #developer .box-developer-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #developer .box-developer-wrapper a img {
  padding: 15px 0px;
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

body#web #developer .developer-wrapper {
  text-align: center;
  opacity: 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition-delay: 1.3ms;
          transition-delay: 1.3ms;
}

body#web #developer .developer-wrapper .exsim-logo {
  width: 200px;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

body#web #developer .developer-wrapper .exsim-logo img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

body#web #developer .developer-wrapper .exsim-line {
  border-bottom: 1px solid #fff;
  margin-top: 25px;
  margin-bottom: 20px;
  display: inline-block;
  max-width: 0px;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  width: 90%;
}

body#web #developer .developer-wrapper .exsim-content-1 {
  max-width: 640px;
  margin: auto;
  overflow: hidden;
}

body#web #developer .developer-wrapper .exsim-content-1 p {
  font-family: 'Gotham-Book';
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  body#web #developer .developer-wrapper .exsim-content-1 p {
    font-size: 14px;
  }
}

body#web #developer .developer-wrapper .exsim-content-2 {
  overflow: hidden;
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  body#web #developer .developer-wrapper .exsim-content-2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

body#web #developer .developer-wrapper .exsim-content-2 p {
  font-family: 'Gotham-Medium';
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  font-size: 21px;
  font-weight: 500;
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  body#web #developer .developer-wrapper .exsim-content-2 p {
    font-size: 17px;
  }
}

body#web #developer .developer-wrapper .exsim-content-2 p a {
  font-size: 21px;
  font-weight: 500;
  text-decoration: underline;
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  body#web #developer .developer-wrapper .exsim-content-2 p a {
    font-size: 17px;
  }
}

body#web #developer.animation .right-shiny {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web #developer.animation .developer-wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body#web #developer.animation .box-developer-wrapper {
  -webkit-clip-path: rect(0 100% 100% 0);
          clip-path: rect(0 100% 100% 0);
  opacity: 1;
}

body#web #developer.animation .exsim-line {
  max-width: 500px;
}

body#web #developer.animation .exsim-logo img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body#web #developer.animation .exsim-content-1 p {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body#web #developer.animation .exsim-content-2 p {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body#web #contact {
  background-image: url("../assets/img/contact/contact_us_bg@2x.png");
  background-repeat: no-repeat no-repeat;
  background-size: 100% 100%;
  padding: 100px 0 0;
  position: relative;
  overflow-y: hidden;
  height: 100vh;
  padding-bottom: 50px;
}

body#web #contact .feather {
  position: absolute;
  bottom: 0;
  right: 80px;
}

@media only screen and (max-width: 991px) {
  body#web #contact .feather {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  body#web #contact .feather {
    right: 40px;
  }
  body#web #contact .feather img {
    width: 200px !important;
  }
}

@media only screen and (max-width: 991px) {
  body#web #contact .feather {
    right: 0px;
  }
  body#web #contact .feather img {
    width: 150px !important;
  }
}

body#web #contact .feather img {
  width: 270px;
  -webkit-clip-path: rect(0% 0% 100% 0%);
          clip-path: rect(0% 0% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

body#web #contact .feather.active img {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web #contact.active .logo-wrapper .logo-macalisterz-img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #contact.active .logo-wrapper .logo-exsim-img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #contact.active .contact-txt-wrapper {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

@media only screen and (max-width: 767px) {
  body#web #contact {
    height: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact {
    height: auto;
  }
}

@media only screen and (min-width: 410px) and (max-width: 575px) {
  body#web #contact {
    height: auto;
  }
}

body#web #contact h1, body#web #contact h2, body#web #contact h3, body#web #contact h4, body#web #contact p, body#web #contact li {
  font-family: "Gotham";
}

body#web #contact h1, body#web #contact h2, body#web #contact h3, body#web #contact h4, body#web #contact h5, body#web #contact h6 {
  line-height: 20px;
}

body#web #contact h1 {
  font-size: 65px;
  font-weight: bold;
  font-style: normal;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact h1 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact h1 {
    font-size: 30px;
  }
}

body#web #contact h2 {
  font-size: 35px;
  font-weight: 300;
  font-style: normal;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact h2 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact h2 {
    font-size: 20px;
  }
}

body#web #contact h3 {
  font-size: 30px;
  font-weight: bold;
  font-style: normal;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact h3 {
    font-size: 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact h3 {
    font-size: 26px;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact h4 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact h4 {
    font-size: 20px;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact p {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact p {
    font-size: 12px;
  }
}

body#web #contact .regis {
  font-family: 'Gotham-Book';
  font-size: 13px;
  color: #A4837F;
  display: block;
}

body#web #contact .pb-50 {
  padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact .pb-50 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact .pb-50 {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact .pb-50 {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #contact .title-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  body#web #contact .title-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #contact .title-wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 30px;
  }
}

body#web #contact .contact-title-style-1 {
  color: #693824;
  font-weight: bold;
  font-style: normal;
  font-size: 50px;
  letter-spacing: 2px;
}

body#web #contact .contact-title-style-2 {
  color: #693824;
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  letter-spacing: 2px;
}

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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px auto;
}

body#web #contact .contact-wrapper .label-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7px;
}

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

body#web #contact .contact-wrapper .label-wrapper .label-img-wrapper img {
  height: 25px;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web #contact .contact-wrapper .label-wrapper .label-content-wrapper {
  margin-left: 5px;
}

body#web #contact .contact-wrapper .label-wrapper .label-content-wrapper p {
  color: #eedbd3;
  font-family: 'Gotham-Book';
  display: block;
  font-size: 15px;
  margin-bottom: 0;
  padding-top: 5px;
}

body#web #contact .app-name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  text-align: center;
}

body#web #contact .app-name-wrapper .exsim-content {
  color: #e7c079;
  font-family: 'EBGaramond-SemiBold';
  -webkit-margin-after: 0;
          margin-block-end: 0;
  max-width: 286px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

body#web #contact .app-name-wrapper .exsim-content-2 {
  color: #e7c079;
  font-family: 'EBGaramond-SemiBold';
  -webkit-margin-after: 0;
          margin-block-end: 0;
  max-width: 286px;
  width: 100%;
  margin: 0 auto;
}

body#web #contact .app-name-wrapper .exsim-address-content-1 {
  color: #eedbd3;
  font-family: 'Gotham-Book';
  font-size: 15px;
  display: block;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

body#web #contact .app-name-wrapper .exsim-address-content-2 {
  color: #eedbd3;
  font-family: 'Gotham-Book';
  display: block;
  font-size: 15px;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

body#web #contact .mb-10 {
  margin-bottom: 10px;
}

body#web #contact .logo-wrapper {
  overflow: hidden;
  margin-bottom: 50px;
}

body#web #contact .logo-wrapper .logo-macalisterz-img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  opacity: 0;
  height: 65px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 575px) {
  body#web #contact .logo-wrapper .logo-macalisterz-img {
    height: 65px;
  }
}

body#web #contact .logo-wrapper .logo-exsim-img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  opacity: 0;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

body#web #contact .custom-col {
  width: 100%;
  max-width: 600px;
  min-height: 80vh;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #contact .contact-txt-wrapper {
  -webkit-clip-path: rect(0% 100% 0% 0%);
          clip-path: rect(0% 100% 0% 0%);
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

body#web #contact .map-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #contact .map-wrapper .map-inner-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo {
  width: 25%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #E8C27C;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:hover {
  background-color: #E8C27C;
  border-radius: 50%;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:hover .waze-active {
  display: block;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:hover .google-active {
  display: block;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:hover .waze-inactive {
  display: none;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:hover .google-inactive {
  display: none;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo .waze-active {
  display: none;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo .google-active {
  display: none;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo a img {
  width: 100%;
}

body#web #contact .map-wrapper .map-inner-wrapper .map-logo:last-child {
  margin-left: 30px;
}

body#web #contact .mb-50 {
  margin-bottom: 50px;
}

body#web #concept {
  overflow: hidden;
}

body#web #concept button {
  all: unset;
}

body#web #concept .fade-right {
  -webkit-animation: fadeRight 1s ease;
          animation: fadeRight 1s ease;
}

@media (max-width: 768px) {
  body#web #concept #desktop-section {
    display: none;
  }
}

body#web #concept #desktop-section #section1 {
  background-color: #5a0c0c;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -2;
}

body#web #concept #desktop-section #section1 .section1-block-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 38%;
  padding-top: 35px;
  -webkit-animation: fadeUp 1s ease 1s;
          animation: fadeUp 1s ease 1s;
}

body#web #concept #desktop-section #section1 .title-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#web #concept #desktop-section #section1 .title-container .title-wrapper {
  position: relative;
  width: 100%;
}

body#web #concept #desktop-section #section1 .title-container .title-wrapper .logo-wrapper {
  width: 10%;
  position: absolute;
  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;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -175%);
          transform: translate(-50%, -175%);
  gap: 30px;
  -webkit-animation: shrinkContainer 1.5s ease 1s;
          animation: shrinkContainer 1.5s ease 1s;
}

body#web #concept #desktop-section #section1 .title-container .title-wrapper .logo-title {
  -webkit-animation: growImage 1.5s ease 1s;
          animation: growImage 1.5s ease 1s;
}

body#web #concept #desktop-section #section2 {
  background-color: #fdeee6;
  position: relative;
}

body#web #concept #desktop-section #section2 .content-container {
  padding: 80px 80px 0;
  position: relative;
}

body#web #concept #desktop-section #section2 .content-container .section2-block-img {
  width: 40%;
}

body#web #concept #desktop-section #section2 .content-container .section2-title {
  position: absolute;
  top: 24%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 52%;
}

body#web #concept #desktop-section #section2 .content-container .section2-title .title1, body#web #concept #desktop-section #section2 .content-container .section2-title .title2 {
  font-size: 5vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #C0C0C0;
}

body#web #concept #desktop-section #section2 .content-container .section2-title .title1 {
  color: #c19269;
}

body#web #concept #desktop-section #section2 .content-container .section2-title .title2 {
  color: #5a0c0c;
  text-align: right;
}

body#web #concept #desktop-section #section2 .content-container .content-wrapper {
  position: absolute;
  width: 36%;
  top: 42%;
  right: 18%;
}

body#web #concept #desktop-section #section2 .content-container .content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 0.9vw;
  color: #301213;
  line-height: 2;
  font-weight: 500;
}

body#web #concept #desktop-section #section2 .section2-background-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14%;
  -webkit-clip-path: rect(0 100% 0 0);
          clip-path: rect(0 100% 0 0);
}

body#web #concept #desktop-section #section3 {
  background-color: #5a0c0c;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #concept #desktop-section #section3 .section3-background-element {
  position: absolute;
  bottom: 0;
  left: -12%;
  z-index: 1;
  -webkit-clip-path: rect(0 100% 0 0);
          clip-path: rect(0 100% 0 0);
}

body#web #concept #desktop-section #section3 .image-container {
  width: 48%;
  margin-bottom: 80px;
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-clip-path: inset(0 0 0 0 round 52% 0 0 49%);
          clip-path: inset(0 0 0 0 round 52% 0 0 49%);
}

body#web #concept #desktop-section #section3 .image-container .background-tree {
  opacity: 0;
  margin-top: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

body#web #concept #desktop-section #section3 .image-container .block-background {
  margin-top: 80px;
  z-index: 1;
}

body#web #concept #desktop-section #section3 .image-container .section3-block-img {
  position: absolute;
  width: 50%;
  left: 38%;
  bottom: -1%;
  scale: 1.05;
  z-index: 3;
}

body#web #concept #desktop-section #section3 .section3-title {
  position: absolute;
  top: 34%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 52%;
  z-index: 3;
}

body#web #concept #desktop-section #section3 .section3-title .title1, body#web #concept #desktop-section #section3 .section3-title .title2 {
  font-size: 5vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #5a0c0c;
  color: #fcdc98;
  letter-spacing: 1px;
}

body#web #concept #desktop-section #section3 .section3-title .title2 {
  text-align: right;
}

body#web #concept #desktop-section #section3 .section3-content-wrapper {
  position: absolute;
  width: 36%;
  top: 54%;
  left: 4%;
}

body#web #concept #desktop-section #section3 .section3-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 0.9vw;
  color: white;
  line-height: 2;
  font-weight: 300;
}

body#web #concept #desktop-section #section4 {
  background-color: #5a0c0c;
  position: relative;
  padding: 100px 0;
}

body#web #concept #desktop-section #section4 .section4-background-element {
  position: absolute;
  bottom: 0;
  right: -36%;
  -webkit-clip-path: rect(0 100% 100% 100%);
          clip-path: rect(0 100% 100% 100%);
  -webkit-transition: -webkit-clip-path 1s ease-in-out;
  transition: -webkit-clip-path 1s ease-in-out;
  transition: clip-path 1s ease-in-out;
  transition: clip-path 1s ease-in-out, -webkit-clip-path 1s ease-in-out;
}

body#web #concept #desktop-section #section4 .clip-path-animation {
  -webkit-clip-path: rect(0 100% 100% 0);
          clip-path: rect(0 100% 100% 0);
}

body#web #concept #desktop-section #section4 .image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  position: relative;
}

body#web #concept #desktop-section #section4 .image-container .section4-slide {
  -webkit-clip-path: inset(0 0 0 0 round 0 68% 0 0);
          clip-path: inset(0 0 0 0 round 0 68% 0 0);
}

body#web #concept #desktop-section #section4 .image-container .image-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
  z-index: 1;
}

body#web #concept #desktop-section #section4 .image-container .image-content-wrapper .image-content {
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
}

body#web #concept #desktop-section #section4 .image-container .image-content-wrapper .image-content .section4-image-title {
  font-size: 1.5vw;
}

body#web #concept #desktop-section #section4 .image-container .image-content-wrapper .image-content .image-desc {
  font-size: 1vw;
}

body#web #concept #desktop-section #section4 .image-container .image-content-wrapper .image-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 20%;
}

body#web #concept #desktop-section #section4 .section4-title {
  position: absolute;
  top: 30%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 57%;
  z-index: 1;
}

body#web #concept #desktop-section #section4 .section4-title .title1, body#web #concept #desktop-section #section4 .section4-title .title2 {
  font-size: 5vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #5a0c0c;
  color: #fcdc98;
  letter-spacing: 1px;
}

body#web #concept #desktop-section #section4 .section4-title .title2 {
  text-align: right;
}

body#web #concept #desktop-section #section4 .section4-content-wrapper {
  position: absolute;
  width: 36%;
  top: 52%;
  left: 58%;
}

body#web #concept #desktop-section #section4 .section4-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 0.9vw;
  color: white;
  line-height: 2;
  font-weight: 300;
}

body#web #concept #desktop-section #section5 {
  background-color: #5a0c0c;
  position: relative;
  padding-top: 200px;
}

body#web #concept #desktop-section #section5 .background-image {
  position: relative;
}

body#web #concept #desktop-section #section5 .background-image .section5-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -22%);
          transform: translate(-50%, -22%);
  width: 57%;
}

body#web #concept #desktop-section #section5 .background-image .section5-title .title1, body#web #concept #desktop-section #section5 .background-image .section5-title .title2 {
  font-size: 6vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #5a0c0c;
  color: #fcdc98;
  letter-spacing: 1px;
}

body#web #concept #desktop-section #section5 .background-image .section5-title .title2 {
  text-align: right;
}

body#web #concept #desktop-section #section5 .background-image::before {
  content: '';
  position: absolute;
  top: -1%;
  left: 0;
  width: 100%;
  height: 12%;
  background: -webkit-gradient(linear, left top, left bottom, from(#5a0c0c), to(rgba(90, 12, 12, 0)));
  background: linear-gradient(to bottom, #5a0c0c, rgba(90, 12, 12, 0));
}

body#web #concept #desktop-section #section5 .section5-background-element {
  width: 32%;
  position: absolute;
  bottom: 0;
  right: -16%;
}

body#web #concept #desktop-section #section6 {
  background-color: #f3e4dc;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 0 70px 100px;
}

@media (max-width: 992px) {
  body#web #concept #desktop-section #section6 {
    padding-left: 40px !important;
  }
  body#web #concept #desktop-section #section6 .image-button {
    gap: 12px !important;
  }
}

body#web #concept #desktop-section #section6 .section6-background-element-1, body#web #concept #desktop-section #section6 .section6-background-element-2 {
  position: absolute;
  width: 18%;
}

body#web #concept #desktop-section #section6 .section6-background-element-1 {
  top: 0;
  left: 0;
}

body#web #concept #desktop-section #section6 .section6-background-element-2 {
  bottom: 0;
  right: 0;
}

body#web #concept #desktop-section #section6 .main-image-container {
  width: 50%;
  position: relative;
  -webkit-clip-path: inset(0 0 0 0 round 46% 46% 0 0);
          clip-path: inset(0 0 0 0 round 46% 46% 0 0);
  --bs-aspect-ratio: 100%;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-main-slide {
  height: 100%;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-main-slide .section6-main-slide-img {
  max-width: 100%;
  height: auto;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-main-slide .swiper-slide {
  position: relative;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-main-slide .swiper-slide .section6-image-title {
  display: none;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-main-slide .swiper-slide.swiper-slide-active .section6-image-title {
  display: block;
  font-size: 1.5vw;
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
  position: absolute;
  padding: 0 5%;
  bottom: 16%;
  left: 0;
  -webkit-animation: fadeRight 1s ease;
          animation: fadeRight 1s ease;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-image-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 0 5%;
  z-index: 1;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-image-content-wrapper .image-content {
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-image-content-wrapper .image-content .image-desc {
  font-size: 1vw;
}

body#web #concept #desktop-section #section6 .main-image-container .section6-image-content-wrapper .image-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 20%;
}

body#web #concept #desktop-section #section6 .slide-container {
  position: absolute;
  right: 0;
  top: 4%;
  width: 24%;
}

body#web #concept #desktop-section #section6 .slide-container .section6-slide {
  -webkit-clip-path: inset(0 0 0 0 round 48% 0 0 48%);
          clip-path: inset(0 0 0 0 round 48% 0 0 48%);
}

body#web #concept #desktop-section #section6 .section6-title {
  position: absolute;
  top: 45%;
  left: 75%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 38%;
}

@media (max-width: 991px) {
  body#web #concept #desktop-section #section6 .section6-title {
    left: 76% !important;
  }
}

body#web #concept #desktop-section #section6 .section6-title .title1, body#web #concept #desktop-section #section6 .section6-title .title2 {
  font-size: 5vw;
  font-family: 'EBGaramond-SemiBold';
}

body#web #concept #desktop-section #section6 .section6-title .title1 {
  color: #c19269;
}

body#web #concept #desktop-section #section6 .section6-title .title2 {
  color: #5a0c0c;
  text-align: right;
}

body#web #concept #desktop-section #section6 .section6-content-wrapper {
  position: absolute;
  width: 36%;
  top: 59%;
  right: 6%;
}

body#web #concept #desktop-section #section6 .section6-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 0.9vw;
  color: #301213;
  line-height: 2;
}

body#web #concept #desktop-section #section7 {
  background-color: #5a0c0c;
  height: 100vh;
  position: relative;
}

body#web #concept #desktop-section #section7 .logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border: 2px solid white;
  border-radius: 50px;
  padding: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  gap: 20px;
  overflow: hidden;
  cursor: pointer;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  left: -78px;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top span {
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  visibility: hidden;
  white-space: nowrap;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top:hover {
  max-width: 300px;
  border-radius: 50px;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top:hover img {
  left: 0px;
}

body#web #concept #desktop-section #section7 .logo-wrapper .button-top:hover span {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

body#web #concept #mobile-section {
  overflow: hidden;
  display: none;
}

@media (max-width: 768px) {
  body#web #concept #mobile-section {
    display: block;
  }
}

body#web #concept #mobile-section #mobile-section1 {
  background-color: #5a0c0c;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -2;
}

body#web #concept #mobile-section #mobile-section1 .section1-block-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 260px;
  -webkit-animation: fadeUp 1s ease 1s;
          animation: fadeUp 1s ease 1s;
}

body#web #concept #mobile-section #mobile-section1 .section1-block-img .section1-block-content {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

body#web #concept #mobile-section #mobile-section1 .title-container {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72%;
}

body#web #concept #mobile-section #mobile-section1 .title-container .title-wrapper {
  position: relative;
  width: 100%;
}

body#web #concept #mobile-section #mobile-section1 .title-container .title-wrapper .logo-wrapper {
  width: 20%;
  position: absolute;
  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;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -175%);
          transform: translate(-50%, -175%);
  gap: 30px;
  -webkit-animation: shrinkContainerMobile 1.5s ease 1s;
          animation: shrinkContainerMobile 1.5s ease 1s;
}

body#web #concept #mobile-section #mobile-section1 .title-container .title-wrapper .logo-title {
  -webkit-animation: growImage 1.5s ease 1s;
          animation: growImage 1.5s ease 1s;
}

body#web #concept #mobile-section #mobile-section2 {
  background-color: #fdeee6;
  position: relative;
}

body#web #concept #mobile-section #mobile-section2 .content-container {
  padding: 40px 40px;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-title {
  width: 100%;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-title .title1, body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-title .title2 {
  font-size: 10vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #C0C0C0;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-title .title1 {
  color: #c19269;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-title .title2 {
  color: #5a0c0c;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-block-img {
  width: 85%;
  margin-top: 40px;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-content-wrapper {
  margin-top: 40px;
}

body#web #concept #mobile-section #mobile-section2 .content-container .mobile-section2-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 2.2vw;
  color: #301213;
  line-height: 2;
  font-weight: 500;
}

body#web #concept #mobile-section #mobile-section2 .mobile-section2-background-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14%;
  -webkit-clip-path: rect(0 100% 0 0);
          clip-path: rect(0 100% 0 0);
}

body#web #concept #mobile-section #mobile-section3 {
  background-color: #5a0c0c;
  position: relative;
}

body#web #concept #mobile-section #mobile-section3 .content-container {
  padding: 40px 40px;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-block-img {
  width: 60%;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-title {
  width: 100%;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-title .title1, body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-title .title2 {
  font-size: 10vw;
  font-family: 'EBGaramond-SemiBold';
  color: #fcdc98;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-image-container {
  width: 100%;
  margin-top: 40px;
  background-image: url("../assets/img/concept/mobile-section3-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-image-container .section3-block-img {
  width: 60%;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-content-wrapper {
  margin-top: 40px;
}

body#web #concept #mobile-section #mobile-section3 .content-container .mobile-section3-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 2.2vw;
  color: white;
  line-height: 2;
  font-weight: 500;
}

body#web #concept #mobile-section #mobile-section4 {
  background-color: #5a0c0c;
  position: relative;
}

body#web #concept #mobile-section #mobile-section4 .content-container {
  padding: 40px 40px;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-background-element {
  -webkit-clip-path: rect(0 100% 0 0);
          clip-path: rect(0 100% 0 0);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-slide {
  border-radius: 16px;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-image-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
  z-index: 1;
  overflow: hidden;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-image-content-wrapper .image-content {
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-image-content-wrapper .image-content .mobile-section4-image-title {
  font-size: 4vw;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-image-content-wrapper .image-content .image-desc {
  font-size: 2.5vw;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-image-container .mobile-section4-image-content-wrapper .image-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 30%;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-title {
  width: 100%;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-title .title1, body#web #concept #mobile-section #mobile-section4 .mobile-section4-title .title2 {
  font-size: 10vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #5a0c0c;
  color: #fcdc98;
  letter-spacing: 1px;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-content-wrapper {
  margin-top: 40px;
}

body#web #concept #mobile-section #mobile-section4 .mobile-section4-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 2.2vw;
  color: white;
  line-height: 2;
  font-weight: 500;
}

body#web #concept #mobile-section #mobile-section5 {
  background-color: #5a0c0c;
  position: relative;
  padding-top: 40px;
  height: 50vh;
}

body#web #concept #mobile-section #mobile-section5 .content-container {
  background-image: url("../assets/img/concept/section5-background-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  position: relative;
}

body#web #concept #mobile-section #mobile-section5 .section5-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -22%);
          transform: translate(-50%, -22%);
  width: 83%;
}

body#web #concept #mobile-section #mobile-section5 .section5-title .title1, body#web #concept #mobile-section #mobile-section5 .section5-title .title2 {
  font-size: 8vw;
  font-family: 'EBGaramond-SemiBold';
  text-shadow: 2px 2px 4px #5a0c0c;
  color: #fcdc98;
  letter-spacing: 1px;
}

body#web #concept #mobile-section #mobile-section5 .section5-title .title2 {
  text-align: right;
}

body#web #concept #mobile-section #mobile-section5 .content-container::before {
  content: '';
  position: absolute;
  top: -1%;
  left: 0;
  width: 100%;
  height: 12%;
  background: -webkit-gradient(linear, left top, left bottom, from(#5a0c0c), to(rgba(90, 12, 12, 0)));
  background: linear-gradient(to bottom, #5a0c0c, rgba(90, 12, 12, 0));
}

body#web #concept #mobile-section #mobile-section5 .section5-background-element {
  width: 32%;
  position: absolute;
  bottom: 0;
  right: -16%;
}

body#web #concept #mobile-section #mobile-section6 {
  background-color: #f3e4dc;
  position: relative;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-background-element-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-background-element-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
}

body#web #concept #mobile-section #mobile-section6 .content-container {
  padding: 40px 40px;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .mobile-section6-main-slide {
  border-radius: 16px;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .swiper-slide {
  position: relative;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .swiper-slide .mobile-section6-image-title {
  display: none;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .swiper-slide.swiper-slide-active .mobile-section6-image-title {
  display: block;
  font-size: 4vw;
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
  position: absolute;
  padding: 0 5%;
  bottom: 11%;
  left: 0;
  -webkit-animation: fadeRight 1s ease;
          animation: fadeRight 1s ease;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .mobile-section6-image-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
  z-index: 1;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .mobile-section6-image-content-wrapper .image-content {
  font-family: 'Montserrat';
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #5a0c0c;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .mobile-section6-image-content-wrapper .image-content .image-desc {
  font-size: 2.5vw;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-main-image-container .mobile-section6-image-content-wrapper .image-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 30%;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-title {
  width: 100%;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-title .title1, body#web #concept #mobile-section #mobile-section6 .mobile-section6-title .title2 {
  font-size: 10vw;
  font-family: 'EBGaramond-SemiBold';
  letter-spacing: 1px;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-title .title1 {
  color: #c19269;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-title .title2 {
  color: #5a0c0c;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-content-wrapper {
  margin-top: 40px;
}

body#web #concept #mobile-section #mobile-section6 .mobile-section6-content-wrapper .content-text {
  font-family: 'Montserrat';
  font-size: 2.2vw;
  color: black;
  line-height: 2;
  font-weight: 500;
}

body#web #concept #mobile-section #mobile-section7 {
  background-color: #5a0c0c;
  height: 50vh;
  position: relative;
}

body#web #concept #mobile-section #mobile-section7 .logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
}

body#web #concept #mobile-section #mobile-section7 .logo-wrapper .button-top {
  margin-top: 35px;
  width: 60%;
  position: relative;
}

body#web #concept footer {
  background-image: url("../assets/img/concept/footer.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #concept footer p {
  padding-top: 16px;
  font-size: 20px;
  color: #5a0c0c;
  font-weight: bold;
}

@media (max-width: 768px) {
  body#web #concept footer p {
    font-size: 2.2vw !important;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes shrinkContainer {
  0% {
    width: 15%;
  }
  100% {
    width: 10%;
  }
}

@keyframes shrinkContainer {
  0% {
    width: 15%;
  }
  100% {
    width: 10%;
  }
}

@-webkit-keyframes shrinkContainerMobile {
  0% {
    width: 25%;
  }
  100% {
    width: 20%;
  }
}

@keyframes shrinkContainerMobile {
  0% {
    width: 25%;
  }
  100% {
    width: 20%;
  }
}

@-webkit-keyframes growImage {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes growImage {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

body#web .modal .modal-dialog .modal-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  border-radius: none;
}

body#web .modal .modal-dialog .modal-content .close-button {
  margin-top: 20px;
  background: transparent;
  border: none;
}

body#web .modal .modal-dialog .modal-content .close-button img {
  margin-top: 20px;
}

body#web #facilities-plan {
  height: 100vh;
  position: relative;
}

body#web #facilities-plan .right-shiny {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-clip-path: rect(100% 100% 100% 0%);
          clip-path: rect(100% 100% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 4;
}

body#web #facilities-plan .right-shiny img {
  width: 350px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #facilities-plan .right-shiny img {
    width: 250px;
  }
}

@media only screen and (max-width: 575px) {
  body#web #facilities-plan .right-shiny img {
    width: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web #facilities-plan .right-shiny img {
    width: 180px;
  }
}

body#web #facilities-plan .facilities-plus-plan {
  text-align: center;
  padding-bottom: 45px;
  line-height: 1.3;
  font-size: 45px;
  color: #450D10;
  text-align: center;
  font-family: 'EBGaramond-Medium';
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #facilities-plan .facilities-plus-plan {
    font-size: 35px;
  }
}

@media only screen and (max-width: 991px) {
  body#web #facilities-plan .facilities-plus-plan {
    padding-bottom: 30px;
    padding-top: 40px;
    font-size: 30px;
  }
}

body#web #facilities-plan .container-floor-plan {
  padding: 0 80px;
  z-index: 2;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  body#web #facilities-plan .container-floor-plan {
    padding: 50px 20px;
  }
}

body#web #facilities-plan .container-floor-plan .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

body#web #facilities-plan .container-floor-plan .row .bg-floor-plan {
  z-index: -1;
}

body#web #facilities-plan .container-floor-plan .row .bg-floor-plan .bg-1 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: absolute;
  bottom: 50%;
  left: 10%;
  width: 73%;
}

@media only screen and (max-width: 767px) {
  body#web #facilities-plan .container-floor-plan .row .bg-floor-plan .bg-1 {
    width: 100%;
    left: 0;
  }
}

body#web #facilities-plan .container-floor-plan .row .bg-floor-plan .bg-2 {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: absolute;
  top: 50%;
  right: 10%;
  width: 40%;
}

@media only screen and (max-width: 767px) {
  body#web #facilities-plan .container-floor-plan .row .bg-floor-plan .bg-2 {
    width: 100%;
    right: 0;
  }
}

@media only screen and (min-width: 992px) {
  body#web #facilities-plan .container-floor-plan {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

body#web #facilities-plan .container-floor-plan .mb-floor-types {
  margin-top: 70px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (min-width: 992px) {
  body#web #facilities-plan .container-floor-plan .mb-floor-types {
    display: none;
  }
}

body#web #facilities-plan .container-floor-plan .mb-floor-types .mb-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #facilities-plan .container-floor-plan .mb-floor-types .mb-types img {
  width: 65%;
}

body#web #facilities-plan .container-floor-plan .floor-types {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  body#web #facilities-plan .container-floor-plan .floor-types {
    text-align: start;
  }
}

@media only screen and (max-width: 991px) {
  body#web #facilities-plan .container-floor-plan .floor-types {
    display: none;
  }
}

body#web #facilities-plan .container-floor-plan .floor-types img {
  width: 55%;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #facilities-plan .container-floor-plan .floor-types img {
    width: 75%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  body#web #facilities-plan .container-floor-plan .floor-types img {
    width: 65%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1366px) {
  body#web #facilities-plan .container-floor-plan .floor-types img {
    width: 70%;
  }
}

@media only screen and (min-width: 992px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-title {
    max-height: 647px;
    overflow-y: scroll;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -webkit-transition: all 750ms linear;
    transition: all 750ms linear;
  }
}

body#web #facilities-plan .container-floor-plan .floor-plan-title img {
  width: 100%;
}

body#web #facilities-plan .container-floor-plan .floor-plan-title::-webkit-scrollbar {
  display: none;
}

body#web #facilities-plan .container-floor-plan .floor-plan-figure {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: relative;
  text-align: center;
}

body#web #facilities-plan .container-floor-plan .floor-plan-figure img {
  width: 85%;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure img {
    width: 90%;
  }
}

@media only screen and (max-width: 991px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure img {
    width: 100%;
  }
}

body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass {
  position: absolute;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  opacity: 0;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 991px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1500px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass {
    text-align: end;
  }
}

body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
  width: 40%;
  padding-top: 0;
}

@media only screen and (max-width: 575px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 50%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 45%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 32%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 33%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1365px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 35%;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
  body#web #facilities-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 40%;
  }
}

body#web #facilities-plan.active .right-shiny {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web #facilities-plan.active .bg-1, body#web #facilities-plan.active .bg-2 {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

body#web #facilities-plan.active .floor-plan-title {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

body#web #facilities-plan.active .floor-plan-figure {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #facilities-plan.active .floor-plan-figure .compass {
  opacity: 1;
}

body#web #facilities-plan.active .mb-floor-types {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #facilities-plan.active .floor-types {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #layout-plan {
  background: url("/assets/img/layout/layoutplan_bg@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #layout-plan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .types-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

body#web #layout-plan .owl-carousel {
  padding-bottom: 60px;
}

body#web #layout-plan .container-layout {
  padding-top: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #layout-plan .container-layout {
    padding-top: 0;
    width: 100vw;
  }
}

body#web #layout-plan .layout-title {
  color: #350406;
  font-family: 'EBGaramond-SemiBold';
  font-size: 45px;
  text-align: center;
  padding-bottom: 65px;
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #layout-plan .layout-title {
    font-size: 35px;
  }
}

body#web #layout-plan .layout-title.active {
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .layout-title {
    padding-bottom: 15px;
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) {
  body#web #layout-plan .slick-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #layout-plan .slick-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #layout-plan .slick-wrapper .carousel-navi {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  body#web #layout-plan .slick-wrapper .carousel-navi {
    height: 60vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  body#web #layout-plan .slick-wrapper .carousel-navi {
    height: 55vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel {
  padding-bottom: 15px;
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .to-carousel {
    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;
    padding-bottom: 0;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel.active {
  opacity: 1;
}

body#web #layout-plan .slick-wrapper .to-carousel .up, body#web #layout-plan .slick-wrapper .to-carousel .down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .to-carousel .up, body#web #layout-plan .slick-wrapper .to-carousel .down {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    padding: 10px;
  }
  body#web #layout-plan .slick-wrapper .to-carousel .up img, body#web #layout-plan .slick-wrapper .to-carousel .down img {
    width: 25px !important;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel .up img, body#web #layout-plan .slick-wrapper .to-carousel .down img {
  width: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  body#web #layout-plan .slick-wrapper .to-carousel .up img, body#web #layout-plan .slick-wrapper .to-carousel .down img {
    width: 34px;
  }
}

@media only screen and (min-width: 992px) {
  body#web #layout-plan .slick-wrapper .to-carousel .up {
    margin-bottom: 30px;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel .up .arrow-inactive {
  display: none;
}

body#web #layout-plan .slick-wrapper .to-carousel .up.inactive .arrow-inactive {
  display: block;
}

body#web #layout-plan .slick-wrapper .to-carousel .up.inactive .arrow-active {
  display: none;
}

@media only screen and (min-width: 992px) {
  body#web #layout-plan .slick-wrapper .to-carousel .down {
    margin-top: 30px;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel .down .arrow-inactive {
  display: none;
}

body#web #layout-plan .slick-wrapper .to-carousel .down.inactive .arrow-inactive {
  display: block;
}

body#web #layout-plan .slick-wrapper .to-carousel .down.inactive .arrow-active {
  display: none;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner .icon-active {
  display: none;
  opacity: 0;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner .icon-inactive {
  opacity: 1;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -45%);
          transform: translate(-60%, -45%);
  font-size: 25px;
  color: #350406;
  font-family: 'EBGaramond-SemiBold';
  opacity: 0.6;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner .txt {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner .txt {
    font-size: 21px;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner.active .icon-active {
  display: block;
  opacity: 1;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner.active .icon-inactive {
  display: none;
  opacity: 0;
}

body#web #layout-plan .slick-wrapper .to-carousel .to-sub a .img-inner.active .txt {
  color: #eeddd2;
  opacity: 1;
}

body#web #layout-plan .slick-wrapper .to-carousel a {
  height: 100%;
  display: block;
}

@media only screen and (min-width: 376px) and (max-width: 575px) {
  body#web #layout-plan .slick-wrapper .to-carousel a {
    margin: 0 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .to-carousel a {
    margin: 0 15px;
  }
}

body#web #layout-plan .slick-wrapper .to-carousel a img {
  width: 80px;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .to-carousel a img {
    width: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body#web #layout-plan .slick-wrapper .to-carousel a img {
    width: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  body#web #layout-plan .slick-wrapper .to-carousel a img {
    width: 70px;
  }
}

body#web #layout-plan .slick-wrapper #a1 .type-title {
  background: url("/assets/img/layout/a1/A1.png");
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: 50%;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper #a1 .type-title {
    background: none;
    margin-top: 15px;
  }
}

body#web #layout-plan .slick-wrapper #b1 .type-title {
  background: url("/assets/img/layout/b1/B1.png");
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: 43%;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper #b1 .type-title {
    background: none;
    margin-top: 15px;
  }
}

body#web #layout-plan .slick-wrapper #b1 .img-layouts {
  width: 63%;
}

@media only screen and (max-width: 767px) {
  body#web #layout-plan .slick-wrapper #b1 .img-layouts {
    width: 80%;
  }
}

body#web #layout-plan .slick-wrapper #c1 .type-title {
  background: url("/assets/img/layout/c1/C1.png");
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: 43%;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper #c1 .type-title {
    background: none;
    margin-top: 15px;
  }
}

body#web #layout-plan .slick-wrapper #c1 .img-layouts {
  width: 75%;
}

body#web #layout-plan .slick-wrapper #c2 .type-title {
  background: url("/assets/img/layout/c2/C2.png");
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: 43%;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper #c2 .type-title {
    background: none;
    margin-top: 15px;
  }
}

body#web #layout-plan .slick-wrapper #c2 .img-layouts {
  width: 75%;
}

body#web #layout-plan .slick-wrapper .type-layout-content {
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web #layout-plan .slick-wrapper .type-layout-content.active {
  opacity: 1;
}

body#web #layout-plan .slick-wrapper .type-layout-content.active .types {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}

body#web #layout-plan .slick-wrapper .type-layout-content.active .size {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}

body#web #layout-plan .slick-wrapper .type-layout-content.active .img-layouts img {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}

body#web #layout-plan .slick-wrapper .type-layout-content.active .type-specs ol {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts-wrapper {
    padding-bottom: 20px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
  width: 65%;
}

body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts img {
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
  width: 44%;
}

@media only screen and (max-width: 767px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 90%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 60%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 45%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 95%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 75%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 85%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 75%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1280px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 85%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 65%;
  }
}

@media only screen and (min-width: 1281px) and (max-width: 1400px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts {
    width: 95%;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .img-layouts.a1 {
    width: 75%;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-specs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding-top: 10px;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-desktop {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  color: #350406;
  font-family: 'Gotham-Medium';
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-desktop {
    display: none;
    font-size: 12px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-desktop {
    font-size: 14px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .grid-container {
  color: #350406;
  font-family: 'Gotham-Medium';
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .grid-container {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .grid-container {
    display: none;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-mobile {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-mobile {
    margin: 0 45px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-specs .ol-mobile li {
  list-style: none;
  margin: 0;
  padding: 0;
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-title {
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title {
    padding-left: 30px;
    padding-right: 30px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types {
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  color: #350406;
  font-family: 'EBGaramond-SemiBold';
  font-size: 45px;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types {
    font-size: 20px;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types span {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1345px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types {
    font-size: 25px;
  }
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types span {
    font-size: 65px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types span {
  font-size: 85px;
  padding: 0 10px;
  color: #7B0310;
  line-height: 0;
}

@media only screen and (max-width: 575px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .types span {
    font-size: 50px;
  }
}

body#web #layout-plan .slick-wrapper .type-layout-content .type-title .size {
  font-size: 30px;
  font-family: 'Gotham-Medium';
  color: #7B0310;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .size {
    font-size: 20px;
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  body#web #layout-plan .slick-wrapper .type-layout-content .type-title .size {
    font-size: 21px;
  }
}

body#web #layout-plan .slick-wrapper .carousel-wrapper .feather {
  position: absolute;
  bottom: 0;
  right: 80px;
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather {
    right: 40px;
  }
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather img {
    width: 160px !important;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1345px) {
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather {
    right: 40px;
  }
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather img {
    width: 200px !important;
  }
}

@media only screen and (max-width: 991px) {
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather {
    right: 0px;
  }
  body#web #layout-plan .slick-wrapper .carousel-wrapper .feather img {
    width: 150px !important;
  }
}

body#web #layout-plan .slick-wrapper .carousel-wrapper .feather img {
  width: 270px;
  -webkit-clip-path: rect(0% 0% 100% 0%);
          clip-path: rect(0% 0% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

body#web #layout-plan .slick-wrapper .carousel-wrapper .feather.active img {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web #floor-plan {
  height: 100vh;
  position: relative;
}

body#web #floor-plan .right-shiny {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-clip-path: rect(100% 100% 100% 0%);
          clip-path: rect(100% 100% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 4;
}

body#web #floor-plan .right-shiny img {
  width: 350px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web #floor-plan .right-shiny img {
    width: 250px;
  }
}

@media only screen and (max-width: 575px) {
  body#web #floor-plan .right-shiny img {
    width: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web #floor-plan .right-shiny img {
    width: 180px;
  }
}

body#web #floor-plan .container-floor-plan {
  padding: 0 80px;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  body#web #floor-plan .container-floor-plan {
    padding: 0 20px;
  }
}

body#web #floor-plan .container-floor-plan .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

body#web #floor-plan .container-floor-plan .row .bg-floor-plan .bg-1 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: absolute;
  bottom: 50%;
  left: 10%;
  width: 40%;
}

@media only screen and (max-width: 767px) {
  body#web #floor-plan .container-floor-plan .row .bg-floor-plan .bg-1 {
    width: 100%;
    left: 0;
  }
}

body#web #floor-plan .container-floor-plan .row .bg-floor-plan .bg-2 {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: absolute;
  top: 50%;
  right: 10%;
  width: 40%;
}

@media only screen and (max-width: 767px) {
  body#web #floor-plan .container-floor-plan .row .bg-floor-plan .bg-2 {
    width: 100%;
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  body#web #floor-plan .container-floor-plan {
    top: 75%;
    padding-bottom: 50px !important;
  }
}

@media only screen and (max-width: 320px) {
  body#web #floor-plan .container-floor-plan {
    top: 70%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 375px) {
  body#web #floor-plan .container-floor-plan {
    top: 60%;
  }
}

@media only screen and (min-width: 376px) and (max-width: 539px) {
  body#web #floor-plan .container-floor-plan {
    top: 50%;
  }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
  body#web #floor-plan .container-floor-plan {
    top: 65%;
  }
}

@media only screen and (min-width: 767px) and (max-width: 820px) {
  body#web #floor-plan .container-floor-plan {
    top: 50%;
  }
}

@media only screen and (min-width: 821px) and (max-width: 912px) {
  body#web #floor-plan .container-floor-plan {
    top: 50%;
  }
}

@media only screen and (min-width: 913px) and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan {
    top: 80%;
  }
}

body#web #floor-plan .container-floor-plan .mb-floor-types {
  margin-top: 70px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (min-width: 992px) {
  body#web #floor-plan .container-floor-plan .mb-floor-types {
    display: none;
  }
}

body#web #floor-plan .container-floor-plan .mb-floor-types .mb-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body#web #floor-plan .container-floor-plan .mb-floor-types .mb-types img {
  width: 65%;
}

body#web #floor-plan .container-floor-plan .floor-types {
  text-align: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  body#web #floor-plan .container-floor-plan .floor-types {
    text-align: start;
  }
}

@media only screen and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-types {
    display: none;
  }
}

body#web #floor-plan .container-floor-plan .floor-types img {
  width: 55%;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #floor-plan .container-floor-plan .floor-types img {
    width: 75%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  body#web #floor-plan .container-floor-plan .floor-types img {
    width: 65%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1366px) {
  body#web #floor-plan .container-floor-plan .floor-types img {
    width: 70%;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-title {
  padding-bottom: 55px;
  line-height: 1.3;
  font-size: 50px;
  color: #450D10;
  text-align: center;
  font-family: 'EBGaramond-Medium';
}

body#web #floor-plan .container-floor-plan .floor-plan-title .floor-plus-plan {
  font-size: 35px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (min-width: 992px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title .floor-plus-plan {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title .floor-plus-plan {
    font-size: 45px;
  }
}

@media only screen and (min-width: 1745px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title {
    font-size: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title {
    text-align: start;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1366px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title {
    text-align: start;
    font-size: 60px;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-title .floor {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
}

@media only screen and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title .floor {
    display: none;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-title .plan {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  margin-left: 50px;
}

@media only screen and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-title .plan {
    display: none;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-figure {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  position: relative;
}

body#web #floor-plan .container-floor-plan .floor-plan-figure img {
  width: 70%;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure img {
    width: 90%;
  }
}

@media only screen and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure img {
    width: 100%;
    padding-top: 80px;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-figure .compass {
  position: absolute;
  -webkit-transition: all 750ms linear;
  transition: all 750ms linear;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  opacity: 0;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1500px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass {
    text-align: end;
  }
}

body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
  width: 40%;
  padding-top: 0;
}

@media only screen and (max-width: 575px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 50%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 45%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 32%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1180px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 33%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1365px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 35%;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
  body#web #floor-plan .container-floor-plan .floor-plan-figure .compass img {
    width: 40%;
  }
}

body#web #floor-plan.active .right-shiny {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web #floor-plan.active .bg-1, body#web #floor-plan.active .bg-2 {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

body#web #floor-plan.active .floor-plan-title .floor-plus-plan {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

body#web #floor-plan.active .floor-plan-title .floor {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

body#web #floor-plan.active .floor-plan-title .plan {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

body#web #floor-plan.active .floor-plan-figure {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #floor-plan.active .floor-plan-figure .compass {
  opacity: 1;
}

body#web #floor-plan.active .mb-floor-types {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web #floor-plan.active .floor-types {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web header {
  width: 100vw;
}

body#web header .left-shiny {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-clip-path: rect(0% 0% 100% 0%);
          clip-path: rect(0% 0% 100% 0%);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  z-index: 4;
}

body#web header .left-shiny img {
  width: 350px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web header .left-shiny img {
    width: 250px;
  }
}

@media only screen and (max-width: 575px) {
  body#web header .left-shiny img {
    width: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web header .left-shiny img {
    width: 180px;
  }
}

body#web header.active .left-shiny {
  -webkit-clip-path: rect(0% 100% 100% 0%);
          clip-path: rect(0% 100% 100% 0%);
}

body#web header img {
  width: 200px;
}

body#web header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

body#web header .header-wrap .offcanvas {
  padding: 15px 25px;
  background: url("/assets/img/sidebar/side_menu_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

body#web header .header-wrap .offcanvas::-webkit-scrollbar {
  display: none !important;
  -webkit-appearance: none;
}

@media only screen and (min-width: 1537px) {
  body#web header .header-wrap .offcanvas {
    padding: 25px 45px;
  }
}

@media only screen and (max-width: 767px) {
  body#web header .header-wrap .offcanvas {
    width: 100%;
  }
}

body#web header .header-all-wrapper .logo-wrapper {
  position: absolute;
  top: 45px;
  left: 80px;
  z-index: 101;
}

@media only screen and (max-width: 991px) {
  body#web header .header-all-wrapper .logo-wrapper {
    display: none;
  }
}

body#web header .btn-toggle {
  background: url("/assets/img/side-menu/bg.png");
  background-size: cover;
  background-position: center;
  width: 55px;
  height: 55px;
  margin-right: 80px;
  margin-top: 60px;
  padding: 15px 8px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media only screen and (max-width: 767px) {
  body#web header .btn-toggle {
    margin-top: 50px;
    margin-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body#web header .btn-toggle {
    margin-top: 50px;
    margin-right: 70px;
  }
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body::-webkit-scrollbar {
  display: none !important;
  width: 0;
  height: 0;
  -webkit-appearance: none;
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body .logo-light img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body .directory-wrapper {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body .bottom-wrapper .copyright {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body .bottom-wrapper .directory-tnc {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body#web header .btn-toggle.trigger .offcanvas-end .offcanvas-body .bottom-wrapper .icon-social-wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  body#web header .btn-toggle .offcanvas-end {
    width: 30%;
  }
}

body#web header .btn-toggle .offcanvas-end .offcanvas-header {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media only screen and (min-width: 1700px) {
  body#web header .btn-toggle .offcanvas-end .offcanvas-header {
    padding-right: 65px;
  }
}

body#web header .btn-toggle .offcanvas-end .offcanvas-header .btn-close {
  background: url("/assets/img/sidebar/close_inactive.png");
  background-size: cover;
  opacity: 1;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-header .btn-close:hover {
  background: url("/assets/img/sidebar/close_active.png");
  background-size: cover;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-header .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body {
  overflow-x: hidden;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .logo-light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 55px;
  overflow: hidden;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .logo-light img {
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  width: 350px;
}

@media only screen and (max-width: 1536px) {
  body#web header .btn-toggle .offcanvas-end .offcanvas-body .logo-light img {
    width: 250px;
  }
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .directory-wrapper {
  margin-bottom: 55px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .directory-wrapper .directory {
  overflow: hidden;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .directory-wrapper .directory:not(:last-child) {
  margin-bottom: 15px;
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .directory-wrapper .directory a {
  font-family: 'Gotham-Book';
  display: block;
  font-weight: normal;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

body#web header .btn-toggle .offcanvas-end .offcanvas-body .directory-wrapper .directory a.active {
  color: #e7c079;
}

body#web header .btn-toggle .header-btn {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  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-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

body#web header .btn-toggle .header-btn.white span.btn-line {
  background: #eedbd3 !important;
}

body#web header .btn-toggle .header-btn.white:hover span {
  background: #A4837F !important;
}

body#web header .btn-toggle .header-btn:hover span {
  background: #7B0310 !important;
}

body#web header .btn-toggle .header-btn:hover span.btn-line:nth-child(2) {
  -webkit-animation: leftRight 300ms ease-in-out forwards;
          animation: leftRight 300ms ease-in-out forwards;
}

body#web header .btn-toggle .header-btn:hover span.btn-line:not(:nth-child(2)) {
  width: 20px;
}

@-webkit-keyframes leftRight {
  0% {
    right: 0px;
    position: relative;
  }
  100% {
    right: 8px;
    position: relative;
  }
}

@keyframes leftRight {
  0% {
    right: 0px;
    position: relative;
  }
  100% {
    right: 8px;
    position: relative;
  }
}

body#web header .btn-toggle .header-btn span.btn-line {
  height: 3px;
  border-radius: 3px;
  opacity: 1;
  width: 20px;
  background: #39050A;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

body#web header .btn-toggle .header-btn span.btn-line:first-child {
  width: 27px;
}

body#web header .btn-toggle .header-btn span.btn-line:nth-child(3) {
  width: 27px;
}

body#web header .bottom-wrapper {
  overflow: hidden;
}

body#web header .bottom-wrapper .icon-social-wrapper {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

body#web header .bottom-wrapper .icon-social-wrapper .icon-social {
  margin-right: 20px;
}

body#web header .bottom-wrapper .icon-social-wrapper .icon-social img {
  width: 40px;
}

body#web header .bottom-wrapper .copyright {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
  color: rgba(255, 255, 255, 0.8);
}

body#web header .bottom-wrapper .directory-tnc {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

body#web header .bottom-wrapper .directory-tnc a {
  color: #e7c079;
  text-decoration: none;
  margin-right: 10px;
}

body#web #brochure iframe {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
}

body#web input[type=checkbox] {
  background: #2D1E16;
  border: none !important;
}

body#web #toTop {
  cursor: pointer;
}

body#web .overflow-hidden {
  overflow: hidden;
}

body#web .hide {
  display: none;
}

body#web .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

body#web .nav-exsim-logo-wrap {
  margin-top: 80px;
  margin-bottom: 120px;
}

body#web .copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body#web .copyright-wrapper .copyright {
  font-family: "Gotham";
  font-size: 14px;
}

body#web .copyright-wrapper .tnc {
  font-family: "Gotham";
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

body#web .copyright-wrapper .tnc a {
  cursor: pointer;
  font-size: 10px;
  color: grey;
}

body#web .nav-exsim-logo {
  height: 80px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web .nav-bottom-link-wrap {
  width: 25%;
}

body#web .nav-bottom-link-wrap img {
  height: 20px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body#web .bottom-nav-wrapper {
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body#web .bottom-nav-wrapper.active {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body#web .background-opacity.active {
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
}

body#web .background-opacity {
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
  width: 100%;
  height: 100%;
}

body#web .overlay {
  height: 100%;
  width: 0;
  position: fixed;
  overflow-y: scroll;
  z-index: 3;
  top: 0;
  right: 0;
  background-color: #F5EEE6;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

body#web .overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

body#web .overlay a {
  letter-spacing: 1.5px;
  text-decoration: none;
  font-size: 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body#web .navLink {
  font-family: "PassionSansPDag";
  font-weight: normal;
  font-style: normal;
  color: #000000;
  -webkit-transition: padding 1s;
  transition: padding 1s;
}

body#web .navLink:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: #DA6F3F;
  opacity: 0;
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
  overflow: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

body#web .overlay-inner-content {
  width: 70%;
  overflow: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

body#web .overlay-inner-content.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 1s ease-in;
  transition: -webkit-transform 1s ease-in;
  transition: transform 1s ease-in;
  transition: transform 1s ease-in, -webkit-transform 1s ease-in;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

body#web .nav-wrapper {
  position: relative;
  margin-top: 10px;
  clear: both;
  float: left;
}

:hover > body#web .nav-wrapper:hover .navLink {
  color: #DA6F3F;
}

:hover > body#web .nav-wrapper:hover .navLink:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media screen and (max-height: 450px) {
  body#web .overlay a {
    font-size: 20px;
  }
  body#web .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

body#web .top-nav-wrap {
  height: 150px;
  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;
}

body#web .top-nav-wrap .big-logo-wrapper {
  width: 70%;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body#web .top-nav-wrap .big-logo-wrapper a {
  width: 80%;
}

body#web .top-nav-wrap .big-logo-wrapper img {
  width: 100%;
}

body#web .top-nav-wrap .big-logo-wrapper.active {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body#web .top-nav-wrap .close-nav-wrapper {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  overflow: hidden;
}

body#web .top-nav-wrap .close-nav-wrapper .close-inner-wrapper {
  position: relative;
}

body#web .top-nav-wrap .close-nav-wrapper .close-inner-wrapper img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

body#web .top-nav-wrap .close-nav-wrapper .close-inner-wrapper .close-animation {
  border: 2px solid #F5EEE6;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

:hover > body#web .top-nav-wrap .close-nav-wrapper:hover .close-animation {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  border: 3px solid #F5EEE6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-color: #F5EEE6;
}

body#web #btn-nav {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #DA6F3F;
  color: #ffffff;
  width: 60px;
  height: 60px;
  padding: 2px 0;
}

body#web #btn-nav span {
  font-family: "PassionSansPDag";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 0px;
}

body#web #btn-nav .nav-dash-line {
  height: 2px;
  width: 50px;
  overflow: hidden;
}

body#web #btn-nav .nav-dash-line .nav-dash-inner-line {
  height: 2px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

body#web #btn-nav .nav-dash-line .nav-dash-inner-line .nav-line:nth-child(1),
body#web #btn-nav .nav-dash-line .nav-dash-inner-line .nav-line:nth-child(3) {
  background-color: #ffffff;
}

body#web #btn-nav .nav-dash-line .nav-dash-inner-line .nav-line {
  width: 50%;
  height: 2px;
}

body#web #btn-nav .nav-dash-line .nav-line-top {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body#web #btn-nav .nav-dash-line .nav-line-top.hover {
  -webkit-transform: translateX(-68%);
          transform: translateX(-68%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body#web #btn-nav .nav-dash-line .nav-line-bottom {
  -webkit-transform: translateX(-68%);
          transform: translateX(-68%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body#web #btn-nav .nav-dash-line .nav-line-bottom.hover {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body#web #btn-nav .animation-nav-title {
  color: #683825;
  -webkit-transition: color 3s;
  transition: color 3s;
  z-index: 2;
  font-family: "Gotham";
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 0.1s, -webkit-transform 0.1s;
  transition: opacity 0.1s, -webkit-transform 0.1s;
  transition: opacity 0.1s, transform 0.1s;
  transition: opacity 0.1s, transform 0.1s, -webkit-transform 0.1s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

body#web #btn-nav path {
  fill: none;
  stroke: #683825;
  stroke-width: 3;
  -webkit-transition: stroke-dashoffset 2s linear, stroke 3s;
  transition: stroke-dashoffset 2s linear, stroke 3s;
}

body#web #btn-nav .line1 {
  stroke-dasharray: 680;
  stroke-dashoffset: 650;
}

body#web #btn-nav .line2 {
  stroke-dasharray: 680;
  stroke-dashoffset: 630;
}

body#web #btn-nav .line3 {
  stroke-dasharray: 680;
  stroke-dashoffset: 610;
}

:hover > body#web #btn-nav:hover .animation-nav-title {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

body#web #btn-nav:hover path {
  stroke-dashoffset: 0;
}

body#web .main-header {
  padding: 20px;
  padding-left: 80px;
  position: fixed;
  top: -300px;
  left: 0;
  background-color: transparent;
  -webkit-animation: slideInFromTop 2s ease-out forwards;
          animation: slideInFromTop 2s ease-out forwards;
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body#web .main-header {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body#web .main-header {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  body#web .main-header {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 410px) and (max-width: 575px) {
  body#web .main-header {
    padding-left: 20px;
  }
}

@media screen and (max-width: 820px) {
  body#web .main-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body#web .page-footer {
  background-color: #683825;
  height: 50px;
  width: 100%;
  z-index: 0;
  position: relative;
  font-size: 12px;
  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: #ae694a;
}

body#web .page-footer span {
  color: #ffffff;
}

body#web .page-footer a, body#web .page-footer a:hover, body#web .page-footer a:active {
  color: #ae694a;
}

body#web .page-footer .footer-msg {
  text-align: center;
}

body#web .background-video {
  position: fixed;
}

body#web .loading {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #000000;
  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;
  z-index: 10;
  top: 0px;
  left: 0px;
}

@media screen and (max-width: 767px) {
  body#web .loading .loader-wrapper img {
    width: 260px;
  }
}

body#web .vr360 {
  position: fixed;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 1;
}

body#web .vr360 img {
  width: 100px;
}

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;
  }
}

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;
}

@media screen and (max-width: 820px) {
  .noordinz-logo {
    margin-top: 50px;
  }
}

.noordinz-logo img {
  width: 560px;
  margin-top: 165px;
}

@media screen and (max-width: 991px) {
  .noordinz-logo img {
    width: 50%;
  }
}

@media screen and (max-width: 820px) {
  .noordinz-logo img {
    width: 200px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1536px) {
  .noordinz-logo img {
    width: 450px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .noordinz-logo img {
    width: 350px;
  }
}

.kyliez-logo-hd {
  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;
  margin-top: 45px;
  position: fixed;
  z-index: 0;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .kyliez-logo-hd {
    display: none;
  }
}

.kyliez-logo-hd img {
  width: 265px;
}

@media screen and (max-width: 320px) {
  .kyliez-logo-hd img {
    width: 160px;
  }
}

header {
  z-index: 8;
  position: fixed;
  top: -250px;
  opacity: 0;
  -webkit-animation: top250ease 2s ease-in forwards;
          animation: top250ease 2s ease-in forwards;
  -webkit-transition: display 0.5s ease-in-out;
  transition: display 0.5s ease-in-out;
}

@-webkit-keyframes top250ease {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes top250ease {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
