/* 섹션 title */
.sec_tit_wrap{display: flex; align-items: center; justify-content: space-between;}
.sec_tit_wrap h2.tit{font-size: 60px; font-weight: 700; color: #000; line-height: 1em;}
@media screen and (max-width: 1024px){
	.sec_tit_wrap h2.tit{font-size: 50px;}
}
@media screen and (max-width: 768px){
	.sec_tit_wrap h2.tit{font-size: 30px;}
}
@media screen and (max-width: 500px){
	.sec_tit_wrap h2.tit{font-size: 20px;}
}



#mainVisual{
	overflow: hidden;
	height: 100vh;
	width: 100%;
	z-index: 1;
	position: relative;
	
}
#mainVisual .mainVisualSwiper,
#mainVisual .swiper-wrapper{
	height: 100%;
}
#mainVisual .arrows{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 50;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#mainVisual .arrows>button{
	display: flex;
	position: relative;
	align-items: flex-end;
}
#mainVisual .arrows>button span.bar{
	position: relative;
	border-bottom: 2px solid rgba(255,255,255,0.3);
	width: 80px;
}
#mainVisual .arrows>button span.txt{
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2em;
	color: #FFF;
	width: 70px;
	text-align: center;
	padding-bottom: 7px;
	border-bottom: 1px solid #FFF;
}


/* 기본 상태: 애니메이션 없음 */
#mainVisual .bg_wrap{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	transform: scale(1.05, 1.05);
	transform-origin: center center;
	transition-duration: 0.3s;
}
#mainVisual .slide01 .bg_wrap{
	background: url(/html/_img/main/main_visual.jpg) no-repeat center / cover;
}
#mainVisual .slide02 .bg_wrap{
	background: url(/html/_img/main/main_visual02.jpg) no-repeat center / cover;
}
#mainVisual .slide03 .bg_wrap{
	background: url(/html/_img/main/main_visual03.jpg) no-repeat center / cover;
}

/* 애니메이션이 걸릴 때만 이 클래스를 붙임 */
#mainVisual .bg_wrap.zoom-anim {
	animation: mainVisualZoomOut 7s ease-out forwards;
}

@keyframes mainVisualZoomOut {
	0% {
		transform: scale(1.05, 1.05);
	}
	100% {
		transform: scale(1, 1);
	}
}


#mainVisual .txt_wrap{
	position: relative;
	color: #FFF;
	display: flex;
	flex-direction: column;
	row-gap: 23px;
	height: 100%;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	z-index: 2;
}
#mainVisual .txt_wrap h2{
	font-size: 72px;
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
}
#mainVisual .txt_wrap h2 br{
	display: none;
}
#mainVisual .txt_wrap p{
	position: relative;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2em;
	text-align: center;
}
#mainVisual .txt_wrap p br{
	display: none;
}
#mainShinil .company_txt_wrap{
	position: relative;
	display: flex;
	justify-content: center;
}
#mainShinil p.company {
  position: relative;
  display: inline-block;
}
/* 기본은 커서 표시용 클래스가 있을 때만 커서 보이게 */
#mainShinil p.company.typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: #fff; /* 글자색에 맞춰 바꿔도 됨 */
  animation: typingCursor 0.7s step-end infinite;
}

@keyframes typingCursor {
  50% {
    opacity: 0;
  }
}

@media screen and (max-width: 1024px){
	#mainVisual{height: 70vh;}
	#mainVisual .txt_wrap h2{font-size: 62px;}
}
@media screen and (max-width: 768px){
	#mainVisual .txt_wrap h2{font-size: 42px;}
	#mainVisual .txt_wrap p{font-size: 20px;}
	#mainVisual .arrows{top: auto; transform: translate(0); bottom: 50px;}
}
@media screen and (max-width: 500px){
	#mainVisual .txt_wrap{row-gap: 20px;}
	#mainVisual .txt_wrap h2{font-size: 32px; display: block;}
	#mainVisual .txt_wrap h2 br{display: block;}
	#mainVisual .txt_wrap p{font-size: 18px;}
	#mainVisual .txt_wrap p br{display: block;}
	#mainVisual .arrows>button span.bar{width: 60px;}
	#mainVisual .arrows>button span.txt{font-size: 14px; width: 50px;}
}









#mainShinil{
	position: relative;
	background-color: #000;
	box-sizing: border-box;
	padding: 210px 0;
}
#mainShinil .logo_wrap{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 640px;
	height: 494px;
	z-index: 1;
}
#mainShinil p.txt{
	text-align: center;
	font-size: 28px;
	color: #FFF;
	line-height: 1.6em;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}
#mainShinil p.company{
	font-size: 10.547vw;
	color: #FFF;
	font-weight: 700;
	text-align: center;
	line-height: 1em;
	position: relative;
	z-index: 2;
}
#mainShinil .logo-svg path {
  stroke-width: 1;          /* 필요하면 조절 */
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* 애니메이션 전에 기본값: JS에서 dash 값 덮어씀 */
#mainShinil .logo-svg path {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}


@media screen and (max-width: 1920px){
	#mainShinil{padding: 190px 0;}
}

@media screen and (max-width: 1024px){
	#mainShinil p.txt{font-size: 24px;}
	#mainShinil .logo_wrap{width: 400px; height: 430px;}
	#mainShinil .logo_wrap svg{width: 100%; height: 100%}


}
@media screen and (max-width: 768px){
	#mainShinil{padding: 130px 0;}
	#mainShinil p.txt{font-size: 20px;}
}
@media screen and (max-width: 500px){
	#mainShinil{padding: 110px 0;}
	#mainShinil p.txt{font-size: 16px; margin-bottom: 10px;}
	#mainShinil .logo_wrap{width: 230px; height: 247px;}
	#mainShinil .logo-svg path {
  stroke-width: 3;          /* 필요하면 조절 */
	}
}












#mainTech{
	background-color: #000;
	padding-bottom: 200px;
}
#mainTech .sec_tit_wrap h2.tit{
	color: #FFF;
}
#mainTech .tech_list{
	display: flex;
	justify-content: space-between;
}
#mainTech .tech_list>li{
	width: 25.781vw;
	position: relative;
}
#mainTech .tech_list>li>a{
	display: block;
	width: 100%;
}
#mainTech .tech_list>li>a>.img_wrap{
	width: 100%;
	height: 25.781vw;
	overflow: hidden;
	transition-duration: 0.3s;
}
#mainTech .tech_list>li>a>.img_wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainTech .tech_list>li>a:hover>.img_wrap,
#mainTech .tech_list>li>a:active>.img_wrap{
	border-radius: 660px;
}
#mainTech .tech_list>li>a>.txt_wrap{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	box-sizing: border-box;
	padding: 30px;
}
#mainTech .tech_list>li>a>.txt_wrap h3{
	color: #FFF;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4em;
}
#mainTech .tech_list>li>a>.txt_wrap p{
	position: absolute;
	left: 30px;
	bottom: 30px;
	width: 100%;
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	width: calc(100% - 60px);
}
@media screen and (max-width: 1920px){
	#mainTech{padding-bottom: 180px;}
	#mainTech .tech_list>li{width: 28.781vw;}
	#mainTech .tech_list>li>a>.img_wrap{height: 28.781vw;}
}
@media screen and (max-width: 1024px){
	#mainTech .tech_list{flex-wrap: wrap; justify-content: center; gap: 2%; row-gap: 20px;}
	#mainTech .tech_list>li{width: 48%; }
	#mainTech .tech_list>li:nth-child(3){width: 100%;}
	#mainTech .tech_list>li>a>.img_wrap{height: 300px;}
}
@media screen and (max-width: 768px){
	#mainTech{padding-bottom: 100px;}
	#mainTech .tech_list>li>a>.img_wrap{height: 250px;}
	#mainTech .tech_list>li>a>.txt_wrap{padding: 20px;}
	#mainTech .tech_list>li>a>.txt_wrap h3{font-size: 22px;}
	#mainTech .tech_list>li>a>.txt_wrap p{font-size: 18px; width: calc(100% - 40px); left: 20px; bottom: 20px;}
}
@media screen and (max-width: 500px){
	#mainTech{padding-bottom: 80px;}
	#mainTech .tech_list>li{width: 100%; }
	#mainTech .tech_list>li>a>.img_wrap{height: 200px;}
	#mainTech .tech_list>li>a>.txt_wrap h3{font-size: 18px;}
	#mainTech .tech_list>li>a>.txt_wrap p{font-size: 16px;}
}













#mainService{
	padding-top: 160px;
	padding-bottom: 200px;
}

#mainService .service_list{
	display: flex;
	justify-content: space-between;
}

#mainService .service_list>li{
	width: 48%;
}
#mainService .service_list>li>a{
	display: block;
	width: 100%;
}
#mainService .service_list>li>a .img_wrap{
	width: 100%;
	height: 420px;
}
#mainService .service_list>li>a .img_wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#mainService .service_list>li>a .txt_wrap h3{
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4em;
	color: #000;
}
#mainService .service_list>li>a .txt_wrap p{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: #000;
}
#mainService .service_list>li>a .txt_wrap p.txt{
	margin-top: 10px;
}
#mainService .service_list>li>a:hover .txt_wrap p.link_txt,
#mainService .service_list>li>a:active .txt_wrap p.link_txt{
	color: #004282;
	text-decoration: underline;
}

@media screen and (max-width: 1920px){
	#mainService{padding-top: 140px; padding-bottom: 180px;}
	#mainService .service_list>li>a .img_wrap{height: 320px;}
}
@media screen and (max-width: 1024px){
	#mainService{padding-top: 80px; padding-bottom: 120px;}
	#mainService .service_list>li{width: 49%;}
	#mainService .service_list>li>a .txt_wrap h3{font-size: 26px;}
	#mainService .service_list>li>a .txt_wrap p{font-size: 18px;}

}
@media screen and (max-width: 768px){
	#mainService{padding-top: 80px; padding-bottom: 120px;}
	#mainService .service_list{flex-wrap: wrap; row-gap: 30px;}
	#mainService .service_list>li{width: 100%;}
	#mainService .service_list>li>a .img_wrap{height: 220px;}
	#mainService .service_list>li>a .txt_wrap h3{font-size: 22px;}
	#mainService .service_list>li>a .txt_wrap p{font-size: 16px;}
}
@media screen and (max-width: 500px){
	#mainService{padding-top: 60px; padding-bottom: 100px;}
	#mainService .service_list>li>a .img_wrap{margin-bottom: 10px;}
	#mainService .service_list>li>a .txt_wrap h3{font-size: 18px;}
	#mainService .service_list>li>a .txt_wrap p{font-size: 14px;}
	#mainService .service_list>li>a .txt_wrap p.txt{margin-top: 5px;}
	#mainService .service_list>li>a .txt_wrap p.link_txt{margin-top: 15px;}
}










#mainNews{
	position: relative;
	padding-bottom: 160px;
}
#mainNews .sec_tit_wrap>a{
	font-size: 22px;
	font-weight: 500;
	line-height: 1em;
	color: #000;
	display: flex;
	align-items: center;
	column-gap: 15px;
}
#mainNews .sec_tit_wrap>a .arrow{
	display: flex;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: #000;
	justify-content: center;
	align-items: center;
}
#mainNews .sec_tit_wrap>a .arrow>i{
	color: #FFF;
	font-size: 18px;
	position: relative;
	transform: rotate(-45deg);
}
#mainNews .news_list{
	display: flex;
	justify-content: space-between;
}
#mainNews .news_list>li{
	width: 31.5%;
}
#mainNews .news_list>li>a{
	display: block;
	width: 100%;
}
#mainNews .news_list>li>a .img_wrap{
	width: 100%;
	height: 380px;
}
#mainNews .news_list>li>a .img_wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#mainNews .news_list>li>a .img_wrap.no-thumb{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F5F5F5;
	border-radius: 10px;
}
#mainNews .news_list>li>a .img_wrap.no-thumb img{
	width: auto;
	height: auto;
}
#mainNews .news_list>li>a .txt_wrap h3{
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4em;
	color: #000;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#mainNews .news_list>li>a .txt_wrap p{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: #000;
}
#mainNews .news_list>li>a .txt_wrap p.txt{
	margin-top: 10px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#mainNews .news_list>li>a:hover .txt_wrap p.link_txt,
#mainNews .news_list>li>a:active .txt_wrap p.link_txt{
	color: #004282;
	text-decoration: underline;
}



@media screen and (max-width: 1920px){
	#mainNews{padding-bottom: 140px;}
	#mainNews .sec_tit_wrap>a{font-size: 20px;}
	#mainNews .news_list>li>a .img_wrap{height: 280px;}
	#mainNews .news_list>li>a .txt_wrap h3{font-size: 26px;}
	#mainNews .news_list>li>a .txt_wrap p{font-size: 18px;}
}


@media screen and (max-width: 1024px){
	#mainNews .news_list>li:nth-child(2) ~ li{display: none;}
	#mainNews .news_list>li{width: 49%;}
}
@media screen and (max-width: 768px){
	#mainNews{padding-bottom: 80px;}
	#mainNews .sec_tit_wrap>a{font-size: 16px; column-gap: 10px;}
	#mainNews .sec_tit_wrap>a .arrow>i{font-size: 16px;}
	#mainNews .sec_tit_wrap>a .arrow{width: 40px; height: 40px;}
	#mainNews .news_list{flex-wrap: wrap; row-gap: 30px;}
	#mainNews .news_list>li{width: 100%;}
	#mainNews .news_list>li>a .img_wrap{height: 220px;}
	#mainNews .news_list>li>a .txt_wrap h3{font-size: 20px;}
	#mainNews .news_list>li>a .txt_wrap p{font-size: 16px;}
}

@media screen and (max-width: 500px){
	#mainNews{padding-bottom: 60px;}
	#mainNews .sec_tit_wrap>a{font-size: 14px;}
	#mainNews .sec_tit_wrap>a .arrow{width: 30px; height: 30px;}
	
	#mainNews .news_list{flex-wrap: wrap; row-gap: 30px;}
	#mainNews .news_list>li{width: 100%;}
	#mainNews .news_list>li>a .img_wrap{height: 220px; margin-bottom: 10px;}
	#mainNews .news_list>li>a .txt_wrap h3{font-size: 20px;}
	#mainNews .news_list>li>a .txt_wrap p{font-size: 14px;}
	#mainNews .news_list>li>a .txt_wrap p.txt{margin-top: 5px;}
	#mainNews .news_list>li>a .txt_wrap p.link_txt{margin-top: 15px;}
}
























