@charset "utf-8";

/* main.css */
/* 헤더 ~ 푸터 */
/* main.css */


/* 상단 레이아웃 */
#hd_wrapper {display: flex;justify-content: space-between;align-items: center;height: 100%;}
#header {padding: 0 100px;position:fixed;top:0;left:0;z-index: 110;width:100%;transition:all .3s}

.gnb {display:flex;flex-wrap:wrap;align-items:center;width:100%;position: relative;}
.gnb__logo {flex: 0 1 320px;}
.gnb__logo-link {}
.gnb__logo-link img {/* height: 80px; */}
.gnb__logo-link__item.sub__header{display:none}
.gnb__logo-link__item.active {display:none; transition: all .3s}

.sub_header .gnb__2depth { top: 71px;}

.gnb__menu {flex: calc(100% - 470px);display:flex;align-items:center;justify-content: end;gap: 10px;}
.gnb__1depth {position:relative;flex: 0 1 calc(100% / 7);max-width: 120px;text-align: center;}
.gnb__1depth-link {display: block;padding: 25px 0;font-size: 18px;color: #FFF;}
.gnb__1depth-link:hover {font-weight:700;}
.gnb__2depth {display:none;position:absolute;left: 50%;transform: translateX(-50%);top: 70px;width: 150%;text-align: left;border-bottom-left-radius:10px;border-bottom-right-radius:10px;background: rgb(0 33 56 / 50%);padding: 5px 0;}
.gnb__2depth.gnb__2depth--active {display:block;}
.gnb__2depth-link {display:block;padding: 8px 20px;font-size:16px;color: #FFF;position: relative;transition: all 0.3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);}
.gnb__2depth-link:before {display:block; content:''; width:3px; height:0; background: #FFF; position: absolute; left:0; top: 50%; transform: translateY(-50%);opacity:0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}
.gnb__2depth-link:hover {font-weight:700;}
.gnb__2depth-link:hover:before {height:calc(100% - 20px);opacity:1}

.gnb__line {display:block;position:absolute;left: 50%;bottom: 0px;transform:translateX(-50%);width: 100%;height:1px;z-index: -1;background-color:rgba(255,255,255,.3);}
.gnb__line:before {display:block;content:"";position:absolute;top:50%;transform:translateY(-50%);width:.5625em;height:.5625em;background-color:#FFF;border-radius:50%;left: 0;}
.gnb__line:after {display:block;content:"";position:absolute;top:50%;transform:translateY(-50%);width:.5625em;height:.5625em;background-color:#FFF;border-radius:50%;right: 0;}


@media screen and (max-width: 1500px) {
	#header {padding: 0 40px}
	.gnb__line {bottom:0;}
}

@media screen and (max-width: 1400px) {
  .gnb__logo {flex: 0 1 280px;}
  .gnb__menu {padding: 0 0 0 5%;}
  .gnb-1depth-link {padding:30px;font-size:16px}
  .gnb-2depth-link {font-size:15px}
  .gnb-1depth-item:nth-child(3) .gnb-1depth-link {padding:30px 40px}
}

@media screen and (max-width: 1200px) {
  .gnb__menu {display:none;}
  .gnb-1depth-link {padding:30px 20px;font-size:15px}
  .gnb-1depth-item:nth-child(3) .gnb-1depth-link {padding:30px 20px}
}

@media screen and (max-width: 1024px) {
  .gnb__logo {flex: 0 1 230px;}
  .gnb__logo img {flex: 0 1 200px;}
  .gnb-1depth-list {display:none}
}

@media screen and (max-width: 768px) {
  #header {padding: 0px 20px}
  .gnb {padding: 10px 0;}
  .gnb__logo {flex: 0 1 200px;}
}

@media screen and (max-width: 500px) {
  .gnb__logo {flex: 0 1 150px;padding: 15px 0}
}

.sitemap {flex: 0 1 150px;display: flex;align-items: center;justify-content: end;}
.sitemap__mypage {width: 40px;height: 40px;background: url('../img/icon_mypage.png') no-repeat center;padding: 20px;}
.sitemap__btn {width:70px;height:70px;border:0;background:transparent;/* padding:20px; */position:relative;z-index:10;transition: all .3s;display: flex;justify-content: center;align-items: center;}
.sitemap__btn img:nth-child(1) {}
.sitemap__btn img:nth-child(2) {display: none;}
.sitemap__btn--active img:nth-child(1) {display: none;}
.sitemap__btn--active img:nth-child(2) {display: block;}
.sitemap__btn--active .sitemap__btn--top {animation:ease .7s top forwards}
.sitemap__btn--no-active .sitemap__btn--top {animation:ease .7s top-2 forwards}
.sitemap__btn--active .sitemap__btn--mid {animation:ease .7s scaled forwards}
.sitemap__btn--no-active .sitemap__btn--mid {animation:ease .7s scaled-2 forwards}
.sitemap__btn--active .sitemap__btn--bot {animation:ease .7s bottom forwards}
.sitemap__btn--no-active .sitemap__btn--bot {animation:ease .7s bottom-2 forwards}

@keyframes top {
  0% {top:0;transform:rotate(0)}
  50% {top:6px;transform:rotate(0)}
  100% {top:6px;transform:rotate(45deg);background:#000}
}

@keyframes top-2 {
  0% {top:6px;transform:rotate(45deg)}
  50% {top:6px;transform:rotate(0deg)}
  100% {top:0;transform:rotate(0deg)}
}

@keyframes bottom {
  0% {bottom:0;transform:rotate(0)}
  50% {bottom:6px;transform:rotate(0)}
  100% {bottom:12px;transform:rotate(135deg);background:#000}
}

@keyframes bottom-2 {
  0% {bottom:6px;transform:rotate(135deg)}
  50% {bottom:10px;transform:rotate(0)}
  100% {bottom:0;transform:rotate(0)}
}

@keyframes scaled {
  50% {transform:scale(0)}
  100% {transform:scale(0)}
}

@keyframes scaled-2 {
  0% {transform:scale(0)}
  50% {transform:scale(0)}
  100% {transform:scale(1)}
}

.sitemap__menu {display:none;position:fixed;width:100%;height:100vh;top:0;left:0;background:#FFF;padding:100px 150px;overflow-y:scroll;flex-wrap:wrap;gap:50px;text-align: left;}
.sitemap__menu--active {display:flex;}
.sitemap__menu::-webkit-scrollbar {width:5px}
.sitemap__menu::-webkit-scrollbar-thumb {background-color:#2f2f2f;border-radius:10px}
.sitemap__menu::-webkit-scrollbar-track {background-color:#d8d8d8;border-radius:10px}
.sitemap__1depth {flex: 0 1 calc(100% / 3 - 38px);padding:60px 40px;border-radius:20px;border:1px solid #e5e5e5;box-shadow:0 0 15px rgb(0 0 0 / 14%)}
.sitemap__1depth-link {display:block;font-size:22px;line-height:30px;font-weight:700;padding:0 0 10px;margin:0 0 20px;border-bottom:3px solid #2f2f2f;}
.sitemap__2depth {}
.sitemap__2depth-link {display:block;font-size:18px;padding:0 0 10px;}
.sitemap__2depth-link:hover {font-weight:700;color: #005AD4;}
.sitemap__2depth-link:last-child {padding:0;}

@media screen and (max-width: 1400px) {	
	.sitemap {flex: 0 1 180px}
	.sitemap__menu {gap: 20px; padding:100px 80px;}
	.sitemap__1depth {flex: 0 1 calc(100% / 4 - 15px); padding: 50px 30px;}
}

@media screen and (max-width: 1200px) {
	.sitemap {flex: 0 1 calc(100% - 280px)}
	.sitemap__menu {padding: 80px 60px;}
	.sitemap__2depth-link {font-size: 18px;}
}

@media screen and (max-width: 1024px) {
	.sitemap {flex: 0 1 calc(100% - 230px)}
	.sitemap__1depth {flex: 0 1 calc(100% / 3 - 14px);}
	.sitemap__1depth-link {font-size: 20px;line-height: 28px;border-bottom: 1px solid #2f2f2f}
	.sitemap__2depth-link {font-size: 16px;}
}

@media screen and (max-width: 768px) {
	.sitemap {flex: 0 1 calc(100% - 200px)}
	.sitemap__menu {padding: 60px 40px;}
	.sitemap__1depth {flex: 0 1 calc(100% / 2 - 10px); padding: 30px}
	.sitemap__btn {width:45px;height:60px;}
	.sitemap__btn img {width: 45px;height: 45px;}
}

@media screen and (max-width: 500px) {
	.sitemap {flex: 0 1 calc(100% - 150px);}
	.sitemap__menu {padding: 60px 20px;gap: 10px;}
	.sitemap__btn {width: 40px;height: 50px;}
	.sitemap__btn img {width: 40px;height: 40px;}
	.sitemap__btn span {display:block;width:100%;height:3px;background:#FFF;transition:all .3s;position:relative}
	.sitemap__btn span+span {margin-top:6px;}
	
	.sitemap__1depth {flex: 0 1 100%;padding: 30px 20px;}
	.sitemap__1depth-link {font-size: 20px;margin: 0 0 15px}
	.sitemap__2depth-link {}

	.sitemap__mypage {width: 30px;height: 30px;padding: 15px;}
}






/* 퀵메뉴 */
.quick__menu {width: 95%;max-width: 1700px;margin: 0 auto;position: fixed;bottom: 0;left: 50%;transform: translateX(-50%) translateY(calc(100% - 64px));opacity:1;transition: all 0.3s;}
.quick__menu.active {transform: translateX(-50%);}


.quick__menu-btn {display: block;width: 100%;background: linear-gradient(90deg, #009655 0%, #0389ba 100%);mix-blend-mode: normal;font-size: clamp(16px, 2vw, 20px);color: #FFF;padding: 20px;text-align: center;border-top-left-radius: 20px;border-top-right-radius: 20px;}
.quick__menu-btn__txt {}
.quick__menu-btn__txt p {padding: 0 15px 0 0 ; display: inline-block;}
.quick__menu-btn__txt span {padding: 0 0 5px;}
.quick__menu-btn__txt span img {transition: all 0.3s linear;}
.quick__menu-btn__txt span.rotate img {transform: rotate(180deg);}
.quick__menu-con {padding: 50px 20px;background: #FFF;}
.quick__menu-list {display: flex;flex-wrap: wrap;gap: 30px;}
.quick__menu-item {flex: 0 1 calc(100% / 3 - 20px);display: flex;flex-wrap: wrap;padding: 0 30px;position: relative;align-items: center;}
.quick__menu-item::after {display: block;content:'';width:10px;height: 100%;background: url('../img/icon_quick_menu_line.png') no-repeat center;background-size: contain;position: absolute;right: -20px;top: 50%;transform: translateY(-50%);}
.quick__menu-item:last-child:after {display:none;}
.quick__menu-ttl {font-size: clamp(18px, 2vw, 36px);color: #000;padding: 0 0 20px;text-align: center;flex: 0 1 100%;}
.quick__menu-txt {font-size: clamp(14px, 2vw, 18px);color: #404040;padding: 0 0 30px;text-align: center;flex: 0 1 100%;}
.quick__menu-inner {text-align: center;max-width: 350px;margin: 0 auto;display: flex;flex-wrap: wrap;gap: 20px;}
.quick__menu-inner__link {display: flex;padding: 30px 50px;flex: 0 1 100%;border-radius: 10px;gap: 10px;}
.quick__menu-inner__link:hover {font-weight: 600;}
.quick__menu-inner__link:nth-child(1) {background: url('../img/bg_quick_menu_inner_link01.png') no-repeat -7% 20px #003358;background-size: contain; transition:all 0.2s;}
.quick__menu-inner__link:nth-child(1):hover {background: url('../img/bg_quick_menu_inner_link01.png') no-repeat -7% 20px #00477a;background-size: contain;}
.quick__menu-inner__link:nth-child(2) {background: url('../img/bg_quick_menu_inner_link02.png') no-repeat -7% 20px #003358;background-size: contain; transition:all 0.2s;}
.quick__menu-inner__link:nth-child(2):hover {background: url('../img/bg_quick_menu_inner_link02.png') no-repeat -7% 20px #00477a;background-size: contain;}
.quick__menu-inner__link-img {flex:0 1 52px}
.quick__menu-inner__link-img img {}
.quick__menu-inner__link-txt {font-size:clamp(14px,2vw,18px);color:#FFF;flex: 0 1 calc(100% - 70px);}
.quick__menu-inner02 {display:flex;flex-wrap:wrap;gap:10px;max-width: 350px;margin: 0 auto;}
.quick__menu-inner02__link {flex: 0 1 100%;text-align: center;background: #003358;padding: 15px 0;color: #FFF;border-radius: 10px; transition:all 0.2s;}
.quick__menu-inner02__link:hover {background: #00477a; font-weight: 700;}
.quick__menu-inner03 {display: flex;flex-wrap: wrap;gap: 20px;}
.quick__menu-inner03__link {border-radius: 20px;flex: 0 1 100%;padding: 50px 30px;}
.quick__menu-inner03__link:nth-child(1) {background: url('../img/bg_quick_menu_inner03_01.jpg') no-repeat center;background-size: 100%;transition:all 0.3s;}
.quick__menu-inner03__link:nth-child(1):hover {background-size: 110%;}
.quick__menu-inner03__link:nth-child(2) {background: url('../img/bg_quick_menu_inner03_02.jpg') no-repeat center;background-size: 100%; transition:all 0.3s;}
.quick__menu-inner03__link:nth-child(2):hover {background-size: 110%;}
.quick__menu-inner03__link-ttl {font-size: clamp(16px, 2vw, 20px); color: #FFF; padding: 0 0 10px;}
.quick__menu-inner03__link-txt {font-size: clamp(14px, 2vw, 16px);line-height: 1.6em;color: #FFF;}

@media screen and (max-width: 1500px) {
	.quick__menu-inner03__link {padding: 40px 20px;}
}

@media screen and (max-width: 1024px) {
	.quick__menu { bottom: -10px;}
	.quick__menu-list {gap: 20px;}
	.quick__menu-item::after {right: -15px;}
	.quick__menu-btn {padding: 15px 0}
	.quick__menu-item {padding:0 10px;}

	.quick__menu-inner03__link:nth-child(1) {background: url('../img/bg_quick_menu_inner03_01.jpg') no-repeat center;background-size: auto;}
	.quick__menu-inner03__link:nth-child(1):hover {background-size: auto;}
	.quick__menu-inner03__link:nth-child(2) {background: url('../img/bg_quick_menu_inner03_02.jpg') no-repeat center;background-size: auto;}
	.quick__menu-inner03__link:nth-child(2):hover {background-size: auto;}
}

@media screen and (max-width: 768px) {
	.quick__menu {bottom: -15px;/* display: none; */}
	.quick__menu-con {padding: 20px 20px 30px;}
	
	.quick__menu-item{flex: 100%;justify-content: center;}
	.quick__menu-inner03__link{flex: 0 1 calc(100% / 2 - 10px);padding: 20px;background-size: auto !important;}
	.quick__menu-inner02__link{flex: 0 1 calc(100% / 3 - 10px);font-size: clamp(14px, 3vw, 18px);}
	.quick__menu-inner__link{flex: 1 0 calc(100% / 2 - 10px);padding: 20px;display: table;min-width: 190px;}
	.quick__menu-inner{max-width: unset;}
	.quick__menu-ttl{padding: 0 0 10px;}
	.quick__menu-txt{padding: 0 0 15px;}
	.quick__menu-inner__link-img img{display:none;}
	.quick__menu-inner02{max-width:unset;}
	.quick__menu-item::after{right:50%;transform:translateX(50%);width:100%;height:1px;top:auto;bottom:-12px;background:#00000017}
	.quick__menu-inner__link-txt{display:table-cell;vertical-align: middle;}
	.quick__menu-item:last-child{display:none;}
}

@media screen and (max-width: 500px) {
	.quick__menu-inner__link{min-width: 150px;}
}

@media screen and (max-width: 400px) {
	.quick__menu-inner__link{min-width: 120px;}
}

.intro{width:100%;height:100%;position:fixed;top:0;left:0;background:#fff;display:flex;align-items:center;justify-content:center;z-index: 99999;flex-direction: column;}
.intro.hide {transition:all ease-out .6s;top:-100%;overflow:hidden;transition-delay: 1s;}  
.intro.hide h1{color:#3b79cb;  transition-delay:1.5s; }
.intro h1{font-size:100px; color:#fff;  font-weight:900;    display: flex; transform:translateY(20px); opacity:0;  animation: fadeIn .6s forwards;} 
.intro h1 span{ transition:all ease-out .6s;     width:80px; text-align:center; color: #004F09;}
.intro h1 span:nth-child(1){ animation: fadeOut 1s forwards; animation-delay:2.5s;}
.intro h1 span:nth-child(2){ animation: fadeOut 1s forwards; animation-delay:2s;}
.intro h1 span:nth-child(3){ animation: fadeOut 1s forwards; animation-delay:1.7s;}
.intro h1 span:nth-child(4){ animation: fadeOut 1s forwards; animation-delay:1.5s;}
.intro h1 span.out{width:0;}
.top_con_logo {
	position: relative;
}

/* Fade out to the top-right corner */
@keyframes fadeOutTopRight {
  0% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
    10% {
      opacity: 0.7;
    }
    20% {
      opacity: 0.5;
    }
    50% {
      opacity: 0;
      transform: translate(80%, -80%);
    }
  100% {
      opacity: 0;
      transform: translate(100%, -100%);
  }
}

/* Fade out to the top-left corner */
@keyframes fadeOutTopLeft {
  0% {
      opacity: 1;
      transform: translate(50%, -50%);
    }
    10% {
      opacity: 0.7;
    }
    20% {
      opacity: 0.5;
    }
    50% {
      opacity: 0;
      transform: translate(-80%, -80%);
    }
  100% {
      opacity: 0;
      transform: translate(-100%, -100%);
  }
}
.top_con_logo img{    transition: all ease-out 1s;}
.top_con_logo img:first-child {
  position: absolute;
  right: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  animation-delay: 3s;
  animation: fadeOutTopRight 60s forwards;

}

.top_con_logo img:nth-child(2) {
  position: relative;
  right: 28%;
  top: calc(50% + -30px);
  transform: translate(50%, -50%);
  animation-delay: 3s;
  animation: fadeOutTopLeft 60s forwards;

}

@keyframes fadeOut {
    0% {
		opacity:1;
	}
    100%{
		opacity:0;
	} 
} 
@keyframes fadeIn {
    0% {
		opacity:0;
	}
    100%{
		opacity:1;
		transform:translateY(0);
	} 
} 
 

@media screen and (max-width:768px) {
  .intro{display: none;}
}

/* main common */
h1{color:#333; }

#section01{background-size:cover;height: 100vh;position:relative;overflow:hidden;}
#section01 .slide-wr .visual-slide img{height:100vh;width:100%;object-fit:cover}
#section01 .slide-wr{position:relative;}
#section01 .slide-wr .visual-slide{overflow:hidden;position:relative;/* padding:0 0 80px; */}
#section01 .slick-slide{display:block;float:left;}
#section01 .progress{display:block;width:100%;max-width:1100px;padding:0 50px;margin:0 auto;height:4px;border-radius:10px;position:relative;overflow:hidden;background-color:#f5f5f5;background-image:linear-gradient(to right,black,black);background-repeat:no-repeat;background-size:0 100%;transition:background-size .4s ease-in-out;}
#section01 .main__bg {height: 100vh;width: 100%;position: relative;}
#section01 .main__bg .half{height:100vh;display:flex;width: 100%;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
#section01 .main__bg .half .left_con{flex:0 1 calc(100%);color: #fff;position: relative;}
#section01 .main__bg .half .left_con .text_wr{position:absolute;top: 40%;left: 12%;transform: translateY(-50%);z-index: 5;}
 #section01 .main__bg .half .left_con .text_wr .tit{font-size: clamp(30px ,5vw,64px);font-weight: 800;margin-bottom: clamp(20px,5vw,45px);line-height: 1.1;letter-spacing: -2px;text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.70)}
#section01 .main__bg .half .left_con .text_wr .txt{font-size: clamp(24px,1.5vw,30px);font-weight: 400;opacity: 0.9; color: #fff; text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.70)}

#section01 .main__bg .half .left_con .text_wr .btn_more {display: inline-flex;align-items: center;background: #1c4fa3;color: #fff;padding: 20px clamp(40px,6vw,100px);border-radius: 10px;font-size: 20px;font-weight: 500;transition: all 0.3s;margin-top: clamp(40px,5vw,100px);box-shadow: 0 4px 15px rgba(0,0,0,0.2);}
#section01 .main__bg .half .left_con .text_wr .btn_more span {margin-left: 15px; font-size: 18px;}
#section01 .main__bg .half .left_con .text_wr .btn_more:hover {background: #153c7c; transform: translateY(-3px);}

/* 슬라이드 화살표 스타일 및 위치 수정 */
#section01 .left_con .cer__slide-prev,
#section01 .left_con .cer__slide-next {position: absolute;top: 50%;transform: translateY(-50%);z-index: 10;width: 80px;height: 80px;background: rgba(255,255,255,0.2);display: flex;align-items: center;justify-content: center;cursor: pointer;transition: all 0.3s;backdrop-filter: blur(5px);}
#section01 .left_con .cer__slide-prev {left: 3%;}
#section01 .left_con .cer__slide-next {right: 3%;} /* 기체 옆 적절한 위치 */
#section01 .left_con .cer__slide-prev:hover,
#section01 .left_con .cer__slide-next:hover {background: rgba(255,255,255,0.4);}
#section01 .left_con .cer__slide-prev img,
#section01 .left_con .cer__slide-next img {width: 40px; filter: brightness(0) invert(1);}

/* 페이지네이션 스타일 (도트형) */
#section01 .controler {z-index: 10;position: absolute;bottom: 50px;left: 12%;display: flex;align-items: center;gap: 15px;}
#section01 .controler .slick--visual__paging .slick-dots {display: flex;gap: 20px;}
#section01 .controler .slick--visual__paging .slick-dots li {width: 10px;height: 10px;background: rgba(255,255,255,0.5);border-radius: 50%;cursor: pointer;transition: all 0.3s;font-size: 0;list-style: none;}
#section01 .controler .slick--visual__paging .slick-dots li.slick-active {background: #00e5ff; transform: scale(1.2);}
#section01 .controler .visual__progress {display: none;} /* 도트형에서는 프로그레스 바 숨김 (선택 사항) */

#section01 .main__bg .half .right_con{display: none; flex:0 1 calc(33.3%); position: relative; z-index: 5;}
#section01 .main__bg .half .right_con .right_con_menu{display:flex;flex-direction:column;flex-wrap:wrap;height:100vh;}
#section01 .main__bg .half .right_con .right_con_menu a {flex:0 1 calc(100% / 3);font-size:35px;color: #ffffff;border-left: 1px solid #ffffff40; position: relative;}
#section01 .main__bg .half .right_con .right_con_menu a li.flex{display:flex;flex-direction:column;justify-content: center;padding: 0 60px; height: 100%;}
#section01 .main__bg .half .right_con .right_con_menu a li.flex .tit{font-size: 40px;font-weight: 800;padding-bottom: 20px; font-family: 'Pretendard', sans-serif; opacity: 0.5; transition: opacity 0.3s;}
#section01 .main__bg .half .right_con .right_con_menu a:hover li.flex .tit{opacity: 1;}
#section01 .main__bg .half .right_con .right_con_menu a li.flex .txt{display: none; font-size: 18px; line-height: 1.6; opacity: 0.8; font-weight: 400;}
#section01 .main__bg .half .right_con .right_con_menu a:hover li.flex .txt{display: block; animation: fadeIn 0.3s forwards;}
#section01 .main__bg .half .right_con .right_con_menu a:hover li{background: rgba(0, 51, 88, 0.6);transition: all 0.3s;}
#section01 .main__bg .half .right_con .right_con_menu a .next-icon{position: absolute; top: 30px; right: 30px; width: 30px; height: 30px; background: url('../img/next-icon.png') no-repeat center; background-size: contain; filter: brightness(0) invert(1); opacity: 0; transition: opacity 0.3s;}
#section01 .main__bg .half .right_con .right_con_menu a:hover .next-icon{opacity: 1;}

#section01 .main__bg .half .right_con .right_con_menu a:nth-child(1) li{border-bottom: 1px solid #ffffff40;}
#section01 .main__bg .half .right_con .right_con_menu a:nth-child(2) li{border-bottom: 1px solid #ffffff40;}
/* #section01 .main__bg .half .right__menu:after{content:'';height:100vh;width: 102px;position:absolute;right:0;background: #09192e;top:50%;transform:translateY(-50%);} */
#section01 .mid_text{transition:all .1s;}

#section01 .controler {z-index: 1;text-align: center;display: flex;width: 100%;max-width: 130px;margin: 0 auto;position: absolute;bottom: clamp(5%,5vw,10%);left: 12%;align-items: center;}
#section01 .controler .visual__progress {width: 100%;max-width: 300px;margin: 0 auto;background-size: 50% 100%;height: 3px;background-color: #ffffff69;background-repeat: no-repeat;background-image: linear-gradient(to right, #fff, #fff);transition: all ease .8s;}
#section01 .controler .slick--visual__paging .slick-dots li {color: #555;}
#section01 .controler .slick--visual__paging .slick-dots li.slick-active {display: flex;}
#section01 .controler .slick--visual__paging .slick-dots li span{font-weight:300;color:#ffffff38}
#section01 .controler .slick--visual__paging .slick-dots li span:nth-child(1){font-weight:700;color:#fff;min-width: 28px;}
#section01 .controler .slick--visual__paging .slick-dots li span:nth-child(2){padding:0 8px}

#section01 .controler .slick--visual__paging {display: inline-block;/* position: absolute; */letter-spacing: 2px;font-size: 18px;z-index: 2;width: 130px;text-align: center;padding-right: clamp(12px,2vw,20px);}
#section01 .controler .cer__slide-prev {/* padding-right: 30px; */}
#section01 .controler .cer__slide-next {padding: 0 10px 0 20px;}
#section01 .controler button {background: none;border: 0;width: 10px;height: 10px;}
#section01 .controler button.play {visibility: hidden;width: 0;padding-left: 0;}
#section01 .controler button.stop {width: 12px;}
#section01 .controler button img{width:12px}
#section01 .controler button img{width:12px}
#section01 .controler button.play{visibility:hidden;width:0;padding-left:0}
#section01 .controler button.stop{visibility:visible;width:12px}
#section01 .controler.paused button.play{visibility:visible;width:12px}
#section01 .controler.paused button.stop{visibility:hidden;width:0;padding-left:0}


@media screen and (max-width:1800px) {
  #section01 .main__bg .half .right_con:before{width: 4.5%;}
}

@media screen and (max-width:1600px) {
  #section01 .main__bg .half .right_con:before{width: 5%;}
}

@media screen and (max-width: 1440px) {

  #section01 .main__bg .half .right_con:after{width: 82px;}
  #section01 .main__bg .half .right_con:before{width: 6%;}
  #section01 .main__bg .half .left_con .text_wr .tit{}
  #section01 .main__bg .half .left_con .text_wr .txt{font-size: 28px;}
  #section01 .main__bg .half .right_con .right_con_menu a li{font-size: 28px;}
}

@media screen and (max-width: 1240px) {
    /* #section01 .main__bg .half .right_con{margin-top: 105px;} */
    #section01 .main__bg .half .right_con .right_con_menu a {flex:0 1 calc((100% - 105px) / 3);}

}
@media screen and (max-width: 1024px) {
  
  #section01 .controler {bottom: 32%;}
  #section01 .controler .visual__progress{max-width: 200px;margin: revert;}
  #section01 .controler .cer__slide-prev{padding-left: clamp(12px,2vw,20px);}


  #section01 .main__bg .half .right_con:after{display: none;}

  #section01 .main__bg .half .right_con .right_con_menu a li.flex{padding-left: 20px;margin: 0;}
  #section01 .main__bg .half .right_con .right_con_menu a li:hover{letter-spacing: revert;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex:hover .txt .next-icon{display: none;}

  #section01 .main__bg .half .left_con .text_wr .tit{}
  #section01 .main__bg .half .left_con .text_wr .txt{font-size: 21px;}
  #section01 .main__bg .half .right_con:before{display: none}
  #section01 .main__bg .half .right_con .right_con_menu a li{padding: 0 30px; font-size: 24px;}

  #section01 .main__bg .half .left_con{flex: 60%;}
  #section01 .main__bg .half .right_con{flex: 40%;}
}

@media screen and (max-width: 768px) {
  #section01{height: auto !important;}
  
  #section01 .controler{left: 50%; bottom: 40px; transform: translateX(-50%); display: flex;justify-content: center;margin: unset; bottom: auto; top: 520px;}
  #section01 .slide-wr{height: 600px; position: absolute; top: 0; left: 0; width: 100%; z-index: 0;}
  #section01 .slide-wr .visual-slide img{height: 100%; object-fit: cover;}
  #section01 .visual-slide .slick-list, 
  #section01 .visual-slide .slick-track,
  #section01 .visual-slide .slick-slide,
  #section01 .visual-slide .slick-slide > div {height: 100%;}
  #section01 .left_con .slick-arrow{display: none !important;}
  #section01 .main__bg{height: auto;background-size: cover; position: relative;}
  #section01 .main__bg .half{height: auto;bottom: 0;display: flex;transform: none;justify-content: flex-start;flex-direction: column;top:0;left:0;position:relative; z-index: 1; pointer-events: none;}
  #section01 .main__bg .half .left_con{flex: 0 0 600px; height: 600px;display: flex;flex-wrap: wrap;align-items: center; justify-content: center; gap: 0; pointer-events: none;}
  #section01 .main__bg .half .left_con .text_wr{position:relative;top: auto;left: auto;transform: none;z-index: 5; text-align: center; pointer-events: none;}
  #section01 .visual-slide .text_wr .tit{font-size: 30px; margin-bottom: 5px; text-shadow: 0px 0px 4px rgba(0,0,0,0.5); text-align: center; width: 100%; font-weight: 800;}
  #section01 .visual-slide .text_wr .txt{font-size: 14px; text-align: center; width: 100%; font-weight: 400; opacity: 0.9;}

  #section01 .controler .slick--visual__paging{padding-right:0; width: auto; pointer-events: auto;}

  #section01 .main__bg .half .right_con{display: block;width: 100%;flex: 0 0 auto; pointer-events: auto;}
  #section01 .main__bg .half .left_con:before{display: none;}

  #section01 .main__bg .half .right_con .right_con_menu a{border-left: 0; flex: 0 0 auto; width: 100%; border-top: 1px solid #ffffff30; background: #3578ab;}
  #section01 .main__bg .half .right_con .right_con_menu a:first-child {border-top: 0;}
  #section01 .main__bg .half .right_con .right_con_menu a li{padding: 30px 40px; font-size: 20px;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex{gap: 10px;padding: 30px 40px; display: flex; flex-direction: column; align-items: flex-start;}
  #section01 .main__bg .half .right_con .right_con_menu a li:nth-child(1){border-top: 0;}
  /* Corrected selectors for mobile text and button */
  #section01 .main__bg .half .left_con .text_wr{position: relative; bottom: unset; top: auto; transform: none; left:0; padding: 0 20px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; pointer-events: none;}
  #section01 .main__bg .half .left_con .text_wr .btn_more {padding: 12px 50px; font-size: 16px; margin-top: 30px; background: #1f448e; border: 0; border-radius: 8px; pointer-events: auto;}
  #section01 .main__bg .half .left_con .text_wr .btn_more span {font-size: 14px; margin-left: 8px;}
  #section01 .main__bg .half .right_con .right_con_menu{height: auto; flex-direction: column;}
  #section01 .main__bg .half .right_con .right_con_menu a {flex: 0 0 auto;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex{justify-content: center; align-items: flex-start; text-align: left;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex .tit {font-size: 30px; padding-bottom: 10px; margin-bottom: 0px;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex .txt {display: block !important; font-size: 15px; font-weight: 300; opacity: 0.9 !important; line-height: 1.5;} 
  #section01 .main__bg .half .right_con .right_con_menu a li.flex .next-icon{display: block; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background: url('../img/next-icon.png') no-repeat center; background-size: contain; filter: brightness(0) invert(1); opacity: 1 !important;}
  #section01 .main__bg .half .right_con .right_con_menu a:hover li.flex .next-icon{background-size: cover; height: 30px;width: 30px; opacity: 1 !important;}
}

@media screen and (max-width: 500px) {
  #section01 .controler .visual__progress{max-width: 140px;}
  #section01{}
  #section01 .controler{left: 50%; transform: translateX(-50%); bottom: auto; top: 520px;}
  /* #section01 .slide-wr .visual-slide img{height: 600px;} */
  #section01 .visual-slide .text_wr{padding: 0 20px; top: 50%; transform: translateY(-50%); width: 100%;}
  #section01 .main__bg .half .right_con .right_con_menu a li{font-size: 18px;}
  #section01 .main__bg .half .right_con .right_con_menu a li.flex{gap: 5px;padding: 25px 20px; color: #fff; align-items: flex-start;}
  #section01 .main__bg .half .right_con .right_con_menu a li .txt{font-size: 14px; display: block !important; opacity: 1 !important;}
  #section01 .visual-slide .text_wr .tit{font-size: 26px; margin-bottom: 10px;}
  #section01 .visual-slide .text_wr .txt{font-size: 14px; line-height: 1.4;}
  #section01 .visual-slide .text_wr .btn_more {padding: 10px 40px; font-size: 14px; margin-top: 25px; border-radius: 6px;}
  #section01 .main__bg .half .right_con .right_con_menu a:hover li .flex .next-icon{background-size: cover; height: 30px;width: 30px; opacity: 1 !important;}
}


/* Footer */
#footer {background: #0a0e1a; padding: 60px 0; color: #fff; border-top: 0;} 
.footer_inner {max-width: 1700px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;}

.footer_left {flex: 0 1 400px;}
.footer_left .f_logo {margin-bottom: 20px;}
.footer_left .f_logo img {height: 36px;}
.footer_left .f_slogan {font-size: 18px; color: #99a1af; font-weight: 400;}

.footer_center {flex: 1;}
.f_contact {display: flex; flex-direction: column; gap: 15px;}
.f_contact li {display: flex; align-items: center; gap: 15px;}
.f_contact li span {display: block; width: 18px; height: 18px; background-repeat: no-repeat; background-position: center; background-size: contain;}
.f_contact li .icon_addr {background-image: url('../img/footer_icon_01.png');}
.f_contact li .icon_tel {background-image: url('../img/footer_icon_02.png');}
.f_contact li .icon_mail {background-image: url('../img/footer_icon_03.png');}
.f_contact li p {font-size: 15px; color: #9aa4b3; font-weight: 300; line-height: 1.6;}
.f_contact li p a {color: #9aa4b3; text-decoration: none; transition: color 0.3s;}
.f_contact li p a:hover {color: #fff;}

.footer_right {flex: 0 1 350px; text-align: right;}
.footer_right .f_copy {font-size: 16px; color: #6a7282; margin-top: 5px;}

@media screen and (max-width: 1200px) {
    .footer_inner {flex-direction: column; gap: 40px;}
    .footer_right {text-align: center; flex: 0 1 auto;}
    .footer_left {flex: 0 1 auto;}
}

@media screen and (max-width: 768px) {
    #footer {padding: 50px 0;}
    .footer_inner {padding: 0 30px; gap: 35px;}
    .footer_left .f_logo img {height: 28px;}
    .footer_left .f_slogan {font-size: 15px;}
    .f_contact {gap: 12px;}
    .f_contact li p {font-size: 14px;}
    .footer_right .f_copy {font-size: 13px;}
}

@media screen and (max-width: 500px) {
    #footer {padding: 40px 0;}
    .footer_inner {padding: 0 20px; gap: 30px;}
    .footer_left .f_slogan {word-break: keep-all;}
    .f_contact li {align-items: flex-start;}
    .f_contact li span {margin-top: 3px;}
}
