* {
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h1 span,
h2 span,
h3 span,
h4 span {
  font-family: "Marcellus", "Gowun Batang", "SUIT", sans-serif;
  font-weight: 500;
  transform: rotate(0.04deg);
  line-height: 1.45;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  color: var(--color-sub);
}

p {
  color: var(--color-mute);
}

.btn {
  font-size: var(--font-size-16);
  font-weight: 600;
}

button.btn.btn-text.arrow img {
  width: 22px;
  margin-left: 5px;
}

.content-title {
  margin-bottom: 80px;
}

.content-title.center * {
  text-align: center;
}

.content-title.white * {
  color: #fff;
}

.title-banner {
  width: 100%;
  height: 70vh;
}

.title-banner .bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title-banner .bg {
  background-attachment: fixed;
  height: inherit;
}

.title-banner .container {
  position: relative;
  width: 100%;
  height: 100%;
}

.title-banner .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-label {
  position: relative;
}

.title-label::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 7vw;
  width: 1px;
  height: 200px;
  background-color: var(--color-primary);
}

.title-label::after {
  content: attr(title-label);
  position: absolute;
  top: 115px;
  left: 6.5vw;
  color: var(--color-primary);
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  font-size: var(--font-size-13);
  letter-spacing: 8px;
}

.bg-obj img,
.bg-obj2 img {
  display: block;
}

.sub-p {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: var(--font-size-13);
  margin-bottom: 10px;
}

.room-preview-area {
  position: relative;
  background-color: var(--color-little);
}

.room-preview-area .bg-obj {
  position: absolute;
  top: 0;
  right: 0;
}

.preview-card .thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.preview-card .thumb::before {
  content: "";
  padding-bottom: 66.66%;
  display: block;
}

.preview-card .thumb .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.preview-card:hover .thumb .bg {
  transform: scale(1.2);
}

.preview-card p {
  color: var(--color-text);
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

.draw-line {
  height: 1px;
  background-color: #fff;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  left: 0;
}

.scroll-event[data-scroll="draw-line"] {
  animation: draw-line 1s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes draw-line {
  0% {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

/* staynt-pes custom */
#fullSlider.slider .slider-contents {
  height: 100vh;
}

.slider .slick-prev:before {
  background: url("/sites/2023/07/pes_sunbadang/assets/images/arrow_prev.svg")
    center center no-repeat;
  left: 5vw;
  opacity: 1;
}

.slider .slick-next:before {
  background: url("/sites/2023/07/pes_sunbadang/assets/images/arrow_next.svg")
    center center no-repeat;
  right: 5vw;
  transform: rotate(0deg);
  opacity: 1;
}

.slider .slick-prev:before,
.slider .slick-next:before {
  width: 95px;
  height: 95px;
}

.slider .slick-dots {
  bottom: 5vh;
}

.slider .slick-dots li button:before {
  font-family: unset;
  font-size: 30px;
  opacity: 0.85;
  color: white;
}

.slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--color-primary);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
  .title-label::before {
    left: 2vw;
  }

  .title-label::after {
    left: 1.5vw;
  }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  .title-label::before,
  .title-label::after {
    display: none;
  }

  .preview-special .card {
    height: 600px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .content-title {
    margin-bottom: 40px;
  }

  .title-banner {
    height: 40vh;
  }

  .title-label::before,
  .title-label::after {
    display: none;
  }

  #fullSlider.slider .slider-contents {
    height: 70vh;
  }

  .slider .slick-dots li button:before {
    font-size: 20px;
  }

  .preview-special .card {
    height: 400px;
  }

  .room-preview-area .sub-p {
    display: none;
  }

  .draw-line {
    top: 70%;
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.pattern-grid {
  background-image: linear-gradient(#eee 1px, transparent 1px),
    linear-gradient(to right, #eee 1px, #fff 1px);
  background-size: 40px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: -1;
}

.scroll-event[data-scroll="fade-in-left"] {
  animation: fade-in-left 1s ease-in;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.scroll-event[data-scroll="fade-in-left"] {
  animation: fade-in-left 1s ease-in;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.scroll-event[data-scroll="fade-in-right"] {
  animation: fade-in-right 1s ease-in;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
