@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, body {
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  color: #000000;
  text-decoration: none;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.img-wrap {
  font-size: 0;
}

img {
  max-width: 100%;
}

.main-color-font {
  color: #29AD37;
}

.before-load .wrapper {
  opacity: 0;
}
.before-load .loading {
  opacity: 1;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: white;
  opacity: 0;
  transition: 0.5s;
}
.loading .loading-circle {
  width: 54px;
  height: 54px;
  animation: loading-spin 3s infinite;
}
.loading .loading-circle circle {
  stroke: #29AD37;
  stroke-width: 4;
  /* getTotalLength()로 stroke의 길이를 얻어올 수 있음 */
  stroke-dasharray: 157, 157;
  stroke-dashoffset: 0;
  fill: transparent;
  animation: loading-circle-ani 1s infinite;
  /* transition: 1s; */
}

@keyframes loading-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-circle-ani {
  0% {
    stroke-dashoffset: 157;
  }
  75% {
    stroke-dashoffset: -147;
  }
  100% {
    stroke-dashoffset: -157;
  }
}
.tab-btns {
  display: flex;
}
.tab-btns li a {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -1.4px;
  margin-right: 35px;
  color: #B5B5B5;
  cursor: pointer;
}
.tab-btns li.is_on a {
  color: #000000;
}
.tab-btns li.is_on:last-child {
  margin-right: 0;
}

.tab-contents .tab-content {
  display: none;
}
.tab-contents .tab-content.is_on {
  display: block;
}

.bar-list li {
  position: relative;
}
.bar-list li:first-child {
  padding-left: 0 !important;
}
.bar-list li:first-child::before {
  display: none;
}
.bar-list li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
}

.animate-hidden-box {
  overflow: hidden;
}

.back-to-position {
  opacity: 0;
  transition-duration: 1s;
}
.back-to-position.delay-1s {
  transition-delay: 0.1s;
}
.back-to-position.duration-1s {
  transition-duration: 0.1s;
}
.back-to-position.delay-2s {
  transition-delay: 0.2s;
}
.back-to-position.duration-2s {
  transition-duration: 0.2s;
}
.back-to-position.delay-3s {
  transition-delay: 0.3s;
}
.back-to-position.duration-3s {
  transition-duration: 0.3s;
}
.back-to-position.delay-4s {
  transition-delay: 0.4s;
}
.back-to-position.duration-4s {
  transition-duration: 0.4s;
}
.back-to-position.delay-5s {
  transition-delay: 0.5s;
}
.back-to-position.duration-5s {
  transition-duration: 0.5s;
}
.back-to-position.delay-6s {
  transition-delay: 0.6s;
}
.back-to-position.duration-6s {
  transition-duration: 0.6s;
}
.back-to-position.delay-7s {
  transition-delay: 0.7s;
}
.back-to-position.duration-7s {
  transition-duration: 0.7s;
}
.back-to-position.delay-8s {
  transition-delay: 0.8s;
}
.back-to-position.duration-8s {
  transition-duration: 0.8s;
}
.back-to-position.delay-9s {
  transition-delay: 0.9s;
}
.back-to-position.duration-9s {
  transition-duration: 0.9s;
}
.back-to-position.delay-10s {
  transition-delay: 1s;
}
.back-to-position.duration-10s {
  transition-duration: 1s;
}
.back-to-position.delay-11s {
  transition-delay: 1.1s;
}
.back-to-position.duration-11s {
  transition-duration: 1.1s;
}
.back-to-position.delay-12s {
  transition-delay: 1.2s;
}
.back-to-position.duration-12s {
  transition-duration: 1.2s;
}
.back-to-position.delay-13s {
  transition-delay: 1.3s;
}
.back-to-position.duration-13s {
  transition-duration: 1.3s;
}
.back-to-position.delay-14s {
  transition-delay: 1.4s;
}
.back-to-position.duration-14s {
  transition-duration: 1.4s;
}
.back-to-position.delay-15s {
  transition-delay: 1.5s;
}
.back-to-position.duration-15s {
  transition-duration: 1.5s;
}
.back-to-position.delay-16s {
  transition-delay: 1.6s;
}
.back-to-position.duration-16s {
  transition-duration: 1.6s;
}
.back-to-position.delay-17s {
  transition-delay: 1.7s;
}
.back-to-position.duration-17s {
  transition-duration: 1.7s;
}
.back-to-position.delay-18s {
  transition-delay: 1.8s;
}
.back-to-position.duration-18s {
  transition-duration: 1.8s;
}
.back-to-position.delay-19s {
  transition-delay: 1.9s;
}
.back-to-position.duration-19s {
  transition-duration: 1.9s;
}
.back-to-position.delay-20s {
  transition-delay: 2s;
}
.back-to-position.duration-20s {
  transition-duration: 2s;
}
.back-to-position.to-top {
  transform: translateY(70px);
}
.back-to-position.to-right {
  transform: translateX(-150px);
}
.back-to-position.to-left {
  transform: translateX(70px);
}

.show .back-to-position {
  opacity: 1;
}
.show .back-to-position.to-top {
  transform: translateY(0px);
}
.show .back-to-position.to-right, .show .back-to-position.to-left {
  transform: translateX(0px);
}

@media screen and (max-width: 1120px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}
@media screen and (max-width: 720px) {
  body {
    overflow-x: hidden;
  }
}
header {
  padding: 24px 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header .logo a {
  width: 154px;
  height: 40px;
  text-indent: -99999px;
  background: url("/assets/img/logo.png") no-repeat;
}
header .hamburger-icon {
  display: none;
}
header .d-flex {
  justify-content: space-between;
  align-items: center;
}
header .d-flex .gnb a {
  color: #B5B5B5;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -3.5%;
  font-weight: 700;
  display: inline-block;
  margin-left: 40px;
  transition: color 0.3s ease-in-out;
}
header .d-flex .gnb a:first-child {
  margin-left: 0;
}
header .d-flex .gnb a:hover {
  color: #ffffff;
}
header .d-flex .gnb a.active {
  color: #ffffff;
}
header.scroll-active {
  background-color: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}
header.scroll-active .logo a {
  background: url("/assets/img/header_logo_active.png") no-repeat;
  background-size: contain;
}
header.scroll-active .d-flex .gnb a:hover {
  color: #000000;
}
header.scroll-active .d-flex .gnb a.active {
  color: #000000;
}

@media screen and (max-width: 1120px) {
  header .d-flex .gnb a {
    font-size: 18px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 720px) {
  header {
    padding: 16px 0;
  }
  header .gnb-wrap {
    display: none;
  }
  header .hamburger-icon {
    display: block;
    width: 20px;
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  header .hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  header .hamburger-icon span:nth-child(1) {
    top: 0px;
  }
  header .hamburger-icon span:nth-child(2), header .hamburger-icon span:nth-child(3) {
    top: 8px;
  }
  header .hamburger-icon span:nth-child(1) {
    top: 16px;
  }
  header .hamburger-icon.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
  }
  header .hamburger-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .hamburger-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .hamburger-icon.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
  }
  header .logo {
    margin-left: 4px;
  }
  header .logo a {
    width: 123px;
    height: 24px;
    background-size: contain;
  }
  header.scroll-active .hamburger-icon span {
    background-color: #000000;
  }
  .gnb-open {
    overflow-y: hidden;
  }
  .gnb-open header .hamburger-icon {
    position: relative;
    z-index: 99;
  }
  .gnb-open header .hamburger-icon span {
    background-color: #29AD37;
  }
  .gnb-open header .gnb-wrap {
    position: fixed;
    z-index: 9;
    display: block;
    top: 0;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
  }
  .gnb-open header .gnb-wrap .gnb {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }
  .gnb-open header .gnb-wrap .gnb a {
    margin-left: 0;
    display: inline-block;
    margin-bottom: 40px;
    color: #000000;
  }
  .gnb-open header .gnb-wrap .gnb a:hover, .gnb-open header .gnb-wrap .gnb a.active {
    color: #29AD37;
  }
}
footer {
  background-color: #F8F8F8;
  font-weight: 400;
  padding: 38px 0 100px 0;
  color: #777;
  font-size: 16px;
  letter-spacing: -0.4px;
}
footer .footer-links li {
  padding-left: 38px;
  position: relative;
}
footer .footer-links li a {
  line-height: 24px;
  color: #777;
}
footer .footer-links li::before {
  background-color: #c5c5c5;
  left: 17px;
  top: 6px;
  border-radius: 5px;
}
footer .call-num {
  margin: 32px 0;
}
footer .call-num strong {
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  border-bottom: 2px solid #000000;
  margin-right: 11px;
}
footer .footer-info {
  line-height: 24px;
}
footer .footer-info > p {
  color: #000000;
  margin-bottom: 9px;
  line-height: 19.2px;
}
footer .footer-info .company-info {
  margin-bottom: 8px;
}
footer .footer-info .company-info li {
  padding-left: 26px;
}
footer .footer-info .company-info li::before {
  background-color: #DDDDDD;
  left: 12px;
  top: 6px;
}
footer .footer-info > div > p {
  line-height: 24px;
  margin-bottom: 8px;
}
footer .footer-copy-wrap {
  margin-top: 10px;
  justify-content: space-between;
  align-items: flex-end;
}
footer .footer-copy-wrap .sns a {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 24px;
}
footer .footer-copy-wrap .sns a.sns-1 {
  background-image: url("/assets/img/sns-1.svg");
  background-size: contain;
}
footer .footer-copy-wrap .sns a.sns-2 {
  background-image: url("/assets/img/sns-2.svg");
  background-size: contain;
}
footer .footer-copy-wrap .sns a.sns-3 {
  background-image: url("/assets/img/sns-3.svg");
  background-size: contain;
}
footer .footer-copy-wrap .sns a.sns-4 {
  background-image: url("/assets/img/sns-4.svg");
  background-size: contain;
}
footer .footer-copy-wrap .sns a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 720px) {
  footer {
    padding: 40px 0;
  }
  footer .footer-links {
    flex-direction: column;
  }
  footer .footer-links li {
    padding-left: 0;
    margin-bottom: 8px;
  }
  footer .footer-links li::before {
    display: none;
  }
  footer .footer-links li:last-child {
    margin-bottom: 0;
  }
  footer .footer-links li a {
    font-size: 14px;
    line-height: 24px;
    padding: 4px;
  }
  footer .call-num {
    margin: 48px 0 32px;
  }
  footer .call-num strong {
    font-size: 20px;
    line-height: 21px;
  }
  footer .call-num span {
    display: block;
    margin-top: 8px;
  }
  footer .footer-info > p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
  }
  footer .footer-info .company-info {
    margin-bottom: 8px;
  }
  footer .footer-info .company-info li {
    font-size: 12px;
    line-height: 18px;
    padding-left: 17px;
  }
  footer .footer-info .company-info li::before {
    left: 8px;
  }
  footer .footer-info > div > p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 8px;
  }
  footer .footer-copy-wrap {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-copy-wrap .copy {
    font-size: 12px;
    line-height: 22px;
  }
  footer .footer-copy-wrap .sns {
    margin-top: 32px;
  }
}
.main-section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/img/main-section-bg.png") no-repeat 50%;
  background-size: cover;
  position: relative;
}
.main-section h2 {
  font-size: 56px;
  line-height: 84px;
  letter-spacing: -2%;
  font-weight: 800;
  color: #ffffff;
}
.main-section .icon-scroll {
  position: absolute;
  font-size: 0;
  text-indent: -9999px;
  width: 32px;
  height: 16px;
  background: url("/assets/img/scrollIcon.svg") no-repeat 50%;
  background-size: contain;
  bottom: 33px;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: mover 0.8s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.main-point-font {
  font-weight: 800;
  line-height: 54.8px;
  font-size: 40px;
  letter-spacing: -2%;
}
.main-point-font span {
  font-weight: 800;
}

.main-goals {
  padding: 150px 0 0 0;
}
.main-goals .goals-text {
  padding-bottom: 100px;
}
.main-goals .goals-text ul {
  width: 832px;
  margin: 120px auto 0;
}
.main-goals .goals-text ul li {
  margin-top: 100px;
}
.main-goals .goals-text ul li:first-child {
  margin-top: 0;
}
.main-goals .goals-text ul li > div {
  width: 288px;
  position: relative;
  flex-shrink: 0;
}
.main-goals .goals-text ul li > div strong {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -1.75px;
  padding-right: 29px;
  background: #ffffff;
  position: relative;
}
.main-goals .goals-text ul li > div::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 1px;
  background-color: #CDCDCD;
  right: 34px;
  top: 28px;
}
.main-goals .goals-text ul li p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -1px;
  min-height: 90px;
}
.main-goals .goals-nums {
  position: relative;
  padding: 300px 0;
  color: #ffffff;
}
.main-goals .goals-nums::before {
  position: absolute;
  content: "";
  top: 0;
  height: 300px;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(187, 187, 187, 0) 0%, rgb(0, 0, 0) 63.6%);
}
.main-goals .goals-nums::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 300px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  background: linear-gradient(rgba(187, 187, 187, 0) 0%, rgb(0, 0, 0) 63.6%);
}
.main-goals .goals-nums .bg-wrap {
  background-color: #000000;
}
.main-goals .goals-nums .main-point-font {
  color: #ffffff;
}
.main-goals .goals-nums .d-flex {
  justify-content: space-between;
  align-items: flex-end;
}
.main-goals .goals-nums .d-flex .date {
  color: #B5B5B5;
  font-size: 16px;
  line-height: 21.92px;
  letter-spacing: -0.32px;
}
.main-goals .goals-nums ul {
  padding: 120px 0 0 96px;
}
.main-goals .goals-nums ul li {
  margin-top: 88px;
}
.main-goals .goals-nums ul li:first-child {
  margin-top: 0;
}
.main-goals .goals-nums ul li span {
  display: block;
  font-size: 32px;
  line-height: 43.84px;
  letter-spacing: -0.64px;
  color: #B5B5B5;
}
.main-goals .goals-nums ul li strong {
  display: block;
  font-weight: 700;
  font-size: 102px;
  line-height: 139.74px;
  letter-spacing: -2.04px;
}
.main-goals .goals-nums ul li.customers strong {
  font-size: 60px;
  line-height: 82.2px;
  letter-spacing: -1.2px;
}

.main-business {
  padding: 160px 0 0;
}
.main-business .tab-btns {
  margin-top: 100px;
}
.main-business .tab-contents .tab-content {
  margin-top: 40px;
  padding-left: 89px;
}
.main-business .tab-contents .tab-content.b2b-cont .img-cont b {
  display: block;
  margin-bottom: 56px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.main-business .tab-contents .tab-content.b2b-cont .nav-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.main-business .tab-contents .tab-content.b2b-cont .nav-wrap .nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #F1F1F1;
  position: relative;
  cursor: pointer;
}
.main-business .tab-contents .tab-content.b2b-cont .nav-wrap .nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -6px;
  width: 6px;
  height: 12px;
  background: url("/assets/img/pagenation-arrow.svg") no-repeat 50%;
  background-size: contain;
}
.main-business .tab-contents .tab-content.b2b-cont .nav-wrap .nav-btn.nav-next {
  transform: rotate(180deg);
}
.main-business .tab-contents .tab-content.b2b-cont .swiper-pagination {
  bottom: 0;
  width: auto;
  position: relative;
}
.main-business .tab-contents .tab-content.b2b-cont .swiper-pagination span {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background: transparent;
  margin: 0 0 0 8px;
}
.main-business .tab-contents .tab-content.b2b-cont .swiper-pagination span:last-child {
  margin-right: 8px;
}
.main-business .tab-contents .tab-content.b2b-cont .swiper-pagination span.swiper-pagination-bullet-active {
  font-weight: 700;
  color: #ffffff;
  background-color: #29AD37;
}
.main-business .tab-contents .tab-content.b2c-cont .main-color-font {
  margin: 24px 0 38px;
  display: flex;
  align-items: center;
}
.main-business .tab-contents .tab-content.b2c-cont .main-color-font .arrow-icon {
  width: 12px;
  height: 6px;
  background: url("/assets/img/arrow-icon.svg") no-repeat;
  background-size: contain;
  margin-left: 7px;
}
.main-business .tab-contents .tab-content.b2c-cont .appStoreBtns {
  display: flex;
}
.main-business .tab-contents .tab-content.b2c-cont .appStoreBtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  border: 1px solid #2E2C2F;
  transition: background-color 0.3s ease-in-out;
  border-radius: 8px;
}
.main-business .tab-contents .tab-content.b2c-cont .appStoreBtns a:hover, .main-business .tab-contents .tab-content.b2c-cont .appStoreBtns a:active {
  background-color: #F4F4F4;
}
.main-business .tab-contents .tab-content.b2c-cont .appStoreBtns a:first-child {
  margin-right: 32px;
}
.main-business .tab-contents .tab-content.b2c-cont .appStoreBtns a img {
  width: 98px;
}
.main-business .tab-contents .d-flex {
  justify-content: center;
}
.main-business .tab-contents .d-flex .img-wrap {
  text-align: center;
  padding-right: 32px;
  width: 640px;
}
.main-business .tab-contents .d-flex .text-cont {
  width: 448px;
  flex-shrink: 0;
}
.main-business .tab-contents .d-flex .text-cont b {
  display: block;
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: -1.6px;
}
.main-business .tab-contents .d-flex .text-cont p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -1px;
}

.main-history {
  padding-top: 160px;
}
.main-history .border-box {
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 12px;
  margin-top: 80px;
}
.main-history .border-box .tab-btns button {
  position: relative;
}
.main-history .border-box .tab-btns button.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -12px;
  background: #000000;
}
.main-history .tab-contents ol {
  padding-left: 123px;
  padding-top: 8px;
}
.main-history .tab-contents ol li {
  font-weight: 400;
  display: flex;
  font-size: 20px;
  line-height: 27.4px;
  margin-top: 40px;
  letter-spacing: -0.4px;
}
.main-history .tab-contents ol li > span {
  width: 40px;
  text-align: right;
  margin-right: 34px;
  flex-shrink: 0;
}
.main-history .tab-contents ol li > p > span {
  margin-bottom: 24px;
  display: block;
}
.main-history .tab-contents ol li > p > span:last-child {
  margin-bottom: 0;
}

.main-news {
  padding: 160px 0 87px;
}
.main-news .news-lists {
  border-top: 1px solid #F1F1F1;
  width: 928px;
  margin: 80px auto 0;
}
.main-news .news-lists a {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid #F1F1F1;
}
.main-news .news-lists a p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32.88px;
  margin-bottom: 12px;
  word-break: keep-all;
}
.main-news .news-lists a span {
  color: #B5B5B5;
  font-size: 16px;
  line-height: 22px;
}
.main-news .news-lists a span .date {
  position: relative;
  padding-left: 21px;
}
.main-news .news-lists a span .date::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #B5B5B5;
  border-radius: 50%;
  left: 10px;
  top: 9px;
}
.main-news .news-lists a:hover p, .main-news .news-lists a:active p {
  color: #29AD37;
}

.main-partnership {
  background-color: #FEFEFE;
  padding: 160px 0 0 0;
}
.main-partnership ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 64px auto 0;
  padding: 0 26px;
}
.main-partnership ul li {
  width: 188px;
  height: 100px;
  margin-right: 32px;
}
.main-partnership ul li:nth-child(9), .main-partnership ul li:nth-child(14), .main-partnership ul li:nth-child(18) {
  margin-right: 0;
}

.main-contact {
  padding: 160px 0 200px 0;
  font-weight: 400;
}
.main-contact .contact-small-font {
  color: #B5B5B5;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 6px;
  display: block;
}
.main-contact p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.4px;
}
.main-contact .eng-adderss {
  color: #777;
  display: block;
  margin: 12px 0 24px;
}
.main-contact .maps {
  padding: 0 96px;
  margin-top: 80px;
}
.main-contact .maps ul {
  justify-content: space-between;
  padding-bottom: 26px;
}
.main-contact .maps ul li {
  width: 448px;
}
.main-contact .maps ul li .map {
  height: 220px;
  margin-top: 24px;
  background: #777777;
}
.main-contact .maps > div {
  margin-top: 38px;
}

@media screen and (max-width: 1120px) {
  .main-goals .goals-nums ul {
    padding-left: 0;
  }
  .main-goals .goals-nums ul li strong {
    font-size: 96px;
  }
  .main-news .news-lists {
    width: 100%;
  }
  .main-partnership ul li {
    width: 28%;
    margin-right: 0;
  }
  .main-contact .maps {
    padding: 0;
  }
  .main-contact .maps ul li {
    width: 48%;
  }
}
@media screen and (max-width: 720px) {
  .main-section {
    height: 100vh;
  }
  .main-section h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .main-point-font {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 32.88px;
  }
  .main-goals {
    padding-top: 60px;
  }
  .main-goals .goals-text ul {
    width: 100%;
    margin-top: 32px;
  }
  .main-goals .goals-text ul li {
    flex-direction: column;
    margin-top: 40px;
  }
  .main-goals .goals-text ul li > div {
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  .main-goals .goals-text ul li > div::before {
    top: 100%;
    right: 0;
    width: 100%;
  }
  .main-goals .goals-text ul li > div strong {
    font-size: 24px;
    line-height: 30px;
    background: transparent;
  }
  .main-goals .goals-text ul li > p {
    font-size: 16px;
    line-height: 24px;
  }
  .main-goals .goals-nums {
    padding: 100px 0;
  }
  .main-goals .goals-nums::before, .main-goals .goals-nums::after {
    height: 100px;
  }
  .main-goals .goals-nums .d-flex .date {
    font-size: 12px;
    line-height: 16.44px;
  }
  .main-goals .goals-nums ul {
    padding: 0;
    margin-top: 60px;
  }
  .main-goals .goals-nums ul li {
    margin-top: 44px;
  }
  .main-goals .goals-nums ul li span {
    font-size: 14px;
    line-height: 19.18px;
    letter-spacing: -0.28px;
  }
  .main-goals .goals-nums ul li strong {
    font-size: 34px;
    line-height: 46.58px;
  }
  .main-goals .goals-nums ul li.customers {
    display: none;
  }
  .main-business {
    padding: 100px 0 0;
  }
  .main-business .main-point-font br {
    display: none;
  }
  .main-business .tab-btns {
    margin-top: 40px;
  }
  .main-business .tab-btns li {
    margin-right: 24px;
  }
  .main-business .tab-btns li:last-child {
    margin-right: 0;
  }
  .main-business .tab-btns li a {
    font-size: 32px;
    line-height: 40px;
    margin-right: 0;
  }
  .main-business .tab-contents .tab-content {
    padding: 0;
    margin-top: 30px;
  }
  .main-business .tab-contents .tab-content.b2c-cont .main-color-font {
    justify-content: center;
    width: 194px;
    line-height: 39px;
    height: 41px;
    border: 1px solid #29AD37;
    border-radius: 24px;
  }
  .main-business .tab-contents .d-flex {
    flex-direction: column;
  }
  .main-business .tab-contents .d-flex .img-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  .main-business .tab-contents .d-flex .text-cont {
    width: 100%;
  }
  .main-business .tab-contents .d-flex .text-cont b {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 6px;
  }
  .main-business .tab-contents .d-flex .text-cont p {
    font-size: 16px;
    line-height: 24px;
  }
  .main-history {
    padding-top: 100px;
    border-bottom: 1px solid #F1F1F1;
  }
  .main-history .border-box {
    overflow-x: hidden;
    margin-top: 40px;
  }
  .main-history .border-box .tab-btns {
    overflow-x: auto;
  }
  .main-history .tab-contents ol {
    padding: 0 0 60px 0;
  }
  .main-history .tab-contents ol li {
    margin-top: 32px;
  }
  .main-history .tab-contents ol li > span {
    font-size: 16px;
    line-height: 21.92px;
    width: 35px;
  }
  .main-history .tab-contents ol li p {
    font-size: 16px;
    line-height: 21.92px;
  }
  .main-news {
    padding: 80px 0;
  }
  .main-news .news-lists {
    margin-top: 32px;
  }
  .main-news .news-lists a {
    padding: 16px 0;
  }
  .main-news .news-lists a p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 21.92px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main-news .news-lists a span {
    font-size: 12px;
    line-height: 16.44px;
  }
  .main-news .news-lists a span .date {
    padding-left: 13px;
  }
  .main-news .news-lists a span .date::before {
    width: 3px;
    height: 3px;
    left: 5px;
    top: 7px;
  }
  .main-news .news-lists a:hover, .main-news .news-lists a:active {
    background-color: #F1F1F1;
  }
  .main-partnership {
    padding: 80px 0;
    background-color: #F1F1F1;
  }
  .main-partnership ul {
    margin-top: 32px;
    padding: 0;
    justify-content: space-around;
  }
  .main-partnership ul li {
    width: 100px;
    height: 54px;
    margin-right: 14px !important;
  }
  .main-partnership ul li:nth-child(3n) {
    margin-right: 0 !important;
  }
  .main-contact {
    padding: 80px 0 100px 0;
  }
  .main-contact .contact-small-font {
    font-size: 14px;
    line-height: 19.18px;
  }
  .main-contact p {
    font-size: 16px;
    line-height: 21.92px;
  }
  .main-contact .eng-adderss {
    margin: 8px 0 16px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }
  .main-contact .maps {
    padding: 0;
    margin-top: 32px;
  }
  .main-contact .maps ul {
    flex-direction: column;
    padding-bottom: 16px;
  }
  .main-contact .maps ul li {
    width: 100%;
    margin-top: 48px;
  }
  .main-contact .maps ul li:first-child {
    margin-top: 0;
  }
  .main-contact .maps > div {
    margin-top: 24px;
  }
}

/*# sourceMappingURL=greenRibon.css.map */
