@charset "utf-8";

h1, h2, h3, h4, h5, h6, h6, p, div {word-break: keep-all;}
img {max-width: 100%;}
.desc {
  font-size: 18px;
  line-height: 1.5;
  word-break: keep-all;
}
.black {color: #111;}
.white {color: #fff;}
.blue {color: #0096ff;}
.default-btn {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  padding: 0 20px;
}
.default-btn.white {background: #fff;}
.default-btn.blue {background: #0096ff;}
.admin-btn {
  position: relative;
  z-index: 10;
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  color: #ef2727;
  display: inline-block;
}
.list-wrap li {
  margin-bottom: 6px;
  display: flex;
  align-items: start;
}
.list-wrap li::before {
  content: "";
  background: #79b700;
  width: 5px;
  height: 5px;
  display: block;
  margin-top: 10px;
}
.list-wrap li p {
  width: calc(100% - 5px);
  padding-left: 10px;
  font-size: 18px;
}
@media all and (max-width: 767px) {
  .desc {font-size: 15px;}
  .default-btn {
    width: 140px;
    height: 42px;
    padding: 0 15px;
    font-size: 15px;
  }
  .list-wrap li::before {margin-top: 7px;}
  .list-wrap li p {font-size: 15px;}
}

/*main*/
.main {
  height: 100vh;
  overflow: hidden;
}
.main .main-slider {height: 100%;}
.main .swiper-slide {overflow: hidden;}
.main .swiper-slide .bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  transform: scale(1.15);
  transition: transform 0.3s ease;
  display: block;
}
.main .swiper-slide-active .bg.animate {animation: banner 3s ease forwards;}
.main .swiper-slide .txt {
  position: absolute;
  left: 150px;
  bottom: 180px;
  z-index: 1;
}
.main .swiper-slide .txt h3 {
  font-size: 30px;
  color: #0096ff;
  margin-bottom: 30px;
}
.main .swiper-slide .txt h2 {font-size: 60px;}
.main .swiper-slide .txt p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 50px;
}
.main .swiper-slide .txt h2,
.main .swiper-slide .txt p {
  opacity: 0;
  transform: translateY(50px);
}
.main .swiper-slide-active .txt.animate h3 {animation: fadeUp 0.8s ease-out forwards;}
.main .swiper-slide-active .txt.animate h2 {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.main .swiper-slide-active .txt.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 .admin-btn {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 1;
}
@media all and (max-width: 1200px) {
  .main .swiper-slide .txt {left: 80px;}
}
@media all and (max-width: 1024px) {
  .main .swiper-slide .txt {
    bottom: 50%;
    transform: translateY(50%);
    padding-right: 100px;
  }
  .main .swiper-slide .txt h3 {font-size: 24px;}
  .main .swiper-slide .txt h2 {font-size: 50px;}
  .main .swiper-slide .txt p {font-size: 20px;}
}
@media all and (max-width: 767px) {
  .main .swiper-slide .txt {
    left: 20px;
    padding-right: 30px;
  }
  .main .swiper-slide .txt h3 {font-size: 18px;}
  .main .swiper-slide .txt h2 {font-size: 36px;}
  .main .swiper-slide .txt p {font-size: 15px;}
}

/*sub*/
.sub {overflow: hidden}
.sub section {
  position: relative;
  padding-bottom: 150px;
}
.sub section:last-child {padding-bottom: 0;}
.sub .title {margin-bottom: 60px;}
.sub .title h4 {font-size: 36px;}
.sub .tab-wrap {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sub .tab-menu {
  display: flex;
  padding: 20px 0;
  max-width: 1300px;
  margin: 0 auto;
}
.sub .tab-menu li {flex: 1;}
.sub .tab-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  border-right: 1px solid #ddd;
  height: 100%;
}
.sub .tab-menu li:first-child a {border-left: 1px solid #ddd;}
.sub .tab-menu li.active a {color: #0096ff;}
@media all and (max-width: 767px) {
  .sub section {padding-bottom: 80px;}
  .sub .title {margin-bottom: 30px;}
  .sub .title h4 {font-size: 24px;}
  .sub .tab-menu {padding: 10px 0;}
  .sub .tab-menu li a {
    font-size: 15px;
    padding: 0 10px;
  }
}

/*회사개요*/
.sub-overview .greeting {
  background: #f5f5fb;
  padding: 0;
}
.sub-overview .greeting .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sub-overview .greeting .txt,
.sub-overview .greeting .img {width: calc((100% - 100px)/2);}
.sub-overview .greeting .txt {margin-right: 100px;}
.sub-overview .greeting .img {
  margin-top: -50px;
  padding-bottom: 50px;
}
.sub-overview .greeting .sign {margin-top: 50px;}
.sub-overview .greeting .sign b {
  font-size: 24px;
  font-weight: 600;
  margin-left: 8px;
}
.sub-overview .intro {padding-top: 150px;}
.sub-overview .intro .top ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-overview .intro .top ul li {
  width: calc((100% - 90px)/4);
  margin-right: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 40px;
}
.sub-overview .intro .top ul li:last-child {margin-right: 0;}
.sub-overview .intro .top ul li p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 60px;
}
.sub-overview .intro .top .arrow {
  display: block;
  margin: 20px auto;
}
.sub-overview .intro .top strong {
  text-align: center;
  font-size: 30px;
  display: block;
}
.sub-overview .intro .bottom {
  background: url(/img/assets/overview_intro_img.jpg) center / cover no-repeat;
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: end;
  margin-top: 80px;
}
.sub-overview .intro .bottom .logo {
  position: absolute;
  top: 50px;
  left: 50px;
}
.sub-overview .intro .bottom .logo {width: 220px;}
.sub-overview .intro .bottom .box {
  width: 50%;
  background: #fff;
  padding: 50px;
}
.sub-overview .intro .bottom .box table {
  border-top: 1px solid #000;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  width: 100%;
  border-collapse: collapse;
}
.sub-overview .intro .bottom .box table th {
  padding: 15px 10px;
  vertical-align: top;
  text-align: left;
}
.sub-overview .intro .bottom .box table td {
  padding: 15px 10px;
  color: #707174;
  vertical-align: top;
}
.sub-overview .intro .bottom .box table tr:first-child th,
.sub-overview .intro .bottom .box table tr:first-child td {padding-top: 40px;}
.sub-overview .intro .bottom .box table tr:last-child th,
.sub-overview .intro .bottom .box table tr:last-child td {padding-bottom: 40px;}
.sub-overview .revenue ul {
  display: flex;
  flex-wrap: wrap;
}
.sub-overview .revenue ul li {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  text-align: center;
  background: #f5f5fb;
  border-radius: 10px;
  padding: 0 30px 30px;
}
.sub-overview .revenue ul li:last-child {margin-right: 0;}
.sub-overview .revenue ul li .year {
  font-size: 30px;
  font-weight: bold;
  background: #0096ff;
  display: inline-block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  color: #fff;
  margin-top: -25px;
}
.sub-overview .revenue ul li p {
  font-size: 18px;
  margin: 20px 0 40px;
}
.sub-overview .revenue .note {
  font-size: 16px;
  color: #666;
  text-align: right;
  margin-top: 20px;
}
.sub-overview .organization .content {text-align: center;}
.sub-overview .organization .circle-div {
  width: 160px;
  height: 160px;
  border-radius: 160px;
  padding: 10px;
  background: url(/img/assets/overview_organization_img.jpg) center / cover no-repeat;
  margin: 0 auto 100px;
  position: relative;
}
.sub-overview .organization .circle-div::before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 50px;
  position: absolute;
  left: calc(50% - 1px);
  bottom: -50px;
  display: block;
}
.sub-overview .organization .circle-div::after {
  content: "";
  background: #ddd;
  width: 700px;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  display: block;
}
.sub-overview .organization .circle-div .inner {
  border: 1px solid rgba(255,255,255,0.3);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.sub-overview .organization .line-2 {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.sub-overview .organization .line-2 > div {
  width: calc((100% - 100px)/3);
  margin-right: 50px;
  position: relative;
}
.sub-overview .organization .line-2 > div:last-child {margin-right: 0;}
.sub-overview .organization .line-2 > div::before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: -50px;
  display: block;
}
.sub-overview .organization .line-2-box {
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  position: relative;
  border: 1px solid #79b700;
  color: #79b700;
}
.sub-overview .organization .line-2 > div:last-child .line-2-box {margin-bottom: 100px;}
.sub-overview .organization .line-2 > div:last-child .line-2-box::before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 50px;
  position: absolute;
  left: 50%;
  bottom: -50px;
  display: block;
}
.sub-overview .organization .line-2 > div:last-child .line-2-box::after {
  content: "";
  background: #ddd;
  width: 360px;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  display: block;
}
.sub-overview .organization .line-3 {
  display: flex;
  position: relative;
  margin: 0 -110px;
}
.sub-overview .organization .line-3 > div {
  width: calc((100% - 40px)/3);
  margin-right: 20px;
  position: relative;
}
.sub-overview .organization .line-3 > div:last-child {margin-right: 0;}
.sub-overview .organization .line-3 > div::before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: -50px;
  display: block;
}
.sub-overview .organization .line-3-box {
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  position: relative;
  background: #e9e9f1;
  color: #666;
}
.sub-overview .csr {padding-bottom: 150px !important;}
.sub-overview .csr::before {
  content: "";
  background: #f5f5fb;
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sub-overview .csr .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-overview .csr .slider-controls {
  display: flex;
  align-items: center;
}
.sub-overview .csr .slider-controls > div {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #eeeff3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sub-overview .csr .slider-controls .prev-btn img {opacity: 0.3;}
.sub-overview .csr .slider-controls .next-btn {
  background: #0096ff;
  margin-left: 20px;
}
.sub-overview .csr .swiper-slider {
  position: relative;
  z-index: 1;
}
.sub-overview .csr .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 413 / 300;
}
@media all and (max-width: 1300px) {
  .sub-overview .greeting {padding: 100px 0;}
  .sub-overview .greeting .img {
    margin: 0;
    padding: 0;
  }
  .sub-overview .intro .top ul li {padding: 30px;}
}
@media all and (max-width: 1024px) {
  .sub-overview .organization .circle-div::after {width: 61.5vw;}
  .sub-overview .organization .line-2 > div:last-child .line-2-box::after {width: 25.7vw;}
  .sub-overview .organization .line-3 {margin: 0 -50px;}
}
@media all and (max-width: 991px) {
  .sub-overview .greeting .txt, .sub-overview .greeting .img {width: 100%;}
  .sub-overview .greeting .txt {margin: 0 0 70px;}
  .sub-overview .intro .top ul {margin-bottom: -30px;}
  .sub-overview .intro .top ul li {
    width: calc((100% - 30px)/2);
    margin-bottom: 30px;
  }
  .sub-overview .intro .top ul li:nth-child(2n) {margin-right: 0;}
  .sub-overview .intro .bottom {display: block;}
  .sub-overview .intro .bottom .logo {position: static;}
  .sub-overview .intro .bottom .box {
    margin-top: 50px;
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .sub-overview .greeting {padding: 50px 0;}
  .sub-overview .greeting .txt {margin-bottom: 40px;}
  .sub-overview .greeting .sign {margin-top: 30px;}
  .sub-overview .greeting .sign b {font-size: 18px;}
  .sub-overview .intro {padding-top: 80px;}
  .sub-overview .intro .top ul {margin-bottom: -10px;}
  .sub-overview .intro .top ul li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 20px;
  }
  .sub-overview .intro .top ul li img {width: 24px;}
  .sub-overview .intro .top ul li p {
    margin-top: 20px;
    font-size: 15px;
  }
  .sub-overview .intro .top .arrow {
    margin: 15px auto;
    max-width: 180px;
  }
  .sub-overview .intro .top strong {font-size: 24px;}
  .sub-overview .intro .bottom {
    margin-top: 40px;
    padding: 30px;
  }
  .sub-overview .intro .bottom .logo {width: 150px;}
  .sub-overview .intro .bottom .box {
    padding: 20px;
    margin-top: 40px;
  }
  .sub-overview .intro .bottom .box table {font-size: 15px;}
  .sub-overview .intro .bottom .box table th,
  .sub-overview .intro .bottom .box table td {padding: 10px;}
  .sub-overview .intro .bottom .box table tr:first-child th,
  .sub-overview .intro .bottom .box table tr:first-child td {padding-top: 20px;}
  .sub-overview .intro .bottom .box table tr:last-child th,
  .sub-overview .intro .bottom .box table tr:last-child td {padding-bottom: 20px;}
  .sub-overview .revenue ul li {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 20px 20px;
  }
  .sub-overview .revenue ul li:last-child {margin: 0;}
  .sub-overview .revenue ul li .year {
    width: 120px;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
    margin-top: -18px;
  }
  .sub-overview .revenue .note {
    font-size: 14px;
    margin-top: 12px;
  }
  .sub-overview .organization .circle-div {
    width: 120px;
    height: 120px;
    padding: 6px;
    margin-bottom: 30px;
  }
  .sub-overview .organization .circle-div::before {
    height: 30px;
    bottom: -30px;
  }
  .sub-overview .organization .circle-div::after {content: none;}
  .sub-overview .organization .circle-div .inner {font-size: 18px;}
  .sub-overview .organization .line-2 {display: block;}
  .sub-overview .organization .line-2 > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .sub-overview .organization .line-2 > div::before {content: none;}
  .sub-overview .organization .line-2-box,
  .sub-overview .organization .line-3-box {
    font-size: 15px;
    height: 45px;
    line-height: 45px;
  }
  .sub-overview .organization .line-2 > div:last-child .line-2-box {margin-bottom: 60px;}
  .sub-overview .organization .line-2 > div:last-child .line-2-box::before {
    bottom: -30px;
    height: 30px;
  }
  .sub-overview .organization .line-2 > div:last-child .line-2-box::after {
    width: calc(100% - ((100% - 20px)/3));
    bottom: -30px;
  }
  .sub-overview .organization .line-3 {margin: 0;}
  .sub-overview .organization .line-3 > div {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
  }
  .sub-overview .organization .line-3 > div::before {
    height: 30px;
    top: -30px;
  }
  .sub-overview .csr {padding-bottom: 80px !important;}
  .sub-overview .csr::before {height: 150px;}
}

/*연혁*/
.sub-history .history-wrap {position: relative;}
.sub-history .history-wrap .line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: #d6d8df;
  top: 0;
  left: calc(30% - 1px)
}
.sub-history .history-wrap .line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: #0096ff;
}
.sub-history .history-list > div {
  display: flex;
  align-items: start;
}
.sub-history .history-list > div:first-child {padding-top: 80px;}
.sub-history .history-list .year {
  position: relative;
  width: 30%;
  padding-right: 12%;
  font-size: 70px;
  font-weight: bold;
  color: #888;
  font-style: italic;
  line-height: 1;
  word-break: break-word;
}
.sub-history .history-list .year::before {
  content: "";
  background: #0096ff;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  opacity: 0.2;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -11px;
}
.sub-history .history-list .year::after {
  content: "";
  background: #0096ff;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
}
.sub-history .history-list .detail {
  width: 70%;
  padding-left: 150px;
}
.sub-history .history-list .detail li {
  display: flex;
  align-items: start;
  padding-bottom: 25px;
  font-size: 20px;
}
.sub-history .history-list .detail li:last-child {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #ddd;
}
.sub-history .history-list > div:last-child .detail li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.sub-history .history-list .detail .month {
  font-weight: bold;
}
.sub-history .history-list .detail .content {
  padding-left: 30px;
}
@media all and (max-width: 1300px) {
  .sub-history .history-list .year {padding-right: 10%;}
}
@media all and (max-width: 1024px) {
  .sub-history .history-list .year {
    font-size: 50px;
    padding-right: 12%;
  }
  .sub-history .history-list .detail {padding-left: 100px;}
}
@media all and (max-width: 991px) {
  .sub-history .history-list .year {padding-right: 5%;}
}
@media all and (max-width: 767px) {
  .sub-history .history-list > div:first-child {padding-top: 50px;}
  .sub-history .history-list .year {
    font-size: 24px;
    padding-right: 9%;
  }
  .sub-history .history-list .detail {padding-left: 30px;}
  .sub-history .history-list .detail li {
    padding-bottom: 15px;
    font-size: 15px;
  }
  .sub-history .history-list .detail li:last-child {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .sub-history .history-list .detail .content {padding-left: 10px;}
}
@media all and (max-width: 360px) {
  .sub-history .history-list .year {padding-right: 4%;}
}

/*사업장소개*/
.sub-location .tab-content {padding-top: 80px;}
.sub-location .tab-content .map {
  height: 500px;
  overflow: hidden;
}
.sub-location .tab-content .map .root_daum_roughmap {width: 100% !important;}
.sub-location .tab-content .map .wrap_map {height: 500px !important;}
.sub-location .tab-content .txt {padding-top: 80px;}
.sub-location .tab-content .txt .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.sub-location .tab-content .txt .top .info {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  font-size: 18px;
}
.sub-location .tab-content .txt .top .info h4 {
  font-size: 36px;
  padding-right: 50px;
}
.sub-location .tab-content .txt .top .info ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sub-location .tab-content .txt .top .info ul li {
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.sub-location .tab-content .txt .top .info ul li b {
  margin-left: 8px;
  margin-right: 20px;
}
.sub-location .tab-content .txt .top .btn-wrap {display: flex;}
.sub-location .tab-content .txt .top .btn-wrap a {
  display: block;
  margin-right: 30px;
  text-align: center;
}
.sub-location .tab-content .txt .top .btn-wrap a:last-child {margin-right: 0;}
.sub-location .tab-content .txt .top .btn-wrap a p {
  font-size: 15px;
  font-weight: 600;
  color: #777;
  margin-top: 10px;
}
.sub-location .tab-content .txt .bottom {
  border: 1px solid #ddd;
  margin-top: 50px;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
}
.sub-location .tab-content .txt .bottom > div {
  border-right: 1px solid #ddd;
  padding: 0 40px;
  width: 50%;
}
.sub-location .tab-content .txt .bottom > div:last-child {
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.sub-location .tab-content .txt .bottom h5 {
  font-size: 20px;
  margin-bottom: 25px;
}
.sub-location .tab-content .txt .bottom ul li {margin-bottom: 10px;}
.sub-location .tab-content .txt .bottom ul li span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  margin-right: 5px;
}
.sub-location .tab-content .txt .bottom ul li b {
  font-size: 18px;
  margin: 0 10px;
}
.sub-location .tab-content .txt .bottom .green {background: #48922d;}
.sub-location .tab-content .txt .bottom .blue {background: #0c43b7;}
.sub-location .tab-content .txt .bottom .yellow {background: #f7b009;}
.sub-location .tab-content .txt .bottom .pink {background: #e51e6e;}

@media all and (max-width: 1024px) {
  .sub-location .tab-content .txt .top .info {width: calc(100% - 180px);}
  .sub-location .tab-content .txt .top .info h4 {
    width: 100%;
    padding: 0 0 20px;
  }
  .sub-location .tab-content .txt .top .btn-wrap {width: 180px;}
  .sub-location .tab-content .txt .bottom > div {
    width: 100%;
    margin-bottom: 30px;
  }
  .sub-location .tab-content .txt .bottom > div:last-child {margin-bottom: 0;}
}
@media all and (max-width: 767px) {
  .sub-location .tab-content {padding-top: 40px;}
  .sub-location .tab-content .map,
  .sub-location .tab-content .map .wrap_map {height: 300px !important;}
  .sub-location .tab-content .txt {padding-top: 30px;}
  .sub-location .tab-content .txt .top {display: block;}
  .sub-location .tab-content .txt .top .info {
    width: 100%;
    font-size: 15px;
  }
  .sub-location .tab-content .txt .top .info h4 {
    font-size: 24px;
    padding-bottom: 15px;
  }
  .sub-location .tab-content .txt .top .info ul li {
    width: 100%;
    margin: 0 0 6px;
  }
  .sub-location .tab-content .txt .top .btn-wrap {
    width: 100%;
    margin-top: 30px;
  }
  .sub-location .tab-content .txt .top .btn-wrap a {margin-right: 20px;}
  .sub-location .tab-content .txt .top .btn-wrap a img {width: 40px;}
  .sub-location .tab-content .txt .top .btn-wrap a p {
    font-size: 14px;
    margin-top: 8px;
  }
  .sub-location .tab-content .txt .bottom {
    margin-top: 40px;
    padding: 20px;
  }
  .sub-location .tab-content .txt .bottom h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sub-location .tab-content .txt .bottom > div {
    padding: 0;
    margin-bottom: 20px;
    border: none;
  }
  .sub-location .tab-content .txt .bottom ul li span {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    padding: 0 8px;
    margin: 0 6px;
  }
  .sub-location .tab-content .txt .bottom ul li b {
    font-size: 15px;
    margin: 0;
  }
}

/*주요 사업*/
.sub-core .business ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 45px;
  background: url(/img/assets/business_img.jpg) center / cover no-repeat;
  border-radius: 600px;
  width: fit-content;
  margin: 0 auto;
}
.sub-core .business ul li {
  background: rgba(0, 150, 255, 0.6);
  width: 250px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 -15px;
  border-radius: 100%;
}
.sub-core .business ul li p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.sub-core .partners .partners-wrap {border-top: 2px solid #000;}
.sub-core .partners .partners-wrap > div {
  padding: 60px 0;
  border-bottom: 1px solid #ddd;
}
.sub-core .partners .top {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.sub-core .partners .top h4 {
  font-size: 24px;
  padding-right: 50px;
}
.sub-core .partners .partners-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: -10px;
}
.sub-core .partners .partners-list li {
  width: calc((100% - 40px)/5);
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.sub-core .partners .partners-list li:nth-child(5n) {margin-right: 0;}
.sub-core .partners .partners-list li img {
  max-width: 180px;
  max-height: 50px;
}
.sub-core .affiliates {
  background: #f5f6fb;
  padding: 150px 0 !important;
}
.sub-core .affiliates .affiliates-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.sub-core .affiliates .affiliates-list li {
  width: calc((100% - 80px)/5);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px 25px 25px;
  text-align: center;
}
.sub-core .affiliates .affiliates-list li:nth-child(5n) {margin-right: 0;}
.sub-core .affiliates .affiliates-list li .img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-core .affiliates .affiliates-list li .img img {
  max-width: 200px;
  max-height: 80px;
}
.sub-core .affiliates .affiliates-list li p {
  font-size: 18px;
  color: #555;
  font-weight: 600;
  padding-top: 20px;
  border-top: 1px solid #eee;
  word-break: break-all;
}
@media all and (max-width: 1024px) {
  .sub-core .business ul {width: 100%;}
  .sub-core .business ul li {width: calc(25% + 30px)}
  .sub-core .partners .top h4 {
    width: 100%;
    padding: 0 0 30px;
  }
  .sub-core .partners .partners-list li {width: calc((100% - 30px) / 4);}
  .sub-core .partners .partners-list li:nth-child(5n) {margin-right: 10px;}
  .sub-core .partners .partners-list li:nth-child(4n) {margin-right: 0;}
  .sub-core .partners .partners-list li img {max-width: 100%;}
  .sub-core .affiliates .affiliates-list li {width: calc((100% - 60px) / 4);}
  .sub-core .affiliates .affiliates-list li:nth-child(5n) {margin-right: 20px;}
  .sub-core .affiliates .affiliates-list li:nth-child(4n) {margin-right: 0;}
}
@media all and (max-width: 767px) {
  .sub-core .business ul {
    padding: 40px;
    flex-wrap: wrap;
    border-radius: 80px;
  }
  .sub-core .business ul li {
    width: calc(50% + 30px);
    margin: -15px;
  }
  .sub-core .business ul li p {font-size: 18px;}
  .sub-core .partners .partners-wrap > div {padding: 30px 0;}
  .sub-core .partners .top h4 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .sub-core .partners .partners-list {margin-top: 30px;}
  .sub-core .partners .partners-list li {
    width: calc((100% - 20px) / 3);
    height: 80px;
  }
  .sub-core .partners .partners-list li:nth-child(4n) {margin-right: 10px;}
  .sub-core .partners .partners-list li:nth-child(3n) {margin-right: 0;}
  .sub-core .affiliates {padding: 80px 0 !important;}
  .sub-core .affiliates .affiliates-list {margin-bottom: -10px;}
  .sub-core .affiliates .affiliates-list li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 20px 15px;
  }
  .sub-core .affiliates .affiliates-list li:nth-child(5n) {margin-right: 10px;}
  .sub-core .affiliates .affiliates-list li:nth-child(2n) {margin-right: 0;}
  .sub-core .affiliates .affiliates-list li .img {height: 100px;}
  .sub-core .affiliates .affiliates-list li .img img {
    max-width: 100%;
    height: 60px;
  }
  .sub-core .affiliates .affiliates-list li p {
    font-size: 15px;
    padding-top: 15px;
  }
}

/*비즈니스*/
.sub-business .tab-content {padding-top: 100px;}
.sub-business .tab-content .top {text-align: center;}
.sub-business .tab-content .top .title {margin-bottom: 40px;}
.sub-business .tab-content .top .title h4 {font-size: 42px;}
.sub-business .tab-content .top .desc {line-height: 1.7}
.sub-business .tab-content .top .img {padding-top: 50px;}
.sub-business .tab-content .bottom {
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.sub-business .tab-content .bottom .box {
  background: #f5f5fb;
  border-radius: 10px;
  padding: 60px;
  margin-bottom: 50px;
}
.sub-business .tab-content .bottom .box:last-child {margin-bottom: 0;}
.sub-business .tab-content .bottom .box > div {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.sub-business .tab-content .bottom .box > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sub-business .tab-content .bottom .box h5 {
  margin-bottom: 25px;
  display: flex;
  align-items: start;
  font-size: 24px;
}
.sub-business .tab-content .bottom .box h5 .number {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  background: #79b700;
  margin-top: 5px;
}
.sub-business .tab-content .bottom .box h5 .txt {padding-left: 12px;}
.sub-business .tab-content .bottom .box h5 .txt span {font-size: 18px;}

.sub-digital_computing .tab-content .bottom .box .box-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.sub-digital_computing .tab-content .bottom .box .box-list li {
  width: calc((100% - 60px)/4);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px 30px;
  aspect-ratio: 1 / 1;
  position: relative;
}
.sub-digital_computing .tab-content .bottom .box .box-list li:nth-child(4n) {margin-right: 0;}
.sub-digital_computing .tab-content .bottom .box .box-list li h5 {
  font-size: 24px;
  margin-bottom: 12px;
}
.sub-digital_computing .tab-content .bottom .box .box-list li p {
  font-size: 18px;
  opacity: 0.7;
}
.sub-digital_computing .tab-content .bottom .box .box-list li .ico {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.sub-digital_support .tab-content .bottom .img {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -60px;
}
.sub-digital_support .tab-content .bottom .img li {
  width: calc((100% - 60px)/2);
  margin-right: 60px;
  margin-bottom: 60px;
}
.sub-digital_support .tab-content .bottom .img li:nth-child(2n) {margin-right: 0;}
.sub-digital_support .tab-content .bottom .img li h6 {
  font-size: 24px;
  margin: 30px 0 20px;
  color: #0096ff;
}
.sub-digital_support .tab-content .bottom .img li .desc {min-height: 55px;}

.sub-it_consulting .tab-content .bottom .box .box-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: -10px;
}
.sub-it_consulting .tab-content .bottom .box .box-list li {
  width: calc((100% - 30px)/4);
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #79b700;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #666;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  padding: 20px;
}
.sub-it_consulting .tab-content .bottom .box .box-list li:nth-child(4n) {margin-right: 0;}

@media all and (max-width: 1300px) {
  .sub-digital_computing .tab-content .bottom .box .box-list li {
    width: calc((100% - 40px) / 3);
    aspect-ratio: auto;
    height: 280px;
  }
  .sub-digital_computing .tab-content .bottom .box .box-list li:nth-child(4n) {margin-right: 20px;}
  .sub-digital_computing .tab-content .bottom .box .box-list li:nth-child(3n) {margin-right: 0;}
}
@media all and (max-width: 1024px) {
  .sub-business .tab-content .bottom .box {padding: 35px;}
}
@media all and (max-width: 991px) {
  .sub-digital_computing .tab-content .bottom .box .box-list li {width: calc((100% - 20px) / 2);}
  .sub-digital_computing .tab-content .bottom .box .box-list li:nth-child(3n) {margin-right: 20px;}
  .sub-digital_computing .tab-content .bottom .box .box-list li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 767px) {
  .sub-business .tab-content {padding-top: 50px;}
  .sub-business .tab-content .top .title {margin-bottom: 25px;}
  .sub-business .tab-content .top .title h4 {font-size: 26px;}
  .sub-business .tab-content .top .img {padding-top: 25px;}
  .sub-business .tab-content .bottom {margin-top: 0;}
  .sub-business .tab-content .bottom .box {
    padding: 25px;
    margin-bottom: 20px;
  }
  .sub-business .tab-content .bottom .box > div {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .sub-business .tab-content .bottom .box h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .sub-business .tab-content .bottom .box h5 .number {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    margin-top: 2px;
  }
  .sub-business .tab-content .bottom .box h5 .txt {
    width: calc(100% - 20px);
    padding-left: 10px;
  }
  .sub-digital_computing .tab-content .bottom .box .box-list {margin-bottom: -15px;}
  .sub-digital_computing .tab-content .bottom .box .box-list li {
    width: 100%;
    margin: 0 0 15px !important;
    padding: 20px;
    height: auto;
  }
  .sub-digital_computing .tab-content .bottom .box .box-list li h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .sub-digital_computing .tab-content .bottom .box .box-list li p {font-size: 15px;}
  .sub-digital_computing .tab-content .bottom .box .box-list li .ico {
    position: static;
    margin-top: 10px;
    margin-left: auto;
    display: block;
  }
  .sub-digital_support .tab-content .bottom .img {margin-bottom: -30px;}
  .sub-digital_support .tab-content .bottom .img li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 30px;
  }
  .sub-digital_support .tab-content .bottom .img li h6 {
    font-size: 18px;
    margin: 20px 0 12px;
  }
  .sub-it_consulting .tab-content .bottom .box .box-list li {
    width: calc((100% - 10px) / 2);
    font-size: 16px;
    min-height: auto;
    padding: 15px;
  }
  .sub-it_consulting .tab-content .bottom .box .box-list li:nth-child(2n) {margin-right: 0;}
}

/*채용절차*/
.sub-process .top .img {
  background: url(/img/assets/careers_process_img.jpg) center / cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sub-process .top .img img {max-width: 220px;}
.sub-process .top .img p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-top: 40px;
}
.sub-process .top .career-list {padding-top: 90px;}
.sub-process .top .career-list > li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.sub-process .top .career-list > li:last-child {margin-bottom: 0;}
.sub-process .top .career-list h4 {
  width: 50%;
  font-size: 24px;
  padding-right: 30px;
}
.sub-process .top .career-list h4 span {color: #79b700;}
.sub-process .top .list-wrap {width: 50%;}
.sub-process .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-top: 100px;
}
.sub-process .bottom .process-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sub-process .bottom .process-list > div {display: flex;}
.sub-process .bottom .process-list > div:last-child .circle {margin-right: 0;}
.sub-process .bottom .process-list .circle {
  border: 1px solid #ddd;
  width: 250px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 250px;
  text-align: center;
  font-weight: bold;
  margin: 0 -15px;
}
.sub-process .bottom .process-list .circle .step {
  font-size: 18px;
  color: #0096ff;
  margin-bottom: 20px;
}
.sub-process .bottom .process-list .circle p {
  font-size: 30px;
  color: #666666;
}
.sub-process .bottom .process-list .arrow {
  height: 56px;
  transform: rotate(-90deg);
}
.sub-process .bottom .process-list > div:last-child .circle {background: #0096ff;}
.sub-process .bottom .process-list > div:last-child .circle .inner {
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.sub-process .bottom .process-list > div:last-child .circle .step,
.sub-process .bottom .process-list > div:last-child .circle p {color: #fff;}
.sub-process .link-btn {
  margin: 100px auto 0;
  background: #79b700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  height: 80px;
  line-height: 80px;
  color: #fff;
  transition: all .2s;
}
.sub-process .link-btn b {
  font-size: 24px;
  margin-right: 15px;
}
.sub-process .link-btn:hover {background: #639700;}

@media all and (max-width: 1024px) {
  .sub-process .bottom .content {width: 100%;}
  .sub-process .bottom .process-list {justify-content: center;}
  .sub-process .bottom .process-list .circle {width: 200px;}
}
@media all and (max-width: 767px) {
  .sub-process .top .img {height: 300px;}
  .sub-process .top .img img {max-width: 150px;}
  .sub-process .top .img p {
    font-size: 24px;
    margin-top: 20px;
  }
  .sub-process .top .career-list {padding-top: 40px;}
  .sub-process .top .career-list > li {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .sub-process .top .career-list h4 {
    width: 100%;
    font-size: 20px;
    padding: 0 0 12px;
  }
  .sub-process .top .list-wrap {width: 100%;}
  .sub-process .bottom {margin-top: 50px;}
  .sub-process .bottom .process-list > div {
    width: 100%;
    justify-content: center;
  }
  .sub-process .bottom .process-list .circle {
    width: 150px;
    margin: 0 -10px;
    padding: 6px;
  }
  .sub-process .bottom .process-list .circle .step {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .sub-process .bottom .process-list .circle p {font-size: 20px;}
  .sub-process .bottom .process-list .arrow {
    transform: rotate(0);
    margin: 15px 0;
  }
  .sub-process .link-btn {
    margin-top: 30px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
  }
  .sub-process .link-btn b {
    font-size: 16px;
    margin-right: 10px;
  }
  .sub-process .link-btn img {width: 14px;}
}

/*피플데이타 라이프*/
.sub-life .box-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.sub-life .box-list > li {
  width: calc((100% - 60px)/4);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #f5f5fb;
  border-radius: 10px;
  padding: 30px;
}
.sub-life .box-list > li:nth-child(4n) {margin-right: 0;}
.sub-life h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.sub-life h4 b {
  font-size: 24px;
  font-weight: bold;
}
.sub-life .life-list li {
  background: #fff;
  font-size: 18px;
  padding: 7px 18px;
  margin-bottom: 10px;
}
.sub-life .life-list li:last-child {margin-bottom: 0;}

@media all and (max-width: 1300px) {
  .sub-life .box-list > li {width: calc((100% - 40px) / 3);}
  .sub-life .box-list > li:nth-child(4n) {margin-right: 20px;}
  .sub-life .box-list > li:nth-child(3n) {margin-right: 0;}
}
@media all and (max-width: 991px) {
  .sub-life .box-list > li {width: calc((100% - 20px) / 2);}
  .sub-life .box-list > li:nth-child(3n) {margin-right: 20px;}
  .sub-life .box-list > li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 767px) {
  .sub-life .box-list {margin-bottom: -15px}
  .sub-life .box-list > li {
    width: 100%;
    margin: 0 0 15px;
    padding: 25px;
  }
  .sub-life .box-list > li:nth-child(3n) {margin-right: 10px;}
  .sub-life .box-list > li:nth-child(2n) {margin-right: 0;}
  .sub-life h4 b {font-size: 22px;}
  .sub-life .life-list li {
    font-size: 15px;
    padding: 7px 12px;
  }
}