@charset "utf-8";

h1, h2, h3, h4, h5 {word-break: keep-all}
img {max-width: 100%;}
.desc {
  font-size: 20px;
  word-break: keep-all;
  line-height: 1.7;
}
.more-btn a {
  max-width: 280px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid #000;
  background: #fff;
  display: inline-block;
  transition: all .2s;
}
.more-btn a:hover {
  background: #454545;
  border-color: #454545;
  color: #fff;
  font-weight: 800;
}
.admin-btn {
  font-size: 20px;
  font-weight: 800;
  color: #ef0c0c;
  margin: 30px auto 0;
  display: block;
}
@media all and (max-width: 1024px) {
  .desc {font-size: 18px;}
}
@media all and (max-width: 767px) {
  .desc {
    font-size: 15px;
    line-height: 1.4;
  }
  .more-btn a {
    max-width: 170px;
    height: 42px;
    line-height: 42px;
    font-size: 15px;
  }
}

/*main*/
.main section {
  position: relative;
  padding: 250px 0;
}
.main .title {margin-bottom: 80px;}
.main .title h2 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.3;
  word-break: keep-all;
}
.main .title p {
  font-size: 25px;
  margin-top: 20px;
  word-break: keep-all;
}
.main .title .desc {margin-top: 30px;}
.main .banner {padding: 0;}
.main .banner .swiper-slide {
  height: 100vh;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.main .banner .swiper-slide .bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  opacity: 0.85;
  transform: scale(1.15);
  transition: transform 0.3s ease;
}
.main .banner .swiper-slide-active .bg.animate {
  animation: banner 3s ease forwards;
}
.main .banner .swiper-slide .title {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}
.main .banner .swiper-slide .title h2,
.main .banner .swiper-slide .title p {
  opacity: 0;
  transform: translateY(50px);
}
.main .banner .swiper-slide-active .title.animate h2 {
  animation: fadeUp 0.8s ease-out forwards;
}
.main .banner .swiper-slide-active .title.animate p {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}
@keyframes banner {
  0% {transform: scale(1.15)}
  100% {transform: scale(1)}
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main .banner .admin-btn {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 10;
}
.main .intro .inner > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .intro .inner > div > div {width: 50%;}
.main .intro .inner .left.txt {padding-right: 70px;}
.main .intro .inner .right.txt {
  padding-left: 70px;
  order: 2;
}
.main .intro .inner .left.img {order: 1;}
.main .achievement {background: #1D1D1D;}
.main .achievement .title {
  text-align: center;
  color: #fff;
}
.main .achievement ul {
  display: flex;
  flex-wrap: wrap;
}
.main .achievement ul li {
  width: calc((100% - 80px)/3);
  margin-right: 40px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  text-align: center;
  padding: 0 20px;
}
.main .achievement ul li:last-child {margin-right: 0;}
.main .achievement ul li .number {
  font-size: 40px;
  font-weight: 800;
  color: #036EB8;
  margin-bottom: 20px;
  line-height: 1;
}
.main .achievement ul li .number span {font-size: 60px;}
.main .achievement ul li p {
  font-size: 25px;
  font-weight: 800;
  word-break: keep-all;
}
.main .business {background: #454545;}
.main .business .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .business .title {
  width: 25%;
  padding-right: 30px;
  color: #fff;
  margin: 0;
}
.main .business ul {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
}
.main .business ul li {
  width: calc((100% - 6px)/3);
  margin-right: 3px;
}
.main .business ul li:last-child {margin-right: 0;}
.main .business ul a {
  display: block;
  background: #fff;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.main .business ul .img img {
  max-width: none;
  width: 100%;
}
.main .business ul .txt {padding: 30px 25px;}
.main .business ul .txt h4 {
  font-size: 25px;
  font-weight: 800;
  color: #036EB8;
}
.main .business ul .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: all .2s;
}
.main .business ul .hover::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle, #036EB8 50%, transparent 50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  transition: width 0.3s ease-out, height 0.3s ease-out;
}
.main .business ul .hover span {
  position: relative;
  z-index: 1;
}
.main .business ul a:hover .hover {opacity: 1;}
.main .business ul a:hover .hover::after {
  width: 200%;
  height: 200%;
}
.main .notice .title {text-align: center;}
.main .notice .notice-list a {
  display: flex;
  flex-wrap: wrap;
}
.main .notice .notice-list .txt {
  width: 50%;
  background: #454545;
  padding: 60px 50px;
  color: #fff;
}
.main .notice .notice-list .subject {
  font-size: 30px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.main .notice .notice-list .content {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap:break-word;
  line-height: 1.4em;
  height:2.8em;
  overflow: hidden;
}
.main .notice .notice-list .view {
  font-size: 20px;
  font-weight: 800;
  margin-top: 50px;
}
.main .notice .notice-list .view img {margin-left: 10px;}
.main .notice .notice-list .img {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main .notice .more-btn {
  margin-top: 60px;
  text-align: center;
}

@media all and (max-width: 1300px) {
  .main .title h2 {font-size: 42px;}
  .main .banner .swiper-slide .title {padding: 0 100px;}
}
@media all and (max-width: 1024px) {
  .main section {padding: 180px 0;}
  .main .title {margin-bottom: 50px;}
  .main .title h2 {font-size: 36px;}
  .main .intro .inner .left.txt {padding-right: 50px;}
  .main .intro .inner .right.txt {padding-left: 50px;}
  .main .achievement ul li p {font-size: 20px;}
}
@media all and (max-width: 991px) {
  .main .title {margin-bottom: 30px;}
  .main .title h2 {font-size: 30px;}
  .main .title p {font-size: 22px;}
  .main .title .desc {font-size: 18px;}
  .main .banner .swiper-slide .title h2 {font-size: 36px;}
  .main .intro .inner .left.txt {padding-right: 35px;}
  .main .intro .inner .right.txt {padding-left: 35px;}
  .main .business .title {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
    padding: 0;
  }
  .main .business ul {width: 100%;}
}
@media all and (max-width: 767px) {
  .main section {padding: 80px 0;}
  .main .title h2 {font-size: 30px;}
  .main .title p {
    font-size: 17px;
    margin-top: 15px;
  }
  .main .title .desc {
    font-size: 15px;
    margin-top: 20px;
  }
  .main .banner .swiper-slide .bg {background-position: center}
  .main .banner .swiper-slide .title {padding: 0 30px;}
  .main .banner .swiper-slide .title h2 {font-size: 30px;}
  .main .intro .inner > div > div {width: 100%;}
  .main .intro .inner .txt {
    margin-bottom: 40px;
    padding: 0 !important;
  }
  .main .intro .inner .right.txt {
    order: 1;
    margin-top: 80px;
  }
  .main .intro .inner .left.img {order: 2;}
  .main .intro .title {margin-bottom: 0;}
  .main .intro .more-btn {
    text-align: center;
    margin-top: 40px;
    order: 3;
  }
  .main .achievement ul li {
    width: 100%;
    padding: 30px;
    height: auto;
    border-radius: 10px;
    max-width: 320px;
    margin: 0 auto 20px !important;
  }
  .main .achievement ul li:last-child {margin-bottom: 0 !important;}
  .main .achievement ul li .number {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .main .achievement ul li .number span {font-size: 40px;}
  .main .achievement ul li p {font-size: 18px;}
  .main .business .title {margin-bottom: 30px;}
  .main .business .title p {margin: 0 0 10px;}
  .main .business ul li {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  .main .business ul li:last-child {margin: 0 auto;}
  .main .business ul .hover {display: none !important;}
  .main .business ul .txt {
    padding: 20px;
    text-align: center;
  }
  .main .business ul .txt h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .main .notice .notice-list a {
    position: relative;
    background: #000;
    overflow: hidden;
  }
  .main .notice .notice-list .txt {
    width: 100%;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    background: none;
  }
  .main .notice .notice-list .img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.8;
  }
  .main .notice .notice-list .subject {font-size: 20px;}
  .main .notice .notice-list .content {font-size: 12px;}
  .main .notice .notice-list .view {
    font-size: 12px;
    margin-top: 15px;
  }
  .main .notice .notice-list .view img {
    width: 18px;
    margin-left: 5px;
  }
  .main .notice .more-btn {margin-top: 30px;}
  .main .notice .more-btn a {max-width: 200px;}
}
@media all and (max-width: 440px) {
  .main .title p {font-size: 15px;}
  .main .banner .swiper-slide .title {padding: 0 10px;}
  .main .banner .swiper-slide .title h2 {padding: 0 30px;}
}

/*sub*/
.sub section {
  position: relative;
  padding: 180px 0;
}
.sub section:first-child {padding-top: 0;}
.sub section:last-child {padding-bottom: 0;}
.sub h1, .sub h2, .sub h3 {
  line-height: 1.3;
  font-weight: 800;
}
.sub .title {margin-bottom: 60px;}
.sub .title h2 {font-size: 60px;}
.sub .title h2 span {color: #036EB8;}
.sub .title .desc {margin-top: 30px;}
.sub .bar-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}
.sub .bar-title span {
  font-weight: 900;
  color: #036EB8;
}
@media all and (max-width: 1024px) {
  .sub .title h2 {font-size: 50px;}
}
@media all and (max-width: 767px) {
  .sub section {padding: 100px 0;}
  .sub .title {margin-bottom: 40px;}
  .sub .title h2 {font-size: 30px;}
  .sub .title .desc {margin-top: 20px;}
  .sub .bar-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

/*회사소개*/
.sub-about {padding-top: 140px;}
.sub-about .human .top .img {margin-top: 90px;}
.sub-about .human .top img {
  max-width: none;
  width: 100%;
}
.sub-about .human .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-top: 120px;
}
.sub-about .human .bottom h3 {
  font-size: 50px;
  width: 50%;
  padding-right: 50px;
}
.sub-about .human .bottom .desc {
  width: 50%;
  letter-spacing: -0.5px;
}
.sub-about .proven {background: #f1f1f1;}
.sub-about .proven ul {
  display: flex;
  flex-wrap: wrap;
  margin: 150px 0 -90px;
}
.sub-about .proven ul li {
  width: calc((100% - 200px)/2);
  margin-right: 200px;
  margin-bottom: 90px;
  display: flex;
  align-items: start;
}
.sub-about .proven ul li:nth-child(2n) {margin-right: 0;}
.sub-about .proven ul li .ico {width: 50px;}
.sub-about .proven ul li .txt {
  width: calc(100% - 50px);
  padding-left: 50px;
  margin-top: -5px;
}
.sub-about .proven ul li h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
.sub-about .proven ul li h3 b {
  font-weight: 800;
  color: #036EB8;
}
.sub-about .message .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sub-about .message .inner > div {width: calc((100% - 120px)/2)}
.sub-about .message .txt {
  margin-left: 120px;
  padding-left: 20px;
}
.sub-about .message .txt img {
  max-width: 400px;
  width: 100%;
  margin-bottom: 100px;
}
@media all and (max-width: 1260px) {
  .sub-about .proven ul li {
    width: calc((100% - 50px)/2);
    margin-right: 50px;
  }
}
@media all and (max-width: 1024px) {
  .sub-about .human .bottom h3 {font-size: 40px;}
  .sub-about .message .inner > div {width: calc((100% - 50px)/2)}
  .sub-about .message .txt {margin-left: 50px;}
}
@media all and (max-width: 991px) {
  .sub-about .human .bottom h3 {
    width: 100%;
    padding: 0 0 50px;
  }
  .sub-about .human .bottom .desc {width: 100%;}
  .sub-about .proven ul {margin: 100px 0 0;}
  .sub-about .proven ul li {
    width: 100%;
    margin: 0 0 50px;
  }
  .sub-about .proven ul li:last-child {margin-bottom: 0;}
  .sub-about .proven ul li h3 {margin-bottom: 15px;}
  .sub-about .message .inner > div {width: 100%;}
  .sub-about .message .txt {
    margin: 100px 0 0;
    padding: 0;
  }
  .sub-about .message .txt img {margin-bottom: 50px;}
}
@media all and (max-width: 767px) {
  .sub-about {padding-top: 0;}
  .sub-about .title {margin-bottom: 30px;}
  .sub-about .human .top .img {
    margin-top: 40px;
    overflow: hidden;
  }
  .sub-about .human .top .img img {
    width: calc(100% + 150px);
    margin-left: -120px;
  }
  .sub-about .human .bottom {margin-top: 40px;}
  .sub-about .human .bottom h3 {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .sub-about .proven ul {margin-top: 80px;}
  .sub-about .proven ul li {margin-bottom: 30px;}
  .sub-about .proven ul li .ico {width: 28px;}
  .sub-about .proven ul li .txt {
    width: calc(100% - 28px);
    padding-left: 25px;
  }
  .sub-about .proven ul li h3 {
    font-size: 21px;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
  }
  .sub-about .proven ul li .desc {letter-spacing: -1px;}
  .sub-about .message .img {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: end;
    justify-content: center;
  }
  .sub-about .message .txt {margin-top: 60px;}
  .sub-about .message .txt img {
    max-width: 140px;
    margin-bottom: 30px;
  }
}

/*찾아오시는 길*/
.sub-contact .img {
  height: 600px;
  overflow: hidden;
  margin-bottom: 80px;
}
.sub-contact .img .root_daum_roughmap {width: 100% !important;}
.sub-contact .img .root_daum_roughmap .wrap_map {height: 600px !important;}
.sub-contact .txt {
  display: flex;
  flex-wrap: wrap;
}
.sub-contact .txt ul {
  width: calc((100% - 200px)/2);
  margin-right: 200px;
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
}
.sub-contact .txt ul:last-child {margin-right: 0;}
.sub-contact .txt ul li {
  width: 100%;
  margin-bottom: 60px;
}
.sub-contact .txt ul li:last-child {margin-bottom: 0;}
.sub-contact .txt ul li.half {width: 50%;}
.sub-contact .txt ul:first-child .ico img {
  max-width: 25px;
  max-height: 30px;
}
.sub-contact .txt ul:last-child .ico img {
  max-width: 40px;
  max-height: 40px;
}
.sub-contact .txt h3 {
  margin: 10px 0 5px;
  font-weight: 800;
}
.sub-contact .txt h3 b {
  width: 60px;
  display: inline-block;
  vertical-align: middle;
}
.sub-contact .txt h3 span {
  font-size: 18px;
  color: #fff;
  width: 75px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  background: #66BE45;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.sub-contact .txt .desc {letter-spacing: -0.5px}
@media all and (max-width: 1024px) {
  .sub-contact .txt ul {
    width: calc((100% - 50px)/2);
    margin-right: 50px;
  }
  .sub-contact .txt ul li.half {width: 100%;}
}
@media all and (max-width: 767px) {
  .sub-contact .img {height: 280px;}
  .sub-contact .img .root_daum_roughmap .wrap_map {height: 280px !important;}
  .sub-contact .txt ul {
    width: 100%;
    margin: 0;
  }
  .sub-contact .txt ul li {margin-bottom: 20px;}
  .sub-contact .txt ul li.half {width: 50%;}
  .sub-contact .txt ul:first-child .ico img {
    max-width: 20px;
    max-height: 20px;
  }
  .sub-contact .txt ul:last-child .ico img {
    max-width: 25px;
    max-height: 25px;
  }
  .sub-contact .txt h3 {font-size: 15px;}
  .sub-contact .txt h3 b {width: auto;}
  .sub-contact .txt h3 span {
    font-size: 13px;
    width: 45px;
    height: 24px;
    line-height: 24px;
  }
}

/*실리콘 소재*/
.sub-material {padding-top: 140px;}
.sub-material .about .top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
}
.sub-material .about .top ul li {
  position: relative;
  width: 264px;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  margin: 0 -25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.sub-material .about .top ul li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #036EB8;
  mix-blend-mode: multiply;
  z-index: 0;
}
.sub-material .about .top ul li .inner {
  position: relative;
  z-index: 1;
}
.sub-material .about .top ul li p {font-size: 20px;}
.sub-material .about .top ul li h3 {
  font-size: 30px;
  margin-top: 5px;
}
.sub-material .about .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-top: 160px;
}
.sub-material .about .bottom h3 {
  font-size: 50px;
  width: 42%;
  padding-right: 50px;
}
.sub-material .about .bottom .desc {
  width: 58%;
  letter-spacing: -0.5px;
}
.sub-material .core {background: #f1f1f1;}
.sub-material .core .title {text-align: center;}
.sub-material .core ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-material .core ul li {
  width: calc((100% - 6px)/2);
  margin-right: 6px;
  margin-bottom: 6px;
  display: flex;
  align-items: start;
  background: #fff;
  padding: 50px 80px 40px;
  min-height: 280px;
}
.sub-material .core ul li:nth-child(2n) {margin-right: 0;}
.sub-material .core ul li .number {
  font-size: 30px;
  color: #fff;
  background: #036EB8;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-weight: 800;
}
.sub-material .core ul li .txt {
  width: calc(100% - 38px);
  padding-left: 20px;
}
.sub-material .core ul li h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}
.sub-material .usage {text-align: center;}
.sub-material .usage ul {
  display: flex;
  flex-wrap: wrap;
  margin: 120px 0 -50px;
}
.sub-material .usage ul li {
  width: calc((100% - 14px)/3);
  margin-right: 7px;
  margin-bottom: 50px;
}
.sub-material .usage ul li:nth-child(3n) {margin-right: 0;}
.sub-material .usage ul li img {
  max-width: none;
  width: 100%;
}
.sub-material .usage ul li h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: #454545;
  height: 100px;
  line-height: 100px;
}
@media all and (max-width: 1024px) {
  .sub-material .about .bottom h3 {font-size: 40px;}
  .sub-material .core ul li {padding: 40px;}
  .sub-material .usage ul li h3 {font-size: 25px;}
}
@media all and (max-width: 991px) {
  .sub-material .about .bottom h3 {
    width: 100%;
    padding: 0 0 50px;
  }
  .sub-material .about .bottom .desc {width: 100%;}
  .sub-material .core ul {margin-bottom: 0;}
  .sub-material .core ul li {
    width: 100%;
    margin: 0 0 10px;
    min-height: auto;
  }
  .sub-material .core ul li:last-child {margin-bottom: 0;}
}
@media all and (max-width: 767px) {
  .sub-material {padding-top: 0;}
  .sub-material .about .title {margin-bottom: 30px;}
  .sub-material .about .top ul {margin-top: 80px;}
  .sub-material .about .top ul li {
    width: 28%;
    margin: 0 -10px;
  }
  .sub-material .about .top ul li p {font-size: 10px;}
  .sub-material .about .top ul li h3 {font-size: 12px;}
  .sub-material .about .bottom {margin-top: 120px;}
  .sub-material .about .bottom h3 {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .sub-material .core ul li {padding: 20px;}
  .sub-material .core ul li .number {
    width: 24px;
    height: 24px;
    line-height: 26px;
    font-size: 17px;
  }
  .sub-material .core ul li .txt {
    width: calc(100% - 24px);
    padding-left: 15px;
  }
  .sub-material .core ul li h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .sub-material .usage .desc {text-align: left;}
  .sub-material .usage ul {margin-top: 60px;}
  .sub-material .usage ul li {
    width: calc((100% - 6px) / 3);
    margin-right: 3px;
    margin-bottom: 20px;
  }
  .sub-material .usage ul li h3 {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
}

/*연구개발*/
.sub-rnd .process {margin-top: 180px;}
.sub-rnd .process ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 180px;
}
.sub-rnd .process ul.visible-m {display: none;}
.sub-rnd .process ul:last-child {margin-bottom: 0;}
.sub-rnd .process ul li {
  position: relative;
  width: calc((100% - 180px)/4);
  margin-right: 60px;
  text-align: center;
}
.sub-rnd .process ul li:last-child {margin-right: 0;}
.sub-rnd .process ul li::after {
  content: "";
  background: url(/img/assets/arrow.svg) center / cover no-repeat;
  width: 28px;
  height: 25px;
  display: block;
  position: absolute;
  top: 25px;
  right: -44px;
}
.sub-rnd .process ul li:last-child::after {
  top: auto;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.sub-rnd .process ul:nth-last-child(2) li:last-child::after {content: none;}
.sub-rnd .process ul li p {
  font-size: 20px;
  font-weight: 700;
  word-break: keep-all;
}
.sub-rnd .process ul li h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0 30px;
}
.sub-rnd .process ul li img {
  max-width: 90px;
  max-height: 90px;
  display: inline-block;
}
.sub-rnd .process ul li .desc {margin-top: 30px;}
.sub-rnd .process ul:nth-child(2) li:first-child {
  order: 4;
  margin-right: 0;
}
.sub-rnd .process ul:nth-child(2) li:nth-child(2) {order: 3;}
.sub-rnd .process ul:nth-child(2) li:nth-child(3) {order: 2;}
.sub-rnd .process ul:nth-child(2) li:last-child {
  order: 1;
  margin-right: 60px;
}
.sub-rnd .process ul:nth-child(2) li::after {
  right: auto;
  left: -44px;
  transform: rotate(180deg);
}
.sub-rnd .process ul:nth-child(2) li:last-child::after {
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.sub-rnd .process ul:last-child li:last-child::after {content: none;}
@media all and (max-width: 1260px) {
  .sub-rnd .process ul li p {font-size: 16px;}
  .sub-rnd .process ul li h3 {font-size: 24px;}
}
@media all and (max-width: 991px) {
  .sub-rnd .process ul {margin-bottom: 80px;}
  .sub-rnd .process ul li p {display: none;}
  .sub-rnd .process ul li h3 {margin: 0 0 20px;}
  .sub-rnd .process ul li:last-child::after {bottom: -50px;}
}
@media all and (max-width: 767px) {
  .sub-rnd .process {margin-top: 80px;}
  .sub-rnd .process ul.hidden-m {display: none;}
  .sub-rnd .process ul.visible-m {display: flex;}
  .sub-rnd .process ul {margin-bottom: -40px;}
  .sub-rnd .process ul li {
    width: calc((100% - 80px)/3);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .sub-rnd .process ul li::after {
    width: 18px;
    height: auto;
    aspect-ratio: 28 / 25;
    right: -29px;
    top: 60px;
  }
  .sub-rnd .process ul li:nth-child(3n) {margin-right: 0;}
  .sub-rnd .process ul li:nth-child(3n)::after {content: none;}
  .sub-rnd .process ul li h3 {
    font-size: 15px;
    margin-bottom: 10px;
    height: 39px;
  }
  .sub-rnd .process ul li:first-child h3,
  .sub-rnd .process ul li:nth-child(2) h3,
  .sub-rnd .process ul li:nth-child(3) h3,
  .sub-rnd .process ul li:last-child h3 {height: auto;}
  .sub-rnd .process ul li .desc {
    margin-top: 12px;
    font-size: 12px;
  }
  .sub-rnd .process ul li .img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  .sub-rnd .process ul li img {
    max-width: 100%;
    max-height: 100%;
  }
}

/*보유기술*/
.sub-technology .box {margin-top: 180px;}
.sub-technology .box > div {margin-bottom: 120px;}
.sub-technology .box > div:last-child {margin-bottom: 0;}
.sub-technology ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-technology ul li {
  width: calc((100% - 24px)/4);
  margin-right: 8px;
  text-align: center;
  background: #f1f1f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 0 10px;
}
.sub-technology ul li p {
  font-size: 20px;
  color: #036EB8;
  font-weight: 700;
  word-break: keep-all;
}
.sub-technology ul li b {
  font-size: 25px;
  display: block;
  margin-top: 5px;
  word-break: keep-all;
}
.sub-technology ul li img {
  width: 40px;
  margin-bottom: 15px;
}
.sub-technology ul li:last-child {
  margin-right: 0;
  background: #036EB8;
  color: #fff;
}
.sub-technology ul li:last-child p {color: #fff;}
@media all and (max-width: 1300px) {
  .sub-technology ul li p {font-size: 17px;}
}
@media all and (max-width: 1024px) {
  .sub-technology ul li {min-height: 220px;}
  .sub-technology ul li b {font-size: 22px;}
}
@media all and (max-width: 767px) {
  .sub-technology .box {margin-top: 60px;}
  .sub-technology .box > div {margin-bottom: 60px;}
  .sub-technology ul li {
    width: calc((100% - 6px)/2);
    margin-right: 6px;
    margin-bottom: 6px;
    min-height: 120px;
    border-radius: 5px;
    padding: 0;
  }
  .sub-technology ul li:nth-child(2n) {margin-right: 0;}
  .sub-technology ul li p {font-size: 12px;}
  .sub-technology ul li b {font-size: 15px;}
  .sub-technology ul li img {
    width: 28px;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 380px) {
  .sub-technology ul li {
    padding: 0 10px;
    min-height: 140px;
  }
}

/*설비현황*/
.sub-facilities .top ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -150px;
}
.sub-facilities .top ul li {
  width: calc((100% - 20px)/3);
  margin-right: 10px;
  margin-bottom: 150px;
  text-align: center;
  border: 1px solid #9E9E9E;
  padding: 80px 40px 50px;
}
.sub-facilities .top ul li:nth-child(3n) {margin-right: 0;}
.sub-facilities .top ul li .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  overflow: hidden;
}
.sub-facilities .top ul li .img img {
  max-width: 100%;
  max-height: 100%;
}
.sub-facilities .top ul li h3 {
  font-size: 30px;
  font-weight: 700;
  color: #036EB8;
  margin: 50px 0 20px;
}
.sub-facilities .bottom {margin-top: 240px;}
.sub-facilities .bottom ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-facilities .bottom ul li {
  width: calc((100% - 30px)/4);
  margin-right: 10px;
  background: #F1F1F1;
  border-radius: 90px;
  font-size: 25px;
  font-weight: 700;
  line-height: 90px;
  text-align: center;
}
.sub-facilities .bottom ul li:last-child {margin-right: 0;}
@media all and (max-width: 1024px) {
  .sub-facilities .top ul li {padding: 50px 30px;}
  .sub-facilities .top ul li h3 {
    font-size: 24px;
    margin: 20px 0;
  }
}
@media all and (max-width: 991px) {
  .sub-facilities .top ul {margin-bottom: -15px;}
  .sub-facilities .top ul li {
    width: calc((100% - 5px)/2);
    margin-right: 5px;
    margin-bottom: 15px;
  }
  .sub-facilities .top ul li:nth-child(3n) {margin-right: 5px;}
  .sub-facilities .top ul li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 767px) {
  .sub-facilities .top ul li {padding: 40px 10px 30px;}
  .sub-facilities .top ul li .img {
    height: 150px;
    padding: 0 10px;
  }
  .sub-facilities .top ul li h3 {
    font-size: 15px;
    margin: 30px 0 10px;
  }
  .sub-facilities .top ul li .desc {font-size: 12px;}
  .sub-facilities .bottom {margin-top: 60px;}
  .sub-facilities .bottom ul {margin-top: 30px;}
  .sub-facilities .bottom ul li {
    width: calc((100% - 15px) / 4);
    margin-right: 5px;
    font-size: 14px;
    line-height: 30px;
  }
}

/*PRODUCT*/
.sub-product .title {margin-bottom: 120px;}
.sub-product section {padding: 220px 0;}
.sub-product .intro .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  aspect-ratio: 1259 / 559;
  display: flex;
  justify-content: right;
  align-items: center;
}
.sub-product .intro .img .txt {width: 42%;}
.sub-product .intro .img .txt h3 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 50px;
}
.sub-product .intro .img .txt p {font-size: 30px;}
.sub-product .img-wrap li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
}
.sub-product .img-wrap li > div {width: 50%;}
.sub-product .img-wrap li .title {margin-bottom: 100px;}
.sub-product .img-wrap li:first-child .txt {padding-right: 10px;}
.sub-product .img-wrap li:last-child .txt {
  order: 2;
  padding-left: 90px;
}
.sub-product .img-wrap li:last-child .img {order: 1;}
.sub-product .box-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}
.sub-product .box-wrap li {
  width: calc((100% - 25px)/2);
  margin-right: 25px;
  margin-bottom: 30px;
  background: #F1F1F1;
  border-radius: 50px;
  padding: 60px 50px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  position: relative;
}
.sub-product .box-wrap li:nth-child(2n) {margin-right: 0;}
.sub-product .box-wrap li .txt {
  width: calc(100% - 120px);
  padding-right: 30px;
  font-weight: 700;
}
.sub-product .box-wrap li .txt h3 {
  font-size: 40px;
  font-weight: 800;
  color: #036EB8;
  margin-bottom: 50px;
}
.sub-product .box-wrap li .txt p {
  font-size: 25px;
  margin-bottom: 40px;
}
.sub-product .box-wrap li .txt .desc {color: #036EB8;}
.sub-product .box-wrap li .txt h3 + .desc {
  color: #000;
  font-weight: 400;
  letter-spacing: -1px;
}
.sub-product .box-wrap li .img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
}
.sub-product .gray-box {
  background: #F1F1F1;
  padding: 220px 0 !important;
}
.sub-product .gray-box .txt {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 70px;
}
.sub-product .gray-box .txt .title {
  margin: 0;
  width: 55%;
  padding-right: 50px;
}
.sub-product .gray-box .txt .desc {
  width: 45%;
  display: flex;
  justify-content: end;
}
@media all and (max-width: 1260px) {
  .sub-product .img-wrap li .title {margin-bottom: 50px;}
}
@media all and (max-width: 1024px) {
  .sub-product .intro .img .txt {width: 48%;}
  .sub-product .intro .img .txt h3 {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .sub-product .intro .img .txt p {font-size: 24px;}
  .sub-product .box-wrap li {padding: 40px;}
  .sub-product .box-wrap li .txt {width: calc(100% - 80px);}
  .sub-product .box-wrap li .img {
    width: 80px;
    height: 80px;
  }
  .sub-product .img-wrap li:last-child .txt {padding-left: 40px;}
  .sub-product .gray-box .txt .title {
    width: 100%;
    padding: 0 0 50px;
  }
  .sub-product .gray-box .txt .desc {width: 100%;}
}
@media all and (max-width: 991px) {
  .sub-product .intro .img .txt h3 {font-size: 40px;}
  .sub-product .intro .img .txt p {font-size: 20px;}
  .sub-product .box-wrap li .txt p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .sub-product .img-wrap li > div {width: 100%;}
  .sub-product .img-wrap li .txt {margin-bottom: 80px;}
  .sub-product .img-wrap li .img img {
    max-width: none;
    width: 100%;
  }
  .sub-product .img-wrap li:last-child .txt {
    order: 1;
    padding: 0;
  }
  .sub-product .img-wrap li:last-child .img {order: 2;}
}
@media all and (max-width: 767px) {
  .sub-product section {padding: 100px 0;}
  .sub-product .title {margin-bottom: 40px;}
  .sub-product .intro .img {
    overflow: hidden;
    aspect-ratio: 410 / 214;
  }
  .sub-product .intro .img .txt h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sub-product .intro .img .txt p {font-size: 12px;}
  .sub-product .box-wrap {margin-bottom: -10px;}
  .sub-product .box-wrap li {
    width: calc((100% - 8px)/2);
    margin-right: 8px;
    margin-bottom: 10px;
    border-radius: 15px;
    padding: 25px 15px;
  }
  .sub-product .box-wrap li .txt {
    width: calc(100% - 38px);
    padding-right: 10px;
  }
  .sub-product .box-wrap li .txt p {
    font-size: 13px;
    margin-bottom: 20px;
    word-break: keep-all;
  }
  .sub-product .box-wrap li .txt .desc {font-size: 12px;}
  .sub-product .box-wrap li .img {
    width: 38px;
    height: 38px;
  }
  .sub-product .img-wrap li {margin-bottom: 80px;}
  .sub-product .img-wrap li .txt {margin-bottom: 50px;}
  .sub-product .img-wrap li .title {margin-bottom: 30px;}
  .sub-product .gray-box {padding: 100px 0 !important;}
  .sub-product .gray-box .txt {margin-bottom: 50px;}
  .sub-product .gray-box .txt .title {padding-bottom: 30px;}
}

/*주방용품*/
.sub-kitchen section {padding-top: 0;}
.sub-kitchen .intro .img {background-image: url(/img/assets/product_kitchen_img_1.jpg)}
.sub-kitchen .research {text-align: center;}
.sub-kitchen .research ul {margin-top: 240px;}
@media all and (max-width: 767px) {
  .sub-kitchen .research ul {margin-top: 100px;}
}

/*유아용품*/
.sub-baby .intro .img {background-image: url(/img/assets/product_baby_img_1.jpg)}

/*의료용품*/
.sub-medical .intro .img {background-image: url(/img/assets/product_medical_img_1.jpg)}
.sub-medical .intro .img .txt {width: 45%;}
.sub-medical .usage ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-medical .usage ul li {
  width: calc((100% - 30px)/4);
  margin-right: 10px;
  text-align: center;
  background: #036EB8;
  padding: 80px 30px;
}
.sub-medical .usage ul li:last-child {margin-right: 0;}
.sub-medical .usage ul li .ico {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-medical .usage ul li .ico img {max-height: 100%;}
.sub-medical .usage ul li p {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  word-break: keep-all;
}
@media all and (max-width: 991px) {
  .sub-medical .usage ul li {padding: 50px 15px;}
}
@media all and (max-width: 767px) {
  .sub-medical .intro .img .txt {width: 54%;}
  .sub-medical .usage ul li {
    width: calc((100% - 9px)/4);
    margin-right: 3px;
    padding: 25px 4px 20px;
  }
  .sub-medical .usage ul li .ico {height: 30px;}
  .sub-medical .usage ul li p {
    font-size: 12px;
    margin-top: 15px;
  }
}

/*산업용품*/
.sub-industrial .intro .img {
  background-image: url(/img/assets/product_industrial_img_1.jpg);
  color: #fff;
}
.sub-industrial .intro .img .txt {width: 50%;}
.sub-industrial .usage {padding: 0;}
.sub-industrial .usage .bottom {padding-top: 220px;}
.sub-industrial .usage .bottom ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.sub-industrial .usage .bottom ul li:last-child {margin-bottom: 0;}
.sub-industrial .usage .bottom ul li .img {width: 400px;}
.sub-industrial .usage .bottom ul li .txt {
  width: calc(100% - 400px);
  padding-left: 120px;
}
.sub-industrial .usage .bottom ul li .txt h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
}
@media all and (max-width: 1024px) {
  .sub-industrial .usage .bottom ul li .img {width: 350px;}
  .sub-industrial .usage .bottom ul li .txt {
    width: calc(100% - 350px);
    padding-left: 50px;
  }
}
@media all and (max-width: 767px) {
  .sub-industrial .usage .bottom {padding-top: 100px;}
  .sub-industrial .usage .bottom ul li {margin-bottom: 25px;}
  .sub-industrial .usage .bottom ul li .img {width: 165px;}
  .sub-industrial .usage .bottom ul li .txt {
    width: calc(100% - 165px);
    padding-left: 20px;
  }
  .sub-industrial .usage .bottom ul li .txt h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sub-industrial .usage .bottom ul li .txt .desc {font-size: 12px;}
}

/*생활용품*/
.sub-living .intro .img {
  background-image: url(/img/assets/product_living_img_1.jpg);
  color: #fff;
}
.sub-living .features {padding-top: 0;}
.sub-living .features .box-wrap li {min-height: 320px;}
.sub-living .features .box-wrap li .txt {width: 100%;}
.sub-living .features .box-wrap li .img {
  position: absolute;
  top: 60px;
  right: 60px;
  width: auto;
  height: auto;
  border-radius: 0;
}
@media all and (max-width: 1024px) {
  .sub-living .features .box-wrap li .img {
    top: 40px;
    right: 40px;
  }
}
@media all and (max-width: 767px) {
  .sub-living .features .box-wrap li {
    width: 100%;
    min-height: auto;
    margin-right: 0;
  }
  .sub-product .box-wrap li .txt h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .sub-living .features .box-wrap li .img {
    top: 20px;
    right: 15px;
    width: 34px;
  }
}

/*생활용품*/
.sub-pet .intro .img {background-image: url(/img/assets/product_pet_img_1.jpg);}