
/*************************************************
팝업
**************************************************/
 .popup {
	display: none;
	position: fixed;
	background-color: white;
	border: 1px solid #ccc;
	padding: 0 20px 10px 20px;
	box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
	z-index: 1000;
	width: 80%;
	max-width: 500px;
	border-radius: 8px;
	text-align: center;
}
#popup1{top: 10%; left: 10%;}
#popup2{top: 10%; left: 50%; transform: translateX(-60%);}


	/* .overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	} */
	.popup-header {
	cursor: move;
	}
	.popup img {
	width: 100%;
	border-radius: 8px;
	}

	.popup .btn{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.close-button {
	/* margin-top: 10px; */
	padding: 10px 15px;
	background-color: #333;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	}
	.close-button:hover {
	background-color: #00a5e5;
	}
	
	@media screen and (max-width:500px){
		.popup{width: 100%; max-width: 400px;}
		#popup1{left: 0;}
		#popup2{left: 5%; transform: translateX(0);}

	
	} 
  

/*************************************************
메인비주얼
**************************************************/

.main-visual{
  width: 100%;
  height: 80vh;
  margin-top: 100px;
  overflow: hidden;
}

.main-visual .swiper-slide {
  position: relative;
  /* top: 100px; */
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual .slide-img{
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-visual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.main-visual .swiper-slide img[src$=".gif"],.main-visual .swiper-slide img[src$=".png"] {
	image-rendering: -moz-crisp-edges; /* Firefox */
	image-rendering: -o-crisp-edges; /* Opera */
	image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
	transform: translateZ(0);
}


.main-visual .main-pagination{
  bottom: 20%;
  left: 0;
  width: 100%;
}

.main-visual .swiper-pagination-bullet{
  background-color: #00a5e5;
  width: 12px;
  height: 12px;
}

.main-visual .swiper-button-next,
.main-visual .swiper-button-prev{
  width: 60px;
  height: 60px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: block;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-visual .swiper-button-next {
  right: 10px;
  background-image: url('../../images/main/main_next.png');
}

.main-visual .swiper-button-prev {
 left: 10px;
  background-image: url('../../images/main/main_prev.png');
}
.main-visual .main-text{
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;

}
.main-visual .main-text .main-tit{
  font-size:56px;
    font-weight: 700;
    color: #FFF;
    word-break: keep-all;
}
.main-visual .main-text .main-subtit{
  font-size: 24px;
  color: #fff;
  padding-top: 12px;
  word-break: keep-all;
}

@media screen and (max-width:1100px){
  .main-visual{margin-top: 0;}
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.main-text h2, .main-text p {
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .main-text h2{
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
}
.swiper-slide-active .main-text p{
  animation: fadeInUp 1s forwards;
  animation-delay: 1s; 
}

@media screen and (max-width:1024px){
  .main-visual .main-text .main-tit{
    font-size: 40px;
  }
  .main-visual .main-text .main-subtit {
    font-size: 18px;}

	.main-visual .slide-img.si1{}
	.main-visual .slide-img.si2{background-position: 15% center;}
	.main-visual .slide-img.si3{background-position: 15% center;}

}

@media screen and (max-width:480px){
	.main-visual{
		height: 40vh;
	}
	.main-visual .swiper-button-next, .main-visual .swiper-button-prev{
		width: 45px;
    height: 45px;
    margin-top: -200px;
	}
	.main-visual .main-pagination{bottom:57%;}

  .main-visual .main-text .main-tit{
    font-size: 24px;
  }
  .main-visual .main-text .main-subtit {
    font-size: 14px;}
    .main-visual .swiper-button-next, .main-visual .swiper-button-prev{
      width: 30px;
      height: 30px;
    }

	.main-visual .slide-img.si1{}
	.main-visual .slide-img.si2{background-position: 24% center;}
	.main-visual .slide-img.si3{background-position: 27% center;}


}
/***************************************************
카테고리 배너
***************************************************/
.cate-banner{padding: 80px 0;}
.cate-banner .cate{width: 100%; display: flex; }
.cate-banner .cate li{width: 25%; position: relative; top: 0; transition: all .5s; }
.cate-banner .cate li a{display: flex; flex-direction: column;justify-content: center; align-items: center;}
.cate-banner .cate li .cate-img{width: 60px; height: 60px; background-position: center center ;background-repeat: no-repeat; background-size: cover;}
.cate-banner .cate li .cate-img.img01{background-image: url(../../images/main/cate04.png);}
.cate-banner .cate li .cate-img.img02{background-image: url(../../images/main/cate03.png);}
.cate-banner .cate li .cate-img.img03{background-image: url(../../images/main/cate05.png);}
.cate-banner .cate li .cate-img.img04{background-image: url(../../images/main/cate06.png);}
.cate-banner .cate li a:hover .cate-txt h2{color: #00a5e5;}
.cate-banner .cate li:hover{top: -30px; }
.cate-banner .cate li .cate-txt{text-align: center;line-height: 1.5;}
.cate-banner .cate li .cate-txt h2{margin-top: 12px; font-size: 22px; font-weight: 800; transition: all 0.5s;}
.cate-banner .cate li .cate-txt p{font-size: 15px; color: #797979;}


@media screen and (max-width:768px){
  .cate-banner .cate {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4rem;
}
.cate-banner .cate li{
  width: 50%;
}
}
@media screen and (max-width:480px){
  .cate-banner .cate li .cate-txt h2{
    font-size: 18px;
  }
  .cate-banner .cate li .cate-txt p {
    font-size: 14px;
}
}
/***************************************************
게시판
************************************************/
.contentsBoard { background-color:#f4f4f4 }
.con-board { display: flex; flex-wrap: wrap; align-items: stretch; margin:-1% }
.con-box { flex-basis:1; width:31.333%; margin:1% }
/* .board { background-color:#fff; border:1px solid #ccc } */
.contentsBoard .con-ti { position:relative; padding-bottom:15px; border-bottom:1px solid #ccc }
.contentsBoard .con-ti span { position:absolute; top:6px; right:0 }
.contentsBoard .con-ti a { display:block }
.contentsBoard .date { font-size:14px; color:#999 }
.contentsBoard .tel { padding:5% 30px 30px; background:url(../../images/main/tel-bg.jpg) no-repeat bottom right; background-size:cover }
.contentsBoard .tel-num a { font-size:60px; font-weight:600; color:#cc0000 }
.contentsBoard .tel .con-ti { margin:10px 0 }

.con-padd { padding:50px 0; transition:0.25s all }
.con-ti { font-size:20px; font-weight:600; transition:0.25s all }
.con-ti2 { font-size:30px; font-weight:600; transition:0.25s all }
.con-txt { font-size:16px; color:#fff; transition:0.25s all }
.con-list li { margin-top:15px; transition:0.25s all }
.con-list li a { display:block; font-size:16px; transition:0.25s all }
.con-list li a:hover{color: #00a5e5;}
.cls_ellipsis_subjct {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .con-padd { padding:20px 0 }
	.con-box { padding:20px 0; }
	.con-ti { font-size:16px }
	.con-txt { font-size:14px }
  .con-box { width:100%; margin:10px 0 }
  .tel { padding:40px 20px }


}
@media screen and (max-width: 540px){
 
}
/***************************************************
갤러리 슬라이드
***************************************************/
.section02 {
  padding: 80px 0;
	/* padding: 2.5rem calc((100% - 1200px) / 2); */
}

.section02 .title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	width: 1215px;
}

.section02 .title > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin: 0.25rem 0.75rem 0 0;
	font-size: 0.8rem;
	font-weight: 400;
	background-color: #006fc6;
	color: #fff;
	text-align: center;
	word-break: keep-all;
}

.section02 .title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.15;
	word-break: keep-all;
}

.section02 .swiper2 {
	position: relative;
	margin-top: 2rem;
}

.section02 .swiper-slide {
	width: 324px;
	margin-right: 1.75rem;
}

.section02 .swiper-slide .img {
	display: block;
	width: 100%;
	height: 325px;
	border-radius: 1.25rem;
	background-color: #f4f4f4;
	overflow: hidden;
}

.section02 .swiper-slide .img > img {
	position: relative;
	left: 50%;
	top: 50%;
	display: block;
	min-width: 100%;
	max-height: 100%;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.section02 .swiper-slide .img > img:hover {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

.section02 .swiper-slide .con {
	display: block;
	margin-top: 1rem;
}

.section02 .swiper-slide .con .date {
	display: block;
	font-size: 0.8rem;
	color: #51a5dc;
  padding-top: 20px;
}

.section02 .swiper-slide .con .subtitle {
	display: block;
	margin-top: 0.75rem;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.15;
	word-break: keep-all;
}

.section02 .swiper-button-prev,
.section02 .swiper-button-next {
	left: calc(1150px - 50px);
	top: -2rem;
  width: 16px;
  height: 26px;
	margin: 0;
	-webkit-transform: translate(-100%, -100%);
	transform: translate(-100%, -100%);
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%232d2a26'%2F%3E%3C%2Fsvg%3E");
	background-size: 100%;
}

.section02 .swiper-button-next {
	left: 1150px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%232d2a26'%2F%3E%3C%2Fsvg%3E");
}
@media (max-width: 1280px){
  /* .section02 {
		padding: 2.5rem 0 2.5rem 2.5%;
	} */
	.section02 .title {
		width: 97.5%;
	}
	.section02 .swiper-slide {
		width: 452px;
		margin-right: 0.75rem;
	}
	.section02 .swiper-slide .img {
		height: 452px;
	}
	.section02 .swiper-slide .img > img {
		-webkit-transition: all 0s linear;
		transition: all 0s linear;
		-webkit-transform: translate(-50%, -50%) !important;
		transform: translate(-50%, -50%) !important;
	}
	.section02 .swiper-slide .con .subtitle {
		font-size: 1.65rem;
	}
	.section02 .swiper-slide:last-child {
		margin-right: 2.5%;
	}
	.section02 .swiper-button-prev,
	.section02 .swiper-button-next {
		left: auto;
		right: calc(2.5% + 50px);
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	.section02 .swiper-button-next {
		right: 2.5%;
	}
}
@media (max-width: 991.98px){
  /* .section02 {
		padding: 2.5rem 0 2.5rem 5%;
	} */
	.section02 .title {
		width: 95%;
	}
	.section02 .swiper-slide:last-child {
		margin-right: 5%;
	}
	.section02 .swiper-button-prev {
		right: calc(5% + 50px);
	}
	.section02 .swiper-button-next {
		right: 5%;
	}
}
@media (max-width: 575.98px){
  /* .section02 {
		padding: 1.75rem 0 1.75rem 5%;
	} */
	.section02 .title > span {
		width: 55px;
		height: 55px;
		padding: 0;
		margin: 0 0.5rem 0 0;
		font-size: 0.7rem;
	}
	.section02 .title > b {
		font-size: 1.1rem;
	}
	.section02 .swiper2 {
		margin-top: 1.25rem;
	}
	.section02 .swiper-slide {
		width: 300px;
		margin-right: 0.5rem;
	}
	.section02 .swiper-slide .img {
		height: 300px;
		border-radius: 1rem;
	}
	.section02 .swiper-slide .con .subtitle {
		padding-right: 5%;
		font-size: 1.1rem;
	}
	.section02 .swiper-button-prev,
	.section02 .swiper-button-next {
		top: -1.25rem;
		width: 12px;
		height: 20px;
	}
	.section02 .swiper-button-prev {
		right: calc(5% + 30px);
	}
}
/***************************************************
파트너
***************************************************/
.section .in {
  max-width: calc(100% - 200px);
}
.footer-top > .in {
  height: 78px;
  display: flex;
  align-items: center;
}
.in {
  width: 1200px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.pos {
  overflow: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}
.footer-top {
/* background:#f7f7f7; */
}
.footer-top > .in {
height:78px;
display:flex;
align-items:center;
}
.footer-top p {
font-size:20px;
  flex-shrink: 0;
}
.footer-family-slide {
position:relative;
}
.footer-family-slide::after {
height:100%;
width:6px;
background:#f7f7f7;
box-shadow:0 0 13px 12px #f7f7f7;
position:absolute;
content:'';
display:block;
top:0;
right:-2px;
z-index:1;
}
.slide-util {
  display: flex;
  align-items: center;
}
.footer .slide-util {
  flex-shrink: 0;
  margin: 0 45px 0 20px;
}
.slide-util .swiper-button-next-family,
.slide-util .swiper-button-prev-family {
position:relative;
top:10px;
color:#666;
transition:.3s;
}
.slide-util .swiper-button-next-family:hover,
.slide-util .swiper-button-prev-family:hover {
color:#000;
transition:.3s;
}

.slide-util .swiper-pagination span {
margin: 0 10px;
}

.swiper-button-prev-family,
.swiper-button-next-family {
  font-size: 20px;
color: #666665 !important;
}
.swiper-button-prev-family {
margin-right:10px;
}
.swiper-button-next-family {
margin-left:10px;
}
.swiper-button-pause-family {
margin:10px;
color: #3e3e3e;
/* width: 20px; */
font-size: 20px;
}

.footer-family-slide .swiper-slide {
font-size:20px;
  width: auto;
  margin-right: 70px;
}
.footer .swiper-button-disabled {
display:flex;
}

/* 하단 관련기관 */
.footer-family-slide .pl{transform: scale(1.5);}
/* .footer-family-slide .partner-logo1{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner01.png); background-position: center center; background-repeat: no-repeat; background-size: cover;} */
.footer-family-slide .partner-logo2{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner02.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo3{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner03.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo4{display: block; width: 155px; height: 46px; background-image: url(../../images/main/partner04.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo5{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner02.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo6{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner03.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo7{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner04.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo8{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner02.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}
.footer-family-slide .partner-logo9{display: block; width: 155px; height: 46px;  background-image: url(../../images/main/partner03.png); background-position: center center; background-repeat: no-repeat; background-size: cover;}


@media screen and (max-width:768px){
.mb_none {display:none}
.in {
  padding: 0 15px;
}
.section .in {
  max-width: 100%;
}
/* .footer-family-slide .partner-logo3,
.footer-family-slide .partner-logo6,
.footer-family-slide .partner-logo9{width: 120px;} */
/* .footer-top > .in {
  height: 45px;
} */

.swiper-button-pause.swiper-button-pause-family {
  margin-left: 10px;
}

/* .slide-util .swiper-button-next-family, 
.slide-util .swiper-button-prev-family {
  top: 0;
} */
.slide-util .swiper-button-next-family span, 
.slide-util .swiper-button-prev-family span {
  font-size: 1.5rem;
}
.slide-util .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.slide-util .swiper-pagination span {
  margin: 0 7px;
}
  .footer-family-slide .swiper-slide {
      font-size: 16px;
  }
  .footer-family-slide .swiper-slide {
      padding: 4px 0;
      display: flex;
      align-items: center;
  }


}/*768px*/