@charset "utf-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
.section02 img {
  max-width: 100%;
  object-fit: cover;
}
.block1200 {
  display: none !important;
}
@media (max-width: 1200px) {
  .block1200 {
    display: block !important;
  }
  .none1200 {
    display: none !important;
  }
}
.section02 {
  display: flex;
  width: 100%;
  /* height: 100vh; */
  padding: 0;
}
/* 왼쪽 전체 영역 - 텍스트, 내비게이션*/
.section02 .left {
  width: 33%;
  padding: 5% 1%;
}
/* 오른쪽 전체 영역 - 슬라이드 */
.section02 .right { 
  overflow: hidden;
}
/* section02 */
.section02 .clear {
  clear: both;
}
.section02 img {
  max-width: 100%;
  border: 0px;
}
.section02 ul,
.section02 ol {
  list-style: none;
}
.section02 a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.section02 a:focus,
.section02 a:active,
.section02 a:visited,
.section02 a:hover {
  text-decoration: none;
  outline: none;
}
.section02 a:hover {
  color: #e73700;
}
.section02 h2.title {
  padding-bottom: 16px;
  padding-left: 15px;
  font-size: 54px;
  letter-spacing: 2.7px;
  line-height: 74px;
  position: relative;
  text-transform: capitalize;
  text-align: center;
}
.section02 p.title {
  padding-left: 20px;
  padding-bottom: 27%;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.36px;
  text-align: center;
}
.section02 h3 {
  display: inline-block;
  margin: 64px 0 0px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #3B1F07;
  letter-spacing: 2px;
}
.section02 button {
  outline: none !important;
}
.section02 .btn-box { 
  display: inline-block;
  margin-left: 15px;
}
.section02 a.room-view-roomlist {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #5a3b2e; /* 갈색 */
  text-decoration: none;
  padding-bottom: 5px; /* 선과의 간격 */
  font-family: "gowun", serif;
}
/* ROOM VIEW 버튼 */
.section02 .item-desc::after { /* 직선 */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 20px); 
  height: 1px;
  background-color: #5a3b2e;
  transition: all 0.5s ease;
}

.section02 .item-desc::before { /* 사선 */
  content: "";
  position: absolute;
  right: -35px;
  bottom: 1px;
  width: 15px; 
  height: 1px;
  background-color: #5a3b2e;
  transform: rotate(222deg); 
  transform-origin: left bottom;
  transition: all 0.5s ease;
}
.section02 .item-desc:hover::after { width: calc(100% + 40px);}
.section02 .item-desc:hover::before{ right: -55px;}

/******* Common Element CSS End *********/

/* -------- title style ------- */
.section02 .line-title {
  position: relative;
}
/* .section02 .line-title::before,
.section02 .line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.section02 .line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.section02 .section02 .line-title::after {
  width: 32px;
  background: #e73700;
} */

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */

.section02 .owl-stage-outer {
  background: #fff;
  padding: 50px 10px 30px;
  margin-bottom: 80px;
}
.section02 .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}

.section02 .item {
  margin: 0 15px 60px;
  width: 790px;
  height: 479px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  /* border-radius: 16px; */
  /* overflow: hidden; */
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.section02 .item.active {
  /* width: 500px;
  box-shadow: 8px 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 8px 10px 10px rgba(0, 0, 0, 0.25); */
}
.section02 .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to bottom, 
    rgba(109, 93, 82, 0) 0%, 
    rgba(109, 93, 82, 0) 80%, 
    rgba(109, 93, 82, 0.8) 100%
    );
}
.section02 .item-desc {
  color: #fff;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.section02 .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.section02 .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
.section02 .owl-controls-box {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  margin-top: 20px;
  margin-left: 15px;
  max-width: 600px;
}

.section02 .progress-bar {
  flex-grow: 1;
  height: 3px;
  background: #eee;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.section02 .progress-bar .progress {
  height: 100%;
  background: #333;
  width: 0%;
  transition: width 0.4s ease;
}

.section02 .pagination-controls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section02 .pagination-controls button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #464646;
}

.section02 .pagination-controls .counter {
  font-size: 16px;
  font-family: 'nelp', 'serif';
  letter-spacing: 1px;
}
.section02 .move_text_wrap {
  width: 100%;
  overflow: hidden;
}
.section02 .move_text {
  font-size: 119px;
  line-height: 1em;
  letter-spacing: 0.13em;
  color:#6D5D52;
  white-space: nowrap;
  animation: move_text 50s linear infinite;
}
@keyframes move_text {
  0% {
    transform: translateX(50%);
  }
  100% {
      transform: translateX(-130%);
  }
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (max-width: 1199px) {
  .section02 h2 {
    /* margin-bottom: 32px; */
  }
  .section02 h3 {
    font-size: 18px;
  }
  .section02 .item {
    /* margin: 0 12px 60px; */
    width: 553px;
    height: 335px;
  }
}

@media (max-width: 767px) {
  .section02 {
    font-size: 14px;
    padding: 20px 0;
    position: relative;
  }
  .section02 .left { width: 40%;}
  .section02 .left .textbox { margin-top: 30px;}
  .section02 .right { width: 60%; }
  .section02 h2.title {
    font-size: 28px;
    line-height: 2.5;
    padding-left: 0;
    padding-bottom: 5px;
  }
  .section02 p.title {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 0;
  }
  .section02 h3 {
    font-size: 12px;
    letter-spacing: 0;
  }
  .section02 a.room-view-roomlist { font-size: 12px;}
  .section02 .owl-stage-outer { 
    margin-bottom: 30px;
    padding: 30px 0px 0px;
  }
  .section02 .owl-stage { margin: 0;}
  .section02 .item {
    width: 60vw;
    height: 36.36vw;
    /* width: auto;
    height: auto; */
  }
  .section02 .owl-controls-box {
    margin: 0;
    margin-bottom: 10px;
    position: absolute;
    z-index: 6;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 89vw;
    display: flex;
    gap: 20px;
  }
  .section02 .progress-bar { margin-right: 0;}
  .section02 .pagination-controls {
    justify-content: flex-end;
    transform: translateY(-22px);
    gap: 10px;  
  }
}
@media(max-width:370px){
  .section02 .left { width: 35%;}
  .section02 .right { width: 65%; }
  .section02 h2.title {
    font-size: 23px;
  }
}
/* section02 끝*/

