@import url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css);
@import url(https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css);
:root {
  --color-background: #1c1c1c;
  --color-primary: #142755;
  --color-primary-light: #5a6d9c;
  --color-caution: #ec1717;

  --color-black: #1c1c1c;
  --color-white: #fff;

  --color-gray-800: #333333;
  --color-gray-700: #4d4d4d;
  --color-gray-600: #666;
  --color-gray-500: #808080;
  --color-gray-400: #999;
  --color-gray-300: #b3b3b3;
  --color-gray-200: #ccc;
  --color-gray-100: #e6e6e6;

  --color-bluegrey: #1a1c1f;
  --color-bluegrey-800: #333437;
  --color-bluegrey-700: #48494c;
  --color-bluegrey-600: #5f6163;
  --color-bluegrey-500: #767779;
  --color-bluegrey-400: #a3a4a5;
  --color-bluegrey-300: #d1d2d2;
  --color-bluegrey-200: #e9e9e9;
  --color-bluegrey-100: #fff;
}

/* Lenis Setting start */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none; /* Chrome, Safari, iOS */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none; /* 표준 */

  overscroll-behavior-y: none !important;
}

html.lenis {
  scroll-behavior: auto;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  height: auto;
  overflow: auto;
}

/* Lenis Setting end */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;

  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */

  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

.__cursor {
  position: fixed;
  top: 0;
  left: 0;
  will-change: transform;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  z-index: 9999;
  transition: transform 0.1s ease-out;
  pointer-events: none;
}

.ripple-button {
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-primary);
  pointer-events: none;
  z-index: 0;
  transform: scale(0) translate(-50%, -50%);
  transition: transform 0.5s ease-in-out;
}

.floating {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
}
.floating img {
  width: 46px;
  height: 46px;
  object-fit: cover;
}

html.is-kakao-webview::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: transparent; /* 또는 배경색 */
  pointer-events: none;
  z-index: 9999;
}

html.is-kakao-webview body,
html.is-kakao-webview [data-lenis-wrapper] {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
}

html.is-kakao-webview body::-webkit-scrollbar,
html.is-kakao-webview [data-lenis-wrapper]::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

@media (max-width: 1279px) {
  .__cursor {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating {
    bottom: calc(16px + (16 - 16) * ((100vw - 360px) / (767 - 360)));
    right: calc(24px + (16 - 24) * ((100vw - 360px) / (767 - 360)));
  }
  .__cursor {
    display: none;
  }
  .nav__text:last-child {
    display: none;
  }
  .floating {
    display: block;
  }
}

body {
  display: flex;
  flex-direction: column;
}

#banner {
  width: 100%;
  min-height: 420px;
  background: url(f3de53e17d9e71e0f68f.webp) no-repeat center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.banner__text {
  font-weight: 700;
  font-size: 60px;
  color: var(--color-white);
}

.hero__header__overlay {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 5rem;
  z-index: 999;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}

.logo img {
  object-fit: cover;
  width: calc(150px + (180 - 150) * ((100vw - 1280px) / (1920 - 1280)));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.44rem;
}

.nav .nav__text {
  font-size: 1rem;
  cursor: pointer;
  color: white;
  font-weight: 400;
}

.nav .nav__text:last-child {
  position: relative;
  overflow: hidden;
  margin-right: 0rem;
  border-radius: 1.875rem;
  border: 1px solid var(--color-white, #fff);
  padding: 0.5625rem 1.125rem;
  transition: 0.5s;
}

.nav .nav__text .text {
  position: relative;
  z-index: 2;
}

#download {
  flex: 1;
}

.download__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 158px;
}

.title h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  color: var(--color-black);
  position: relative;
  margin-bottom: 60px;
}

.title h1::before {
  content: "";
  position: absolute;
  bottom: -50%;
  transform: translateX(-50%);
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--color-gray-600);
}

.title p {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: var(--color-gray-700);
}

.content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;

  gap: 150px 204px;
}
.item {
  display: flex;
  gap: 40px;
}

.item__img {
  min-width: 212px;
  border-radius: 8px;
}

.item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.item__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.item__text h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 39px;
  color: var(--color-black);
}

.item__text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-gray-700);

  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.btns {
  display: flex;
  align-items: end;
  gap: 23px;
  justify-content: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 105px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray-800);

  cursor: pointer;
  border: 1px solid var(--color-gray-300);
}

.btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(b0567a20825ba28f8d0c.webp) no-repeat center
    center;
  object-fit: cover;
}

footer {
  background: linear-gradient(0deg, #4a4a4a 0%, #4a4a4a 100%),
    linear-gradient(180deg, #000 0%, #4c4c4c 60.1%, #d0d0d0 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 325px;
  padding-left: 40px;
  padding-bottom: 20px;
}

.footer__company h1 {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
}

.footer__contact {
  font-weight: 300;
  font-size: 16px;

  color: var(--color-bluegrey-400);
}

.footer__address {
  font-weight: 300;
  font-size: 16px;

  color: var(--color-bluegrey-400);
}

@media (min-width: 1280px) {
  #banner {
    min-height: calc(360px + (420 - 360) * ((100vw - 1280px) / (1920 - 1280)));
  }
  #download {
    padding-top: calc(120px + (80 - 120) * ((100vw - 1280px) / (1920 - 1280)));
    padding-right: calc(98px + (205 - 98) * ((100vw - 1280px) / (1920 - 1280)));
    padding-left: calc(98px + (205 - 98) * ((100vw - 1280px) / (1920 - 1280)));
    padding-bottom: calc(
      170px + (160 - 170) * ((100vw - 1280px) / (1920 - 1280))
    );
  }

  .logo img {
    width: calc(150px + (180 - 150) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .item__img {
    min-width: calc(161px + (212 - 161) * ((100vw - 1280px) / (1920 - 1280)));
    height: 100%;
  }

  .content {
    row-gap: calc(84px + (100 - 84) * ((100vw - 1280px) / (1920 - 1280)));
    column-gap: calc(150px + (207 - 150) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .item__text h2 {
    font-size: calc(20px + (26 - 20) * ((100vw - 1280px) / (1920 - 1280)));
    line-height: calc(30px + (39 - 30) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .item__text p {
    font-size: calc(16px + (20 - 16) * ((100vw - 1280px) / (1920 - 1280)));
    line-height: calc(24px + (30 - 24) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .item {
    height: calc(228px + (300 - 228) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .btns {
  }

  .btn {
  }

  .btn::after {
  }

  .banner__text {
    font-size: 60px;
  }
  .title {
    margin-bottom: 138px;
  }

  .title h1 {
    font-size: calc(42px + (60 - 42) * ((100vw - 1280px) / (1920 - 1280)));
    margin-bottom: calc(70px + (60 - 70) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .title h1::before {
    width: calc(20px + (30 - 20) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .title p {
    font-size: calc(20px + (24 - 20) * ((100vw - 1280px) / (1920 - 1280)));
  }

  footer {
    padding-top: calc(240px + (325 - 240) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .footer__company h1 {
    font-size: 16px;
  }

  .footer__contact,
  .footer__address {
    font-size: 16px;
  }
}
@media (max-width: 1279px) {
  #banner {
    min-height: calc(330px + (360 - 330) * ((100vw - 768px) / (1279 - 768)));
  }

  .banner__text {
    font-size: 42px;
  }

  #download {
    padding-top: calc(60px + (120 - 60) * ((100vw - 768px) / (1279 - 768)));
    padding-right: calc(40px + (98 - 40) * ((100vw - 768px) / (1279 - 768)));
    padding-left: calc(40px + (98 - 40) * ((100vw - 768px) / (1279 - 768)));
    padding-bottom: calc(88px + (170 - 88) * ((100vw - 768px) / (1279 - 768)));
  }

  .content {
    row-gap: calc(64px + (84 - 64) * ((100vw - 1280px) / (1279 - 768)));
    column-gap: calc(62px + (150 - 62) * ((100vw - 1280px) / (1279 - 768)));
  }

  .title {
    margin-bottom: calc(70px + (138 - 70) * ((100vw - 768px) / (1279 - 768)));
  }

  .title h1 {
    font-size: calc(42px + (60 - 42) * ((100vw - 768px) / (1279 - 768)));
    margin-bottom: 50px;
  }

  .title h1::before {
    width: calc(20px + (20 - 20) * ((100vw - 768px) / (1279 - 768)));
  }

  .title p {
    font-size: calc(20px + (24 - 20) * ((100vw - 768px) / (1279 - 768)));
  }

  .item {
    width: 467px;
    height: calc(180px + (228 - 180) * ((100vw - 768px) / (1279 - 768)));
    gap: calc(16px + (40 - 16) * ((100vw - 768px) / (1279 - 768)));
  }

  .item__img {
    min-width: 161px;
  }

  .item__text {
  }

  .item__text h2 {
    font-size: calc(16px + (20 - 16) * ((100vw - 768px) / (1279 - 768)));
    line-height: calc(24px + (30 - 24) * ((100vw - 768px) / (1279 - 768)));
  }

  .item__text p {
    font-size: calc(14px + (16 - 14) * ((100vw - 768px) / (1279 - 768)));
    line-height: calc(21px + (24 - 21) * ((100vw - 768px) / (1279 - 768)));
  }

  .btns {
  }

  .btn {
  }

  .btn::after {
  }

  footer {
    padding-top: calc(240px + (325 - 240) * ((100vw - 1280px) / (1920 - 1280)));
  }

  .footer__company h1 {
    font-size: 16px;
  }

  .footer__contact,
  .footer__address {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .item {
    width: 100%;
    height: calc(170px + (180 - 170) * ((100vw - 768px) / (900 - 768)));
  }
  .item__img {
    min-width: calc(120px + (161 - 120) * ((100vw - 768px) / (900 - 768)));
  }

  #banner {
    min-height: calc(228px + (330 - 228) * ((100vw - 768px) / (900 - 768)));
  }

  header {
    height: calc(66px + (80 - 66) * ((100vw - 768px) / (900 - 768)));
    padding-left: calc(16px + (20 - 16) * ((100vw - 360px) / (900 - 360)));
    padding-right: calc(16px + (20 - 16) * ((100vw - 360px) / (900 - 360)));
  }

  .banner__text {
    font-size: calc(28px + (42 - 28) * ((100vw - 768px) / (900 - 768)));
  }

  .content {
    grid-template-columns: 1fr;
    gap: calc(34px + (34 - 34) * ((100vw - 768px) / (900 - 768)));
  }

  #download {
    padding-top: calc(28px + (60 - 28) * ((100vw - 768px) / (900 - 768)));
    padding-right: calc(40px + (40 - 40) * ((100vw - 768px) / (900 - 768)));
    padding-left: calc(40px + (40 - 40) * ((100vw - 768px) / (900 - 768)));
    padding-bottom: calc(36px + (88 - 36) * ((100vw - 768px) / (900 - 768)));
  }

  .title {
    margin-bottom: calc(46px + (70 - 46) * ((100vw - 768px) / (900 - 768)));
  }

  .title h1 {
    font-size: calc(28px + (42 - 28) * ((100vw - 768px) / (900 - 768)));
    margin-bottom: 50px;
  }

  .title h1::before {
    width: calc(20px + (20 - 20) * ((100vw - 768px) / (900 - 768)));
  }

  .title p {
    font-size: calc(16px + (20 - 16) * ((100vw - 768px) / (900 - 768)));
  }

  .btn {
    font-size: 14px;
  }

  footer {
    padding-top: calc(150px + (150 - 150) * ((100vw - 1280px) / (900 - 768)));
  }

  .footer__company h1 {
    font-size: 12px;
  }

  .footer__contact,
  .footer__address {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #banner {
    min-height: calc(152px + (228 - 152) * ((100vw - 360px) / (767 - 360)));
  }
  header {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    height: 52px;
  }

  .logo img {
    width: calc(70px + (98 - 70) * ((100vw - 360px) / (767 - 360)));
    height: calc(23px + (32 - 23) * ((100vw - 360px) / (767 - 360)));
  }

  .item__img {
    min-width: calc(76px + (120 - 76) * ((100vw - 360px) / (767 - 360)));
  }

  .content {
    gap: calc(24px + (34 - 24) * ((100vw - 768px) / (767 - 360)));
  }

  .nav .nav__text {
    font-size: 14px;
  }
  .banner__text {
    font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (767 - 360)));
  }

  #download {
    padding-top: calc(18px + (28 - 18) * ((100vw - 360px) / (767 - 360)));
    padding-right: calc(16px + (16 - 16) * ((100vw - 360px) / (767 - 360)));
    padding-left: calc(16px + (16 - 16) * ((100vw - 360px) / (767 - 360)));
    padding-bottom: calc(46px + (36 - 46) * ((100vw - 360px) / (767 - 360)));
  }

  .title {
    margin-bottom: calc(36px + (46 - 36) * ((100vw - 360px) / (767 - 360)));
  }

  .title h1 {
    font-size: calc(16px + (28 - 16) * ((100vw - 360px) / (767 - 360)));
    margin-bottom: 20px;
  }

  .title h1::before {
    width: calc(20px + (20 - 20) * ((100vw - 360px) / (767 - 360)));
  }

  .item {
    gap: calc(12px + (16 - 12) * ((100vw - 360px) / (767 - 360)));
    height: calc(100px + (170 - 100) * ((100vw -360px) / (767 - 360)));
  }
  .title p {
    font-size: calc(12px + (16 - 12) * ((100vw - 360px) / (767 - 360)));
  }

  .item__text {
  }

  .item__text h2 {
    font-size: calc(13px + (16 - 13) * ((100vw - 360px) / (767 - 360)));
  }

  .item__text p {
    font-size: calc(12px + (14 - 12) * ((100vw - 360px) / (767 - 360)));
    line-height: calc(13.5px + (21 - 13.5) * ((100vw - 360px) / (767 - 360)));
  }

  .btns {
  }

  .btn {
    width: calc(84px + (105 - 84) * ((100vw - 360px) / (767 - 360)));
    height: calc(30px + (40 - 30) * ((100vw - 360px) / (767 - 360)));
  }

  .btn::after {
  }

  footer {
    padding-top: calc(97px + (150 - 97) * ((100vw - 360px) / (767 - 360)));
    padding-left: 20px;
  }

  .footer__company h1 {
    font-size: 12px;
  }

  .footer__contact,
  .footer__address {
    font-size: 10px;
  }
}

