@charset "utf-8";

/* main.css */
/* 헤더 ~ 푸터 */
/* main.css */


/* 상단 레이아웃 */
#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;}

.fp-viewing-4 #header {background: #FFF;border-bottom: 1px solid #cdcdcd;}
.fp-viewing-4 .gnb__logo-link__item {display: none;}
.fp-viewing-4 .gnb__logo-link__item.active {display: block;}
.fp-viewing-4 .gnb__1depth-link {color: #000;}
.fp-viewing-4 .gnb__line {display: none;}

@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%);}
.fp-viewing-sec01 .quick__menu {bottom: -100%;opacity: 0; transition: all 0.5s;}
.fp-viewing-4 .quick__menu {bottom: -100%;opacity: 0; transition: all 0.5s;}

.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;}
}


/* 메인 시작 */


/* section01 */


#section01 {}
#section01 .video_bg {
  position: relative;
  max-height: 43.75rem;
  padding-top: 56.25%;
  pointer-events: none;
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  }
  #section01 .video_bg  iframe{width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;}
#section01 .video_bg video {position: relative;z-index: 0;max-height: 700px;width: 100%;object-fit: cover;min-height: 31.25rem;}
#section01 .video_bg .tit {position: absolute;z-index: 1;top: 50%;left: 50%;color: #fff;transform: translate(-50%, -50%);text-align: center;font-size: clamp(1.025rem,3.8vw,3.125rem);font-weight: 700;line-height: 1.4em;text-shadow: 0 0 4px BLACK;}

@media screen and (max-width:768px) {
  #section01 .video_bg .tit br{display: none;}
}


#section02 {width: 100%;position: relative;background: url(../img/main/section02_bg01.jpg) no-repeat center;align-items: center;transition: all 1s;background-size: contain;}
#section02 div > .text .tit {font-size: clamp(2rem,3.8vw,3.125rem);font-weight: 900;}
#section02 div > .text{padding: clamp(3.75rem,6.2vw,7.5rem) 0 clamp(2.5rem,4.2vw,5rem);text-align: center;}
#section02 div > .text > .txt {color: #a6a6a6;font-size: clamp(1rem,2vw,1.125rem);font-weight: 400;padding: 0 0 clamp(.75rem,2vw,1.875rem);}
#section02 div > .text .tit span {color: #181d9c;}
#section02 .top_con {}
#section02 .top_con .inner {flex-direction: column;}
#section02 .top_con .inner .list {display: flex;padding: clamp(.75rem,4.2vw,1.875rem);border-bottom: 1px solid #000000;font-size: clamp(1.375rem,2vw,1.875rem);font-weight: 700;align-items: center;height: 120px;gap: 10px;flex-wrap: wrap;}
#section02 .top_con .inner .list:hover{color: #fff;}
#section02 .top_con .inner .list:hover:nth-child(1){width: 100%;position: relative;background: url(../img/main/section02_list_bg01.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
#section02 .top_con .inner .list:hover:nth-child(2){width: 100%;position: relative;background: url(../img/main/section02_list_bg02.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
#section02 .top_con .inner .list:hover:nth-child(3){width: 100%;position: relative;background: url(../img/main/section02_list_bg03.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
#section02 .top_con .inner .list:hover:nth-child(4){width: 100%;position: relative;background: url(../img/main/section02_list_bg04.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
#section02 .top_con .inner .list:first-child {border-top: 1px solid #000000;}
#section02 .top_con .inner .list .num {flex: 0 1 calc(10% - 8px);color: white;-webkit-text-stroke: 1px black;}
#section02 .top_con .inner .list .tit {flex: 0 1 calc(30% - 8px);}
#section02 .top_con .inner .list .txt {flex: 0 1 calc(60% - 8px);text-align: right;}
#section02 .slick {position: relative;}
#section02 .slick .slick-slide{padding: 0 10px;}
#section02 .slick > div{position: relative;overflow: hidden;}
#section02 .slick-prev, .slick-next {cursor: pointer;position: absolute;top: 50%;transform: translateY(-50%);z-index: 1;}
#section02 .slick-prev {left: -9.375rem;}
#section02 .slick-next {right: -9.375rem;}
#section02 .slick-prev img, .slick-next img {height: auto;}
#section02 .partner-wr {position: relative;}
#section02 .partner-wr > div{position: relative;overflow: hidden;}
#section02 .btm_con{padding: 0 0 clamp(2.5rem,4.4vw,6.25rem);}
#section02 .mid_con .list_inner {position: relative;}
#section02 .mid_con .list_inner .txt {color: #ffffff60;font-size: clamp(1rem,2vw,1.125rem);padding: 0 0 clamp(.625rem,2vw,1rem);line-height: 1.4em;}
#section02 .mid_con .list_inner .text {padding: 0;position: absolute;color: #fff;text-align: left;bottom: clamp(2.5rem,2vw,3.875rem);left: clamp(1.25rem,2vw,2rem);}
#section02 .mid_con .list_inner img {width: 100%;object-fit: cover;}
#section02 .mid_con .list_inner .text .tit {font-size: clamp(1.05rem,2vw,1.5rem);font-weight: 700;height: 58px;line-height: 1.4em;padding-right: 1.25rem;}


@media screen and (max-width:1820px) {
  #section02 .slick-prev, .slick-next {display: none !important;}
}

@media screen and (max-width:1580px) {
  #section02 .top_con{padding: 0 40px;}
  #section02 .mid_con{padding: 0 40px;}
  #section02 div > .text{padding: clamp(3.75rem,6.2vw,7.5rem) 40px clamp(2.5rem,4.2vw,5rem);}
  #section02 .top_con > .text{padding: clamp(3.75rem,6.2vw,7.5rem) 0 clamp(2.5rem,4.2vw,5rem);}
}

@media screen and (max-width:768px) {
  #section02 .top_con{padding: 0 20px;}
  #section02 .mid_con{padding: 0 20px;}
  #section02 .top_con .inner .list{height: 160px;color: #fff;}
  #section02 .top_con .inner .list .num{flex: 100%;}
  #section02 .top_con .inner .list .tit{flex: 100%;}
  #section02 .top_con .inner .list .txt{flex: 100%;}
  #section02 .top_con .inner .list:nth-child(1){width: 100%;position: relative;background: url(../img/main/section02_list_bg01.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
  #section02 .top_con .inner .list:nth-child(2){width: 100%;position: relative;background: url(../img/main/section02_list_bg02.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
  #section02 .top_con .inner .list:nth-child(3){width: 100%;position: relative;background: url(../img/main/section02_list_bg03.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
  #section02 .top_con .inner .list:nth-child(4){width: 100%;position: relative;background: url(../img/main/section02_list_bg04.jpg) no-repeat center;transition: all 0.5s;background-size: cover;}
  #section02 .mid_con .list_inner .text .tit {height: auto;}
  #section02 .mid_con .list_inner .text .tit br{display: none;}

  #section02 .mid_con .list_inner img {max-height: 300px;}

}

@media screen and (max-width:500px) {
  #section02 div > .text .tit span{display: block; width: 100%;}
}

#section03 {padding: clamp(2.5rem,3.4vw,5rem) 0 clamp(3.75rem,3.8vw,6.25rem);background: #181d9c;color: #fff;}
#section03 .top_con {padding: 0 0 clamp(2.5rem,8.2vw,7.5rem);}
#section03 .top_con .text > .txt {color: #ffffff50;padding: 0 0 clamp(1.25rem,2vw,1.875rem);font-size: clamp(1rem,2vw,1.125rem);font-weight: 400;}
#section03 .top_con .text {justify-content: space-between;align-items: flex-end;gap: 20px;}
#section03 .top_con .text .tit {font-size: clamp(2rem,3.8vw,3.125rem);font-weight: 900;}
#section03 .top_con .text a {font-size: clamp(1.125rem,2vw,1.375rem);color: #ffffff50;font-weight: 500;}
#section03 .btm_con > .txt {padding: 0 0 clamp(2.5rem,5.6vw,6.25rem);font-size: clamp(1.375rem,2vw,1.875rem);}
#section03 .btm_con > .counting {gap: 20px;}
#section03 .btm_con > .counting .left_con {flex: 0 1 calc(50% - 10px);}
#section03 .btm_con > .counting .left_con .text {height: 100%;display: flex;align-items: flex-end;}
#section03 .btm_con > .counting .left_con .text .tit {font-family: 'Paperlogy';font-size: clamp(3.75rem,20vw,14.375rem);font-weight: 700;line-height: clamp(1.875rem,20vw,12.5rem);}
#section03 .btm_con > .counting .left_con .text .txt {font-weight: 900;font-size: clamp(2rem,5.2vw,4.375rem);}
#section03 .btm_con > .counting .right_con {flex: 0 1 calc(50% - 10px);gap: clamp(20px,2vw,40px);}
#section03 .btm_con > .counting .right_con .half {display: flex;flex-direction: column;justify-content: flex-end;flex: 0 1 calc(50% - clamp(20px,2vw,40px)););)5;);}
#section03 .btm_con > .counting .right_con .half > .txt {padding: clamp(20px, 2vw, 30px) 0;border-top: 2px solid #ffffff;font-size: clamp(1.25rem, 2vw, 1.875rem);padding-top: clamp(1.25rem, 2vw, 1.875rem);}
#section03 .btm_con > .counting .right_con .half > .text {display: flex;flex-wrap: wrap;align-items: flex-end;gap: 0 10px;}
#section03 .btm_con > .counting .right_con .half > .text .tit {font-family: 'Paperlogy';font-size: clamp(2rem,3.2vw,3.75rem);font-weight: 900;line-height: clamp(1.25rem,3.2vw,3.125rem);}
#section03 .btm_con > .counting .right_con .half > .text .txt {font-size: clamp(1.25rem,2vw,1.5rem);font-weight: 500;}

@media screen and (max-width:1580px) {
  #section03{padding: clamp(2.5rem,3.4vw,5rem) 40px clamp(3.75rem,3.8vw,6.25rem);}
}

@media screen and (max-width:768px){
  #section03{padding:clamp(2.5rem,3.4vw,5rem) 20px clamp(3.75rem,3.8vw,6.25rem)}
  #section03 .btm_con > .counting .left_con, #section03 .btm_con > .counting .right_con{flex: 100%;}
}

/* footer */
#footer {border-top: 1px solid;padding: clamp(2.5rem,3.4vw,4rem) 0;/* margin: clamp(40px,4.4vw,60px) 0 0; */}
#footer .footer_inner {max-width: 1400px;margin: 0 auto;display: flex;}
#footer .footer_logo {flex: 0 1 calc(14.875rem);padding: 0 2.375rem 0 0;}
#footer .footer.df {flex: 0 1 calc(100% - 14.875rem);padding: 0 0 0 2.375rem;}
#footer .footer.df .btm_con {width: 100%;color: #bfbfbf;padding: clamp(1.25rem,2vw,2.5rem) 0 0;border-top: 1px solid #00000020;font-weight: 400;}
#footer .footer.df > .half {color: #000000ee;line-height: 1.6em;font-weight: 400;padding: 0 0 clamp(1.25rem,2vw,2.5rem);=: #00000020;}
#footer .footer.df .half > div > a {color: #000000ee;line-height: 1.6em;font-weight: 400;}
#footer .footer.df .half .btm_con {padding: clamp(.75rem,2.8vw,2rem) 0 0;}
#footer .footer.df .half .df {gap: 0 clamp(40px,4.8vw,80px);position: relative;width: fit-content;}
#footer .footer.df .half .df:before{content:'';position: absolute;height: 16px;width: 1px;background: #000000ee;transform: translate(-50%, -50%);top: 50%;left: 50%;}
#footer .footer.df .half .df .half {flex: none;}
#footer .footer.df > .half .text {color: #8c8c8c;font-weight: 400;font-size: 16px;}
#footer .footer.df > .half .tit {color: #000000;font-size: 18px;font-weight: 700;padding: 0 0 clamp(12px,2vw,20px);}
#footer .quick_link {position: fixed;bottom: clamp(2.5rem,12vw,10rem);right: clamp(1.25rem,3.8vw,4rem);display: flex;flex-direction: column;gap: 1.5rem;align-items: center;z-index: 2;}
#footer .quick_link > a {display: flex;align-items: center;flex-direction: column;justify-content: center;height: clamp(4.875rem,6.8vw,6rem);width: clamp(4.875rem,6.8vw,6rem);border-radius: 100%;font-weight: 700;font-size: clamp(.875rem,2vw,1rem);}
#footer .quick_link > a.black {gap: 12px;background: #000a27;color: #fff;}
#footer .quick_link > a#scrollTopBtn {box-shadow: 0 0 17px #00000017;gap: 12px;background: #fff;}

@media screen and (max-width:1460px) {
  #footer{padding: clamp(2.5rem,3.4vw,4rem) 2.5rem;}
  #footer .footer_inner{flex-direction: column;}
  #footer .footer_logo{flex: auto; padding: 0 0 .75rem;}
  #footer .footer.df{padding: 0;}
}

@media screen and (max-width:1024px) {
  #footer .footer.df{gap: 10px;}
  #footer .footer.df .half{flex: 0 1 calc(50%);}
  #footer .footer.df .half:last-child{flex: 0 1 calc(48%);}
}

@media screen and (max-width: 768px) {
  #footer {padding: clamp(2.5rem,3.4vw,4rem) 20px;}

  #footer .footer.df{flex-direction: column;padding: .625rem 0 0;}
}

@media screen and (max-width:374px) {
  #footer .footer.df .half .df:before{display: none;}
}

#sub-nav .visual__wrap .video_bg {
  padding-top: 42%;
  pointer-events: none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
}

#sub-nav .visual__wrap .video_bg iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}