@charset "utf-8";

:root {
  --huge: 50px;
  --large: 35px;
  --medium: 24px;
  --base: 20px;
  --small: 16px;
  --tiny: 14px;

  --black: 900;
  --bold: 600;
  --default: 300;
  --light: 100;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  --height-default: 1.5;

  --radius-default: 30px;
  --radius-sm: 15px;

  --primary-color: #0066ff;
  --secondary-color: #333;
  --light-color: #888;
  --light-background: #f6fafd;

  --max-width: 1200px;
}

.max_wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.btn_primary {
  background-color: var(--primary-color);
  width: fit-content;
  height: 50px;
  border-radius: 99px;
  text-align: center;
  line-height: 50px;
  padding: 0 15px;
}

.btn_primary a {
  color: #fff;
  font-size: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--default);
}

.btn_primary a::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow-up-right.svg);
  display: block;
  margin-left: 5px;
}

/* title */

.title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title_wrap .right_link .background_link {
  background-color: var(--primary-color);
}

.main_title {
  font-size: var(--large);
  font-weight: var(--default);
}

.point {
  color: var(--primary-color);
  font-weight: var(--bold);
  line-height: 1.5;
}

.top_text {
  font-weight: var(--bold);
  font-size: var(--base);
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* head */

.hero-in-view header {
  background-color: transparent;
}

header {
  /* max-width: var(--max-width); */
  margin: 0 auto;
  width: 100vw;
  height: 100px;
  transition: background-color 0.5s ease;
  background: #ffffffa4;
  backdrop-filter: blur(32px);
  position: fixed;
  top: 0;
  z-index: 100;
  left: 0;
}

header > div {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

header #logo {
  width: 120px;
  height: 100px;
  background-image: url(../img/head_logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;
  display: block;
}

.hero-in-view header #logo:hover {
  background-image: url(../img/head_logo_hover.svg);
}

.hero-in-view header nav span > a:hover {
  color: #fff;
}

header #logo img {
  width: 100%;
}

header nav {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav span {
  padding: 0 30px;
  display: block;
}

header nav span a {
  font-size: var(--small);
  transition: 0.5s;
}

header nav span#drop_down_menu {
  position: relative;
}

header nav span#drop_down_menu > a:nth-child(1) {
  display: flex;
  align-items: center;
}

header nav span#drop_down_menu ul {
  display: none;
  position: absolute;
  top: 70px;
  background-color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  width: 200px;
  height: fit-content;
  box-shadow: 10px 10px 19px #90aaff2c;
}

#drop_down_link.active {
  color: #fff;
}

#drop_down_link > span {
  padding: 3px 0 0 0;
}

#drop_down_link.active > span {
  transform: rotate(180deg);
}

#drop_down_menu ul.active {
  display: block;
  opacity: 1;
}

header nav span#drop_down_menu ul::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 20px solid transparent;
  border-top: 20px solid transparent;
  border-left: 20px solid rgb(255, 255, 255);
  border-right: 20px solid transparent;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  position: absolute;
  top: -40px;
  left: 50%;
}

header nav span#drop_down_menu ul li {
  margin-bottom: 12px;
}

header nav span#drop_down_menu ul li:nth-last-child(1) {
  margin-bottom: 0;
}

/* main */

#main {
  position: relative;
  isolation: isolate;
  /* background: #eff5ff; */
  background: radial-gradient(circle, #bcd4ff, #f0f7ff);
  overflow: hidden;
}

#main::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 300px;
  background-image: url(../img/main_img.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  display: block;
}

#main canvas {
  position: relative;
  z-index: 1;
}

.glassy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255 255 255 / 0.05);
  backdrop-filter: blur(32px);
  z-index: 2;
  pointer-events: none;
}
#company {
  width: 100%;
  height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
}

.stats_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  width: 100%;
}

.stat_card {
  background-color: #fff;
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm);
  width: 32%;
  text-align: center;
  box-shadow: 0 47px 60.9px -13px #0066ff10;
  background-image: url(../img/stat-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stat_card img {
  width: 100%;
  height: auto;
}

.stat_card:nth-child(1) {
  background-image: url(../img/stat-bg-1.png);
}

.stat_card:nth-child(2) {
  background-image: url(../img/stat-bg-2.png);
}

.stat_card:nth-child(3) {
  background-image: url(../img/stat-bg-3.png);
}

.stat_info h3 {
  font-size: var(--medium);
  font-weight: var(--bold);
  margin: 20px 0 10px 0;
}

.stat_info p {
  font-size: var(--base);
  font-weight: var(--default);
  color: var(--light-color);
  margin-bottom: 20px;
}

#sticy_service {
  width: 100%;
  height: fit-content;
  background: linear-gradient(195deg, #e4efff, #ffffff);
  padding-top: 300px;
  padding-bottom: 300px;
  position: relative;
}

#sticy_service .max_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#sticy_service .title_wrap {
  display: block;
  position: sticky;
  top: 300px;
  z-index: 1;
}

#sticy_service .title_wrap .right_link {
  margin-top: 100px;
}

.sticky_card_wrap {
  width: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.sticky_card_wrap > div {
  width: 350px;
  height: fit-content;
}

.sticky_card_wrap .left_card_wrap {
  margin-right: 30px;
}

.sticky_card_wrap .right_card_wrap {
  padding-top: 200px;
}

.sticky_card_wrap .left_card_wrap .glass_card:nth-child(1) {
  background: var(--primary-color) !important;
  color: #fff;
  justify-content: left;
  padding: 50px;
}

.sticky_card_wrap .left_card_wrap .glass_card:nth-child(1)::before {
  border: none;
}

.sticky_card_wrap .left_card_wrap .glass_card:nth-child(1) p {
  color: #fff;
  font-weight: var(--default);
}
.sticky_card_wrap .left_card_wrap .glass_card:nth-child(1) h2 {
  font-weight: var(--light);
}

.glass_card {
  /* background: linear-gradient(180deg, #eef6ff, #ffffff); */
  background: linear-gradient(
    180deg,
    rgba(238, 246, 255, 0.35),
    rgba(255, 255, 255, 0.12)
  );
  border-radius: var(--radius-default);
  padding: 50px 30px;
  margin-bottom: 30px;
  width: 350px;
  height: 460px;
  box-shadow: 0 47px 60.9px -13px #0066ff10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 47px 60.9px -13px #0066ff10;
  position: relative;
  display: grid;
  align-items: self-start;
  justify-content: center;
}

.glass_card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-default);
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.5),
      rgba(170, 198, 239, 0.5),
      rgba(255, 255, 255, 0.5),
      rgba(170, 198, 239, 0.5)
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}

.glass_card .circle_icon_wrap {
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 130px;
  text-align: center;
  line-height: 130px;
  box-shadow: 4px 10px 22px 0 #e2edf5;
  margin: 0 auto;
}

.glass_card .card_text_wrap {
  text-align: center;
  margin-top: 30px;
}

.glass_card .card_text_wrap .eng_text {
  font-size: var(--small);
  font-weight: var(--default);
  color: #797979;
}

.glass_card .card_text_wrap h3 {
  font-size: var(--medium);
  font-weight: var(--bold);
  color: #5b5b5b;
  margin: 3px 0 20px;
}

.glass_card .card_text_wrap .description {
  font-size: var(--small);
  font-weight: var(--default);
  color: #9b9b9b;
  line-height: 1.4;
}
.glass_card .link_to {
  text-align: center;
  margin-top: 30px;
}
.glass_card .link_to a {
  font-size: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-weight: var(--default);
  transition: 0.3s;
}

.glass_card .link_to a:hover {
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  /* font-weight: var(--bold); */
  background-color: var(--primary-color);
}

.icon_animation {
  width: 24px;
  height: 24px;
}

.sticky_absolute {
  position: absolute;
  top: 0;
  right: 300px;
  width: 50%;
  height: 100%;
  padding: 300px 0;
}

.sticky_absolute img:nth-child(1) {
  position: sticky;
  top: 160px;
  right: 0;
  left: auto;
  display: block;
  margin-bottom: 420px;
  margin-left: auto;
}

.sticky_absolute img:nth-child(2) {
  position: sticky;
  top: 600px;
  left: 131px;
  margin-left: 67px;
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 768px) {
}
