@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');
body, div, ul, li, p, strong, span, b, h1, h2, h3, h4, h5, h6 {
  word-break: keep-all;
  line-height: 1.4;
}
h1, h2, h3, h4, h5, h6 {line-height: 1.3}
img {max-width: 100%}
.title {
  margin-bottom: 100px;
  text-align: center;
}
.title h2 {font-size: 50px;}
.title h2 span {color: #0b4da2;}
.desc {
  font-size: 18px;
  line-height: 1.7;
}
.arrow-btn {
  display: flex;
  align-items: center;
}
.arrow-btn b {
  font-size: 16px;
  color: #0b4da2;
}
.arrow-btn .circle {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0b4da2;
  margin-left: 15px;
  transition: all .3s;
}
.arrow-btn .circle .st0 {
  fill: none;
  stroke: #0b4da2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.arrow-btn:hover .circle {background: #0b4da2;}
.arrow-btn:hover .circle .st0 {stroke: #fff;}
.more-btn {
  background: transparent;
  border: 1px solid #fff;
  height: 60px;
  padding: 0 15px;
  border-radius: 60px;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.more-btn b {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: all .2s;
}
.more-btn .st0 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}
.more-btn:hover {background: #fff}
.more-btn:hover b {
  color: #111;
  margin-right: 20px;
}
.more-btn:hover .st0 {stroke: #111;}

.admin-btn {margin-top: 15px;}
.admin-btn a {
  font-size: 20px;
  color: #e31f1f;
}
@media all and (max-width: 767px) {
  .title {margin-bottom: 40px;}
  .title h2 {font-size: 30px;}
  .desc {
    font-size: 16px;
    line-height: 1.5;
  }
  .arrow-btn b {font-size: 14px;}
  .arrow-btn .circle {
    width: 34px;
    height: 34px;
    margin-left: 10px;
  }
  .more-btn {
    max-width: 180px;
    height: 45px;
  }
  .more-btn b {font-size: 15px;}
}

/*main*/
.main section {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
}
.main .title {margin-bottom: 80px;}
.main .title p {
  font-size: 25px;
  margin-top: 20px;
  word-break: keep-all;
}
.main .title .desc {margin-top: 50px;}
.main .more-btn {margin-top: 80px;}
.main .hero {padding: 0;}
.main .hero .swiper-slide {
  height: 100vh;
  background: #000;
  overflow: hidden;
}
.main .hero .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 .hero .swiper-slide-active .bg.animate {animation: banner 3s ease forwards;}
.main .hero .swiper-slide .txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 1500px)/2);
  color: #fff;
}
.main .hero .swiper-slide .txt h2 {font-size: 60px;}
.main .hero .swiper-slide .txt p {
  font-size: 24px;
  font-weight: bold;
  margin-top: 50px;
}
.main .hero .swiper-slide .txt h2,
.main .hero .swiper-slide .txt p {
  opacity: 0;
  transform: translateY(50px);
}
.main .hero .swiper-slide-active .txt.animate h2 {
  animation: fadeUp 0.8s ease-out forwards;
}
.main .hero .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 .hero .scroll-down {
  position: absolute;
  right: calc((100% - 1500px)/2);
  bottom: 100px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.main .hero .scroll-down span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-left: 10px;
}
.main .hero .swiper-pagination {
  position: absolute;
  top: auto;
  left: calc((100% - 1500px)/2);
  bottom: 100px;
  z-index: 1;
  background: rgba(255,255,255,0.3);
  max-width: 240px;
  width: 100%;
  height: 2px;
}
.main .hero .swiper-pagination span {background: #fff;}
.main .about {
  background: url(/img/assets/main_about_bg_v2.jpg) center / cover no-repeat;
}
.main .about .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main .about .txt {
  width: 50%;
  padding-right: 50px;
  z-index: 1;
  position: relative;
  color: #fff;
}
.main .about .txt h3 {
  font-size: 40px;
  margin-bottom: 40px;
}
.main .about .txt .arrow-btn {margin-top: 80px;}
.main .about .txt .arrow-btn b {color: #fff;}
.main .about .txt .arrow-btn .circle {border-color: #fff;}
.main .about .txt .arrow-btn .st0 {stroke: #fff;}
.main .about .txt .arrow-btn:hover .circle {background: #fff;}
.main .about .txt .arrow-btn:hover .st0 {stroke: #0b4da2}
.main .about .img {
  width: 50%;
  position: relative;
  z-index: 1;
}
.main .about .img::after {
  content: "";
  background: #0b4da2;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  right: -20px;
  bottom: -20px;
}
.main .about .img img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  max-width: none;
  width: 100%;
}
.main .about .bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.main .application {background: url(/img/assets/main_application_bg.jpg) center / cover no-repeat;}
.main .application .title {color: #fff;}
.main .application ul {
  display: flex;
  flex-wrap: wrap;
}
.main .application ul li {
  width: calc((100% - 50px)/6);
  margin-right: 10px;
}
.main .application ul li:last-child {margin-right: 0;}
.main .application ul li a {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main .application ul li p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.main .quality {
  background: url(/img/assets/main_quality_bg.jpg) center / cover no-repeat;
  min-height: 100vh;
}
.main .quality .txt {
  position: absolute;
  top: 50%;
  left: calc((100% - 1500px)/2);
  transform: translateY(-50%);
}
.main .quality .txt p {
  font-size: 24px;
  margin: 50px 0 80px;
  line-height: 1.7;
}
.main .news {
  background: url(/img/assets/main_news_bg.jpg) center / cover no-repeat;
  color: #fff;
}
.main .news .news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -60px;
}
.main .news .news-list li {
  width: 33.33%;
  padding: 0 60px;
  border-right: 1px solid #fff;
}
.main .news .news-list li:last-child {
  border-right: none;
}
.main .news .news-list li a {display: block;}
.main .news .news-list li .img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 420 / 300;
  background: #f5f5f5;
}
.main .news .news-list li .img span {
  width: 100%;
  height: 100%;
  transition: all .2s;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main .news .news-list li a:hover .img span {transform: scale(1.1)}
.main .news .news-list li .txt {
  padding-top: 40px;
  color: #fff;
}
.main .news .news-list li .txt .subject {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.main .news .news-list li .txt .content {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap:break-word;
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
}
@media all and (max-width: 1500px) {
  .main .hero .swiper-slide .txt,
  .main .quality .txt {left: 80px;}
  .main .application ul {
    max-width: 800px;
    margin: 0 auto -10px;
  }
  .main .application ul li {
    width: calc((100% - 20px) / 3);
    margin-bottom: 10px;
  }
  .main .application ul li:nth-child(3n) {margin-right: 0;}
}
@media all and (max-width: 1024px) {
  .main .hero .swiper-slide .txt {left: 40px;}
  .main .quality .txt {
    top: 100px;
    left: 40px;
    transform: none;
  }
  .main .quality {background: url(/img/assets/main_quality_bg_m.jpg) center bottom / cover no-repeat}
}
@media all and (max-width: 991px) {
  .main .about .txt {
    width: 100%;
    padding: 0 0 80px;
  }
  .main .about .img {width: 100%;}
  .main .news .news-list {margin: 0 -30px;}
  .main .news .news-list li {padding: 0 30px;}
}
@media all and (max-width: 767px) {
  .main section {padding: 80px 0;}
  .main .title {margin-bottom: 30px;}
  .main .title .desc {margin-top: 20px;}
  .main .hero .swiper-slide .txt,
  .main .quality .txt {
    left: 15px;
    width: calc(100% - 30px);
  }
  .main .hero .swiper-slide {background: #000;}
  .main .hero .swiper-slide .txt h2 {font-size: 30px;}
  .main .hero .swiper-slide .txt p {
    font-size: 16px;
    margin-top: 30px;
  }
  .main .hero .swiper-slide .bg {
    background-position: center right -200px;
    opacity: 0.6;
  }
  .main .about {background-position: center left}
  .main .about .txt {padding-bottom: 40px;}
  .main .about .txt h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .main .about .txt .arrow-btn {margin-top: 30px;}
  .main .about .img img {border-radius: 10px;}
  .main .about .img::after {
    right: -10px;
    bottom: -10px;
    border-radius: 10px;
  }
  .main .application ul li a {
    aspect-ratio: auto;
    padding: 30px 10px;
    text-align: center;
    height: 150px;
  }
  .main .application ul li img {
    max-height: 60px;
  }
  .main .application ul li p {
    font-size: 16px;
    margin-top: 15px;
  }
  .main .more-btn {margin-top: 40px;}
  .main .quality .txt {top: 50px;}
  .main .quality .txt > img {width: 140px;}
  .main .quality .txt p {
    font-size: 16px;
    margin: 30px 0 40px;
  }
  .main .news .news-list {margin: 0;}
  .main .news .news-list li {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 40px;
  }
  .main .news .news-list li:last-child {margin-bottom: 0;}
  .main .news .news-list li .txt {padding-top: 20px;}
  .main .news .news-list li .txt .subject {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/*sub*/
.sub section {
  position: relative;
  padding: 150px 0;
}
.sub section:first-child {padding-top: 0;}
.sub section:last-child {padding-bottom: 0;}
.sub .en {
  color: #888;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .sub section {padding: 80px 0;}
  .sub .en {font-size: 20px;}
}

/*기업소개*/
.sub-about .title {text-align: left;}
.sub-about .about {
  padding: 0;
  height: 100vh;
  position: relative;
  background: #000;
  overflow: hidden;
}
.sub-about .about .txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 1500px) / 2);
  z-index: 1;
  text-align: left;
  color: #fff;
}
.sub-about .about .title {
  margin-bottom: 80px;
  color: #fff;
}
.sub-about .about .en {
  margin-bottom: 30px;
  color: #fff;
}
.sub-about .about .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0.7;
}
.sub-about .about .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-about .philosophy ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 100px;
}
.sub-about .philosophy ul li:last-child {margin-bottom: 0;}
.sub-about .philosophy ul li > div {width: calc((100% - 100px)/2);}
.sub-about .philosophy ul li:nth-child(odd) .img {margin-right: 100px;}
.sub-about .philosophy ul li:nth-child(2n) .img {
  order: 2;
  margin-left: 100px;
}
.sub-about .philosophy ul li:nth-child(odd) .txt {padding-left: 20px;}
.sub-about .philosophy ul li:nth-child(2n) .txt {
  order: 1;
  padding-right: 20px;
}
.sub-about .philosophy ul li .txt h3 {font-size: 40px;}
.sub-about .philosophy ul li .txt p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 15px;
}
.sub-about .philosophy ul li .txt .desc {margin-top: 35px;}
.sub-about .vision {padding: 0;}
.sub-about .vision .txt {
  text-align: center;
}
.sub-about .vision .txt strong {
  display: inline-block;
  font-size: 36px;
  margin-bottom: 80px;
}
.sub-about .vision .txt strong span {color: #002f67;}
.sub-about .vision .txt strong::before {
  content: "";
  background: url(/img/assets/quotes.svg) center / cover no-repeat;
  display: inline-block;
  vertical-align: top;
  width: 40px;
  aspect-ratio: 40 / 32;
  opacity: 0.2;
  margin-right: 30px;
}
.sub-about .vision .txt strong::after {
  content: "";
  background: url(/img/assets/quotes.svg) center / cover no-repeat;
  display: inline-block;
  vertical-align: bottom;
  width: 40px;
  aspect-ratio: 40 / 32;
  opacity: 0.2;
  transform: rotate(180deg);
  margin-left: 30px;
}
.sub-about .vision ul {
  display: flex;
  flex-wrap: wrap;
  border: 1px dashed #bbbbbb;
  border-radius: 20px;
  padding: 50px;
}
.sub-about .vision ul li {
  width: calc((100% - 60px)/4);
  margin-right: 20px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 50px 30px 30px;
  aspect-ratio: 1 / 1;
}
.sub-about .vision ul li:last-child {margin-right: 0;}
.sub-about .vision ul li .ico {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 0 auto;
}
.sub-about .vision ul li p {
  font-size: 22px;
  font-weight: bold;
  margin-top: 25px;
  text-align: center;
}
@media all and (max-width: 1500px) {
  .sub-about .about .txt {left: 80px;}
}
@media all and (max-width: 1024px) {
  .sub-about .about .txt {left: 40px;}
  .sub-about .vision ul {padding-bottom: 30px;}
  .sub-about .vision ul li {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
    aspect-ratio: auto;
    padding: 50px;
  }
  .sub-about .vision ul li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 991px) {
  .sub-about .philosophy ul li > div {
    width: 100%;
    margin: 0 !important;
  }
  .sub-about .philosophy ul li .img {order: 1;}
  .sub-about .philosophy ul li .txt {
    padding: 30px 0 0 !important;
    order: 2 !important;
  }
}
@media all and (max-width: 767px) {
  .sub-about .about .txt {left: 15px;}
  .sub-about .about .title {margin-bottom: 40px;}
  .sub-about .about .en {margin-bottom: 15px;}
  .sub-about .philosophy ul li {margin-bottom: 50px;}
  .sub-about .philosophy ul li .txt {padding-top: 20px !important;}
  .sub-about .philosophy ul li .txt h3 {font-size: 24px;}
  .sub-about .philosophy ul li .txt p {
    font-size: 20px;
    margin-top: 10px;
  }
  .sub-about .philosophy ul li .txt .desc {margin-top: 20px;}
  .sub-about .vision .txt strong {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sub-about .vision .txt strong::before {
    width: 24px;
    margin-right: 10px;
  }
  .sub-about .vision .txt strong::after {
    width: 24px;
    margin-left: 10px;
  }
  .sub-about .vision ul {
    padding: 20px;
    border-radius: 10px;
  }
  .sub-about .vision ul li {
    width: 100%;
    margin: 0 0 15px;
    padding: 30px;
  }
  .sub-about .vision ul li:last-child {margin-bottom: 0;}
  .sub-about .vision ul li .ico {
    width: 80px;
    height: 80px;
  }
  .sub-about .vision ul li .ico img {
    max-width: 50px;
    max-height: 50px;
  }
  .sub-about .vision ul li p {
    font-size: 16px;
    margin-top: 15px;
  }
}

/*연혁*/
.sub-history {
  display: flex;
  flex-wrap: wrap;
}
.sub-history .img {
  width: 25%;
  background: url(/img/assets/history_img.jpg) center / cover no-repeat;
}
.sub-history .history-wrap {
  width: 75%;
  padding-left: 10%;
}
.sub-history .history-list {}
.sub-history .history-list > div {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.sub-history .history-list > div:last-child {padding-bottom: 0}
.sub-history .history-list .year {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  width: 20%;
}
.sub-history .history-list > div:first-child .year {color: #0b4da2;}
.sub-history .history-list .year::after {
  content: "";
  background: #fff;
  border: 5px solid #0b4da2;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}
.sub-history .history-list .detail {
  width: 80%;
  padding-left: 10%;
  padding-top: 10px;
  padding-bottom: 80px;
  border-left: 1px solid #ddd;
}
.sub-history .history-list .detail li {margin-bottom: 10px;}
.sub-history .history-list .detail li::before {content: "- "}
.sub-history .history-list .detail li:last-child {margin-bottom: 0;}
.sub-history .history-list > div:last-child .detail {padding-bottom: 0;}
@media all and (max-width: 1200px) {
  .sub-history .history-wrap {padding-left: 60px;}
  .sub-history .history-list .year {font-size: 30px;}
  .sub-history .history-list .detail {padding-left: 50px;}
}
@media all and (max-width: 1024px) {
  .sub-history .img {
    width: 100%;
    background: url(/img/assets/history_img_m.jpg) center / cover no-repeat;
    height: 300px;
  }
  .sub-history .history-wrap {
    width: 100%;
    padding: 80px 0 0;
  }
}
@media all and (max-width: 767px) {
  .sub-history .img {height: 200px;}
  .sub-history .history-wrap {padding-top: 30px;}
  .sub-history .history-list .year {
    font-size: 24px;
    width: 25%;
  }
  .sub-history .history-list .year::after {
    width: 12px;
    height: 12px;
    border-width: 3px;
    right: -6px;
  }
  .sub-history .history-list .detail {
    width: 75%;
    padding-left: 30px;
    padding-bottom: 30px;
  }
}

/*조직도*/
.sub-organization .ceo {
  background: rgba(11,77,163,0.1);
  width: 210px;
  height: 210px;
  border-radius: 210px;
  padding: 15px;
  margin: 0 auto 120px;
  position: relative;
}
.sub-organization .ceo::after {
  content: "";
  background: #ddd;
  width: 1px;
  height: 60px;
  display: block;
  position: absolute;
  left: calc(50% - 1px);
  bottom: -60px;
}
.sub-organization .ceo .inner {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(to bottom, #0b4da3, #002f66);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sub-organization .ceo .inner::after {
  content: "";
  background: url(/img/assets/symbol.svg) center / cover no-repeat;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  aspect-ratio: 1 / 1;
}
.sub-organization .ceo p {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-align: center;
}
.sub-organization .detail {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.sub-organization .detail::before {
  content: "";
  background: #ddd;
  width: calc(100% - ((100% - 200px)/3));
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
}
.sub-organization .detail > div {
  position: relative;
  width: calc((100% - 200px)/3);
  margin-right: 100px;
  text-align: center;
}
.sub-organization .detail > div:last-child {margin-right: 0;}
.sub-organization .detail > div::before {
  content: "";
  background: #ddd;
  width: 1px;
  height: 60px;
  display: block;
  position: absolute;
  left: 50%;
  top: -60px;
}
.sub-organization .detail .detail-title {
  background: #9199a2;
  border-radius: 10px 10px 0 0;
  padding: 15px;
  color: #fff;
}
.sub-organization .detail .detail-title h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.sub-organization .detail .detail-title p {
  font-size: 20px;
  font-weight: bold;
}
.sub-organization .detail ul {
  background: #f5f5f5;
  padding: 30px;
}
.sub-organization .detail ul li {
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  color: #5e656d;
  padding: 12px;
  margin-bottom: 10px;
}
.sub-organization .detail ul li:last-child {margin-bottom: 0;}
.sub-organization .detail .img img {
  max-width: none;
  width: 100%;
}
@media all and (max-width: 1024px) {
  .sub-organization .detail > div {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
  }
}
@media all and (max-width: 991px) {
  .sub-organization .detail ul {padding: 20px;}
  .sub-organization .detail .detail-title h4 {font-size: 20px;}
}
@media all and (max-width: 767px) {
  .sub-organization .ceo {
    width: 150px;
    height: 150px;
    padding: 8px;
    margin-bottom: 30px;
  }
  .sub-organization .ceo p {font-size: 24px;}
  .sub-organization .ceo .inner::after {width: 80px;}
  .sub-organization .ceo::after,
  .sub-organization .detail > div::before,
  .sub-organization .detail::before {content: none;}
  .sub-organization .detail > div {
    width: 100%;
    margin: 0 0 30px;
  }
  .sub-organization .detail > div:last-child {margin-bottom: 0;}
  .sub-organization .detail .detail-title p {font-size: 16px;}
  .sub-organization .detail ul li {font-size: 16px;}
}

/*사업장 안내*/
.sub-location .map-wrap {
  display: flex;
  flex-wrap: wrap;
  height: 600px;
}
.sub-location .map-wrap .map {
  width: 78%;
  height: 100%;
}
.sub-location .map-wrap .map iframe {
  width: 100% !important;
  height: 100% !important;
}
.sub-location .map-wrap .img {
  width: 22%;
  height: 100%;
  background: url(/img/assets/location_img.jpg) center right / cover no-repeat;
}
.sub-location ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.sub-location ul li {
  border-right: 1px solid #ddd;
  padding: 0 50px;
  width: 20%;
}
.sub-location ul li:first-child {
  width: 40%;
  padding-left: 0;
}
.sub-location ul li:last-child {
  border-right: none;
  padding-right: 0;
}
.sub-location ul li h4 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.sub-location ul li h4 span {
  font-size: 20px;
  font-weight: bold;
  padding-left: 10px;
}
@media all and (max-width: 1024px) {
  .sub-location .map-wrap .map {width: 100%;}
  .sub-location .map-wrap .img {display: none;}
  .sub-location ul li {
    width: 33.33%;
    padding: 0;
    border: none;
  }
  .sub-location ul li:first-child {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media all and (max-width: 767px) {
  .sub-location .map-wrap {height: 350px;}
  .sub-location ul {margin-top: 30px;}
  .sub-location ul li {
    width: 100%;
    margin: 0 0 15px !important;
  }
  .sub-location ul li:last-child {margin-bottom: 0 !important;}
  .sub-location ul li h4 {margin-bottom: 5px;}
  .sub-location ul li h4 img {
    max-width: 14px;
    max-height: 14px;
  }
  .sub-location ul li h4 span {font-size: 18px;}
}

/*WHAT WE DO*/
.sub-what .intro .desc {
  text-align: center;
  margin-top: -50px;
}
.sub-what .intro ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.sub-what .intro ul li {
  width: calc((100% - 30px)/3);
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}
.sub-what .intro ul li:last-child {margin-right: 0;}
.sub-what .intro ul li::after {
  content: "";
  border: 20px solid rgba(255,255,255,0.2);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.sub-spal .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.sub-spal .btn-wrap .more-btn {
  border-color: #0b4da2;
  margin: 0 10px;
}
.sub-spal .btn-wrap .more-btn b {color: #0b4da2;}
.sub-spal .btn-wrap .more-btn:hover {background: #0b4da2;}
.sub-spal .btn-wrap .more-btn:hover b {color: #fff;}
.sub-spal .btn-wrap .more-btn:hover line,
.sub-spal .btn-wrap .more-btn:hover polyline {stroke: #fff}

.sub-quality .bottom {
  background: url(/img/assets/quality_bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
  padding-bottom: 150px !important;
}
.sub-quality .bottom ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}
.sub-quality .bottom ul li {
  width: calc((100% - 60px)/3);
  margin-right: 30px;
  margin-bottom: 30px;
  background: #fff;
  padding: 50px 30px;
  text-align: center;
}
.sub-quality .bottom ul li:nth-child(3n) {margin-right: 0;}
.sub-quality .bottom ul li p {
  font-size: 22px;
  font-weight: bold;
  margin-top: 30px;
}
@media all and (max-width: 991px) {
  .sub-quality .bottom ul li {width: calc((100% - 30px) / 2);}
  .sub-quality .bottom ul li:nth-child(3n) {margin-right: 30px;}
  .sub-quality .bottom ul li:nth-child(2n) {margin-right: 0;}
}
@media all and (max-width: 767px) {
  .sub-what .intro .desc {margin-top: -20px;}
  .sub-what .intro ul {margin-top: 40px;}
  .sub-what .intro ul li {
    width: 100%;
    margin: 0 0 15px;
  }
  .sub-what .intro ul li:last-child {margin-bottom: 0;}
  .sub-what .intro ul li::after {border-width: 10px;}

  .sub-spal .btn-wrap {margin-top: 40px;}
  .sub-spal .btn-wrap .more-btn {
    max-width: 250px;
    margin-bottom: 10px;
  }

  .sub-quality .bottom ul li {
    width: 100%;
    padding: 30px;
    margin: 0 0 15px !important;
  }
  .sub-quality .bottom ul li:last-child {margin-bottom: 0 !important;}
  .sub-quality .bottom ul li img {height: 60px;}
  .sub-quality .bottom ul li p {
    font-size: 18px;
    margin-top: 15px;
  }
}