.visual { animation: blink-1 0.6s both; width: 100%; overflow: hidden; border-bottom: 1px solid var(--black); background-color: #fff;}

/*이미지 2개로 나누는거 */
.visual.sl_line {opacity:0;}
.visual .half_section {display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: 1fr; font-size: 0;}
.visual .half_section > a {position: relative; display: inline-block; width: 100%; overflow: hidden;}
.visual .half_section > a img {width:100%;}
/*이미지 2개로 나누는거 끝 */

.visual .vis-txt-box {display: flex; flex-direction: column; align-items: center; padding: 40px 30px;}

.visual .vis-txt-box .vistit{ text-align: center; font-size: 30px; font-weight: bold; margin-bottom: -5px;}
.visual .vis-txt-box .vistxt{ text-align: center; font-size: 18px; margin: 10px 0; line-height: 1;}

.visual .vis-txt-box .order-period-dates {
  display: inline-block; /* 줄 간격을 줄이기 위해 inline-block으로 설정 */
  margin-top: 5px;  /* Order period와 카운트다운 간격을 좁히기 위해 margin-top을 조정 */
}

#countdown {
  margin-bottom: 20px;  /* 카운트다운과 그 밑의 텍스트 간격을 20px로 설정 */
  font-size: 15px;  /* 카운트다운 폰트 크기 */
  color: #585858;  /* 텍스트 색상 */
}

.visual .vis-txt-box a{ padding: 10px 15px; font-size: 14px; font-weight: bold; border: 1px solid var(--black); border-radius: 100%;}

.visual .img-box {
  animation: kenburns-top-right 5s alternate-reverse ease-out both;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden; /* 이미지가 영역을 벗어나지 않도록 설정 */
}

.visual .img-box img {
  animation: bounce-right 0.8s both;
  width: 100%;
  height: auto;  /* auto로 height를 조정 */
  min-height: 100%; /* 이미지의 최소 높이를 100%로 설정 */
  object-fit: cover;
  object-position: bottom; /* 이미지 아랫부분을 맞춤 */
  position: absolute; /* 이미지가 부모 컨테이너를 벗어나지 않도록 절대 위치 설정 */
}