/* ---------------visual-section START--------------- */
.visual-section {
  position: relative;
}
.visual-section.active .text-box .visual-title {
  opacity: 1;
}
.visual-section.active .text-box .visual-desc {
  opacity: 1;
}
.visual-section.active .text-box .slider-control {
  opacity: 1;
}
.visual-section .visual-slider .slider-box {
  width: 100%;
  height: calc(var(--full-vh, 100vh) * 1);
  overflow: hidden;
}
.visual-section .visual-slider .slider-box.active img {
  transform: scale(1.05);
}
.visual-section .visual-slider .slider-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 15s;
  transition-timing-function: linear;
}
.visual-section .text-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.visual-section .text-box .visual-title {
  line-height: 1.3;
  opacity: 0;
  transition: opacity 1.5s;
}
.visual-section .text-box .visual-desc {
  line-height: 1.5;
  margin: 30px 0;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.2s;
}
.visual-section .text-box .slider-control {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.4s;
}
.visual-section .text-box .slider-control .progress-bar {
  position: relative;
  width: 100px;
  height: 3px;
  background-color: #111;
}
.visual-section .text-box .slider-control .progress-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.5s;
}

/* ---------------visual-section END--------------- */
/* 

*/
/* ---------------about-section START--------------- */
.about-section.active .about-wrap .img-inner .img-box {
  opacity: 1;
}
.about-section.active .about-wrap .text-inner .text-box img {
  opacity: 1;
  transform: translateY(0);
}
.about-section.active .about-wrap .text-inner .text-box .section-desc {
  opacity: 1;
  transform: translateY(0);
}
.about-section .about-wrap {
  display: flex;
  align-items: stretch;
}
.about-section .about-wrap .img-inner,
.about-section .about-wrap .text-inner {
  width: 50%;
  box-sizing: border-box;
  padding: 180px 8.5%;
}
.about-section .about-wrap .img-inner .img-box {
  min-height: 450px;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s;
}
.about-section .about-wrap .img-inner .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-section .about-wrap .text-inner {
  position: relative;
  overflow: hidden;
}
.about-section .about-wrap .text-inner .deco-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 57%;
  height: auto;
  opacity: 0.05;
}
.about-section .about-wrap .text-inner .text-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-section .about-wrap .text-inner .text-box img {
  display: block;
  height: 35px;
  width: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}
.about-section .about-wrap .text-inner .text-box .section-desc {
  line-height: 1.5;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.4s;
}

/* ---------------about-section END--------------- */
/* 

*/
/* ---------------amenity-section START--------------- */
.amenity-section.active .amenity-wrap .section-title {
  opacity: 1;
}
.amenity-section.active .amenity-wrap .amenity-slider {
  opacity: 1;
}
.amenity-section.active .amenity-wrap .slider-control {
  opacity: 1;
}
.amenity-section .amenity-wrap .section-title {
  opacity: 0;
  transition: opacity 1.5s;
}
.amenity-section .amenity-wrap .amenity-slider {
  width: 95%;
  max-width: calc((100% - 1760px) / 2 + 1760px);
  margin-left: 5%;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.2s;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box {
  position: relative;
  width: 1080px;
  height: 590px;
  overflow: hidden;
  border-radius: 36px;
  box-sizing: border-box;
  border: 1px solid #eee;
  margin-right: 80px;
  overflow: hidden;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box.active .text-box .title {
  opacity: 1;
  transform: translateY(0);
}
.amenity-section .amenity-wrap .amenity-slider .slider-box.active .text-box .text {
  opacity: 1;
  transform: translateY(0);
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .img-box {
  width: 100%;
  height: 100%;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: 45px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
  margin-top: 15px;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title {
  line-height: 1.3;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}
.amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .text {
  line-height: 1.5;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.4s;
}
.amenity-section .amenity-wrap .slider-control {
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.4s;
}
.amenity-section .amenity-wrap .slider-control .btn-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

/* ---------------amenity-section END--------------- */
/* 

*/
/* ---------------room-section START--------------- */
.room-section.active .room-wrap .title-box .section-title {
  opacity: 1;
}
.room-section.active .room-wrap .title-box .section-desc {
  opacity: 1;
}
.room-section.active .room-wrap .room-inner .room-box {
  opacity: 1;
  transform: translateY(0);
}
.room-section .room-wrap .title-box {
  display: flex;
  align-items: center;
  gap: 40px;
}
.room-section .room-wrap .title-box .section-title {
  line-height: 1.3;
  opacity: 0;
  transition: opacity 1.5s;
}
.room-section .room-wrap .title-box .section-desc {
  line-height: 1.5;
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.2s;
}
.room-section .room-wrap .room-inner {
  display: flex;
  align-items: center;
  gap: 25px;
}
.room-section .room-wrap .room-inner .room-box {
  width: calc((100% - 25px) / 2);
  box-sizing: border-box;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
}
.room-section .room-wrap .room-inner .room-box:nth-of-type(1) {
  transition-delay: 0.4s;
}
.room-section .room-wrap .room-inner .room-box:nth-of-type(2) {
  transition-delay: 0.6s;
}
.room-section .room-wrap .room-inner .room-box .img-box {
  position: relative;
  width: 100%;
  height: 580px;
}
.room-section .room-wrap .room-inner .room-box .img-box .room-slider {
  height: 100%;
}
.room-section .room-wrap .room-inner .room-box .img-box .room-slider .slick-list, .room-section .room-wrap .room-inner .room-box .img-box .room-slider .slick-track {
  height: 100%;
}
.room-section .room-wrap .room-inner .room-box .img-box .room-slider .slider-box {
  height: 100%;
}
.room-section .room-wrap .room-inner .room-box .img-box .room-slider .slider-box.active img {
  transform: scale(1.05);
}
.room-section .room-wrap .room-inner .room-box .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 15s;
  transition-timing-function: linear;
}
.room-section .room-wrap .room-inner .room-box .img-box .title {
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 45%;
}
.room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translateX(-50%);
}
.room-section .room-wrap .room-inner .room-box .btn-box {
  display: flex;
}
.room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
  width: 50%;
  height: 80px;
  background-color: #F1F1EB;
}
.room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type.active {
  background-color: #182521;
  color: #fff;
}

/* ---------------room-section END--------------- */
/* 

*/
/* ---------------event-section START--------------- */
.event-section.active .event-wrap .img-inner .event-slider {
  opacity: 1;
}
.event-section.active .event-wrap .text-inner .text-box img {
  opacity: 1;
  transform: translateY(0);
}
.event-section.active .event-wrap .text-inner .text-box .section-desc {
  opacity: 1;
  transform: translateY(0);
}
.event-section .event-wrap {
  display: flex;
  align-items: stretch;
}
.event-section .event-wrap .img-inner,
.event-section .event-wrap .text-inner {
  width: 50%;
  box-sizing: border-box;
  padding: 135px 8.5%;
}
.event-section .event-wrap .img-inner .event-slider {
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.4s;
}
.event-section .event-wrap .img-inner .event-slider .slider-box.active .img-box {
  opacity: 1;
}
.event-section .event-wrap .img-inner .event-slider .slider-box.active .text-box {
  opacity: 1;
}
.event-section .event-wrap .img-inner .event-slider .slider-box .img-box {
  min-height: 450px;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s;
}
.event-section .event-wrap .img-inner .event-slider .slider-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.event-section .event-wrap .img-inner .event-slider .slider-box .text-box {
  opacity: 0;
  transition: opacity 1.5s;
  transition-delay: 0.2s;
}
.event-section .event-wrap .img-inner .event-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}
.event-section .event-wrap .img-inner .event-slider .slick-dots li.slick-active .btn-dot {
  background-color: #fff;
}
.event-section .event-wrap .img-inner .event-slider .slick-dots li .btn-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.5s;
}
.event-section .event-wrap .img-inner .text-box .text {
  line-height: 1.5;
}
.event-section .event-wrap .text-inner {
  position: relative;
  overflow: hidden;
}
.event-section .event-wrap .text-inner .deco-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 57%;
  height: auto;
  opacity: 0.05;
}
.event-section .event-wrap .text-inner .text-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-section .event-wrap .text-inner .text-box img {
  display: block;
  height: 35px;
  width: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
}
.event-section .event-wrap .text-inner .text-box .section-desc {
  line-height: 1.5;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}

/* ---------------event-section END--------------- */
/* 

*/
/* ---------------contact-section END--------------- */
.contact-section.active .contact-wrap .section-title {
  opacity: 1;
}
.contact-section.active .contact-wrap .map-box {
  opacity: 1;
  transform: translateY(0);
}
.contact-section.active .contact-wrap .contact-list > .list-item {
  opacity: 1;
  transform: scale(1);
}
.contact-section .contact-wrap .section-title {
  opacity: 0;
  transition: opacity 1.5s;
}
.contact-section .contact-wrap .map-box {
  height: 630px;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s, transform 1.5s;
  transition-delay: 0.2s;
}
.contact-section .contact-wrap .map-box > div {
  width: 100% !important;
  height: 100% !important;
}
.contact-section .contact-wrap .map-box > div svg {
  display: none;
}
.contact-section .contact-wrap .map-box > div > div {
  height: 100% !important;
}
.contact-section .contact-wrap .contact-list {
  margin-top: 25px;
  display: flex;
  gap: 25px;
}
.contact-section .contact-wrap .contact-list > .list-item {
  width: calc((100% - 75px) / 4);
  opacity: 0;
  transform: scale(0.25);
  transition: opacity 1.5s, transform 1.5s;
}
.contact-section .contact-wrap .contact-list > .list-item:nth-of-type(1) {
  transition-delay: 0.4s;
}
.contact-section .contact-wrap .contact-list > .list-item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.contact-section .contact-wrap .contact-list > .list-item:nth-of-type(3) {
  transition-delay: 0.8s;
}
.contact-section .contact-wrap .contact-list > .list-item:nth-of-type(4) {
  transition-delay: 1s;
}
.contact-section .contact-wrap .contact-list > .list-item .inner {
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 63px;
  overflow: hidden;
}
.contact-section .contact-wrap .contact-list > .list-item .inner .text {
  line-height: 1.5;
}
.contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: block;
  width: auto;
  height: 46%;
  opacity: 0.05;
}

/* ---------------contact-section END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (max-width: 1600px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 27px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 18px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 95px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 160px 8.5%;
  }
  .about-section .about-wrap .img-inner .img-box {
    min-height: 400px;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 32px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 960px;
    height: 530px;
    border-radius: 32px;
    margin-right: 70px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 40px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 13px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 9px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 55px;
    height: 55px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 36px;
  }
  .room-section .room-wrap .room-inner {
    gap: 23px;
  }
  .room-section .room-wrap .room-inner .room-box {
    width: calc((100% - 23px) / 2);
  }
  .room-section .room-wrap .room-inner .room-box .img-box {
    height: 520px;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .title {
    top: 44%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
    top: 56%;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 72px;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 120px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slider-box .img-box {
    min-height: 400px;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 23px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 32px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 560px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 23px;
    gap: 23px;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: calc((100% - 69px) / 4);
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 56px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 18px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 24px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 16px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 90px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 140px 8.5%;
  }
  .about-section .about-wrap .img-inner .img-box {
    min-height: 350px;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 29px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 840px;
    height: 470px;
    border-radius: 28px;
    margin-right: 60px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 35px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 11px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 8px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 50px;
    height: 50px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 32px;
  }
  .room-section .room-wrap .room-inner {
    gap: 21px;
  }
  .room-section .room-wrap .room-inner .room-box {
    width: calc((100% - 21px) / 2);
  }
  .room-section .room-wrap .room-inner .room-box .img-box {
    height: 460px;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .title {
    top: 43%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
    top: 57%;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 64px;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 105px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slider-box .img-box {
    min-height: 350px;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 21px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 29px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 490px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 21px;
    gap: 21px;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: calc((100% - 63px) / 4);
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 49px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 16px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 21px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 14px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 85px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 120px 8.5%;
  }
  .about-section .about-wrap .img-inner .img-box {
    min-height: 300px;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 26px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 720px;
    height: 410px;
    border-radius: 24px;
    margin-right: 50px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 30px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 9px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 7px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 45px;
    height: 45px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 28px;
  }
  .room-section .room-wrap .room-inner {
    gap: 19px;
  }
  .room-section .room-wrap .room-inner .room-box {
    width: calc((100% - 19px) / 2);
  }
  .room-section .room-wrap .room-inner .room-box .img-box {
    height: 400px;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .title {
    top: 42%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
    top: 58%;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 56px;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 90px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slider-box .img-box {
    min-height: 300px;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 19px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 26px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 420px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 19px;
    gap: 19px;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: calc((100% - 57px) / 4);
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 42px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 14px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------about-section START--------------- */
  .about-section .about-wrap {
    flex-direction: column-reverse;
  }
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    width: 100%;
  }
  .about-section .about-wrap .img-inner .img-box {
    min-height: auto;
    height: 50vw;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 600px;
    height: 350px;
    border-radius: 20px;
    margin-right: 40px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 25px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 7px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .room-section .room-wrap .room-inner {
    flex-direction: column;
    gap: 38px;
  }
  .room-section .room-wrap .room-inner .room-box {
    width: 100%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box {
    height: 45vw;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap {
    flex-direction: column;
  }
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    width: 100%;
  }
  .event-section .event-wrap .img-inner .event-slider .slider-box .img-box {
    min-height: auto;
    height: 80vw;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 350px;
  }
  .contact-section .contact-wrap .contact-list {
    flex-wrap: wrap;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: calc((100% - 19px) / 2);
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 18px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 12px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 80px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 100px 8.5%;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 23px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 480px;
    height: 290px;
    border-radius: 16px;
    margin-right: 35px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 20px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 6px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 6px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 40px;
    height: 40px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 24px;
  }
  .room-section .room-wrap .room-inner {
    gap: 34px;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 48px;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .title {
    top: 41%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
    top: 59%;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 75px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 17px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 23px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 280px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 17px;
    gap: 17px;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: calc((100% - 17px) / 2);
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 35px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 12px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 15px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 10px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 75px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 80px 8.5%;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 20px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 360px;
    height: 230px;
    border-radius: 12px;
    margin-right: 30px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 15px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 5px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 5px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 35px;
    height: 35px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 20px;
  }
  .room-section .room-wrap .room-inner {
    gap: 30px;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 40px;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .title {
    top: 40%;
  }
  .room-section .room-wrap .room-inner .room-box .img-box .btn-room-opacity span {
    top: 60%;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 60px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 15px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 20px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 210px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 15px;
    gap: 15px;
  }
  .contact-section .contact-wrap .contact-list > .list-item {
    width: 100%;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 28px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 10px;
    width: 25%;
    height: auto;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------visual-section START--------------- */
  .visual-section .text-box .visual-desc {
    margin: 12px 0;
  }
  .visual-section .text-box .slider-control {
    gap: 8px;
  }
  .visual-section .text-box .slider-control .progress-bar {
    width: 70px;
  }
  /* ---------------visual-section END--------------- */
  /* 

  */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-inner,
  .about-section .about-wrap .text-inner {
    padding: 60px 8.5%;
  }
  .about-section .about-wrap .text-inner .text-box img {
    height: 17px;
  }
  /* ---------------about-section END--------------- */
  /* 

  */
  /* ---------------amenity-section START--------------- */
  .amenity-section .amenity-wrap .amenity-slider .slider-box {
    width: 240px;
    height: 170px;
    border-radius: 8px;
    margin-right: 25px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box {
    padding: 10px;
  }
  .amenity-section .amenity-wrap .amenity-slider .slider-box .text-box .title + .text {
    margin-top: 4px;
  }
  .amenity-section .amenity-wrap .slider-control {
    gap: 4px;
  }
  .amenity-section .amenity-wrap .slider-control .btn-slider {
    width: 30px;
    height: 30px;
  }
  /* ---------------amenity-section END--------------- */
  /* 

  */
  /* ---------------room-section START--------------- */
  .room-section .room-wrap .title-box {
    gap: 16px;
  }
  .room-section .room-wrap .room-inner {
    gap: 26px;
  }
  .room-section .room-wrap .room-inner .room-box .btn-box .btn-room-type {
    height: 32px;
  }
  /* ---------------room-section END--------------- */
  /* 

  */
  /* ---------------event-section START--------------- */
  .event-section .event-wrap .img-inner,
  .event-section .event-wrap .text-inner {
    padding: 45px 8.5%;
  }
  .event-section .event-wrap .img-inner .event-slider .slick-dots {
    margin-top: 13px;
  }
  .event-section .event-wrap .text-inner .text-box img {
    height: 17px;
  }
  /* ---------------event-section END--------------- */
  /* 

  */
  /* ---------------contact-section END--------------- */
  .contact-section .contact-wrap .map-box {
    height: 140px;
  }
  .contact-section .contact-wrap .contact-list {
    margin-top: 13px;
    gap: 13px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner {
    padding: 21px;
  }
  .contact-section .contact-wrap .contact-list > .list-item .inner .icon-img {
    bottom: 8px;
  }
  /* ---------------contact-section END--------------- */
}
/* ---------------media query END--------------- */