#aagman-section{
  position: relative;
}
.keyhole {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #fff;
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
  z-index: 1;
  top: 0;
}

.arrow {
  position: absolute;
  top: 72.5vh;
  left: 50%;
  z-index: 2;
  animation: float 1s ease-in-out infinite alternate both;
}

.arrow svg {
  transform: rotate(90deg);
  stroke: #2d3436;
  width: 2rem;
  margin-left: -1rem;
  height: auto;
}

.section--primary {
  background: #fff;
}
.section--primary figure {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  margin: 0 0 1em 0;
}
.section--primary figure img {
  width: 100%;
  object-fit: cover;
  min-height: 100vh;
}
.section--primary .section__content {
  padding-top: 0;
}

.section--secondary {
  background: #a29bfe;
}

.section--tertiary {
  background: #fab1a0;
}



@keyframes float {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(50%);
  }
}
