#common {
  position: relative;
  z-index: 1;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  transform-origin: center;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d2155;
  animation: intro_disapear 0.4s 2.9s ease forwards;
}

.intro_logo_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(180px);
  animation: intro_translate 0.7s 1.7s ease forwards, intro_scale 0.7s 1.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  z-index: 2;
}

#intro .logo_l,
#intro .logo_r {
  position: absolute;
  max-width: none;
  z-index: 1;
  height: 70px;
}

#intro .logo_l {
  opacity: 0;
  animation: intro_opacity 0.8s 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

#intro .logo_r {
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-350px, -50%) scale(0.715);
  animation: intro_opacity 1s 1.7s ease forwards, intro_translate_reset 0.8s 1.7s ease forwards;
}

.intro_skew_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  /* animation: intro_disapear 0.01s 1.7s cubic-bezier(0.33, 1, 0.68, 1) forwards; */
  /* animation: intro_scale 0.85s 1.7s ease forwards; */
}

.skew {
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0772cc;
  z-index: 0;
}

.skew1 {
  width: 10px;
  transform: translate(calc(-50% - 192px), calc(-50% - 5.2px)) rotate(-142.5deg) skew(-14deg, 0deg);
  animation: intro_skew1 0.6s 1s ease forwards, intro_color 1s 1.7s ease forwards;
}

.skew2 {
  width: 10px;
  transform: translate(calc(-50% - 179px), calc(-50% - -5.8px)) rotate(-142.5deg) skew(-14deg, 0deg);
  animation: intro_skew2 0.6s 1s ease forwards, intro_color 1s 1.7s ease forwards;
}
.skew3 {
  width: 10px;
  transform: translate(calc(-50% - 206px), calc(-50% - 16px)) rotate(-142.5deg) skew(-14deg, 0deg);
  animation: intro_skew3 0.6s 1s ease forwards, intro_color 1s 1.7s ease forwards;
}
.skew4 {
  width: 12px;
  transform: translate(calc(-50% - 204px), calc(-50% - -7px)) rotate(-219.5deg) skew(11deg, 0deg);
  animation: intro_skew4 0.6s 1s ease forwards, intro_color 1s 1.7s ease forwards;
}

.intro_line_wrap {
  z-index: -1;
}
.intro_line_wrap p {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 200%;
  opacity: 0;
  display: flex;
  background: #80c7fb;
  justify-content: flex-start;
  animation: intro_position 1.8s 0.2s ease forwards;
}

.intro_line_wrap p.rotate_l {
  transform: translate(-50%, -50%) rotate(-51deg);
}
.intro_line_wrap p.rotate_r {
  transform: translate(-50%, -50%) rotate(51deg);
}
.intro_line_wrap p:nth-child(2n) {
  left: 60%;
}
.intro_line_wrap p:nth-child(2n -1) {
  left: 40%;
}
.intro_line_wrap p.rotate_l:nth-child(1) {
  transform: translate(calc(-50% - 40px), -50%) rotate(-51deg);
}
.intro_line_wrap p.rotate_l:nth-child(2) {
  transform: translate(calc(-50% - 24px), -50%) rotate(-51deg);
}
.intro_line_wrap p.rotate_l:nth-child(3) {
  transform: translate(calc(-50% + 29px), -50%) rotate(-51deg);
}
.intro_line_wrap p.rotate_r:nth-child(4) {
  transform: translate(calc(-50% - 53px), -50%) rotate(51deg);
}
.intro_line_wrap p.rotate_r:nth-child(5) {
  transform: translate(calc(-50% - 39px), -50%) rotate(51deg);
}
.intro_line_wrap p.rotate_r:nth-child(6) {
  transform: translate(calc(-50% - 25px), -50%) rotate(51deg);
}
.intro_line_wrap p.rotate_r:nth-child(7) {
  transform: translate(calc(-50% - 11px), -50%) rotate(51deg);
}
.intro_line_wrap p.rotate_r:nth-child(8) {
  transform: translate(calc(-50% + 2px), -50%) rotate(51deg);
}
.intro_line_wrap p.rotate_r:nth-child(9) {
  transform: translate(calc(-50% + 16px), -50%) rotate(51deg);
}

@keyframes intro_skew1 {
  100% {
    width: 10px;
    height: 45px;
  }
}
@keyframes intro_skew2 {
  100% {
    width: 10px;
    height: 45px;
  }
}
@keyframes intro_skew3 {
  100% {
    width: 10px;
    height: 45px;
  }
}
@keyframes intro_skew4 {
  100% {
    width: 12px;
    height: 40px;
  }
}
@keyframes intro_opacity {
  100% {
    opacity: 1;
  }
}
@keyframes intro_translate {
  100% {
    transform: translate(0);
  }
}
@keyframes intro_translate_reset {
  100% {
    transform: translate(-50%, -50%) scale(0.715);
  }
}
@keyframes intro_color {
  100% {
    background: #fff;
  }
}
@keyframes intro_disapear {
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes intro_position {
  50% {
    left: 50%;
  }
  70% {
    opacity: 0.35;
    left: 50%;
  }
  85% {
    opacity: 0.35;
    left: 50%;
  }
  100% {
    opacity: 0;
  }
}

@keyframes intro_scale {
  100% {
    scale: 0.715;
  }
}

@media (max-width: 768px) {
  .intro_logo_wrap {
    transform: translateX(130px);
  }
  #intro .logo_l {
    height: 50px;
  }
  #intro .logo_r {
    transform: translate(-350px, -50%) scale(0.6);
  }

  .intro_skew_wrap {
    scale: 0.721;
  }

  /* .intro_line_wrap p {
    opacity: 1 !important;
  }

  .intro_line_wrap p.rotate_l {
    transform: translate(calc(-50%), -50%), rotate(-51deg) !important;
    left: 50% !important;
  }

  .intro_line_wrap p.rotate_r {
    transform: translate(calc(-50%), -50%), rotate(51deg) !important;
    left: 50% !important;
  } */

  .intro_line_wrap p.rotate_l:nth-child(1) {
    transform: translate(calc(-50% - 30px), -50%) rotate(-51deg);
  }
  .intro_line_wrap p.rotate_l:nth-child(2) {
    transform: translate(calc(-50% - 17px), -50%) rotate(-51deg);
  }
  .intro_line_wrap p.rotate_l:nth-child(3) {
    transform: translate(calc(-50% + 21px), -50%) rotate(-51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(4) {
    transform: translate(calc(-50% - 38px), -50%) rotate(51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(5) {
    transform: translate(calc(-50% - 28px), -50%) rotate(51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(6) {
    transform: translate(calc(-50% - 18px), -50%) rotate(51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(7) {
    transform: translate(calc(-50% - 8px), -50%) rotate(51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(8) {
    transform: translate(calc(-50% + 1px), -50%) rotate(51deg);
  }
  .intro_line_wrap p.rotate_r:nth-child(9) {
    transform: translate(calc(-50% + 11px), -50%) rotate(51deg);
  }

  @keyframes intro_scale {
    100% {
      scale: 0.75;
    }
  }

  @keyframes intro_translate_reset {
    100% {
      transform: translate(-50%, -50%) scale(0.54);
    }
  }
}
