@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
}

*, *::after, *::before {
  box-sizing: border-box;
}

:root {
  --muted: #a1a1aa;
  --contact-green-input: rgba(0, 0, 0, .3);
  --font: 24px;
}

img {
  object-fit: cover;
  vertical-align: middle;
}

img:not(.none) {
  max-width: 100%;
  max-height: 100%;
}

textarea {
  resize: none;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.bezier .swiper-wrapper, .div_bezier {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1) !important;
}

table {
  border-collapse: collapse;
}

._scroll_y {
  position: fixed;
  top: 0;
  right: 3px;
  width: 6px;
  height: 100vh;
  z-index: 9999;
  border-radius: 10px;
}

._scroll_y div {
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: #fff;
  opacity: 0;
  position: relative;
  transition: opacity 0.3s ease;
  cursor: grab;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.38);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.38) transparent;
}

[data-wheel]::-webkit-scrollbar {
  width: 7px;
}

[data-wheel]::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.38);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

[data-wheel]::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

[data-wheel]::-webkit-scrollbar-track {
  background-color: transparent;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

section {
  overflow: hidden;
}

section.unset {
  overflow: unset;
}

.lenis_scroll {
  height: 250px;
  overflow: hidden;
  overflow-y: auto;
}

.lenis_scroll::-webkit-scrollbar-thumb {
  background: var(--color);
}

.lenis_scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.lenis_scroll::-webkit-scrollbar {
  width: 2px !important;
  display: block;
}

.common_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.parallax {
  width: 100%;
  height: 100%;
}

@keyframes lineHover {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50.001% {
    transform-origin: left center;
  }
  50.002% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 60px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .6s ease;
}
.header .l {
  display: flex;
  align-items: center;
}
.header .l .brand-wordmark {
  display: block;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15.12px, 1.4805vw, 22.68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  top: 6px;
}
.header .vertechs-mark {
  display: block;
  height: clamp(13.6px, 1.33vw, 20px);
  width: auto;
  aspect-ratio: 385 / 51;
  line-height: 0;
  position: relative;
  top: 6px;
}
.header .vertechs-mark img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.header .l .logo {
  display: block;
  width: 159px;
}
.header .l .logo img {
  width: 100%;
  object-fit: contain;
}
.header .l .line {
  margin: 0 27px;
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.3);
}
.header .l .logo2 {
  display: block;
  width: 173px;
}
.header .l .logo2 img {
  width: 100%;
  object-fit: contain;
}
.header .nav {
  width: 527px;
  display: flex;
  justify-content: space-between;
}
.header .nav .item:hover a:after, .header .nav .item.on a:after {
  transform: scaleX(1);
}
.header .nav .item a {
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  transition: .3s ease;
  position: relative;
}
.header .nav .item a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -7px;
  left: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}

.footer {
  background: #ffffff08;
  padding: 0 60px;
}
.footer .wrap {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .wrap .l {
  display: flex;
  align-items: center;
  gap: 86px;
  flex: 1;
  width: 100%;
  justify-content: space-between;
}
.footer .wrap .l .img {
  width: 133px;
  display: block;
  object-fit: contain;
}
.footer .wrap .l p {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
.footer .wrap .l p a {
  color: #FFFFFF;
}
.footer .wrap .foo_nav {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.footer .wrap .foo_nav a {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: .6s ease;
}
.footer .wrap .foo_nav a:hover {
  color: #fff;
}

.parallaxImg {
  overflow: hidden;
}

.parallaxImg img {
  max-height: unset;
}

[animatetext] {
  opacity: 0;
}
[animatetext].show {
  opacity: 1;
}

.text-split div {
  display: inline-block;
  opacity: .2;
}

.perspective-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.perspective-text {
  font-weight: 600;
  line-height: unset;
  color: rgba(136, 136, 136, 0.2);
  height: fit-content;
}
.perspective-text .char {
  transform: translateZ(0);
}

.perspective-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  pointer-events: none;
}

.public_text {
  width: fit-content;
  margin: auto;
  position: relative;
}

.public_text.center .p {
  width: 100%;
  left: 50% !important;
  transform: translateX(-50%);
}

.public_text.center .p p {
  width: fit-content;
  margin: auto;
}

.public_text .p:first-child {
  position: relative;
  z-index: 55;
}

.public_text .p:first-child p {
  background: linear-gradient(90deg, #00ffd5 0%, #00c8ff 30%, #0056FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.public_text .p:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.public_text .p p {
  width: fit-content;
}

.home {
  overflow: hidden;
}

.common_contact {
  padding: 180px 0 100px;
  position: relative;
  z-index: 2;
}
.common_contact:before {
  content: "";
  position: absolute;
  width: clamp(320px, 100vw, 4500px);
  height: clamp(320px, 100vw, 4500px);
  left: 30%;
  top: 52%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, #2563eb80, #25a6eb38 35%, #2563eb12 58%, #2563eb00 75%);
  filter: blur(96px);
  pointer-events: none;
  z-index: 0;
}
.common_contact .wrap {
  width: 1360px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.common_contact .wrap .left {
  width: 504px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--contact-green);
  color: #fff;
  padding: 0 40px 0 39px;
  align-self: flex-start;
  box-sizing: border-box;
  min-height: 0;
  height: 100%;
}
.common_contact .wrap .left .p1 {
  width: 100%;
  margin: 0 0 40px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.common_contact .wrap .left .flex .list {
  position: relative;
  padding-left: 32px;
}
.common_contact .wrap .left .flex .list:after {
  content: "✓";
  position: absolute;
  left: 0px;
  top: -2px;
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}
.common_contact .wrap .left .flex .list:not(:last-child) {
  margin: 0 0 20px;
}
.common_contact .wrap .left .flex .list:last-child {
  margin: 8px 0 0 0;
}
.common_contact .wrap .left .flex .list img {
  width: 14px;
  display: none;
}
.common_contact .wrap .left .flex .list p {
  font-weight: 400;
  font-size: 16px;
  color: #ffffffd9;
  position: relative;
}
.common_contact .wrap .left .flex .list a {
  width: 20px;
  height: 20px;
  display: block;
}
.common_contact .wrap .left .flex .list a svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}
.common_contact .wrap .right {
  width: 630px;
  background: #ffffff08;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px 48px 56px;
  align-self: flex-start;
  color: #fff;
  box-sizing: border-box;
  min-height: 0;
  height: 100%;
}
.common_contact .wrap .right .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 0;
}
.common_contact .wrap .right .flex input {
  width: 258px;
  height: 53px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  color: #FFFFFF;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.common_contact .wrap .right .flex input:focus {
  background: #0009;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px #2563eb26;
}
.common_contact .wrap .right .flex input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.common_contact .wrap .right .flex textarea {
  width: 100%;
  height: 140px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  font-weight: 400;
  font-size: 15px;
  font-family: inherit;
  color: #FFFFFF;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.common_contact .wrap .right .flex textarea:focus {
  background: #0009;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px #2563eb26;
}
.common_contact .wrap .right .flex textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.common_contact .wrap .right .flex .button {
  width: fit-content;
  height: 48px;
  background: #2662EB;
  border-radius: 5px;
  padding: 0 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin: 8px 0 0 0;
}
.common_contact .wrap .right .flex .read {
  display: flex;
  gap: 12px;
  cursor: pointer;
  margin: 4px 0 0;
}
.common_contact .wrap .right .flex .read.on .bor {
  background: #2662EB;
  border-color: #2662EB;
}
.common_contact .wrap .right .flex .read.on .bor img {
  opacity: 1;
}
.common_contact .wrap .right .flex .read input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
  margin: 3px 4px 4px 4px;
}
.common_contact .wrap .right .flex .read input:focus {
  background: #0009;
  border-color: #2563eb;
  box-shadow: none;
}
.common_contact .wrap .right .flex .read .bor {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .3s ease;
}
.common_contact .wrap .right .flex .read .bor img {
  max-width: 70%;
  max-height: 70%;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: .3s ease;
}
.common_contact .wrap .right .flex .read p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffffb3;
  flex: 1;
}
.common_contact .wrap .right .flex .read p a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease;
}
.common_contact .wrap .right .flex .read p a:hover {
  color: #2662EB;
}

.page-bottom-wrap {
  overflow: hidden;
  z-index: 20;
  position: relative;
  margin-top: -2500px;
  padding-top: 2500px;
  pointer-events: none;
}
.page-bottom-wrap > * {
  pointer-events: auto;
}

.aos.aos-animate {
  opacity: 1 !important;
  transform: translate(0) !important;
}

video {
  display: block;
}

@media screen and (max-width: 1366px) {
  .common_contact .wrap {
    max-width: 90%;
  }

  .common_contact .wrap .right .flex input {
    width: 49%;
  }
}
@media screen and (max-width: 1366px) {
  .header .nav .item a {
    font-size: 20px;
  }

  .header .nav {
    width: 37vw;
  }

  .header .l .logo, .header .l .logo2 {
    width: 129px;
  }
}
.common_video {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.common_video canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  .header {
    display: none;
  }

  .header_mobile {
    display: block !important;
    overflow: hidden;
  }

  .header_mobile .top {
    position: fixed;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
  }

  .header_mobile .top .l {
    display: flex;
    align-items: center;
  }

  .header_mobile .top .l .brand-wordmark {
    display: block;
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(11.34px, 3.15vw, 15.12px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    position: relative;
    top: 6px;
  }
  .header_mobile .top .vertechs-mark {
    display: block;
    height: clamp(10.2px, 2.84vw, 13.6px);
    width: auto;
    aspect-ratio: 385 / 51;
    line-height: 0;
    position: relative;
    top: 6px;
  }
  .header_mobile .top .vertechs-mark img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: contain;
  }

  .header_mobile .top .line {
    margin: 0 16px;
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
  }

  .header_mobile .top .logo {
    width: 80px;
    height: 28px;
    display: block;
  }

  .header_mobile .top .logo2 {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header_mobile .top .r {
    display: flex;
    align-items: center;
  }

  .header_mobile .top .logo img {
    height: 100%;
    object-fit: contain;
  }

  .header_mobile .top .r .menu {
    margin: 0 0 0 25px;
    cursor: pointer;
    position: relative;
  }

  .header_mobile .top .r .menu .show {
    width: 25px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header_mobile .top .r .menu .show span {
    width: 100%;
    height: 1px;
    background: #000;
    transition: .3s ease;
    transform-origin: left;
  }

  .header_mobile .top .r .menu .show span:first-child {
    transition-delay: .6s;
  }

  .header_mobile .top .r .menu .show span:nth-child(2) {
    transition-delay: .5s;
  }

  .header_mobile .top .r .menu .show span:nth-child(3) {
    transition-delay: .4s;
  }

  .header_mobile .top .r .menu .hide {
    position: absolute;
    width: 27px;
    height: 27px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header_mobile .top .r .menu .hide:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleX(0);
    transition: .3s ease;
    transform-origin: left;
  }

  .header_mobile .top .r .menu .hide:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleY(0);
    transition: .3s ease;
    transform-origin: top;
  }

  .header_mobile .top .r .menu.on .show span {
    transform: scaleX(0);
  }

  .header_mobile .top .r .menu.on .show span:nth-child(1) {
    transition-delay: 0s;
  }

  .header_mobile .top .r .menu.on .show span:nth-child(2) {
    transition-delay: .1s;
  }

  .header_mobile .top .r .menu.on .show span:nth-child(3) {
    transition-delay: .2s;
  }

  .header_mobile .top .r .menu.on .hide:after {
    transform: scaleX(1);
    transition-delay: .4s;
  }

  .header_mobile .top .r .menu.on .hide:before {
    transform: scaleY(1);
    transition-delay: .3s;
  }

  .header_mobile .bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 98;
    clip-path: inset(0 0 100%);
    transition: .6s ease;
  }

  .header_mobile .bottom .joke > ul > li {
    transform: translateY(10px);
    opacity: 0;
    transition: opacity .3s,transform .6s .3s;
  }

  .header_mobile.on .bottom {
    clip-path: inset(0 0 0 0);
  }

  .header_mobile.on .bottom .joke > ul > li {
    opacity: 1;
    transform: translateY(0);
  }

  .header_mobile .bottom .joke {
    padding: 80px 5% 30px 5%;
    height: calc(100vh - 47px);
    overflow: hidden;
    overflow-y: scroll;
  }

  .header_mobile .bottom .joke ul {
    margin: 0 0 20px;
    position: relative;
  }

  .header_mobile .bottom .joke ul ul {
    display: none;
  }

  .header_mobile .bottom .joke > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header_mobile .bottom .joke ul li .show {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header_mobile .bottom .joke > ul > li > .show {
    height: 60px;
  }

  .header_mobile .bottom .joke ul li .show > a {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 35px;
    transition: .6s ease;
  }

  .header_mobile .bottom .joke > ul > li > .show > a {
    color: #000;
    font-size: 16px;
  }

  .header_mobile .bottom .joke ul li .show .click {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
  }

  .header_mobile .bottom .joke ul li .show.on > a {
    color: var(--color) !important;
  }

  .header_mobile .bottom .joke ul li .show.on .click img {
    transform: rotate(180deg);
  }

  .header_mobile .bottom .joke ul li .show .click img {
    width: 12px;
    height: 12px;
    transition: .3s ease;
  }

  .header_mobile.black .top {
    background: transparent;
    transition: .6s ease;
    box-shadow: unset;
  }

  .header.on + .header_mobile.black .top {
    background: #000;
  }

  .header_mobile.black .top .r .menu .show span, .header_mobile.black .top .r .menu .hide:after, .header_mobile.black .top .r .menu .hide:before {
    background: #fff;
  }

  .header_mobile.black .bottom {
    background: #000;
  }

  .header_mobile.black .bottom .joke > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header_mobile.black .bottom .joke ul li .show .click img {
    filter: brightness(0) invert(1);
  }

  .home {
    overflow: hidden;
  }

  .page-bottom-wrap {
    margin-top: 0;
    padding-top: 0;
  }

  .common_contact {
    padding: 72px 0 90px;
  }

  .common_contact .wrap {
    flex-direction: column;
  }

  .common_contact .wrap .left {
    width: 100%;
    padding: 0;
  }

  .common_contact .wrap .left .p1 {
    font-size: clamp(30px, 9vw, 40px);
    margin: 0;
  }

  .common_contact .wrap .left .flex .list p {
    font-size: 16px;
  }

  .common_contact .wrap .left .flex .list:after {
    font-size: 14px;
  }

  .common_contact .wrap .left .flex .list {
    padding-left: 22px;
  }

  .common_contact .wrap .left .flex .list a {
    width: 16px;
    height: 16px;
  }

  .common_contact .wrap .right {
    width: 100%;
    padding: 15px;
    margin: 25px 0 0 0;
  }

  .common_contact .wrap .right .flex input {
    width: 100%;
  }

  .common_contact .wrap .right .flex input {
    height: 47px;
    font-size: 14px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .common_contact .wrap .right .flex {
    gap: 10px 0;
  }

  .common_contact .wrap .right .flex textarea {
    font-size: 14px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .common_contact .wrap .right .flex .button {
    width: 100%;
  }

  .common_contact .wrap .right .flex .read p {
    font-size: 13px;
  }

  .footer {
    padding: 25px 5%;
  }

  .footer .wrap {
    height: auto;
    justify-content: unset;
    flex-direction: column;
  }

  .footer .wrap .l {
    flex-direction: column;
    justify-content: center;
    gap: 35px;
  }

  .footer .wrap .l p {
    font-size: 14px;
  }

  .footer .wrap .foo_nav {
    justify-content: space-between;
    width: 100%;
    margin: 15px 0 0 0;
  }

  .footer .wrap .foo_nav a {
    font-size: 14px;
  }

  .common_contact .wrap .left .flex {
    display: none;
  }

  .common_contact .wrap .left.sj_left {
    display: block !important;
    margin: 40px 0 0 0;
  }

  .common_contact .wrap .left.sj_left .flex {
    display: block;
  }

  .home {
    overflow: hidden !important;
  }

  .common_contact:before {
    left: 50%;
    top: 36%;
    width: 120vw;
    height: 120vw;
    transform: translate(-50%, -50%);
    filter: blur(60px);
  }

  .common_video {
    display: block !important;
  }

  .common_contact .wrap .right .flex .read input {
    display: none;
  }

  .common_contact .wrap .right .flex .read .bor {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .common_contact .wrap .right .flex .read.on .bor {
    border-color: #2662EB;
    background: #2662EB;
  }

  .common_contact .wrap .right .flex .read.on .bor svg {
    opacity: 1;
  }

  .common_contact .wrap .right .flex .read .bor svg {
    width: 100%;
    height: 100%;
    transition: .6s ease;
    opacity: 0;
    display: block;
  }
}
.common_video {
  width: 100%;
  height: 100%;
  display: none;
  pointer-events: none;
}

.common_video canvas {
  object-fit: cover;
}

.footer .wrap .foo_nav a:last-child {
  display: none;
}
