@charset "utf-8";


.mainImg { width: 100%; height: 400px; background-position: center;}
@media (max-width: 1400px) {
	.mainImg { width: 100%; height: 200px; background-position: center;}



}


.mainTxt { 
  position: absolute;
  top: 50%;
  left: 50%;
	text-align: center;
	color:#fff;
  transform: translate(-50%, -50%);
	font-family: "Apple SD Gothic Neo", "Nanum Myeongjo", "Batang", "serif";
	font-weight: 600;
	font-size:24px;
}
.mainTxt .mtxt01 { font-size:40px; font-weight: 700;  margin-bottom: 10px; }
.mainTxt p {word-break: keep-all;overflow-wrap: break-word;}

@media (max-width: 991px) {
  .mainTxt { 
	font-size:16px;
	}
	.mainTxt .mtxt01 { font-size:24px;}
}

@media (max-width: 770px) {
  .mainTxt { 
	font-size:12px;
	}
	.mainTxt .mtxt01 { font-size:18px;}
}




/* 슬라이더 li 기본값: 이미지 높이 그대로 나오게 */
.bxslider li {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 모바일일 때만 높이 고정 */
@media screen and (max-width: 768px) {
  .bxslider li {
    height: 400px;
  }
}

/* 이미지 감싸는 박스: 항상 높이 100% 유지 */
.responsive-img {
  position: relative;
  width: 100%;
  height: auto;
}

/* 모바일일 때만 감싸는 박스도 height 100% 고정 */
@media screen and (max-width: 768px) {
  .responsive-img {
    height: 100%;
  }
}

/* 이미지 스타일 */
.responsive-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 모바일일 때만 height 기준으로 꽉 채우고 가운데 자르기 */
@media screen and (max-width: 768px) {
  .responsive-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    min-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
}