.about{
  width: 100%;
  height: auto;
  background-color: var(--bg-primary);
  display: grid;
  grid-template-columns: 1fr;
}
.mask{
  height: 100vh;
  grid-row-start: 1;
  grid-column-start: 1;
  justify-self: center;
  align-self: center;
  padding: 0;
}
.top{
  height: 100vh;
  z-index: 10;
  scale: 101%;
}
.about .content{
  gap: 16px;
  margin-bottom: 16px;
}
.div70{
  width: 75%;
  justify-self: right;
}
.about .text{
  margin-top: 16px;
  width: 100%;
  max-width: 700px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-up {
  animation: slideUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
.hover-animation{
  display: grid;
  overflow: hidden;
}
.over{
  grid-area: 1/1;
}
.hover{
  display: grid;
  width: 100%;
  height: 100%;
  grid-auto-columns: 45% 60%;
  grid-template-rows: 60% 40%;
  z-index: 100;
}
.hover01{
  grid-area: 1/1/span 2;
}
.hover02{
  grid-area: 1/2;
}
.hover03{
  grid-area: 2/2;
}
.cursor-image{
  position:absolute;
  width:300px;
  height: auto;
  pointer-events:none;
  opacity:0;
  transform:translate(-50%, -50%) scale(.9);
  transition:
    opacity .25s ease,
    transform .25s ease;
}

@media (orientation: portrait) {
  .mask{
    height: 90%;
    width: auto;
  }
  .top {
    width: 100%;
    height: auto;
  }
  .about .text{
    width: 100%;
    justify-self: center;
  }
  .div70{
    width: 100%;
  }
}
@media screen and (max-width: 1024px){

}
@media screen and (max-width: 500px){
  .about .content{
    gap: 8px;
    margin-bottom: 16px;
  }
  .about .text{
    margin-top: 8px;
    max-width: 100%;
  }
  .slide-up {
    animation-range: entry 0% cover 20%;
  }
}
