@import url(../fonts/pretendard.css);
body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard";
  font-weight: 400;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}
header .logo {
  display: block;
  width: 179px;
  height: 25px;
  background-image: url(../image/logo-wh.svg);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 96px;
}
header nav a {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  line-height: 100%;
}
header.scroll {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
header.scroll nav a {
  color: #000;
}
header.scroll .logo {
  background-image: url(../image/logo.svg);
}

.heroSection {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 360px;
  padding-top: 96px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.heroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: linear-gradient(180deg, rgba(3, 19, 50, 0.7) 20%, rgba(3, 19, 50, 0) 100%);
}
.heroSection .inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
}
.heroSection h1 {
  display: block;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #FFF;
}
.heroSection p {
  display: block;
  font-size: 24px;
  font-weight: 200;
  color: #FFf;
  text-align: center;
}
.heroSection.main {
  height: 500px;
  background-image: url(../image/mainHerosectionBg.png);
}
.heroSection.aiOCR {
  background-image: url(../image/aiOCR-heroSection.png);
}
.heroSection.LLM {
  background-image: url(../image/LLM-heroSection.png);
}
.heroSection.about {
  background-image: url(../image/about-heroSection.png);
}

.mainSection {
  width: 100%;
}
.mainSection > .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 72px 16px;
}
.mainSection .sectionHeader {
  color: #FFF;
}

.mainSection01 {
  background-image: url(../image/mainSection01Bg.png);
  background-size: cover;
  background-position: center;
}
.mainSection01 .row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.mainSection01 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 36px 24px;
  border-radius: 8px;
  background-color: #031332;
  box-shadow: 0px 0px 16px 3px rgb(51, 102, 204);
}
.mainSection01 .col img {
  width: 100%;
}
.mainSection01 .col .title {
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  word-break: keep-all;
}
.mainSection01 .col .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #FFF;
  word-break: keep-all;
}
.mainSection01 .col .hashTag {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #33BBFF;
  word-break: keep-all;
}

.mainSection02 {
  background-image: url(../image/mainSection02-bg.png);
  background-size: cover;
  background-position: center;
}
.mainSection02 .row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.mainSection02 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  border-radius: 8px;
  border: solid 0.5px #3377FF;
  background: linear-gradient(90deg, #091D44 0%, #050F24 100%);
}
.mainSection02 .col img {
  width: 56px;
}
.mainSection02 .col .title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: #FFF;
}
.mainSection02 .col .description {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  word-break: keep-all;
  line-height: 150%;
}

.mainSection03 {
  background: linear-gradient(180deg, #091D44 0%, #000000 100%);
}
.mainSection03 .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px 24px;
  width: 100%;
}
.mainSection03 .container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.mainSection03 .container .col .img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 464/300;
}
.mainSection03 .container .col .img img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.mainSection03 .container .col .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
.mainSection03 .container .col .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  word-break: keep-all;
  color: #FFF;
}
.mainSection03 .container .col:hover .img img {
  transform: translate(-50%, -50%) scale(1.2);
}

.mainSection04 {
  background: linear-gradient(180deg, #091D44 0%, #000000 100%);
}
.mainSection04 .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.mainSection04 .row .map {
  width: 100%;
}
.mainSection04 .row .map a {
  width: 100%;
}
.mainSection04 .row .map img {
  width: 100%;
}
.mainSection04 .row .address {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  line-height: 150%;
  word-break: keep-all;
}

.sectionHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 24px 0px;
}
.sectionHeader h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 150%;
}
.sectionHeader p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 150%;
}

footer {
  width: 100%;
  background-color: #FFF;
  padding: 24px 0px;
  border-top: solid 1px #DEDEDE;
}
footer .inner {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  justify-content: flex-start;
}
footer img {
  width: 179px;
  flex-shrink: 0;
}
footer .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
footer .row .name {
  font-size: 12px;
  font-weight: 700;
}
footer .row .summary {
  font-size: 12px;
  font-weight: 400;
  color: #1943FF;
}
footer .row .address {
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #4D4D4D;
}
footer .row .copyright {
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  color: #4D4D4D;
}

.subPageSection {
  width: 100%;
  padding: 72px 0px;
}
.subPageSection .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.subPageSection .sectionHeader h2 {
  font-size: 32px;
}

.aiOCRSection01 .rainOCR {
  width: 100%;
  max-width: 1024px;
}
.aiOCRSection01 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.aiOCRSection01 .container .col {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.aiOCRSection01 .container .col .title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
}
.aiOCRSection01 .container .col .title::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(..//image/checkIcon.svg);
  background-size: cover;
  background-position: center;
}

.aiOCRSection02 {
  background-color: #F0F5FF;
}
.aiOCRSection02 .aiOCRImg01 {
  width: 100%;
  max-width: 1024px;
}

.aiOCRSection03 .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.aiOCRSection03 .container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, #FAFCFF 0%, #E5EEFF 100%);
  padding: 48px 24px;
}
.aiOCRSection03 .container .col .num {
  font-size: 36px;
  font-weight: 200;
  color: #1943FF;
  text-align: center;
}
.aiOCRSection03 .container .col .title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}
.aiOCRSection03 .container .col .description {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  color: #1943FF;
}

.aiOCRSection04 {
  background-color: #EBF1FF;
}
.aiOCRSection04 .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.aiOCRSection04 .row .col {
  padding: 24px;
  border-radius: 24px;
  background-color: #FFF;
  width: 100%;
  text-align: center;
}
.aiOCRSection04 .row .col .title {
  font-size: 24px;
  font-weight: 700;
}
.aiOCRSection04 .row .arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-image: url(../image/arrowCircle-blue.svg);
  background-size: cover;
  background-position: center;
}

.LLMSection01Img {
  width: 100%;
  max-width: 1024px;
  margin-top: 48px;
}

.LLMSection02 {
  background-color: #EBF1FF;
}
.LLMSection02 .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.LLMSection02 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px;
  background-color: #FFF;
  padding: 32px;
}
.LLMSection02 .col img {
  width: 100%;
}
.LLMSection02 .col .title {
  font-size: 32px;
  font-weight: 700;
  color: #1943FF;
}
.LLMSection02 .col .description {
  font-size: 16px;
  line-height: 150%;
}

.LLMSection03 .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.LLMSection03 .container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, #FAFCFF 0%, #E5EEFF 100%);
  padding: 48px 24px;
}
.LLMSection03 .container .col .num {
  font-size: 36px;
  font-weight: 200;
  color: #1943FF;
  text-align: center;
}
.LLMSection03 .container .col .title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}
.LLMSection03 .container .col .description {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 150%;
  color: #1943FF;
}

.aboutSection01 .contents {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}
.aboutSection01 .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.aboutSection01 .row .col {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.aboutSection02 {
  background-color: #F0F5FF;
}
.aboutSection02 .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.aboutSection02 .row .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.aboutSection02 .row .col .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.aboutSection02 .row .col .description {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.aboutSection03 .row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.aboutSection03 .row .arrow {
  align-self: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-image: url(../image/arrowCircle-blue.svg);
  background-size: cover;
  background-position: center;
}
.aboutSection03 .row .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #FAFCFF 0%, #E5EEFF 100%);
}
.aboutSection03 .row .col .title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  word-break: keep-all;
}
.aboutSection03 .row .col .description {
  text-align: center;
  line-height: 150%;
  word-break: keep-all;
}

.aboutSection04 {
  background-color: #F0F5FF;
}
.aboutSection04 .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.aboutSection04 .row .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.aboutSection04 .row .col .date {
  font-size: 32px;
  font-weight: 200;
  color: #1943FF;
  line-height: 100%;
}
.aboutSection04 .row .col .description {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.contactSection01 .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.contactSection01 .row .map {
  width: 100%;
}
.contactSection01 .row .map a {
  width: 100%;
}
.contactSection01 .row .map img {
  width: 100%;
}
.contactSection01 .row .address {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 150%;
  word-break: keep-all;
}/*# sourceMappingURL=style.css.map */