@charset 'utf-8';
/* CSS Document */

/* reset */
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
table {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
main {
  display: block;
}
a {
  color: inherit;
  text-decoration: inherit;
}
a img {
  border: none;
}
img {
  vertical-align: middle;
}
li {
  list-style: none;
}
address,
em,
i,
cite {
  font-style: normal;
}
table {
  border-collapse: collapse;
}
table caption {
  overflow: hidden;
  width: 0;
  height: 0;
}
i.fas,
i.far,
i.fab {
  vertical-align: middle;
  display: inline-block;
}
i.fas span,
i.far span,
i.fab span {
  position: absolute;
  overflow: hidden;
  text-indent: -999px;
}
.mobile {
  display: none !important;
}
br.only-m {
  content: "";
}
br.only-m:after {
  content: "\00a0";
}
.ir-hidden {
  position: absolute;
  left: -9999px;
}

/* common */
body {
  font-family: "NotoSansKR", "맑은 고딕", "malgun gothic", "돋움", Dotum,
    "Apple SD Gothic Neo", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  background: #ffffff;
}
#wrapper {
  min-width: 1024px;
  overflow: hidden;
}
#skip-nav {
  position: fixed;
  left: 0;
  top: -40px;
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  transition: top 0.3s;
  z-index: 10000;
}
#skip-nav:focus {
  top: 0;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  min-width: 1024px;
  background: white;
  z-index: 1000;
}
#header::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 100%;
  height: 1px;
  background: lightgray;
}
#header h1 {
  position: absolute;
  left: 100px;
  display: inline-block;
  width: 110px;
  height: 80px;
  z-index: 1100;
  top: 14px;
}

/* navigation bar */
#gnb {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  min-width: 850px;
}
#gnb > ul {
  float: right;
}
#gnb > ul > li {
  float: left;
  text-align: center;
}
#gnb > ul > li + li {
  margin-left: 5px;
}
#gnb > ul > li > a {
  position: relative;
  height: 80px;
  line-height: 80px;
  min-width: 80px;
  display: inline-block;
  font-size: 15px;
  right: 100px;
}
#gnb > ul > li > a.gnb_title:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #000000;
}
#gnb > ul > li > a.gnb_title:hover {
  text-decoration: underline;
}
#gnb .gnb_button {
  background: #4c96ca;
  width: 150px;
  top: 15px;
  height: 50px;
  line-height: 50px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  color: #fff;
  font-weight: 600;
}
#gnb > ul > li > ul {
  position: absolute;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 30px;
  background: white;
}

/* 구현이 어려워 웹페이지 참고 */
.nav-sub {
  display: table;
  width: 1080px;
  margin: auto;
}
.nav-sub-item {
  display: table-cell;
  text-align: center;
  width: 20%;
}
/* ------------------------- */

.nav-sub-item > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
}
.nav-sub-item > a:hover {
  text-decoration: underline;
}
.nav-sub-item > ul > li {
  margin: 20px 0;
  font-size: 13px;
}
.nav-sub-item > ul > li:hover {
  text-decoration: underline;
}

/* footer */
#footer {
  background: #eee;
  padding: 40px 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer_logo {
  height: 32px;
}

.company_details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info_row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info_row span {
  position: relative;
  color: #666;
}

.info_row span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #ddd;
  transform: translateY(-50%);
}

.copyright {
  color: #888;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 30px 16px;
    font-size: 12px;
    gap: 16px;
  }

  .footer_content {
    gap: 16px;
  }

  .info_row {
    /* flex-direction: column; */
    gap: 8px;
    /* text-align: left; */
  }

  .info_row span::after {
    display: none;
  }
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
  #footer {
    padding: 30px 15px;
    font-size: 12px;
  }

  .footer_links {
    gap: 10px;
  }

  .footer_bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer_social {
    order: -1;
  }
}

/* 태블릿 대응 */
@media screen and (max-width: 1024px) {
  #footer {
    min-width: auto;
  }

  .footer_inner {
    padding: 0 20px;
  }
}

#main h3 {
  font-size: 40px;
  line-height: 1.35;
  color: #111111;
}
#main p {
  font-size: 15px;
  padding: 20px 0;
  line-height: 1.7;
  color: #666666;
}
#main div.content_box {
  /* position: absolute;
  left: 50%;
  transform: translate(-50%, 0); */
  margin: 0 auto;
  /* top: 0; */
  /* width: 1200px;
  max-width: 1200px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main div.section_line {
  position: relative;
  height: 30px;
  background: #fafafa;
}
#main img {
  position: absolute;
  top: -100px;
  bottom: 420px;
  width: 280px;
  left: 850px;
}
#main-appstore {
  position: relative;
  top: 80px;
  left: 0;
  width: 100%;
  height: 850px;
  background: white;
}
#main-appstore > div.bg_line {
  background: #4c96ca;
  top: 0;
  height: 703.5px;
  width: 100%;
}
#main-appstore div.content {
  position: absolute;
  top: 200px;
  left: 8%;
}
#main-appstore h3 {
  font-size: 49px;
  color: #ffffff;
}
#main-appstore p {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
#main-appstore a {
  display: inline-block;
  background: white;
  width: 180px;
  height: 58px;
  line-height: 57px;
  text-align: center;
  margin-top: 50px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-weight: 700;
  font-size: 17px;
  color: #333333;
}
#main-appstore a + a {
  margin-left: 10px;
}
#main-appstore a > img {
  padding-right: 10px;
}
#main-appstore a:hover {
  text-decoration: underline;
}

#main-withdrawal {
  position: relative;
  top: 0;
  left: 2%;
  width: 100%;
  height: 700px;
  margin-top: 80px;
}
#main-withdrawal img {
  position: absolute;
  width: 473px;
  left: 0;
  top: 30px;
}
#main-withdrawal div.content {
  /* position: absolute; */
  /* right: 8%; */
  /* top: 210px; */
  position: relative;
}
#main-withdrawal a {
  display: inline-block;
  background: #f6f6f6;
  width: 258px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-top: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-withdrawal a:hover {
  text-decoration: underline;
}

#main-savings {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
}
#main-savings div.content {
  /* position: absolute;
  left: 10%;
  top: 170px; */
}
#main-savings a {
  display: inline-block;
  background: #f6f6f6;
  width: 158px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-top: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-savings a:hover {
  text-decoration: underline;
}
#main-savings img.savings_money {
  position: absolute;
  width: 540px;
  left: 7%;
  top: 450px;
}
#main-savings img.savings {
  position: absolute;
  width: 409px;
  right: 5%;
  top: 15%;
}

#main-moim {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
}
#main-moim img {
  position: absolute;
  width: 753px;
  right: 50%;
  top: 15%;
  left: -5%;
}
#main-moim div.content {
  /* position: absolute;
  right: 10%;
  top: 210px; */
}
#main-moim a {
  display: inline-block;
  background: #f6f6f6;
  width: 258px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-top: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-moim a:hover {
  text-decoration: underline;
}

#main-26weeks {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
}
#main-26weeks div.content {
  position: absolute;
  left: 15%;
  top: 210px;
}
#main-26weeks a {
  display: inline-block;
  background: #f6f6f6;
  width: 258px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-top: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-26weeks a:hover {
  text-decoration: underline;
}
#main-26weeks img {
  position: absolute;
  width: 492px;
  right: 7%;
  top: 160px;
}

#main-foreignRemittance {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
}
#main-foreignRemittance img.map {
  position: absolute;
  top: 200px;
  left: -160px;
}
#main-foreignRemittance img.main-foreignRemittance {
  position: absolute;
  width: 408px;
  left: 14%;
  top: 0px;
}
#main-foreignRemittance div.content {
  position: absolute;
  right: 14%;
  top: 180px;
}
#main-foreignRemittance a {
  display: inline-block;
  background: #f6f6f6;
  width: 258px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-top: 20px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-foreignRemittance a:hover {
  text-decoration: underline;
}

#main-loan {
  position: relative;
  top: 30;
  left: 0;
  width: 100%;
  height: 600px;
  background: #333b58;
}
#main-loan div.content {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  color: white;
}
#main-loan a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.09);
  width: 166px;
  height: 52px;
  line-height: 51px;
  text-align: center;
  margin-top: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
}
#main-loan a:hover {
  text-decoration: underline;
}
#main-loan img {
  position: absolute;
  width: 749px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  top: 300px;
}
#main-loan h3,
#main-loan p {
  color: white;
}

#main-card {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 1062px;
}
#main-card div.content {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 200px;
  left: 50%;
  transform: translate(-50%, 0);
}
#main-card .content > a {
  display: inline-block;
  background: #f6f6f6;
  width: 258px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 16px;
  color: #333333;
}
#main-card .content > a:hover {
  text-decoration: underline;
}
#main-card .prev {
  position: absolute;
  top: 70%;
  transform: translate(0, -70%);
  left: 10%;
}
#main-card .next {
  position: absolute;
  top: 70%;
  transform: translate(0, -70%);
  right: 10%;
}

#main-card div ul li img {
  position: absolute;
  display: none;
  top: 500px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 280px;
  height: 440.97px;
}

/* 이미지 슬라이드 넣기 */
/* center */
#main-card div ul li.center img {
  display: block;
  z-index: 1;
}
/* left */
#main-card div ul li.left img {
  display: block;
  left: 36%;
  top: 530px;
  width: 240px;
  height: 377.14px;
}
/* right */
#main-card div ul li.right img {
  display: block;
  left: 64%;
  top: 530px;
  width: 240px;
  height: 377.14px;
}

#main-it {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  background: #f9f9f9;
}
#main-it h3 {
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  top: 150px;
}
#main-it h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -40px;
  width: 25%;
  height: 2px;
  background: black;
}
#main-it > div.content_box > p {
  display: absolute;
  display: block;
  margin-top: 450px;
  text-align: center;
}
#main-it div.content_box p img {
  height: 270px;
}
#main-it ul {
  position: relative;
  display: block;
  width: 100%;
  left: 0px;
  text-align: center;
  height: 210px;
}
#main-it ul li {
  display: inline-block;
  width: 255px;
}
#main-it ul li strong {
  font-size: 18px;
  color: #000000;
}
#main-it ul li p {
  font-size: 14px;
}
#main-it ul li:nth-child(2) {
  margin-left: -10px;
}
#main-it ul li:last-child {
  margin-left: 260px;
}
#main-it h3.content {
  top: 250px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
#main-it a {
  display: inline-block;
  background: #4c96ca;
  color: #fff;
  position: absolute;
  left: 42%;
  top: 500px;
  width: 180px;
  height: 58px;
  line-height: 57px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  bottom: 12px;
  z-index: 100;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0);
}
#main-it a + a {
  margin-left: 10px;
}
#main-it h4 {
  width: 100%;
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  top: 350px;
  font-size: 20px;
  font-weight: 500;
}
.main-strategy {
  background-color: #fff;
  padding: 100px 0;
}

.main-strategy .title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.main-strategy .description {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.main-strategy .strategy-image {
  width: 1046px;
  height: 592px;
  margin: 0 auto;
}

.main-strategy .strategy-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* footer 스타일 수정 */
#footer {
  position: relative;
  background: #eee;
  min-width: 1120px;
  padding: 40px 0;
  text-align: center;
  font-family: "Yoon 윤고딕", "돋움", dotum, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.footer_info {
  margin-bottom: 20px;
}

.footer_info .link_service {
  display: inline-block;
  position: relative;
  padding: 0 12px;
  color: #666;
}

.footer_info .link_bold {
  font-weight: 700;
}

.txt_bar {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0;
  background-color: #ccc;
  vertical-align: middle;
}

.info_busi {
  margin: 20px 0;
  color: #666;
}

.info_busi .txt_tel {
  margin-left: 10px;
}

.info_copyright {
  color: #888;
  margin: 20px 0;
}

.footer_bottom {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link_footer_license {
  display: inline-block;
  margin: 0 15px;
}

.img_footer_license {
  height: 40px;
}

.txt_footer_license {
  margin-top: 5px;
  font-size: 11px;
  color: #666;
}

.list_channel {
  display: flex;
  align-items: center;
}

.list_channel li {
  margin: 0 5px;
}

.link_channel {
  display: block;
  width: 24px;
  height: 24px;
}

.lottie-animation_right {
  /* position: absolute; */
  width: 500px;
  height: 500px;
}

.lottie-animation_left {
  /* position: absolute; */
  /* left: 100px; */
  width: 500px;
  height: 500px;
}

#main-loan .portfolio-list {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
}

.img-block {
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#main-loan .portfolio-list img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-block:hover {
  opacity: 1;
}
