.ani {
  transition: all 1s;
}
.ani.down {
  transform: translateY(-80px);
}
.ani.up {
  transform: translateY(80px);
}
.ani.left {
  transform: translateX(80px);
}
.ani.left.off {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.ani.right {
  transform: translateX(-80px);
}
.ani.right.off {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.ani.opacity {
  opacity: 0;
}
.ani.on.down, .ani.on.up {
  transform: translateY(0);
}
.ani.on.left, .ani.on.right {
  transform: translateX(0);
}
.ani.on.left.off, .ani.on.right.off {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.ani.on.opacity {
  opacity: 1;
}

.color-m {
  color: var(--color-main) !important;
}

.bg-img,
.bg-gray {
  position: relative;
  z-index: 1;
}
.bg-img::before,
.bg-gray::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-img::before {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-gray::before {
  background: #f6f6f6;
}

.logo-white .logo-text {
  filter: brightness(0) invert(1);
}

.hover-angle .angle {
  width: 10px;
  display: grid;
  grid-template-columns: 10px 10px;
  overflow: hidden;
}
.hover-angle .angle span,
.hover-angle .angle figure {
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hover-angle .angle span::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
}
.hover-angle .angle img,
.hover-angle .angle .svg {
  width: 80%;
}
.hover-angle:hover .angle span,
.hover-angle:hover .angle figure {
  transform: translateX(-10px);
}

.more-button {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.more-button em {
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.4s;
}

.download-button {
  width: 150px;
  flex-shrink: 0;
  background: #f1f1f1;
  color: #999;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px 25px;
  transition: all 0.6s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.download-button .icon {
  flex-shrink: 0;
  transition: all 0.6s;
}
.download-button:hover {
  background: var(--color-main);
  color: var(--color-white);
}
.download-button:hover .icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .download-button {
    width: auto;
    column-gap: 10px;
    font-size: 1.7rem;
    padding: 10px 20px;
  }
}
@media (max-width: 600px) {
  .download-button {
    column-gap: 5px;
    font-size: 1.5rem;
    padding: 10px;
  }
  .download-button .icon {
    width: 20px;
  }
}