.main_contents {
  width: 1200px;
  margin: 0 auto;
}

.header {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  background-color: var(--color-white);
  min-width: 1200px;
  transition: background 0.3s ease;
}

.header.transparent {
  background-color: transparent;
}

.header.transparent .header__utils .active {
  color: var(--color-white);
}

.header__logo img {
  height: 44px;
}

.header__utils {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__utils a {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray9a);
}

.header__utils a.active {
  color: var(--color-black);
}

/* about 페이지 */
/* abput banner */
.about_banner {
  background: url("/assets/img/bg_aboutbanner.png") no-repeat center center /
    cover;
  width: 100%;
  height: 960px;
  position: relative;
  min-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 136px;
  align-items: center;
}

.about_banner__left p {
  color: var(--color-white);
}

.about_banner__left .title {
  font-size: 60px;
  font-weight: 700;
}

.about_banner__left .desc {
  margin-top: 16px;
  color: var(--color-gray9a);
  font-size: 28px;
  font-weight: 500;
}

.about_banner__left .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  padding: 0 40px;
  width: max-content;
  height: 72px;
}

.about_banner__right img {
  width: 465px;
  height: 660px;
}

.about_banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}

.about_banner .scroll img {
  width: 72px;
  height: 68px;
}

.coming_txt {
  text-align: center;
  padding: 17px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gray9a);
}

.coming_txt span {
  color: var(--color-blue);
}

/* count */
.count {
  background-color: var(--bg-blue);
  height: 300px;
  display: flex;
  align-items: center;
  min-width: 1200px;
}

.count__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.count__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.count__item:not(:last-child) {
  border-right: 1px solid #eee;
}

.count__item .name {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.count__item .amount {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  color: var(--color-blue);
}

.count__item img {
  width: 160px;
  height: 120px;
}

/* about finance */
.about_fin {
  padding: 160px 0;
}

.about_fin .title_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_fin .title_box .sub {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 600;
}

.about_fin .title_box .title {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 600;
}

.about_fin .title_box .desc {
  margin-top: 12px;
  color: var(--color-gray7b);
  font-weight: 500;
  text-align: center;
  line-height: 150%;
}

/* rolling banner */

.rolling_wrap {
  margin-top: 140px;
}

.rolling-swiper {
  overflow: hidden;
  min-width: 1200px;
  padding: 8px 0;
}

.rolling-swiper:nth-child(2) {
  margin-top: 56px;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.rolling-swiper .swiper-slide {
  width: 220px;
  height: 120px;
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 0px 0px 8px 3px #1b6fed14;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* about : service */
.about_service {
  padding: 120px 0 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_service .title_box .sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
}

.about_service .title_box .title {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.about_service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about_service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about_service__item .txt {
  margin-top: 24px;
  text-align: center;
}

.about_service__item .title {
  font-size: 26px;
  font-weight: 600;
  color: #444;
}

.about_service__item .desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray7b);
  margin-top: 8px;
}

.about_service__item .tag__list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.about_service__item .tag__item {
  padding: 6px 16px;
  border-radius: 999px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

.about_service__item .tag__list.purple .tag__item {
  background-color: var(--bg-purple);
  color: var(--color-purple);
}

.about_service__item .tag__list.green .tag__item {
  background-color: #e0f5db;
  color: var(--color-green);
}

.about_service__item .tag__list.red .tag__item {
  background-color: #ffe0e0;
  color: var(--color-red);
}

/* strength */
.about_why {
  background-color: var(--bg-blue);
  padding: 120px 0 200px 0;
}

.strength__list {
  margin-top: 80px;

  display: flex;
  justify-content: center;
  padding-left: 52.5px;
}

.strength__item {
  width: 326px;
  height: 326px;
  flex-shrink: 0;
  margin-left: -35px;
  border: 2px solid #bed8ff;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
}

.strength__item {
  width: 326px;
  height: 326px;
  border: 1px solid #dde8ff;
  transition: 0.4s;
  animation: strengthGlow 12s infinite;
}

/* 순서 밀기 */

.strength__item:nth-child(1) {
  animation-delay: 0s;
}

.strength__item:nth-child(2) {
  animation-delay: 3s;
}

.strength__item:nth-child(3) {
  animation-delay: 6s;
}

.strength__item:nth-child(4) {
  animation-delay: 9s;
}

/* glow */
@keyframes strengthGlow {
  0% {
    border-color: #dde8ff;
    box-shadow: 0 0 0 rgba(27, 111, 237, 0);
  }

  6% {
    border-color: var(--color-blue);

    box-shadow:
      0 0 8px rgba(27, 111, 237, 0.35),
      0 0 30px rgba(27, 111, 237, 0.18);
  }

  14% {
    border-color: var(--color-blue);

    box-shadow:
      0 0 15px rgba(27, 111, 237, 0.6),
      0 0 40px rgba(27, 111, 237, 0.28);
  }

  /* 여기만 살짝 더 오래 */
  26% {
    border-color: rgba(27, 111, 237, 0.45);

    box-shadow:
      0 0 8px rgba(27, 111, 237, 0.22),
      0 0 18px rgba(27, 111, 237, 0.08);
  }

  34%,
  100% {
    border-color: #dde8ff;
    box-shadow: 0 0 0 rgba(27, 111, 237, 0);
  }
}
/* @keyframes strengthGlow {
  0%,
  20% {
    border: 2px solid var(--color-blue);
    box-shadow: 0px 0px 40px 2px #1b6fed;
    box-shadow: 0px 0px 15px 0px #1b6fedcc;
  }

  25%,
  100% {
    border: 1px solid #dde8ff;
    box-shadow: none;
  }
} */

.about_why .title_box .sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
}

.about_why .title_box .title {
  margin-top: 8px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.strength__item:first-child {
  margin-left: 0;
}

/* text */

.strength__item .num {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 100%;
}

.strength__item .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.strength__item .desc {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray7b);
}

/* main banner */
.main_banner {
  background: url("/assets/img/bg_servicebanner.png") no-repeat center center /
    cover;
  width: 100%;
  height: 692px;
  position: relative;
  min-width: 1200px;
}

.main_banner__txt {
  position: absolute;
  left: 320px;
  top: 165px;
  font-weight: 600;
}

.main_banner__txt .sub {
  font-size: 16px;
  color: var(--color-white);
}

.main_banner__txt .title {
  font-size: 36px;
  margin-top: 8px;
  line-height: 150%;
  color: var(--color-white);
}

.main_banner__txt .desc {
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 150%;
  color: var(--color-white);
}

/* service 페이지 */

/* tab */
.tab_menu {
  position: sticky;
  top: 72px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-grayde);
  z-index: 50;
}

.tab_menu__list {
  height: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}

.tab_menu__item {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gray9a);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 3px solid transparent;
}

/* service */
section.service {
  padding: 140px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__title .badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

.service.purple .service__title .badge {
  background-color: var(--bg-purple);
  color: var(--color-purple);
}

.service.red .service__title .badge {
  background-color: #ffe0e0;
  color: var(--color-red);
}

.service.green .service__title .badge {
  background-color: #e0f5db;
  color: var(--color-green);
}

.service__title .title {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 150%;
}

.service__title .desc {
  margin-top: 12px;
  color: var(--color-gray7b);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

.service__content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.service__content .title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}

.service__content .title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 4px;
  content: "";
}

.service.purple .service__content .title::before {
  background-color: var(--color-purple);
}

.service.green .service__content .title::before {
  background-color: var(--color-green);
}

.service.red .service__content .title::before {
  background-color: var(--color-red);
}

.service__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 32px;
  width: 100%;
}

.service__list.grid2 {
  grid-template-columns: repeat(2, 1fr);
}

.service__item {
  padding: 16px 24px 20px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__item {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}
/* 서비스 카드 : 배경 */
.service.purple .service__list.bg .service__item {
  background-color: var(--bg-purple);
}
.service.green .service__list.bg .service__item {
  background-color: var(--bg-green);
}
.service.red .service__list.bg .service__item {
  background-color: var(--bg-red);
}

/* 서비스 카드 : 라인 */
.service.purple .service__list.line .service__item {
  border: 1px solid var(--color-purple);
}
.service.green .service__list.line .service__item {
  border: 1px solid var(--color-green);
}
.service.red .service__list.line .service__item {
  border: 1px solid var(--color-red);
}

.service__item .title_box {
  text-align: center;
}

.service__item .sub {
  font-size: 14px;
  font-weight: 500;
}

.service.purple .service__item .sub {
  color: var(--color-purple);
}
.service.green .service__item .sub {
  color: var(--color-green);
}
.service.red .service__item .sub {
  color: var(--color-red);
}

.service__item .name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 2px;
}

.service__item .txt {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray7b);
}

.service__item .tag__list {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service__item .tag__item {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
}

.service.purple .service__item .tag__item {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.service.green .service__item .tag__item {
  border-color: var(--color-green);
  color: var(--color-green);
}

.service.red .service__item .tag__item {
  border-color: var(--color-red);
  color: var(--color-red);
}

.tab_menu__item {
  color: var(--color-gray9a);
  transition: all 0.3s;
  cursor: pointer;
}

/* 기본 active */
.tab_menu__item.active {
  font-weight: 700;
}

/* 섹션별 색상 */
.tab_menu__item.active.purple {
  color: var(--color-purple);
  border-bottom: 3px solid var(--color-purple);
}

.tab_menu__item.active.green {
  color: var(--color-green);
  border-bottom: 3px solid var(--color-green);
}

.tab_menu__item.active.red {
  color: var(--color-red);
  border-bottom: 3px solid var(--color-red);
}

.online_pic {
  background-color: var(--color-grayf9);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 1200px;
  margin-top: 40px;
  border-radius: 16px;
  padding: 32px 0;
}

.online_pic .con {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.online_pic .con img {
  width: 120px;
  height: 120px;
}

.online_pic .con .txt {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray7b);
}

.online_pic .arr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.online_pic .arr .txt {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-graya2);
}

/* bottom banner */
.btm_banner {
  width: 100%;
  height: 634px;
  background: url(/assets/img/bg_about.png) no-repeat center center / cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1200px;
}

.btm_banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btm_banner .txt p {
  text-align: center;
  color: var(--color-white);
}

.btm_banner .title {
  font-size: 48px;
  font-weight: 700;
}

.btm_banner .desc {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 500;
}

.btm_banner .link {
  display: inline-block;
  margin-top: 40px;
  width: 278px;
  height: 72px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* footer */
.footer {
  /* height: 80px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 1200px;
  padding: 24px 32px;
}

.footer__logo img {
  height: 32px;
}

.footer__right {
  display: flex;
  gap: 80px;
  align-items: end;
}

.footer__img {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__img img {
  width: 60px;
  height: 60px;
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: right;
  margin-top: 16px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__info li {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: #7a7e7e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__info li span {
  color: #7a7e7e;
  font-weight: 400;
}

.footer__info .row {
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer__info .row.items .info__item:first-child {
  padding-right: 8px;
  position: relative;
}

.footer__info .row.row.items .info__item:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #aaa;
}

.footer__info .row.items .info__item:last-child {
  padding-left: 8px;
}

@media screen and (max-width: 1200px) {
  .service__content {
    padding: 0 16px;
  }

  .online_pic {
    width: 1168px;
  }
}
