@charset "utf-8";
@import url("font.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol,
li {
  list-style: none;
}
a {
  color: #191919;
  text-decoration: none;
}
img {
  vertical-align: middle;
  border: 0;
}
html {
  font-size: 16px;
}
::-webkit-scrollbar {
  width: 8px;
  height: 12px;
  background-color: rgba(137, 115, 88, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}
body {
  font-family: Pretendard, "Nanum Myeongjo", -apple-system, BlinkMacSystemFont,
    system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.64px;
  color: #191919;
  word-break: keep-all;

  overflow-x: hidden;
  min-width: 780px;
}

/* 안내창 */
body {
  /* overflow-y: hidden; */
}
body.active {
  overflow-y: auto;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999999;
}
.modal-box {
  width: 600px;
  height: 450px;
  background-color: #fff;
  border-radius: 20px;
}
/* 공통요소 */
.wrap {
  position: relative;
}
.inner {
  position: relative;
  max-width: 1800px;
  width: 100%;
  min-width: 640px;

  padding: 0 90px;
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  .inner {
    padding: 0 40px !important;
  }
}
@media screen and (max-width: 760px) {
  .inner {
    padding: 0 20px !important;
  }
}

/* 주메뉴 */
.nav {
  position: fixed;
  left: 100%;
  top: 0;
  width: 450px;
  height: 100vh;
  background-color: honeydew;
  z-index: 999999;
  padding: 50px;
  background: rgba(0, 0, 0, 0.84);
  overflow-y: auto;

  transition: left 0.3s ease-in-out;
}
.nav-active {
  left: calc(100% - 450px) !important;
}
.nav-close {
  position: absolute;
  right: 30px;
  top: 20px;
  display: block;
  width: 23px;
  height: 23px;
  background: url("../images/close2.png") no-repeat center;
  cursor: pointer;
  border: none;
  font-size: 0;
}
.gnb {
  position: relative;
  display: block;
}
.gnb > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
}
.gnb > li > a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.9px;
  color: #fff;
}
.depth2 {
  position: relative;
  display: block;
  width: 180px;
}
.depth2 > li {
  position: relative;
  display: block;
  padding-bottom: 20px;
}
.depth2 > li > a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.75px;
  color: #fff;
}
/* 상단 */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0);
  z-index: 9999;
}

.header-active {
  background-color: rgba(255, 255, 255, 1) !important;
}
.logo-w {
  display: block;
}
.logo-g {
  display: none;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 50px;
}
.metaworld {
}
.language-box {
  padding-top: 25px;
}
.language-word {
  position: relative;
  display: block;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.83px;
  color: #000;
  cursor: pointer;
}
.language-word::after {
  content: "";
  display: inline-block;
  background: url("../images/select_icon2.png") no-repeat;
  background-size: cover;
  width: 8px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 6px;
}

.language {
  visibility: hidden;
}
.language li {
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.2s; */
}
.language-box-active li {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.language li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.83px;
  color: #000;
  padding: 5px 0;
}

.bt-menu {
  display: inline-block;
  width: 37px;
  height: 12px;
  margin-left: 50px;
  font-size: 0;
  background: url(../images/toggle_navi.png) no-repeat;
  background-size: cover;
  border: none;
  cursor: pointer;
}

/* 비주얼 */
.visual {
  position: relative;
  height: 100vh;
}
.swVisual {
  width: 100%;
  height: 100%;
}
.swVisual .swiper-slide {
  overflow: hidden;
}
/* 비디오를 영역에 가득채우기 */
.swVisual video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.visual .inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%;
  /* swiper 는 기본 z-index 가 있으므로  */
  z-index: 99;
}
.visual-control {
  display: flex;
  align-items: flex-start;
  gap: 0 35px;
}
.visual-control li {
  position: relative;
  width: calc(100% / 8);
  text-align: center;
  padding: 20px 0;
  cursor: pointer;
}
.visual-control li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
}
.visual-control li > .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 1);
  /* 비디오 시간을 100 등분으로 처리 */
  transition: width;
}

.visual-control li span {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

/* 뉴스 */
.news {
  position: relative;
  padding: 85px 0;
}
.news .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.news-left {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: calc(50% - 4.32%);
  height: 51.85vw;
  max-height: 840px;
}
.news-top {
  width: 100%;
  padding-top: 15%;
}

.news-logo {
  font-family: Pretendard, "Nanum Myeongjo";
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.5px;
  color: #000;
}

.news-desc {
  font-family: Pretendard, "Nanum Myeongjo";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #000;
  margin-top: 30px;
}
.news-more {
  position: relative;
  display: inline-block;
  padding-right: 46px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.14px;
  color: #000;
  text-transform: uppercase;
  margin-top: 12%;
}
.news-more::after {
  content: "";
  position: absolute;
  right: 0;
  top: -8px;
  width: 36px;
  height: 25px;
  background: url("../images/more2.png") no-repeat center;
}

.news-bottom {
  width: 100%;
}
.news-photo {
  width: 100%;
  height: auto;
}

.news-right {
  width: calc(50% - 4.32%);
}
.news-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/* 이미지 반응형 적용 */
.news-link img {
  max-width: 100%;
  height: 51.85vw;
  max-height: 840px;
}

@media screen and (max-width: 1080px) {
  .news-top {
    padding-top: 10%;
  }
  .news-more {
    margin-top: 8%;
  }
}

@media screen and (max-width: 960px) {
  .news .inner {
    flex-wrap: wrap;
  }
  .news-left {
    width: 100%;
    margin-bottom: 50px;
    height: auto;
    text-align: center;
  }
  .news-top {
    padding-top: 0;
  }
  .news-more {
    margin-top: 5%;
  }
  .news-bottom {
    margin-top: 50px;
  }
  .news-photo {
    height: auto;
  }
  .news-right {
    width: 100%;
  }
  .news-link {
    text-align: center;
  }
  .news-link img {
    height: auto;
  }
}
/* 비즈니스 */
.business {
  position: relative;
  height: 52.08vw;
  max-height: 1000px;
  min-height: 676px;
  background-color: yellow;
}

/* swiper 레이아웃 셋팅 */
.swBusiness {
  width: 100%;
  height: 100%;
}
.business-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 7% 0;
  overflow: hidden;
}
.business-img-1 {
  background: url("../images/business01.png") no-repeat center;
  background-size: cover;
}
.business-img-2 {
  background: url("../images/business02.png") no-repeat center;
  background-size: cover;
}
.business-img-3 {
  background: url("../images/business03.png") no-repeat center;
  background-size: cover;
}
.business-img-4 {
  background: url("../images/business04.png") no-repeat center;
  background-size: cover;
}
.business-img-5 {
  background: url("../images/business05.png") no-repeat center;
  background-size: cover;
}
.business-img-6 {
  background: url("../images/business06.png") no-repeat center;
  background-size: cover;
}
.swBusiness .inner {
  height: 100%;
}
.business-txt {
  position: relative;
  height: 100%;
  color: #fff;
}

.business-txt h3 {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.5px;
  opacity: 0;
  transform: translateY(100px);
}
.swBusiness .swiper-slide-active .business-txt h3 {
  transition: opacity 1s, transform 1s;
  opacity: 1;
  transform: translateY(0);
}

.business-txt p {
  margin-top: 55px;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: -0.24px;
  opacity: 0;
  transform: translateY(100px);
}
.swBusiness .swiper-slide-active .business-txt p {
  transition: all 1s 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.business-txt p span {
  margin-top: 18px;
  display: block;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.18px;
  color: #e0e0e0;
  opacity: 0;
  transform: translateY(100px);
}

.swBusiness .swiper-slide-active .business-txt p span {
  transition: all 1s 0.6s;
  opacity: 1;
  transform: translateY(0);
}

.business-txt a {
  margin-top: 71px;
  display: inline-block;
  position: relative;
  padding-right: 46px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.14px;
  color: #fff;
  opacity: 0;
  transform: translateY(100px);
}
.business-txt a::after {
  content: "";
  position: absolute;
  right: 0;
  top: -8px;
  width: 36px;
  height: 25px;
  background: url("../images/more.png") no-repeat center;
}

.swBusiness .swiper-slide-active .business-txt a {
  transition: all 1s 0.8s;
  opacity: 1;
  transform: translateY(0);
}
.business-txt em {
  position: absolute;
  left: 0px;
  bottom: 0px;
  line-height: 1.43;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.14px;
  color: #a1a1a1;
  opacity: 0;
  transform: translateY(100px);
}
.swBusiness .swiper-slide-active .business-txt em {
  transition: all 1s 1s;
  opacity: 1;
  transform: translateY(0);
}
/* 미디어 */
.mcenter {
  position: relative;
  padding: 100px 0;
}
.mcenter .inner {
}
.mcenter .inner h2 {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.5px;
  color: #000;
}
.mcenter .inner > p {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #484848;
}
.mcenter-board {
  padding-left: 7.5%;
  padding-top: 30px;
}
.mcenter-list {
  border-top: 1px solid #000;
}
.mcenter-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
  padding: 35px 0;
}
.mcetner-category {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.8px;
  color: #464646;
}

.mcetner-link {
  display: block;
  width: 65%;
}

.mcenter-list-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -1.3px;
  color: #464646;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 28px;
}
.mcenter-list-txt {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: -0.35px;
  color: #808080;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 50px;
}
.mcenter-list-date {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.7px;
  color: #b1b1b1;
  width: 230px;
  text-align: right;
}

@media screen and (max-width: 960px) {
  .mcenter .inner h2 {
    text-align: center;
  }
  .mcenter .inner p {
    text-align: center;
  }
  .mcenter-board {
    padding-left: 0%;
  }
}

/* 하단 */
.footer {
  position: relative;
  background: #000;
  padding: 60px;
}
.footer .inner {
}
.sitemap {
}
.sitemap > ul {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 40px;
}
.sitemap > ul:last-child {
  padding-bottom: 0;
}

.sitemap > ul > li {
  width: 20%;
}
.sitemap-category {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 25px;
}
.sitemap > ul > li > ul {
}
.sitemap > ul > li > ul > li {
  margin-bottom: 25px;
}
.sitemap > ul > li > ul > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: #a2a2a2;
}
.sitemap strong {
  color: rgb(0, 176, 82);
}

.copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #3c3c3c;
}
.copy-left {
}
.footer-logo {
}
.footer-address {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #a2a2a2;
}
.copy-right {
  text-align: right;
}
.footer-lang {
  display: inline-block;
  width: 63px;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #fff;
}
.footer-lang-focus {
  background: #fff;
  color: #000;
}
.footer-copy {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #a2a2a2;
}

@media screen and (max-width: 880px) {
  .copy {
    flex-wrap: wrap;
  }
  .copy-left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .copy-right {
    width: 100%;
    text-align: center;
  }
}
