c:\Users\taran062\240401_최소화body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #282525;
  font-size: 16px;
}

html, body {
  height: 100%;
}

/* 영문일때 꼭 넣어야함 */
.eng {
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

.inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.white {
  color:#fff;
}

/* fadein */
.fadein {opacity: 0; transform: translateY(50px); transition: all 1s;}
.fadein.on {opacity: 1; transform: translateY(0);}

/* header */
.header {
  display:flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  
  /* 상단고정 */
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.header.down {
  background-color: transparent;
}

.header.none {
  display: none;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .inner a img{
  height: 32px;
}

.header .menu {
  /* width: 413px; */
  display: flex;
  align-items: center;
}

.header .menu > ul {
  display: flex;
  justify-content: space-between;
}

.header .menu > ul li {
  margin-right: 50px;
  position: relative;
}

.header .menu > ul li:last-child {
  /* margin-right: 0; */
}

.header .menu > ul li a {
  color: #282525;
  font-size: 18px;
  font-weight: 700;
}

.header .menu > ul li a:hover {
  color: #00BD5A;
}

.header .menu > ul li a:hover::before {
  content: url(../images/menu_hover.png);
  position: absolute;
  top: -13px;
  right: -18px;
}

.header.down .menu > ul li a {
  color: #fff;
}

.header.down .menu > ul li a:hover {
  color: #00BD5A;
}

.header .side-menu {
  background-image: url(../images/side_menu.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.header .side-menu:hover {
  background-image: url(../images/side_menu_hover.gif);
}

.header .menu-container {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 100vh;
  z-index: 300;
  padding: 0 60px;
  background: #fff;
  border-left: 1px solid #00BD5A;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: matrix(1, 0, 0, 1, 360, 0);
  transition: all 1s;
}

.header .menu-container.active {
  opacity: 1;
  visibility: inherit;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.header.down .menu-container {
  /* background-color: #2B2B2C;
  color: #fff; */
}

.header .hamburger-menu {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 60px;
  width: 85px;
  height: 30px;
  display: inline;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
}

.header .hamburger-menu span {
  display: block;
  position: absolute;
  right: 0;
  width: 37px;
  height: 3px;
  background: #2d2d2d;
  transition: all 0.3s;
}

.header.down .hamburger-menu span {
  /* background-color: #282525; */
}

.header .hamburger-menu span:first-child {
  top: 7px;
}

.header .hamburger-menu span:last-child {
  bottom: 7px;
}


.header .hamburger-menu span:first-child {
  transform: rotate(45deg);
  top: 14px;
}

.header .hamburger-menu span:last-child{
  transform: rotate(-45deg);
  bottom: 13px;
}

.header .menu-container > ul {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
}

.header .menu-container > ul > li {
  margin-bottom: 34px;
  display: block;
}

.header .menu-container > ul > li a {
  color: #282525;
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.header .menu-container > ul > li:first-child a {
  margin-bottom: 14px;  
}

.header .menu-container > ul > li a:hover {
  color: #00BD5A;
  background: url(../images/side_menu_hover.png) center right no-repeat;
  padding-right: 46px;
  background-size: contain;
}

.header.down .menu-container > ul > li a {
  /* color: #fff; */
}

.header .menu-container > ul > li span {
  display: inline-block;
  margin-bottom: 14px;
  color: #282525;
  font-size: 30px;
  font-weight: 700;
}

.header.down .menu-container > ul > li span {
  color: #fff;
}

.header .menu-container > ul > li > ul > li {
  /* margin-bottom: 17px; */
}

.header .menu-container > ul > li > ul > li a {
  font-size: 20px;
  margin-bottom: 17px;
}

.header .menu-container > ul > li > ul > li:last-child > a {
  margin-bottom: 0;
}

.header .menu-container > ul > li > ul > li a:hover {
  color: #00BD5A;
  background-image: none;
}

.header .menu-container .introduce, .menu-container .method, .menu-container .process {
  padding-left: 36px;
}

.header .menu-container .introduce::before {
  content: '';
  background-image: url(../images/side_menu_icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.header .menu-container .method::before {
  content: '';
  background-image: url(../images/side_menu_icon02.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.header .menu-container .process::before {
  content: '';
  background-image: url(../images/side_menu_icon03.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.header .menu-info {
  position: absolute;
  bottom: 60px;
}

.header .menu-info .menu-info-txt {
  font-weight: 700;
  margin-bottom: 24px;
}

.header .menu-info .menu-info-txt span {
  display: block;
  margin-bottom: 8px;
}


.header .menu-info .gray-title {
  display: inline-block !important;
  color: #A8A8A9;
  font-weight: 500;
}

.header .menu-info .txt {
  display: inline-block !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -.2px;
  margin-right: 23px;
}

.header .menu-info .map {
  display: inline-block;
  background: url(../images/side_map.png) center no-repeat;
  width: 24px;
  height: 24px;
  /* margin-left: 4px; */
  margin-bottom: -2px;

}

.header .menu-info-download {
  background: url(../images/header_download.svg) 238px 16px no-repeat;
  background-color: #00BD5A;
  width: 300px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
}

.header .menu-info-download a {
  padding: 25px 0 24px 60px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

/* event */
.layer-popup {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 900;
  transition: all 1s;
}

.layer-popup .layerbox {
  display:flex;
  align-items: center;
  justify-content: center;
  width: 60vh;
  /* z-index: 1000; */
  
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layer-popup .layerbox .content {
  background: linear-gradient(160deg, #FFE65D 50%, #1F7F51 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* gap: 14px; */
  padding: 0 0 20px;
  overflow: hidden;
}

.layer-popup .layerbox .content .cont-img {
  background-image: url(../images/pc_banner.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 101%;
    height: 64vh;
  
}

.layer-popup .layerbox .content .cont-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 1100;
}

.layer-popup .layerbox .content .cont-btn .choice {
  width: 13vh;
  height: 13vh;
  background-color: #fff;
  border-radius: 23px;
  position: relative;
  gap: 20px;
  border: 5px solid #fff;
  cursor: pointer;
}

.layer-popup .layerbox .content .cont-btn .choice:hover,
.layer-popup .layerbox .content .cont-btn .choice.active-color {
  border: 5px solid #00562D;
  color: #1F995E;

}

.layer-popup .layerbox .content .cont-btn a {
  /* transition: all 1s; */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  height: 70%;
  padding: 10% 25%;
  display: block;
  width: max-content;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layer-popup .layerbox .content .cont-btn a:hover {
}  

.layer-popup .layerbox .content .cont-btn a.choice-1 {
  background-image: url(../images/choice_01.png);
}

.layer-popup .layerbox .content .cont-btn a.choice-1:hover,
.layer-popup .layerbox .content .cont-btn a.choice-1:focus {
  background-image: url(../images/choice_hover_01.gif);
  /* background-size: cover; */
}

.layer-popup .layerbox .content .cont-btn a.choice-2 {
  background-image: url(../images/choice_02.png);
}

.layer-popup .layerbox .content .cont-btn a.choice-2:hover,
.layer-popup .layerbox .content .cont-btn a.choice-2:focus {
  background-image: url(../images/choice_hover_02.gif);
  /* background-size: cover; */
}

.layer-popup .layerbox .content .cont-btn a.choice-3 {
  background-image: url(../images/choice_03.png);
}

.layer-popup .layerbox .content .cont-btn a.choice-3:hover,
.layer-popup .layerbox .content .cont-btn a.choice-3:focus {
  background-image: url(../images/choice_hover_03.gif);
  /* background-size: cover; */
}

.layer-popup .layerbox .content .cont-txt-img {
  background-image: url(../images/pc_banner_text.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 42px;
  margin: 16px 0 24px 0;
}

.layer-popup .layerbox .content .submit {
  background-image: url(../images/m_submit.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50%;
  height: 50px;
  transition: all 1s;
  z-index: 1010;
  margin-bottom: 20px;
}

.layer-popup .layerbox .content .submit:hover {
  background-image: url(../images/m_submit_hover.svg);
}

.layer-popup .popup-btn {
  position: absolute;
  right: -73px;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  background-image: url(../images/close.png);
  z-index: 10000;
  cursor: pointer;
}

.layer-popup .popup-btn a {
  color: transparent;
  display: inline-block;
  width: 100%;
  height: 100%;
}

section {
  display: flex;
  height: 100%;
  position: relative;
  transition: transform 700ms ease 0s;
}

/* scroll_animation */
.scroll_animation {
  position: fixed;
  left: unset;
  right: 0.8%;
  color: #858585;
  height:180px;
  z-index: 40;
  top: 37%;
  transform: translateY(-50%);
}

.scroll_animation > span {
  display: block;
  transform: rotate(90deg);
  font-size: 12px;
  color: #858585;
}

.scroll_animation > .bg {
  position: relative;
  height: 100%;
  width: 1px;
  margin: 30px auto 0;
  background: #D9D9D9;

}

.scroll_animation > .bg .animation {
  width: 100%;
  background-color: #858585;
  animation-name: updown;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;

}

.scroll_animation.none {
  display: none;
}

/* visual */
.visual {
  animation: visual 1s;
}

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

.visual .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .visual .img {
  margin-top: 210px;
  margin-bottom: auto;
}

.visual .img img {
  width: 205px;
  height: 215px;
} */
.visual .img {
  position: absolute;
  right: 0;
  top: 26%;
  width: 44%;
}
.visual .img img {
  width: 100%;
}

.visual .eng {
  font-weight: 900;
  font-size: 64px;
  width: auto;
}

.visual .eng br {
  display: none;
}


.visual .kor {
  font-weight: 700;
  font-size: 34px;
  margin-top: 20px;
}

.visual .sub-txt {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.visual .sub-txt>span {font-size: 20px; font-weight: 400; line-height: 32px;}


/* reference */
.reference {
  position: relative;
  overflow: hidden;
}

.reference .bg{
  width: 100%;
  height: 60vh;
  background: linear-gradient(45deg, rgba(207,223,247,1) 0%, rgba(230,227,252,1) 60%, rgba(240,244,255,1) 80%);
  
  /* 뒤로보내기 */
  position: absolute;
  bottom: 0;
  z-index: -10;
}

.reference .inner {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference .swiper {

  width: 100%;
  height: 100%;
}

.reference .swiper-wrapper {
  align-items: center;
  height: 100vh !important;
}

.reference .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.reference .swiper-slide .img-reference {
  width: 1000px;
  height: 630px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  /* margin-top: 85px; */
}

/* 2026 추가 */
.reference .swiper-slide .img-reference.ibk_ews {
  background-image: url(../images/reference_2026_02.png);
}

.reference .swiper-slide .img-reference.ibk_dcsp {
  background-image: url(../images/reference_2026_06.png);
}

.reference .swiper-slide .img-reference.kdap {
  background-image: url(../images/reference_2026_07.png);
}

.reference .swiper-slide .img-reference.ibk_meds {
  background-image: url(../images/reference_2026_08.png);
}

.reference .swiper-slide .img-reference.ibk-policy-funds {
  background-image: url(../images/reference_2025_01.png);
}

.reference .swiper-slide .img-reference.kibo {
  background-image: url(../images/reference00.png);
}

.reference .swiper-slide .img-reference.ccrs {
  background-image: url(/resource/images/reference01.png);
}

.reference .swiper-slide .img-reference.lottepos {
  background-image: url(/resource/images/reference02.png);
}

.reference .swiper-slide .img-reference.ksfc {
  background-image: url(/resource/images/reference03.png);
}

.reference .swiper-slide .img-reference.dgb {
  background-image: url(/resource/images/reference04.png);
}

.reference .swiper-slide .img-reference.miraeasset {
  background-image: url(/resource/images/reference05.png);
}

.reference .swiper-slide .img-reference.niceinfo {
  background-image: url(/resource/images/reference06.png);
}


.reference .swiper-slide .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.reference .swiper-slide img {
  /* display: block; */
}

.reference .swiper-slide .progress {
  position: relative;
}

.reference .swiper-slide .progress::before {
  content: '';
  background-image: url(../images/finance_ball.png);
  position: absolute;
  top: -168px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 132px;
}

.reference .swiper-slide .progress.open::before {
  content: '';
  background-image: url(../images/finance_ball_open.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -168px;
  left: 50%;
  transform: translateX(-50%);
  width: 10.44em;
  height: 10.19em;
}

.reference .swiper-slide .progress .progress-title {
  display: block;
  position: absolute;
  top: -114px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 700;
}

.reference .swiper-slide .progress span {
  display: block;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: -0.5px;
}

.reference .swiper-slide .title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.reference .swiper-slide .text {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-top: 28px;
  text-align: center;
  color: #7C7C7E;
}
.reference .swiper-slide.br .text br {
  display: block !important;
}

.reference .swiper-slide .text br {
  display: none;
}

.reference .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* margin-top: 60px; */
  margin-bottom: 30px;
}

/* value */
.value .value-inner-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.value .value-header {
  height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value .value-header .title {
  font-size: 60px;
  font-weight: 700;
}


.value .value-header a {
  display: block;
  font-size: 18px;
  color:#282525;
  margin-left: 37px;
  position: relative;
} 

.value .value-header a::before {
  content: '';
  position: absolute;
  top: -29px;
  left: -37px;
  width: 81px;
  height: 81px;
  border-radius: 50%;
  background-color: #ededed;
  z-index: -1;
  cursor: inherit;
}

.value .value-header a::after {
  content: '';
  background-image: url(../images/Btn_back.png);
  width: 24px;
  height: 24px;
  position: absolute;
  left: 151px;
  top: -2px;
  background-repeat: no-repeat;
}

.value .value-list {
  display: flex;
  flex-direction: column;
}

.value .value-list .text-group {
  display: flex;
  justify-content: flex-start;
  margin-top: 94px;
}

.value .value-list .text-group h4 {
  color: #00BB58;
  font-size: 28px;
  font-weight: 900;
  width: 80px;
  margin-right: 55px;
}

.value .value-list .text-group .text {
  display: flex;
  flex-direction: column;

}

.value .value-list .text-group strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 19px;
  
}

.value .value-list .text-group span br {
  display: none;
}

/* .value .fadein1, .value .fadein2, 
.value .fadein3, .value .fadein4 {
  opacity: 0;
}  */

/* what */
.what {
  background-color: #2B2B2C;
}

.what .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what .inner > h2 {
  font-size: 60px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 92px;
}

.what .swiper2 {
  margin: 0;
}

.what .what-list {
  display: flex;
  justify-content: space-between;
}

.what .what-list-item {
  width: auto !important;
}


.what .what-list-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 48px;
}

.what .what-list-item .title {
  font-size: 24px;
  font-weight: 700;
}

.what .what-list-item:nth-child(2) > .title {
  /* letter-spacing: -0.8px; */
}

.what .what-list-item h4 {
}

.what .what-list-item ul {
  margin-top: 26px;
}


.what .what-list-item ul li {
  color: #D3D3D4;
  font-weight: 500;
  font-size: 15px;
  margin-top: 16px;
}

.what .what-list-item ul li > span {
  /* letter-spacing: -0.5px; */
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.what .swiper-pagination {
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 100%;
  /* margin-top: 65px;s */
}


/* project  */
.project {
  overflow: hidden;
  flex-direction: column;
  /* padding-top: 110px; */
  /* height: calc(100% - 110px); */
}

.project .inner {
  display: flex;
  flex-direction: column;
  /* padding-bottom: 40px; */
  justify-content: center;
  margin-top: 80px;
}

.project .project-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  
}

.project h2 {
  font-size: 64px;
  font-weight: 700;
}

.project .project-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}

.project .content .more {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: right;
}

.project .count {
  font-size: 100px;
  font-weight: 700;
}

.project .count span {
  
}

.project .bannerSlide {
  position: relative;
  display: flex;
  align-items: center;
}
.move-wrapper {
  display: flex; /* 중요: list와 clone을 가로로 나란히 배치 */
  width: max-content; 
  will-change: transform;
}

.project .project-list {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin: 15px 12px;
  flex-direction: row;
  gap: 0 24px;
  /* width: max-content; */
  /* animation: aniScroll 29s linear infinite; */
}

.project .project-list .project-list-item {
  position: relative;
  width: 400px !important;
  height: 228px;
  cursor: pointer;
  overflow: hidden;
  /* -webkit-backface-visibility: hidden; */
  /* -webkit-transform: translate3d(0, 0, 0); */
}

/* @keyframes aniScroll{
  0%{ transform: translateX(0%) }
  100%{ transform: translateX(-100%) }
} */

.bannerSlide .project-list { display: flex; align-items: center; justify-content: space-between;  }
.bannerSlide .project-list.original { animation: 38s linear 0s infinite normal forwards running slide01; }
.bannerSlide .project-list.clone { animation: 38s linear 0s infinite normal none running slide02; }
.bannerSlide .project-list li { text-align: center; }

/** 애니메이션 **/
/* 원본용 */
@keyframes slide01 { 
    0% { transform: translateX(0); }
    50% { transform: translateX(-100%); }
    50.01% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

/* 복제용 */
@keyframes slide02 { 
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

.project .project-list .project-list-item span {
  background-color: #282525;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  border-radius: 6px;
  padding: 10px 16px;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.project .project-list .project-list-item img {
  border-radius: 12px;
  width: 100%;
}

.project .project-content .proejct-logo {
  height: 276px;
  width: 100%;
  /* display: flex; */
  overflow: auto;
  scroll-snap-type: x mandatory;
  /* margin-top: 50px; */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.project .project-content .proejct-logo::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.project .project-content .proejct-logo .img {
  flex: none;
  /* width: 100%; */
  scroll-snap-align: start;
}

.project .project-content .proejct-logo .img img {
  display: block;
  width: 100%;
  height: 100%;
}

/* footer */
.footer {
  height: 100%;
  width: 100%;
  background: #19191A url(../images/footer_bg.png) no-repeat;
  background-size: cover;
}

.footer .inner {
  position: relative;
  display: flex;
  align-items: center;
}

.footer .footer-content {
  display: flex;
  justify-content: flex-start;

}

.footer .footer-primary {
  padding-right: 400px;
  padding: 8px 400px 0 0;
}

.footer .footer-menu {
  display: flex;
  flex-direction: column;
}

.footer .footer-menu li {
  margin-top: 44px;
  font-size: 28px;
  font-weight: 900;
}

.footer .footer-menu li:first-child {
  margin-top: 0;
}

.footer .footer-menu li a {
  display: block;
}
.footer .footer-menu li a:hover {
  color: #00BD5A;
}

.footer .footer-info {
  color: #A8A8A9;
  display: flex;
  flex-direction: column;
}

.footer .footer-info p.logo {
  color:#00BB58;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer .footer-info p.logo > img{
height: 30px;
}

.footer .footer-info > div {
  margin-bottom: 40px;
}

.footer .footer-info > div > span:first-child {
  display: block;
  margin-bottom: 8px;
}

.footer .footer-info .footer-info-txt .gray {
  font-weight: 500;
  letter-spacing: -.2px;
}

.footer .footer-info .footer-logo {
  margin-bottom: 24px;
  width: 154px;
}

.footer .footer-info .footer-info-address a.map {
  display: inline-block;
  background: url(../images/map.png) center no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.footer .footer-info .footer-info-contact .gray {
  margin-right: 16px;
}

.footer .footer-info .footer-info-contact .gray a {
  color: #A8A8A9;
}

.footer .footer-info .contact-num {
  display: flex;
  flex-direction: row;
  line-height: 20px;
}

.footer .footer-info .footer-info-download {
  border: 1px solid #00BD5A;
  width: 250px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

.footer .footer-info .footer-info-download a {
  padding: 16px 0 16px 34px;
  color: #00BD5A;
  display: flex;
  align-items: center;
  position: relative;
}
.footer .footer-info .footer-info-download .logo_svg{
  margin-left: 12px;
}



.footer .footer-info .footer-info-download a > .eng {font-family: 'Noto Sans KR', sans-serif;}

.footer .footer-info .footer-info-download a > img {
  top: 14px;
  right: 25px;
  position: absolute;
}

.footer .footer-bottom {
  position: absolute;
  bottom: 50px;
  left: 0;
}

.footer .footer-bottom .copyright{
  color: #7C7C7E;
  font-size: 14px;
  letter-spacing: 0.2px;
}
/* scroll top button */
.footer .bx-btn {
  position: fixed;
  right: 120px;
  top: 80px;
  display: none;
}

.footer .bx-btn .btn-top {
  display: block;
  width: 50px;
  height: 60px;
  background: url(../images/btn_top.svg) no-repeat center;
}
.footer .bx-btn .btn-top:hover {background: url(../images/btn_top_hover.svg) no-repeat center;}

/* swiper-wrapper */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* pagination */

.reference .swiper-pagination .swiper-pagination-bullet {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../images/bullet.png) center no-repeat;
  opacity: 1;
}

.reference .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/bullet_active.png) center no-repeat;
}

.what .swiper-pagination .swiper-pagination-bullet {
  height: 24px;
  width: 24px;
  margin: 0 10px;
  background: url(../images/bullet_b.png) center no-repeat;
  opacity: 1;

}

.what .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/bullet_b_active.png) center no-repeat;
}

/* ============= 3/18 MEDIA QUERIES =============== */

@media screen and (max-width: 1600px){   
  /** Section 1 **/
  .visual .eng {    
    font-size: 58px;    
  }  
  
  .visual .kor {    
    font-size: 28px;    
  }  
  
  .visual .sub-txt{margin-top:40px}
  .visual .sub-txt>span {font-size: 16px;line-height: 24px;}

  /*** Section 2 ***/
  .reference .swiper-slide .img-reference {
    width: 750px;
    height: 472px;
  }

  .reference .swiper-slide img {
    width: 80%;
  }

  .reference .swiper-slide .title {
    font-size: 32px;
  }
  
  .reference .swiper-slide .text {
    font-size: 16px;
    margin-top: 20px;
  }

  .reference .swiper-slide .progress.open::before {
    width: 132px;
    height: 132px;
    background-size: cover;
  }
 
  /*** Section 3 ***/
  .value .value-header .title {
    font-size: 58px;
  }
  
  .value .value-header a {
    font-size: 18px;
  } 
  .value .value-list .text-group h4 {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .value .value-list .text-group strong {
    font-size: 18px;    
  }

  .value .value-header a {
    font-size: 16px;
  } 

  /*** Section 4 ***/
  .what .inner > h2 {
    font-size: 58px;
    margin-bottom: 78px;
  }

  .what .what-list-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 48px;
  }
  
  .what .what-list-item .title {
    font-size: 20px;
    letter-spacing: 0;
  }

  .what .what-list-item ul li {
    font-size: 13px;
    margin-top: 14px;
  }
  
  .what .what-list-item ul li > span {
    /* letter-spacing: -0.5px; */
    font-size: 10px;
    margin-top: 4px;
  }

  /*** Section 4 ***/
  .project h2 {
    font-size: 58px;
  }
  .project .count {
    font-size: 90px;
  }

  .project .project-list {
    display: flex;
    width: 70%;
    margin-top: 80px;
  }

  .project .project-list .project-list-item {
    position: relative;
    width: 340px !important;
    height: 196px;
  }
  .project .content .more {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    text-align: right;
  }
  .project .project-list .project-list-item span {
    font-size: 14px;
    font-weight: 500;    
    border-radius: 4px;
    padding: 8px 14px;
  }
  
  .project .inner {
    margin-top: 120px;
  }


  /* footer */
  .footer .footer-menu li {
    font-size: 24px;
  }



} 



/* 1280 기준 메뉴사이즈 고정 */
@media screen and (max-width: 1280px) {
  .inner {
    width: calc(100vw - 80px);
    margin: 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .footer .footer-primary {
    padding: 8px 300px 0 0;
  }
}

@media screen and (max-width: 928px) {
  .footer .footer-primary {
    padding: 8px 200px 0 0;
  }
}

@media screen and (max-width: 810px) {
  .footer .footer-primary {
    padding: 8px 100px 0 0;
  }
}

/* tablet 규격 */
@media screen and (max-width: 768px){
  body {
    width: 100%;
  }

  .inner {
    width: calc(100vw - 80px);
    margin: 0 40px;
  }
  
  section {
    height: 100%;
  }

  /* header */
  .header {
    width: 100vw;
    /* height: 130px; */
    left: 0;
    transform: translateX(0);
  }

  .header .logo img{
    height: 46px;
  }
 
  .header .menu {
    background-color: transparent;
  }

  .header .menu.active {
    display: block;
    opacity: 1;
  }

  .header.down .menu ul {
    /* background-color:#282525; */
  }

  .header .menu ul:first-child {
      display: none;
  }

  .header .side-menu {
    width: 34px;
    height: 34px;
    cursor: pointer;
  }

  .header .hamburger-menu {
    cursor: pointer;
    width: 85px;
    height: 26px;
    top: 40px;
    right: 40px;
  }

  .header .hamburger-menu span {
    width: 32px;
  }

  .header .hamburger-menu span:first-child {
    top: 11px;
  }

  .header .menu-container {
    padding: 0 40px;
    transition: all .5s;
  }
  
  .header .menu-container > ul > li {
    margin-bottom: 26px;
  }

  .header .menu-container > ul > li span,
  .header .menu-container > ul > li a {
    font-size: 26px;
    margin-bottom: 13px;
  }

  .header .menu-container > ul > li:first-child a {
    margin-bottom: 13px;
  }


  .header .menu-container > ul > li > ul > li  {
    /* margin-bottom: 16px; */
  }

  .header .menu-container > ul > li > ul > li a {
    font-size: 17px;
  }

  .header .menu-container .introduce, .menu-container .method, .menu-container .process {
    padding-left: 29px;
  }

  .header .menu-container .introduce::before,
  .header .menu-container .method::before,
  .header .menu-container .process::before {
    width: 20px;
    height: 20px;
    margin-right: 9px;
  }

  .header .menu-info {
    bottom: 40px;
  }

  .header .menu-info .menu-info-txt span {
    font-size: 15px;
  }

  .header .menu-info .gray-title {
    display: block !important;
  }

  .header .menu-info span.gray {
    font-size: 13px;
    margin-right: 32px;
    margin-bottom: 0;
  }

  .header .menu-info .map {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }

  .header .menu-info-download {
    background: url(../images/header_download.svg) 156px 12px no-repeat;
    background-color: #00BD5A;
    width: 194px;
    margin-top: 32px;
    font-size: 14px;
    background-size: 18px 22px;
  }
  
  .header .menu-info-download a {
    padding: 17px 0 17px 20px;
  }

  .scroll_animation {
    display: none;
  }
  
  /* visual */

  .visual {
    overflow: hidden;
  }

  .visual .eng br {
    display: block;
    overflow: hidden;
    height: auto;
  }

  .visual .inner {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    /* margin-top: 180px; */
    align-items: flex-start;
  }
  
  .visual .text {margin: 0 32px;}
  /* .visual .img {
    margin-left: auto;
    margin-bottom: 60px;
    margin-top: 0;
  }

  .visual .img img {
    width: 118px;
    height: 116px;
  } */

  .visual .img {
    position: unset;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    margin-left: 32px;
  }

  .visual .img img {
    width: 360px;
  }

  .visual .eng {
    font-size: 36px;
    width: 210px;
  }

  .visual .eng br {
    display: block;
  }


  .visual .kor {
    font-weight: 700;
    font-size: 18px;
    margin-top: 13px;
  }
  .visual .sub-txt {margin-top: 16px;}
  .visual .sub-txt>span {
    font-size: 13px;
    line-height: 18px;
  }

  /* reference */
  .reference .swiper-slide .img-reference {
    width: 680px;
    height: 392px;
    background-position: center;
  }

  .reference .swiper-slide .title {
    font-size: 33px;
  }

  .reference .swiper-slide .text {
    font-size: 18px;
    text-align: center;
  }

  .reference .swiper-slide .text br {
    display: block;
  }

  .reference .swiper-slide .progress::before {
    width: 109px;
    height: 109px;
    top: -141px;
    background-size: 109px 109px;
  }

  .reference .swiper-slide .progress .progress-title {
    top: -104px;
  }

  .reference .swiper-slide .progress span {
    top: -74px;
  }
  
  /* value */

  .value {
    /* height: auto; */
  }
  .value .inner {
    margin: 0 32px;
  }

  .value .value-inner-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
  }

  .value .value-header {
    height: 162px;
  }

  .value .value-header .title {
    margin-bottom: 40px;
    font-size: 48px;
  }

  .value .value-list .text-group h4 {
    margin-right: 20px;
  }

  .value .value-list {
    margin-top: 80px;
  }


  .value .value-list .text-group {
    margin-top: 50px;
    flex-direction: column;
  }

  .value .value-list .text-group:first-child {
    margin-top: 0;
  }

  .value .value-list .text-group h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  
  .value .value-list .text-group .text {
    display: flex;
    flex-direction: column;
    width: 290px;
  }
  
  /* what */
  .what {
    /* height: auto; */
    height: 100%;
  }

  .what .inner {
    /* align-items: center; */
    width: calc(100% - 24px);
    width: 100%;
    margin: 80px 0 50px;
  }

  .what .inner > h2 {
    font-size: 58px;
    margin-bottom: 60px;
    margin: 0 auto 88px 32px;
  }

  .what .what-list {
    /* justify-content: center; */
    height: 380px;
  }

  .what .what-list-item {
    /* margin-right: 37px; */
    padding: 0 32px;
    /* min-width: 206px !important; */
  }


  .what .what-list-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 40px;
  }

  .what .what-list-item .title {
    font-size: 24px;
  }

  .what .what-list-item:nth-child(2) > .title {
    /* letter-spacing: -0.8px; */
  }

  .what .what-list-item h4 {
  }

  .what .what-list-item ul {
    margin-top: 20px;
  }


  .what .what-list-item ul li {
    font-size: 13px;
    margin-top: 16px;
  }

  .what .what-list-item ul li > span {
    letter-spacing: -0.5px;
    font-size: 12px;
  }

  .what .swiper-pagination {
    display: flex;
  }

  /* project */
  .project .inner {
    margin-top: 100px;
    padding-bottom: 25px;
  }
  
  .project .project-list .project-list-item img {
  }

  .project .project-content .proejct-logo {
    margin-top: 20px;
  }

  /* footer */
  .footer .footer-content {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
  }

  .footer .inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8px;
  }

  .footer .footer-content {
    flex-direction: column;
    gap: 90px;
  }

  .footer .footer-primary {
    padding-right: 0;
  }

  .footer .footer-bottom {
    bottom: 50px;
  }

  .footer .footer-info > div:last-child {
    margin-bottom: 0;
  }

  .footer .footer-info > div {
    margin-bottom: 20px;
  }

  .footer .footer-info > div > .white {
    font-size: 14px;
    letter-spacing: 0.13px;
  }

  .footer .footer-info .footer-info-txt .gray {
    font-size: 13px;
    /* letter-spacing: -0.2px; */
  }


  .footer .footer-info > div > span:first-child {
    margin-bottom: 6px;
  }

  .footer .footer-info .footer-logo {
    margin-bottom: 8px;
    width: 104px;
  }

    .footer .footer-info .footer-info-address a.map {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    position: absolute;
  }

  .footer .footer-info .footer-info-contact .gray {
    margin-right: 15px;
    line-height: 20px;
  }

  .footer .footer-info .contact-num {
    flex-wrap: wrap;
  }

  .footer .footer-info .footer-info-download {
    width: 180px;
    font-size: 14px;
    margin-top: 16px;
  }

  .footer .footer-info .footer-info-download a {
    padding: 10px 0 10px 20px;
    color: #00BD5A;
    display: flex;
    align-items: center;
  }
  .footer .footer-info .footer-info-download .logo_svg{
    margin-left: 5px;
  }
  .footer .footer-info .footer-info-download .logo_svg svg{
    width: 24px; height: 24px;
  }

  .footer .footer-info .footer-info-download a > img {
    height: 17px;
  }

  .footer .footer-bottom {
    position: absolute;
    bottom: 32px;
    left: 8px;
  }

  .footer .footer-bottom .copyright{
    color: #7C7C7E;
    font-size: 10px;
    letter-spacing: 0.2px;
  }
  .footer .bx-btn {top: 26px; right: 22px;}
  .footer .bx-btn .btn-top {width: 40px; height: 48px;}

}

/* pc 최소사이즈 */
@media screen and (max-width: 500px) {
  body {
    /* overflow: hidden; */
  }
  
  .inner {
    width: calc(100vw - 64px);
    margin: 0 32px;
  }

  /* event */
  .layer-popup {
  }
  
  .layer-popup .layerbox {
    width: 100vw;
    /* height: 100%; */
  }
  
  .layer-popup .layerbox .content {
    width: 100vw;
    height: initial;
    gap: 9px; 
    padding: 20px 0 0 ;
  }
  
  .layer-popup .layerbox .content .cont-img {
    background-image: url(../images/m_banner.png);
    width: 100vw;
    height: 113vw;
  }

  .layer-popup .layerbox .content .cont-btn {
    gap: 9px;
  }

  .layer-popup .layerbox .content .cont-btn .choice {
    width: 12vh;
    height: 12vh;
    border-radius: 20px;
  }
  

  .layer-popup .layerbox .content .cont-btn .choice:hover {
  }


  .layer-popup .layerbox .content .cont-btn a {
    height: 80%;
  }

  .layer-popup .layerbox .content .cont-btn a:hover {
  }

  .layer-popup .layerbox .content .cont-btn a.choice-1 {
    
  }

  .layer-popup .layerbox .content .cont-btn a.choice-2 {
  
  }

  .layer-popup .layerbox .content .cont-btn a.choice-3 {

  }

  .layer-popup .layerbox .content .cont-txt-img {
    background-image: url(../images/m_banner_text.svg);
    width: 90%;
    height: 40px;
    margin: 0;
  }

  .layer-popup .layerbox .content .submit {
    width: 165px;
    height: 44px;
    margin: 10px 0 32px;
  }
  .layer-popup .layerbox .content .submit:hover {
    
  }

  .layer-popup .layerbox .popup-btn {
    right: 0;
    left: 16px;
    top: 24px;
    width: 40px;
    height: 40px;
  }

  .layer-popup .layerbox .popup-btn a {
    
  }
  
  section {
    /* height: 100vh; */
  }


  /* header */
  .header {
    height: 56px;
  }

  .header .logo img{
    height: 32px;
  }

  .header.down {
    background-color: #fff;
  }


  .header .inner {
    
  }

  .header .menu {
    /* width: 34px;
    height: 34px; */
    background-color: #fff;
  }

  .header .menu.active {
    display: block;
    opacity: 1;
  }

  .header.down .menu.active {
  }

  
  .header .menu ul:first-child {
    display: none;
  }

  .header .menu-container {
    padding: 0 40px;
    width: calc(100% - 81px);
    transition: all .5s;
  }
  
  .header.down .menu ul {
    /* background-color:#282525; */
  }

  .header .side-menu {
    width: 34px;
    height: 34px;
    cursor: pointer;
  }

  .header .hamburger-menu {
    cursor: pointer;
    width: 85px;
    height: 26px;
    top: 40px;
    right: 40px;
  }

  .header .hamburger-menu span {
    width: 32px;
  }

  .header .hamburger-menu span:first-child {
    top: 11px;
  }
  
  .header .menu-container > ul > li {
    margin-bottom: 26px;
  }

  .header .menu-container > ul > li span,
  .header .menu-container > ul > li a {
    font-size: 26px;
    margin-bottom: 13px;
  }

  .header .menu-container > ul > li:first-child a {
    margin-bottom: 13px;
  }


  .header .menu-container > ul > li > ul > li  {
    /* margin-bottom: 16px; */
  }

  .header .menu-container > ul > li > ul > li a {
    font-size: 17px;
  }

  .header .menu-container .introduce, .menu-container .method, .menu-container .process {
    padding-left: 29px;
  }

  .header .menu-container .introduce::before,
  .header .menu-container .method::before,
  .header .menu-container .process::before {
    width: 20px;
    height: 20px;
    margin-right: 9px;
  }

  .header .menu-info {
    bottom: 40px;
  }

  .header .menu-info .menu-info-txt span {
    font-size: 15px;
  }

  .header .menu-info span.gray {
    font-size: 13px;
    margin-right: 32px;
    margin-bottom: 0;
  }

  .header .menu-info .map {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }

  .header .menu-info-download {
    background: url(../images/header_download.svg) 156px 12px no-repeat;
    background-color: #00BD5A;
    width: 194px;
    margin-top: 32px;
    font-size: 14px;
    background-size: 18px 22px;
  }
  
  .header .menu-info-download a {
    padding: 17px 0 17px 20px;
  }


  .scroll_animation {
    display: none;
  }

  /* visual */
  .visual {
    /* height: 100vh; */
    overflow: hidden;
    /* height: auto; */
  }

  .visual .inner {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    /* margin-top: 180px; */
  }
  .visual .text {margin: 0 32px;}
  /* .visual .img {
    margin-left: auto;
    margin-bottom: 60px;
    margin-top: 0;
  }

  .visual .img img {
    width: 118px;
    height: 116px;
  } */
  .visual .img {
    position: unset;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    /* margin-left: 32px; */
    margin-left: 17px;
  }

  .visual .img img {
    width: 360px;
  }

  .visual .eng {
    font-size: 36px;
    width: 210px;
  }

  .visual .eng br {
    display: block;
  }


  .visual .kor {
    font-weight: 700;
    font-size: 18px;
    margin-top: 13px;
  }
  .visual .sub-txt {margin-top: 16px;}
  .visual .sub-txt>span {
    font-size: 13px;
    line-height: 18px;
  }

  /* reference */
  .reference {
    /* height: 100vh; */
    /* height: auto; */
    /* margin-top: 100px; */
    padding-bottom: 40px;
  }

  .reference .bg{
    min-width: 360px;
    max-height: 76%;
  }

  .reference .inner {
    /* width: 100%; */
    z-index: 10;
    margin-bottom: 30px;
  }

  .reference .swiper {
    height: 440px;
  }

  .reference .swiper-wrapper {
    height: 100% !important;
  }

  .reference .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
  }    

  .reference .swiper-slide .img-reference {
    margin-top: 0;
    width: 446px;
    height: 280px;
  }

  .reference .swiper-pagination {
    margin-bottom: -8px;
  }

  .reference .swiper-slide img {
    height: 227px;
  }


  .reference .swiper-slide .content {
    /* margin-top: 50px; */
    margin: 44px 0 60px 0;
  }

  .reference .swiper-slide .progress {
  }

  .reference .swiper-slide .progress::before {
    width: 5.38em;
    height: 5.38em;
    background-size: 5.38em 5.38em;
    top: -59px;
  }

  .reference .swiper-slide .progress.open::before {
    top: -70px;
    width: 86px;
    height: 86px;
  }

  .reference .swiper-slide .progress .progress-title {
    font-size: 14px;
    top: -25px;
  }

  .reference .swiper-slide .progress span {
    font-size: 12px;
    letter-spacing: 0;
    top: -7px;
  }

  .reference .swiper-slide .title {
    font-size: 22px;
  }

  .reference .swiper-slide .text {
    font-size: 14px;
    margin-top: 12px;
  }

  .reference .swiper-slide .text p {
    line-height: 20px;
  }

  .reference .swiper-slide .text {
    display: block;
  }

  /* value */
  .value {
    /* height: auto; */
  }
  .value .inner {
    margin: 0 32px;
  }

  .value .value-inner-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
  }

  .value .value-header {
    height: 126px;
  }

  .value .value-header .title {
    margin-bottom: 16px;
    font-size: 36px;
  }


  .value .value-header a {
    font-size: 12px;
    margin-left: 20px;
  } 

  .value .value-header a::before {
    top: -16px;
    left: -20px;
    width: 47px;
    height: 47px;
  }

  .value .value-header a::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    left: 89px;
    top: 1px;
  }

  .value .value-list {
    margin-top: 80px;
  }

  .value .value-list .text-group {
    margin-top: 32px;
    flex-direction: column;
  }

  .value .value-list .text-group:first-child {
    margin-top: 0;
  }

  .value .value-list .text-group h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .value .value-list .text-group .text {
    display: flex;
    flex-direction: column;

  }

  .value .value-list .text-group strong {
    font-size: 16px;
    padding-bottom: 10px;
    
  }

  .value .value-list .text-group span {
    font-size: 13px;
    line-height: 19px;
  }

  .value .value-list .text-group span br {
    display: block;
  }

  /* what */
  .what {
    /* height: auto; */
  }

  .what .inner {
    /* align-items: center; */
    width: calc(100% - 24px);
    width: 100%;
    margin: 80px 0 50px;
  }

  .what .inner > h2 {
    font-size: 36px;
    margin-bottom: 60px;
    margin: 0 auto 88px 32px;
  }

  .what .what-list {
    /* justify-content: center; */
    height: 380px;
  }

  .what .what-list-item {
    /* margin-right: 37px; */
    padding: 0 32px;
    /* min-width: 206px !important; */
  }


  .what .what-list-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 40px;
  }

  .what .what-list-item .title {
    font-size: 24px;
  }

  .what .what-list-item:nth-child(2) > .title {
    /* letter-spacing: -0.8px; */
  }

  .what .what-list-item h4 {
  }

  .what .what-list-item ul {
    margin-top: 20px;
  }


  .what .what-list-item ul li {
    font-size: 13px;
    margin-top: 16px;
  }

  .what .what-list-item ul li > span {
    letter-spacing: -0.5px;
    font-size: 12px;
  }

  .what .swiper-pagination {
    display: flex;
  }


  /* project  */
  .project {
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 70px;
    height: calc(100% - 110px);
  }

  .project .inner {
    margin-top: 0;
    padding-bottom: 32px;
    height: auto;
  }

  .project .project-text {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .project h2 {
    font-size: 36px;
    display: block;
  }
  .project .content {
    margin-top: 24px;
  }
  
  .project .content .more {
    font-size: 12px;
    text-align: right;
  }

  .project .count {
    font-size: 60px;
    text-align: right;
  }
  
  .project .count span {
    
  }
  
  .project .project-content {
    padding-bottom: 0;
  }

  .project .project-list {
    margin: 15px auto;
    gap: 0;
  }

  .project .project-list .project-list-item {
    margin-right: 16px !important;
    width: 240px !important;
    height: fit-content;
  }

  .project .project-list .project-list-item span {
    font-size: 12px;
    padding: 8px 10px;
    bottom: 8px;
    right: 8px;
    border-radius: 4px;
  }

  .project .project-list .project-list-item img {
    border-radius: 10px;
    /* width: 240px;
    height: 137px; */
  }

  .project .project-content .proejct-logo {
    /* margin-top: 38px; */
    height: 170px;
    display: flex;
  }

  .project .project-content .proejct-logo img {
  }


  .project .project-content .proejct-logo .img img {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* footer */
  .footer {
    height: 100vh;
    overflow: hidden;
  }

  .footer .inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 8px;
  }

  .footer .footer-content {
    flex-direction: column;
  }

  .footer .footer-primary {
    padding-right: 0;
    /* margin-top: 40px; */
  }

  .footer .footer-menu {
  }

  .footer .footer-menu li {
    margin-top: 28px;
    font-size: 22px;
  }

  .footer .footer-menu li:first-child {
  }

  .footer .footer-menu li a {
  }

  .footer .footer-info {
    margin-top: 90px;
  }

  .footer .footer-info {
    margin-top: 90px;
  }

  .footer .footer-info > div {
    margin-bottom: 20px;
  }

  .footer .footer-info > div > .white {
    font-size: 14px;
    letter-spacing: 0.13px;
  }

  .footer .footer-info .footer-info-txt .gray {
    font-size: 13px;
    /* letter-spacing: -0.2px; */
  }


  .footer .footer-info > div > span:first-child {
    margin-bottom: 6px;
  }

  .footer .footer-info .footer-logo {
    margin-bottom: 8px;
    width: 104px;
  }

  .footer .footer-info .footer-logo .img{
    height: 30px;
  }

    .footer .footer-info .footer-info-address a.map {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    position: absolute;
  }

  .footer .footer-info .footer-info-contact .gray {
    margin-right: 15px;
    line-height: 20px;
  }

  .footer .footer-info .contact-num {
    flex-wrap: wrap;
  }

  .footer .footer-info .footer-info-download {
    width: 180px;
    font-size: 14px;
    margin-top: 16px;
  }

  .footer .footer-info .footer-info-download a {
    padding: 10px 0 10px 20px;
    color: #00BD5A;
    display: flex;
    align-items: center;
  }
  .footer .footer-info .footer-info-download .logo_svg{
    margin-left: 5px;
  }
  .footer .footer-info .footer-info-download .logo_svg svg{
    width: 24px; height: 24px;
  }

  .footer .footer-info .footer-info-download a > img {
    height: 17px;
  }

  .footer .footer-bottom {
    position: absolute;
    bottom: 32px;
    left: 8px;
  }

  .footer .footer-bottom .copyright{
    color: #7C7C7E;
    font-size: 10px;
    letter-spacing: 0.2px;
  }
  .footer .bx-btn {top: 26px; right: 22px;}
  .footer .bx-btn .btn-top {width: 40px; height: 48px;}

  /* pagination */
  .reference .swiper-pagination .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
    background-size: 8px 8px;
  }

  .reference .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-size: 14px 14px;
  }

  .what .swiper-pagination .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
    background-size: 8px 8px;
  }

  .what .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-size: 14px 14px;
  }
}

/* 모바일 */
@media screen and (max-width: 480px) { 
  body {
    /* overflow: hidden; */
  }
  
  .inner {
    width: calc(100vw - 64px);
    margin: 0 32px;
  }

  /* event */
  .layer-popup {
  }
  
  .layer-popup .layerbox {
    width: 100vw;
    /* height: 100%; */
  }
  
  .layer-popup .layerbox .content {
    width: 100vw;
    height: initial;
    gap: 9px; 
    padding: 20px 0 0 ;
  }
  
  .layer-popup .layerbox .content .cont-img {
    background-image: url(../images/m_banner.png);
    width: 100vw;
    height: 113vw;
  }

  .layer-popup .layerbox .content .cont-btn {
    gap: 9px;
  }

  .layer-popup .layerbox .content .cont-btn .choice {
    width: 12vh;
    height: 12vh;
    border-radius: 20px;
  }
  

  .layer-popup .layerbox .content .cont-btn .choice:hover {
  }


  .layer-popup .layerbox .content .cont-btn a {
    height: 80%;
  }

  .layer-popup .layerbox .content .cont-btn a:hover {
  }

  .layer-popup .layerbox .content .cont-btn a.choice-1 {
    
  }

  .layer-popup .layerbox .content .cont-btn a.choice-2 {
  
  }

  .layer-popup .layerbox .content .cont-btn a.choice-3 {

  }

  .layer-popup .layerbox .content .cont-txt-img {
    background-image: url(../images/m_banner_text.svg);
    width: 90%;
    height: 40px;
    margin: 0;
  }

  .layer-popup .layerbox .content .submit {
    width: 165px;
    height: 44px;
    margin: 10px 0 32px;
  }
  .layer-popup .layerbox .content .submit:hover {
    
  }

  .layer-popup .layerbox .popup-btn {
    right: 0;
    left: 16px;
    top: 24px;
    width: 40px;
    height: 40px;
  }

  .layer-popup .layerbox .popup-btn a {
    
  }
  
  section {
    height: 100vh;
  }


  /* header */
  .header {
    height: 56px;
  }

  .header .logo img{
    height: 32px;
  }

  .header.down {
  }
  
  .header.down .menu.active {
  }

  
  .header .menu ul:first-child {
    display: none;
  }

  .header .inner {
    
  }

  .header .menu {
    /* width: 34px;
    height: 34px; */

    /* background-color: #fff; */
  }
  
  .header .menu-container {
    transition: all .5s;
  }
  

  /* visual */
  .visual {
    /* height: 100vh; */
    
  }

  

  /* reference */
  .reference {
    /* height: 100vh; */
    height: auto;
    margin-top: 100px;
    padding-bottom: 40px;
  }

  .reference .bg{
    min-width: 360px;
    max-height: 76%;
  }

  .reference .inner {
    /* width: 100%; */
    z-index: 10;
    margin-bottom: 30px;
  }

  .reference .swiper {
    height: 440px;
  }

  .reference .swiper-wrapper {
    height: 100% !important;
  }

  .reference .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
  }    

  .reference .swiper-slide .img-reference {
    margin-top: 0;
    width: 360px;
    height: 252px;
  }

  .reference .swiper-pagination {
    margin-bottom: -8px;
  }

  .reference .swiper-slide img {
    height: 227px;
  }


  .reference .swiper-slide .content {
    /* margin-top: 50px; */
    margin: 44px 0 60px 0;
  }

  .reference .swiper-slide .progress {
  }

  .reference .swiper-slide .progress::before {
    width: 5.38em;
    height: 5.38em;
    background-size: 5.38em 5.38em;
    top: -59px;
  }

  .reference .swiper-slide .progress.open::before {
    top: -81px;
    width: 8em;
    height: 8em;
  }

  .reference .swiper-slide .progress .progress-title {
    font-size: 14px;
    top: -25px;
  }

  .reference .swiper-slide .progress span {
    font-size: 12px;
    letter-spacing: 0;
    top: -7px;
  }

  .reference .swiper-slide .title {
    font-size: 22px;
  }

  .reference .swiper-slide .text {
    font-size: 14px;
    margin-top: 12px;
  }

  .reference .swiper-slide .text p {
    line-height: 20px;
  }

  .reference .swiper-slide .text {
    display: block;
  }

  /* value */
  .value {
    height: auto;
  }
  .value .inner {
    margin: 90px 32px;
  }

  .value .value-inner-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
  }

  .value .value-header {
    height: 126px;
  }

  .value .value-header .title {
    margin-bottom: 16px;
    font-size: 36px;
  }


  .value .value-header a {
    font-size: 12px;
    margin-left: 20px;
  } 

  .value .value-header a::before {
    top: -16px;
    left: -20px;
    width: 47px;
    height: 47px;
  }

  .value .value-header a::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    left: 89px;
    top: 1px;
  }

  .value .value-list {
    margin-top: 80px;
  }

  .value .value-list .text-group {
    margin-top: 32px;
  }

  

  .value .value-list .text-group .text {
    

  }

  .value .value-list .text-group strong {
    font-size: 16px;
    padding-bottom: 10px;
    
  }

  .value .value-list .text-group span {
    font-size: 13px;
    line-height: 19px;
  }

  .value .value-list .text-group span br {
    display: block;
  }

  /* what */
  .what .inner > h2 {
    font-size: 36px;
    
  }

  /* project  */
  .project {
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 70px;
    height: calc(100% - 110px);
  }

  .project .inner {
    margin-top: 0;
    padding-bottom: 32px;
    height: auto;
  }

  .project .project-text {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .project h2 {
    font-size: 36px;
    display: block;
  }
  .project .content {
    margin-top: 24px;
  }
  
  .project .content .more {
    font-size: 12px;
    text-align: right;
  }

  .project .count {
    font-size: 60px;
    text-align: right;
  }
  
  .project .count span {
    
  }
  
  .project .project-content {
    padding-bottom: 0;
  }

  .project .project-list {
    margin: 15px auto;
    gap: 0;
  }

  .project .project-list .project-list-item {
    margin-right: 16px !important;
    width: 240px !important;
    height: fit-content;
  }

  .project .project-list .project-list-item span {
    font-size: 12px;
    padding: 8px 10px;
    bottom: 8px;
    right: 8px;
    border-radius: 4px;
  }

  .project .project-list .project-list-item img {
    border-radius: 10px;
    /* width: 240px;
    height: 137px; */
  }

  .project .project-content .proejct-logo {
    /* margin-top: 38px; */
    height: 170px;
    display: flex;
  }

  .project .project-content .proejct-logo img {
  }


  .project .project-content .proejct-logo .img img {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* footer */
  .footer {
    
  }

  .footer .footer-primary {
    padding-right: 0;
    /* margin-top: 40px; */
  }

  .footer .footer-menu {
  }

  .footer .footer-menu li {
    margin-top: 28px;
    font-size: 22px;
  }

  .footer .footer-menu li:first-child {
  }

  .footer .footer-menu li a {
  }

  .footer .footer-info {
    margin-top: 0;
  }

  

  /* pagination */
  .reference .swiper-pagination .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
    background-size: 8px 8px;
  }

  .reference .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-size: 14px 14px;
  }

  .what .swiper-pagination .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
    background-size: 8px 8px;
  }

  .what .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-size: 14px 14px;
  }
} 




