@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Noto+Sans:wght@100;300;400;500;600;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-weight: inherit;
  word-break: keep-all;
  font-family: "Noto Sans", "Noto Sans KR", "Roboto", sans-serif;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  line-height: 1;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.h_inner {
  margin: 0 auto;
  padding: 0 60px;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
}
.header.on {
  background: rgba(0, 0, 0, 0.3);
}
.header .h_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .h_inner h1 {
  background: url(../imges/logo_w.svg) no-repeat center center/cover;
  width: 130px;
  height: 60px;
}
.header .h_inner .gnb:hover .lnb {
  display: block;
  top: 100px;
  height: 200px;
}
.header .h_inner .gnb:hover .lnb li {
  color: #ffffff;
}
.header .h_inner .gnb:hover::before {
  height: 200px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header .h_inner .gnb::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: 0.2s;
}
.header .h_inner .gnb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}
.header .h_inner .gnb ul li {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.header .h_inner .gnb ul li:hover {
  color: #ffd600;
}
.header .h_inner .gnb ul li a {
  line-height: 100px;
}
.header .h_inner .gnb ul li a i {
  text-align: end;
}
.header .h_inner .gnb ul li .lnb {
  flex-direction: column;
  min-width: 150px;
  position: absolute;
  top: 50px;
  left: 0;
  gap: 0;
  padding: 25px 0;
  height: 0;
  width: 100%;
  overflow: hidden;
  transition: 0.5s 1s;
  display: none;
}
.header .h_inner .gnb ul li .lnb li {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  width: 100%;
  line-height: 30px;
  color: transparent;
}
.header .h_inner .gnb ul li .lnb li:hover {
  color: #ffd600;
}
.header .h_inner .gnb ul li .lnb li a {
  line-height: 20px;
}
.header .h_inner .cus {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .h_inner .cus span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.header .h_inner .cus span .inquiry {
  line-height: 100px;
  padding: 8px 25px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  transition: 0.3s;
}
.header .h_inner .cus span .inquiry:hover {
  background: #EA002C;
  border: 1px solid transparent;
}
.header .h_inner .cus .lng {
  position: relative;
  cursor: pointer;
}
.header .h_inner .cus .lng span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.header .h_inner .cus .lng span a {
  line-height: 100px;
}
.header .h_inner .cus .lng ul {
  display: none;
  position: absolute;
  top: 30px;
  left: -10px;
  width: 60px;
  padding: 8px 16px;
  background: #dfdfdf;
}
.header .h_inner .cus .lng ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #363636;
}
.header .h_inner .cus .lng ul li ~ li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header .h_inner .cus .lng ul.on {
  display: block;
}
.header .moblie_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  background: transparent;
  z-index: 999;
  overflow: hidden;
  display: none;
}
.header .moblie_btn.on::before {
  transform: translate(-13px, 12px) rotate(45deg);
}
.header .moblie_btn.on::after {
  transform: translate(-13px, -10px) rotate(-45deg);
}
.header .moblie_btn.on span::before {
  transform: translate(-15px, 0);
  background: transparent;
}
.header .moblie_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.5s;
  border-radius: 10px;
}
.header .moblie_btn span {
  position: relative;
  color: transparent;
}
.header .moblie_btn span::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: 0.5s;
}
.header .moblie_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.5s;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .header {
    height: 80px;
    z-index: 999;
  }
  .header .h_inner {
    height: 80px;
    padding: 0 30px;
    z-index: 999;
    justify-content: flex-end;
  }
  .header .h_inner h1 {
    background: url(../imges/logo_w.svg) no-repeat center center;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    z-index: 999;
  }
  .header .h_inner .gnb {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #363636;
    overflow-y: scroll;
  }
  .header .h_inner .gnb:hover .lnb {
    display: none;
    min-width: auto;
    height: auto;
  }
  .header .h_inner .gnb:hover .lnb li {
    color: rgba(255, 255, 255, 0.8);
  }
  .header .h_inner .gnb:hover::before {
    height: 0;
    top: 0;
    height: 0;
  }
  .header .h_inner .gnb.on {
    display: block;
  }
  .header .h_inner .gnb ul {
    flex-direction: column;
    gap: 0;
    padding: 120px 30px 0 30px;
  }
  .header .h_inner .gnb ul::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 60px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .header .h_inner .gnb ul li {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
  }
  .header .h_inner .gnb ul li a {
    line-height: 20px;
  }
  .header .h_inner .gnb ul li .lnb {
    position: static;
    transform: translate(0, 10px);
    transition: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  .header .h_inner .gnb ul li .lnb::before {
    display: none;
  }
  .header .h_inner .gnb ul li .lnb li {
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.1);
  }
  .header .h_inner .gnb ul li .lnb li a {
    line-height: 14px;
  }
  .header .h_inner .gnb ul li .lnb li a::before {
    display: none;
  }
  .header .h_inner .gnb ul li .lnb li ~ li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .h_inner .gnb ul li .lnb.on {
    display: block;
  }
  .header .h_inner .gnb ul li ~ li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .h_inner .gnb ul li:not(:last-child) a {
    position: relative;
    width: 100%;
    display: inline-block;
  }
  .header .h_inner .gnb ul li:not(:last-child) a::before {
    content: "\e942";
    font-family: xeicon;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    font-size: 20px;
    color: #ffffff;
  }
  .header .h_inner .cus {
    padding: 0 30px 0 0;
  }
  .header .h_inner .cus span {
    display: none;
  }
  .header .h_inner .cus .lng span {
    display: block;
  }
  .header .moblie_btn {
    display: block;
  }
}
.main_sk .sk_slide {
  position: relative;
}
.main_sk .sk_slide .swiper-wrapper .swiper-slide .txt {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #ffffff;
}
.main_sk .sk_slide .swiper-wrapper .swiper-slide .txt h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  margin: 0 0 20px 0;
}
.main_sk .sk_slide .swiper-wrapper .swiper-slide .txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}
.main_sk .sk_slide .swiper-wrapper .sk01 {
  background: url(../imges/msk_01.png) no-repeat center center/cover;
  height: 100vh;
}
.main_sk .sk_slide .swiper-wrapper .sk02 {
  background: url(../imges/msk_02.png) no-repeat center center/cover;
  height: 100vh;
}
.main_sk .sk_slide .swiper-wrapper .sk03 {
  background: url(../imges/msk_03.png) no-repeat center center/cover;
  height: 100vh;
}
.main_sk .sk_slide .swiper_button {
  position: absolute;
  margin: 0 auto;
  padding: 0 15px;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1400px;
  width: 100%;
  cursor: pointer;
  z-index: 998;
}
.main_sk .sk_slide .swiper_button .btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 25px;
  padding: 8px 12px;
  display: inline-flex;
  gap: 20px;
  position: relative;
}
.main_sk .sk_slide .swiper_button .btn i {
  font-size: 26px;
  font-weight: 300;
  color: #ffffff;
  z-index: 998;
}
.main_sk .sk_slide .swiper_button .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 998;
}
.main_sk .sk_slide .swiper-pagination {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: 100%;
  top: 55%;
  width: 1400px;
  display: flex;
  justify-content: flex-start;
}
.main_sk .sk_slide .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
}
.main_sk .scroll_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 150px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 998;
}
.main_sk .scroll_box::after {
  content: "";
  position: absolute;
  bottom: 150px;
  left: 50%;
  width: 2px;
  height: 50px;
  background: rgb(223, 223, 223);
  z-index: 998;
  animation: down 1.5s linear 1s infinite;
}
@keyframes down {
  0% {
    bottom: 100px;
    background: rgb(225, 225, 225);
  }
  50% {
    bottom: 50px;
    background: rgba(225, 225, 225, 0.8);
  }
  75% {
    bottom: 25px;
    background: rgba(225, 225, 225, 0.5);
  }
  100% {
    bottom: -10px;
    background: rgba(225, 225, 225, 0.1);
  }
}

@media (max-width: 768px) {
  .main_sk .sk_slide .swiper-wrapper .swiper-slide .txt {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    padding: 0 30px;
  }
  .main_sk .sk_slide .swiper-wrapper .swiper-slide .txt h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .main_sk .sk_slide .swiper-wrapper .swiper-slide .txt p {
    font-size: 13px;
  }
  .main_sk .sk_slide .swiper-wrapper .sk01 {
    background: url(../imges/msk_01.png) no-repeat center center/cover;
  }
  .main_sk .sk_slide .swiper-wrapper .sk02 {
    background: url(../imges/msk_02.png) no-repeat 65% center/cover;
  }
  .main_sk .sk_slide .swiper-wrapper .sk03 {
    background: url(../imges/msk_03.png) no-repeat 64% center/cover;
  }
  .main_sk .sk_slide .swiper_button {
    padding: 6px 30px;
  }
  .main_sk .sk_slide .swiper_button .btn {
    border-radius: 10px;
  }
  .main_sk .sk_slide .swiper_button .btn::before {
    height: 20px;
  }
  .main_sk .sk_slide .swiper_button .btn i {
    font-size: 20px;
  }
}
.main_product .inner .tit {
  display: flex;
  justify-content: center;
  margin: 0 0 100px 0;
  gap: 100px;
  position: relative;
}
.main_product .inner .tit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47.5%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60px;
  background: #cbd5e1;
  z-index: 998;
}
.main_product .inner .tit h3 {
  font-size: 60px;
  font-weight: 700;
  color: #363636;
}
.main_product .inner .tit p {
  font-size: 18px;
  font-weight: 500;
  color: #475569;
  line-height: 24px;
}
.main_product .product_slide .slick-active.slick-center .list .txt {
  display: block;
}
.main_product .product_slide .p_slide {
  position: relative;
  padding: 0 50px;
}
.main_product .product_slide .p_slide:hover .list .txt span a::before {
  background: #ffffff;
  border: 1px solid #ffffff;
}
.main_product .product_slide .p_slide:hover .list .txt span a::after {
  color: #363636;
}
.main_product .product_slide .p_slide .list .txt {
  width: 100%;
  padding: 0 100px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
}
.main_product .product_slide .p_slide .list .txt h4 {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
}
.main_product .product_slide .p_slide .list .txt h4 small {
  font-size: 20px;
}
.main_product .product_slide .p_slide .list .txt span a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.main_product .product_slide .p_slide .list .txt span a::after {
  content: "\e907";
  position: absolute;
  bottom: -10px;
  right: 110px;
  transform: translate(0, -50%);
  font-family: xeicon;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition: 0.3s;
}
.main_product .product_slide .p_slide .list .txt span a:hover::before {
  background: #ffffff;
}
.main_product .product_slide .p_slide .list .txt span a:hover::after {
  color: #363636;
}
.main_product .product_slide .bg01 {
  background: url(../imges/mp_01.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .product_slide .bg02 {
  background: url(../imges/mp_02.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .product_slide .bg03 {
  background: url(../imges/mp_03.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .product_slide .bg04 {
  background: url(../imges/mp_04.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .product_slide .bg05 {
  background: url(../imges/mp_05.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .product_slide .bg06 {
  background: url(../imges/mp_06.png) no-repeat center center/cover;
  height: 400px;
}
.main_product .slide_btn {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_product .slide_btn i {
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: #363636;
  padding: 20px;
  border-radius: 50%;
  background: #ffffff;
}

@media (max-width: 768px) {
  .main_product {
    overflow: hidden;
  }
  .main_product .inner {
    padding: 0 30px;
  }
  .main_product .inner .tit {
    flex-direction: column;
    gap: 12px;
    margin: 0 0 30px 0;
    word-break: keep-all;
  }
  .main_product .inner .tit h3 {
    font-size: 36px;
  }
  .main_product .inner .tit p {
    font-size: 12px;
    line-height: 17px;
    word-break: keep-all;
    width: 100%;
  }
  .main_product .inner .tit::before {
    display: none;
  }
  .main_product .product_slide .p_slide {
    padding: 0 5px;
    width: 500px;
  }
  .main_product .product_slide .p_slide .list .txt {
    bottom: 30px;
    left: 50%;
    padding: 0 30px;
  }
  .main_product .product_slide .p_slide .list .txt h4 {
    font-size: 32px;
  }
  .main_product .product_slide .p_slide .list .txt h4 small {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 0 0;
  }
  .main_product .product_slide .p_slide .list .txt span a::before {
    bottom: 0;
    right: 30px;
    background: #ffffff;
    width: 35px;
    height: 35px;
  }
  .main_product .product_slide .p_slide .list .txt span a::after {
    bottom: -3px;
    right: 37px;
    font-size: 20px;
    color: #363636;
  }
  .main_product .product_slide .p_slide .bg01 {
    height: 300px;
  }
  .main_product .product_slide .p_slide .bg02 {
    height: 300px;
  }
  .main_product .product_slide .p_slide .bg03 {
    height: 300px;
  }
  .main_product .product_slide .p_slide .bg04 {
    height: 300px;
  }
  .main_product .product_slide .p_slide .bg05 {
    height: 300px;
  }
  .main_product .product_slide .p_slide .bg06 {
    height: 300px;
  }
  .main_product .slide_btn {
    display: none;
  }
}
.main_technical {
  position: relative;
}
.main_technical .video_box {
  width: 100%;
  height: 100%;
}
.main_technical .video_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.main_technical .video_box video {
  width: 100%;
  height: 100%;
}
.main_technical .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 998;
  top: 45%;
}
.main_technical .inner .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  position: relative;
}
.main_technical .inner .tit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(0, -50%);
  width: 1px;
  height: 150px;
  background: rgba(255, 255, 255, 0.5);
}
.main_technical .inner .tit h3 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
}
.main_technical .inner .tit p {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin: 0 0 50px 0;
}
.main_technical .inner .tit a {
  color: #ffffff;
  font-size: 20px;
  width: 200px;
  display: flex;
  justify-content: center;
  gap: 25px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 18px;
  transition: 0.5s;
}
.main_technical .inner .tit a:hover {
  background: #EA002C;
  border: 1px solid transparent;
}

@media (max-width: 768px) {
  .main_technical .video_box {
    overflow: hidden;
  }
  .main_technical .video_box video {
    width: auto;
    height: 100%;
  }
  .main_technical .inner {
    top: 50%;
  }
  .main_technical .inner .tit {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .main_technical .inner .tit::before {
    display: none;
  }
  .main_technical .inner .tit h3 {
    font-size: 42px;
  }
  .main_technical .inner .tit p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
  .main_technical .inner .tit a {
    margin: 0 auto;
    font-size: 14px;
    width: 50%;
  }
}
.main_customer {
  background: url(../imges/mc_01.jpg) no-repeat center center/cover;
  height: 100vh;
}
.main_customer .inner .txt {
  text-align: center;
}
.main_customer .inner .txt h3 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.main_customer .inner .txt p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 70px 0;
}
.main_customer .inner .txt span {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_customer .inner .txt span a {
  padding: 15px 30px;
  color: #363636;
  background: #ffffff;
  border-radius: 50px;
  transition: 0.5s;
}
.main_customer .inner .txt span a:hover {
  color: #ffffff;
  background: #EA002C;
}
.main_customer .inner .txt span a i {
  margin: 0 0 0 10px;
}

@media (max-width: 768px) {
  .main_customer {
    background: url(../imges/mc_01.jpg) no-repeat 40% center/cover;
  }
  .main_customer .inner .txt h3 {
    font-size: 42px;
    line-height: 52px;
    margin: 0 0 16px 0;
  }
  .main_customer .inner .txt p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 50px 0;
  }
  .main_customer .inner .txt span {
    font-size: 16px;
  }
  .main_customer .inner .txt span a {
    padding: 12px 20px;
  }
}
.main_news .inner .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px 0;
}
.main_news .inner .txt h3 {
  font-size: 70px;
  font-weight: 700;
  color: #363636;
}
.main_news .inner .txt span {
  cursor: pointer;
}
.main_news .inner .txt span i {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  background: #363636;
  padding: 10px;
  border-radius: 50%;
}
.main_news .inner .txt span i:hover {
  animation: rotate 0.5s;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
.main_news .inner .news_box ul li {
  padding: 50px 0;
  border-bottom: 1px solid #dfdfdf;
}
.main_news .inner .news_box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.main_news .inner .news_box ul li a span {
  font-size: 26px;
  font-weight: 500;
}
.main_news .inner .news_box ul li a .day {
  font-size: 32px;
  font-weight: 700;
  color: #80858c;
}
.main_news .inner .news_box ul li a .data {
  width: 100%;
  font-weight: 700;
}
.main_news .inner .news_box ul li:nth-child(1) {
  border-top: 1px solid #dfdfdf;
}

@media (max-width: 768px) {
  .main_news .inner {
    padding: 0 30px;
  }
  .main_news .inner .txt {
    margin: 0 0 24px 0;
  }
  .main_news .inner .txt h3 {
    font-size: 36px;
  }
  .main_news .inner .txt span i {
    font-size: 20px;
  }
  .main_news .inner .news_box ul li {
    padding: 20px 0;
  }
  .main_news .inner .news_box ul li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main_news .inner .news_box ul li a span {
    font-size: 16px;
  }
  .main_news .inner .news_box ul li a .day {
    font-size: 13px;
  }
  .main_news .inner .news_box ul li a .data {
    font-size: 16px;
    line-height: 24px;
  }
  .main_news .inner .news_box ul li a .see {
    display: none;
  }
}
.main_global {
  position: relative;
}
.main_global::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: #1b3973;
  opacity: 0.7;
  z-index: 1;
}
.main_global .video_box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main_global .video_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1B3973;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main_global .video_box video {
  position: absolute;
  left: 65%;
  bottom: 20%;
  transform: translateX(-50%) scale(1.5);
  -webkit-transform: translateX(-50%) scale(1.5);
  -moz-transform: translateX(-50%) scale(1.5);
  -ms-transform: translateX(-50%) scale(1.5);
  -o-transform: translateX(-50%) scale(1.5);
  min-width: 2000px;
  width: 100%;
}
.main_global .g_inner {
  z-index: 998;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
.main_global .g_inner .tit_box {
  grid-column: 1/5;
}
.main_global .g_inner .tit_box .tit {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
}
.main_global .g_inner .tit_box .tit h3 {
  font-size: 70px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.main_global .g_inner .tit_box .tit p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.main_global .g_inner .link_box {
  z-index: 998;
  grid-column: 5/11;
  position: relative;
}
.main_global .g_inner .link_box li {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: transparent;
  position: absolute;
}
.main_global .g_inner .link_box li:hover a {
  background: #EA002C;
  border: 1px solid transparent;
}
.main_global .g_inner .link_box li a {
  padding: 10px 30px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  transition: 0.5s;
}
.main_global .g_inner .link_box li a i {
  font-size: 26px;
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
}
.main_global .g_inner .link_box li a span {
  font-size: 16px;
  font-weight: 400;
  vertical-align: middle;
}
.main_global .g_inner .link_box .Poland {
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .Russia {
  top: 40%;
  left: 25%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .India {
  top: 60%;
  left: 25%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .Seoul {
  top: 50%;
  left: 40%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .Beijing {
  top: 37%;
  left: 55%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .Ulsan {
  top: 60%;
  left: 55%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .America {
  top: 50%;
  right: 12%;
  transform: translate(0, -50%);
}
.main_global .g_inner .link_box .Mexico {
  top: 60%;
  right: 12%;
  transform: translate(0, -50%);
}

@media (max-width: 768px) {
  .main_global::after {
    width: 100%;
    height: 30%;
  }
  .main_global .video_box {
    width: auto;
    height: 100%;
  }
  .main_global .g_inner {
    grid-template-columns: repeat(1, 10fr);
  }
  .main_global .g_inner .tit_box {
    grid-row: 1/4;
    grid-column: 1/2;
  }
  .main_global .g_inner .tit_box .tit {
    top: 15%;
    padding: 0 30px;
  }
  .main_global .g_inner .tit_box .tit h3 {
    font-size: 26px;
  }
  .main_global .g_inner .tit_box .tit p {
    font-size: 13px;
  }
  .main_global .g_inner .link_box {
    grid-row: 4/11;
    grid-column: 1/2;
  }
  .main_global .g_inner .link_box li {
    width: calc(50% - 40px);
    height: 36px;
    text-align: center;
  }
  .main_global .g_inner .link_box li a {
    padding: 0;
    width: 100%;
    line-height: 36px;
  }
  .main_global .g_inner .link_box .Seoul {
    top: 25%;
    left: 30px;
  }
  .main_global .g_inner .link_box .Ulsan {
    top: 25%;
    left: 55%;
  }
  .main_global .g_inner .link_box .Poland {
    top: 38%;
    left: 30px;
  }
  .main_global .g_inner .link_box .America {
    top: 38%;
    left: 55%;
  }
  .main_global .g_inner .link_box .Mexico {
    top: 51%;
    left: 30px;
  }
  .main_global .g_inner .link_box .India {
    top: 51%;
    left: 55%;
  }
  .main_global .g_inner .link_box .Russia {
    top: 64%;
    left: 30px;
  }
  .main_global .g_inner .link_box .Beijing {
    top: 64%;
    left: 55%;
  }
}
.footer {
  padding: 50px 0;
  background: #222425;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer .inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(0, -50%);
  width: 1px;
  height: 160px;
  background: #555555;
}
.footer .inner .company {
  display: flex;
  gap: 50px;
}
.footer .inner .company li {
  font-size: 18px;
  font-weight: 700;
  color: #dfdfdf;
}
.footer .inner .company li ul {
  padding: 15px 0;
}
.footer .inner .company li ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.footer .inner .about .impormation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 30px 0;
}
.footer .inner .about .impormation li {
  font-size: 18px;
  font-weight: 700;
  color: #dfdfdf;
}
.footer .inner .about .family_box {
  cursor: pointer;
}
.footer .inner .about .family_box span {
  font-size: 16px;
  font-weight: 400;
  color: #dfdfdf;
  background: #555555;
  display: inline-block;
  padding: 10px 20px;
  margin: 0 0 30px 0;
  position: relative;
}
.footer .inner .about .family_box span i {
  margin: 0 0 0 10px;
}
.footer .inner .about .family_box span ul {
  position: absolute;
  bottom: 37px;
  left: 0;
  width: 100%;
  height: 0;
  transform: translate(0, 0);
  background: #555555;
  z-index: 998;
  overflow: hidden;
  transition: 0.5s;
}
.footer .inner .about .family_box span ul li {
  color: #dfdfdf;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .inner .about .family_box span ul li:hover {
  background: #363636;
}
.footer .inner .about .family_box span ul.on {
  height: 175px;
}
.footer .inner .about span {
  display: block;
  color: #e2e8f0;
}
.footer .inner .about .address {
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 5px 0;
}
.footer .inner .about .address .tell {
  display: inline-block;
}
.footer .inner .about .copy {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0;
  }
  .footer .inner {
    flex-direction: column;
    padding: 0 30px;
  }
  .footer .inner::before {
    display: none;
  }
  .footer .inner .company {
    display: none;
  }
  .footer .inner .about .impormation {
    justify-content: flex-start;
    margin: 0 0 16px 0;
  }
  .footer .inner .about .impormation li {
    font-size: 14px;
    font-weight: 500;
  }
  .footer .inner .about .family_box span {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 16px 0;
  }
  .footer .inner .about .family_box span ul {
    bottom: 33px;
  }
  .footer .inner .about .family_box span ul li {
    font-size: 12px;
  }
  .footer .inner .about .family_box span ul.on {
    height: 165px;
  }
  .footer .inner .about .address {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
  }
}/*# sourceMappingURL=skpucore.css.map */