@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  background: #f0f7fc !important;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern";
  font-feature-settings: "kern";
  -webkit-font-kerning: normal;
  -moz-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-variant-ligatures: common-ligatures;
  -moz-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  scroll-behavior: smooth;
  position: relative;
  height: 100%;
}

body {
  font-size: 16px;
  width: 100%;
  background: #f0f7fc !important;
  color: #03283d;
  line-height: 1.5;
  font-family: Roboto, Noto Sans SC, Roboto, Hiragino Sans GB, WenQuanYi Micro Hei, Heiti SC, Microsoft YaHei, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(26, 78, 46, 0.1);
  background-color: transparent;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(26, 78, 46, 0.1);
  background: #2c4666;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

p {
  font-size: 1.25rem;
}

@-webkit-keyframes scrolldot {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrolldot {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulse-red {
  0% {
    transform: scale(0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(253, 0, 0);
  }
}
/* Animation for sliding from bottom */
@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-in {
  animation-name: slideInFromBottom;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoom-in {
  animation-name: zoomIn;
}

@keyframes anim-rotate {
  0%, 10% {
    transform: rotate(0deg);
  }
  40%, 60% {
    transform: rotate(90deg);
  }
  95%, 100% {
    transform: rotate(0deg);
  }
}
/**
*
* Testing
*
**/
header {
  display: flex;
  background-image: url("../images/sg-skyview.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-top: 0px;
}
header > div {
  width: 30%;
  height: 100vh;
  margin-left: 15%;
  background-color: rgba(44, 70, 102, 0.6);
  padding: 5em 2.5em;
  backdrop-filter: blur(4px);
  text-align: center;
}
@media (max-width: 1024px) {
  header > div {
    display: flex;
    width: 100%;
    margin-left: 0%;
  }
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: normal;
}
.header-content h1 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .header-content h1 {
    font-size: 1.65rem;
  }
}
.header-content p {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.4;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .header-content p {
    width: 60%;
    margin: auto;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .header-content p {
    width: 100%;
    margin: 0;
    text-align: justify;
    margin-bottom: 1em;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .header-content {
    display: none;
  }
}
.header-content-p {
  margin-top: 2em;
}

.header-content-landscape {
  display: none;
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .header-content-landscape {
    display: flex;
    justify-content: center;
    color: #ffffff;
    width: 100%;
  }
  .header-content-landscape-title {
    padding: 0 2em 0 0;
  }
  .header-content-landscape-title h1 {
    font-size: 1.56rem;
    font-weight: 400;
  }
  .header-content-landscape-p {
    width: 500px;
    text-align: justify;
  }
  .header-content-landscape-p p {
    font-size: 1rem;
  }
  .header-content-landscape .bigbold {
    font-size: 3rem;
    font-weight: bold;
  }
}
@media only screen and (max-width: 1024px) and (orientation: landscape) and (max-width: 1024px) {
  .header-content-landscape .bigbold {
    font-size: 3rem;
  }
}
.header-content-landscape .scroll-button {
  position: relative;
  top: 0;
  left: 50%;
  width: 20px;
  height: 40px;
  margin-left: -15px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
}
.header-content-landscape .scroll-button:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #03283d;
  border-radius: 100%;
  -webkit-animation: scrolldot 2s infinite;
  animation: scrolldot 2s infinite;
  box-sizing: border-box;
}
.header-content-landscape .scroll-button:after {
  content: "向下滚动";
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  width: 100px !important;
  display: block;
  position: absolute;
  right: -62px;
  top: 50px;
}

.publish {
  font-size: 0.9em;
  padding: 1em 0;
  margin: 5em auto 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.publish .date {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1024px) {
  .publish {
    margin: 2em auto 0 auto;
  }
}

.publish a {
  white-space: nowrap;
  color: #fff !important;
}

.bigbold {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .bigbold {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 480px) and (orientation: portrait) {
  .rotate-phone {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
  }
}

@media only screen and (max-width: 480px) and (orientation: portrait) {
  .phone {
    display: inline-block;
    width: 20px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 5px;
    position: relative;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: anim-rotate;
    animation-duration: 2s;
  }
  .phone:after {
    content: "";
    width: 100%;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 4px;
    left: 0;
  }
  .phone:before {
    content: "";
    width: 100%;
    border-bottom: 2px solid #fff;
    position: absolute;
    bottom: 6px;
    left: 0;
  }
}

.scroll-button {
  position: relative;
  top: 0;
  left: 50%;
  width: 20px;
  height: 40px;
  margin-left: -15px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll-button:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #03283d;
  border-radius: 100%;
  -webkit-animation: scrolldot 2s infinite;
  animation: scrolldot 2s infinite;
  box-sizing: border-box;
}
.scroll-button:after {
  content: "向下滚动";
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  width: 100px !important;
  display: block;
  position: absolute;
  right: -36px;
  top: 50px;
}

.wrapper-swipe {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  scroll-snap-align: start;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.swiper-slide img.view-landscape {
  display: block;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .swiper-slide img.view-landscape {
    display: none;
  }
}
.swiper-slide img.view-portrait {
  display: none;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .swiper-slide img.view-portrait {
    display: block;
  }
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5rem;
  letter-spacing: 0.2rem;
  z-index: 5;
}

.slide-caption-wrap {
  position: absolute;
  bottom: 0px;
  left: 5%;
  background-color: rgba(44, 70, 102, 0.8);
  width: 450px;
  height: 500px;
  z-index: 5;
  text-align: left;
  color: #ffffff;
  padding: 1.5em 1em;
}
.slide-caption-wrap h2 {
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .slide-caption-wrap {
    height: 100vh;
    width: 250px;
    left: 0;
    padding: 2em 1em;
  }
  .slide-caption-wrap h2 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .slide-caption-wrap {
    height: 35vh;
    width: 100%;
    padding: 0 1em;
    background-color: #2c4666;
    z-index: 10;
  }
}
.slide-caption-wrap-loc img {
  width: 100%;
  max-width: 40%;
}
@media (max-width: 1024px) {
  .slide-caption-wrap-loc img {
    max-width: 60%;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .slide-caption-wrap-loc img {
    max-width: 40%;
  }
}

.slide-description {
  max-height: 250px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em;
  position: relative;
  z-index: 10;
}
.slide-description p {
  margin: 0;
  font-size: 1.15rem;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .slide-description {
    -webkit-overflow-scrolling: touch;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 0 1em 0 0;
  }
  .slide-description p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .slide-description {
    -webkit-overflow-scrolling: touch;
    max-height: 200px;
    overflow-y: scroll;
    margin-top: 10px;
  }
  .slide-description p {
    font-size: 1rem;
  }
}
.slide-description::-webkit-scrollbar {
  width: 10px;
}
.slide-description::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.slide-description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.last-slide {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.last-slide .footer-wrap {
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.last-slide .footer-wrap-logo {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: auto;
  flex-wrap: wrap;
}
.last-slide .footer-wrap p {
  font-size: 1.05rem;
}
.last-slide .footer-wrap a {
  color: #03283d;
}
.last-slide .footer-wrap a:hover {
  text-decoration: none;
}
.last-slide .footer-wrap img {
  width: 140px;
}
@media (max-width: 1024px) {
  .last-slide .footer-wrap {
    height: auto;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .last-slide .footer-wrap {
    height: auto;
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .last-slide {
    width: 40%;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .last-slide {
    bottom: 0;
    width: 100%;
    height: 40vh;
  }
}

#copyright {
  font-size: 0.9rem;
  border-top: 1px solid #e7e5e5;
  padding: 4em 0;
  margin: 4em auto;
  color: #888;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  #copyright {
    margin: 0;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  #copyright {
    font-size: 0.8rem;
  }
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  background: #e90044 !important;
}

.pulse {
  background: #e90044;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  margin: 10px;
  height: 20px;
  width: 20px;
  transform: scale(1);
  animation: pulse-red 2s infinite;
  position: absolute;
  z-index: 5;
}
.pulse::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.pulse:hover::after {
  opacity: 1;
}

.spot-marina {
  top: 80%;
  left: 45%;
}

.spot-changi {
  top: 50%;
  left: 45%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 18;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 25%;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.modal-content h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-top: 1em;
}
@media (max-width: 1024px) {
  .modal-content {
    width: 250px;
    height: 90vh;
    margin: 2em 0 0 0;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .modal-content {
    position: relative;
    top: 20%;
    width: 90%;
    height: auto;
    margin: auto;
  }
}
.modal-description {
  margin-top: 0em;
}
.modal-description p {
  margin-top: 1em;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .modal-description {
    max-height: 200px;
    overflow-y: scroll;
  }
}

.close {
  display: flex;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  background: #fffdf9;
  width: 30px;
  height: 30px;
  border-radius: 50% 50%;
  position: relative;
  left: 100%;
  bottom: 37px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 255, 0.2);
  opacity: 1 !important;
}
.close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#footer-content {
  display: none;
  padding: 20px;
  background-image: url("../images/sengkang-town.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  color: #03283d;
  justify-content: center;
  align-items: center;
}
#footer-content .footer-wrap {
  width: 500px;
  height: 50vh;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 48px;
  backdrop-filter: blur(4px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer-content .footer-wrap a {
  color: #03283d;
}
#footer-content .footer-wrap a:hover {
  text-decoration: none;
}
#footer-content .footer-wrap img {
  width: 180px;
}

.social-links {
  margin-top: 2em;
}
.social-links a.facebook {
  background-image: url(/lib/imgs/social/facebook-circle-mono-black.svg);
}
.social-links a.twitter {
  background-image: url(/lib/imgs/social/twitter-x-circle-mono-black.svg);
}
.social-links a.instagram {
  background-image: url(/lib/imgs/social/instagram-circle-mono-black.svg);
}
.social-links a.youtube {
  background-image: url(/lib/imgs/social/youtube-circle-mono-black.svg);
}
.social-links a.telegram {
  background-image: url(/lib/imgs/social/telegram-circle-mono-black.svg);
}

.view-landscape {
  display: none;
}
@media only screen and (max-with: 1024px) and (orientation: landscape) {
  .view-landscape .view-landscape {
    display: block !important;
  }
}

.view-portrait {
  display: none;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .view-portrait .view-portrait {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */