/* FONT */
@import url("/notosans.css");
:root {
  /* font */
  --font-type01: "NanumSquare";
  --font-type02: "NotoSansKR";

  /* main */
  --main-color01: #063d9e;
  --main-color01-hover: rgb(1, 26, 71);
  --main-color02: #06577a;
  --main-color02-hover: #054864;
  --main-color03: #09847f;
  --main-color03-hover: rgb(4, 85, 82);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-type02);
}
a {
  text-decoration: none;
  color: #555;
}
a:hover,
a:focus {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
body {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  background: url(/images/intro-bg.jpg) no-repeat center top fixed;
  background-size: cover;
  position: relative;
  min-width: 360px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(97, 164, 217, 0.8), rgba(79, 132, 206, 0.8), rgba(41, 79, 196, 0.8));
  z-index: -1;
}
.intro {
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
.intro-con {
  margin: 0 auto;
  padding: 0 30px;
  margin-bottom: 60px;
}
.main-tit {
  position: relative;
  text-align: center;
}
.main-tit::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/images/line.png) no-repeat center center;
  width: 160px;
  height: 2px;
  background-size: 120px;
}
.main-tit .s-tit {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.main-tit .tit {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 40px;
  font-family: var(--font-type01);
  font-weight: 800;
  margin-left: 50px;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.15);
}
.main-tit .tit::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -54px;
  background: url(/images/logo.png) no-repeat center center;
  width: 54px;
  height: 61px;
  background-size: 40px;
}
.quick-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.quick-wrap .item {
  position: relative;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.78);
  border: 2.5px solid #fff;
  padding: 30px 24px;
  text-align: center;
  width: 100%;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.quick-wrap .item::after {
  position: absolute;
  bottom: 52px;
  right: -54px;
  transform: rotate(-90deg);
  color: #f5f9ff;
  font-size: 60px;
  z-index: -1;
  font-weight: 800;
  font-family: var(--font-type01);
  opacity: 0.4;
  letter-spacing: -0.5px;
}
.quick-wrap .item.item01::after {
  content: "KYCI";
}
.quick-wrap .item.item02::after {
  content: "STEP";
}
.quick-wrap .item .tit-wrap .txt {
  display: inline-block;
  font-family: var(--font-type01);
  text-align: center;
  color: #e33e3e;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.quick-wrap .item .tit-wrap .tit {
  font-family: var(--font-type01);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.quick-wrap .item.item01 .tit-wrap .tit {
  color: #61a4d9;
}
.quick-wrap .item.item02 .tit-wrap .tit {
  color: #4b63ae;
}
.quick-wrap .item .list {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.quick-wrap .item .list li {
  margin-bottom: 10px;
  border-radius: 100px;
  background-color: #eef3fa;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: inline-block;
}
.quick-wrap .item .list li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.5px;
  padding: 7px 10px;
  transition: all 0.2s;
  border-radius: 200px;
  border: 2px solid transparent;
}
.quick-wrap .item.item01 .list li a:hover,
.quick-wrap .item.item01 .list li a:focus {
  border: 2px solid #61a4d9;
}
.quick-wrap .item.item02 .list li a:hover,
.quick-wrap .item.item02 .list li a:focus {
  border: 2px solid #4b63ae;
}
.quick-wrap .item .quick-link {
  display: block;
  border-radius: 200px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  padding: 12px;
  transition: all 0.2s;
}
.quick-wrap .item.item01 .quick-link {
  background-color: #61a4d9;
}
.quick-wrap .item.item02 .quick-link {
  background-color: #4b63ae;
}
.quick-wrap .item .quick-link:hover span::after,
.quick-wrap .item .quick-link:focus span::after {
  right: -5px;
}
.quick-wrap .item.item01 .quick-link:hover,
.quick-wrap .item.item01 .quick-link:focus {
  background-color: #5597cc;
}
.quick-wrap .item.item02 .quick-link:hover,
.quick-wrap .item.item02 .quick-link:focus {
  background-color: #334a91;
}
.quick-wrap .item .quick-link span {
  position: relative;
  font-family: var(--font-type01);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: inline-block;
  padding-right: 18px;
}
.quick-wrap .item .quick-link span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  background: url(/images/arrow-icon.png) no-repeat center center;
  right: 0;
  top: 3px;
  transition: all 0.2s;
}

.info {
  font-size: 14px;
  color: #808dc1;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  font-family: var(--font-type01);
  letter-spacing: -0.5px;
  word-break: keep-all;
  line-height: 1.4;
}

.footer {
  background-color: #3b5582;
  align-items: center;
  padding: 15px;
}
.footer .copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.5px;
}

@media (min-width: 576px) {
  .intro-con {
    max-width: 560px;
    padding: 0 60px;
  }
  .quick-wrap .item {
    padding: 30px 40px;
  }
}

@media (min-width: 768px) {
  .intro-con {
    min-width: 660px;
  }
  .quick-wrap .item {
    padding: 36px 60px;
  }
}

@media (min-width: 992px) {
  .intro {
    padding: 100px 0 0 0;
  }
  .intro-con {
    max-width: 900px;
  }
  .quick-wrap {
    flex-direction: row;
    margin-top: 90px;
  }
  .main-tit::after {
    bottom: -40px;
    background-size: auto;
  }
  .main-tit .s-tit {
    font-size: 20px;
  }
  .main-tit .tit {
    font-size: 50px;
  }
  .quick-wrap .item {
    padding: 30px 40px 40px 40px;
  }
  .quick-wrap .item .tit-wrap {
    min-height: 80px;
  }
  .quick-wrap .item.item02 .tit-wrap {
    align-content: end;
  }
  .quick-wrap .item .list li a {
    padding: 10px;
  }
  .quick-wrap .item .quick-link {
    padding: 14px 0;
  }
  .footer {
    padding: 24px;
  }
}

@media (min-width: 1200px) {
  .intro {
    padding: 120px 0 0 0;
  }
  .intro-con {
    min-width: 1100px;
    margin-bottom: 180px;
  }
  .main-tit::after {
    bottom: -55px;
  }
  .main-tit .s-tit {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .main-tit .tit {
    font-size: 72px;
    margin-left: 80px;
  }
  .main-tit .tit::before {
    background-size: auto;
    left: -74px;
  }
  .quick-wrap {
    margin-top: 120px;
    gap: 44px;
  }
  .quick-wrap .item {
    padding: 36px 54px 45px 54px;
  }
  .quick-wrap .item .tit-wrap {
    min-height: 100px;
  }
  .quick-wrap .item .tit-wrap .txt {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .quick-wrap .item .tit-wrap .tit {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .quick-wrap .item .list li a {
    font-size: 17px;
  }
  .quick-wrap .item .quick-link {
    padding: 16px 0;
  }
  .quick-wrap .item .quick-link span {
    font-size: 21px;
  }
  .quick-wrap .item .quick-link span::after {
    top: 6px;
  }
  .quick-wrap .item::after {
    bottom: 70px;
    right: -82px;
    font-size: 90px;
  }
  .info {
    font-size: 16px;
  }
  .footer {
    padding: 36px;
  }
  .footer .copy {
    font-size: 16px;
  }
}
