.nnfma-hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nnfma-hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.nnfma-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.nnfma-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.nnfma-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 2.5rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
  z-index: 2;
}
.nnfma-hero-arrow:hover {
  background: rgba(0,0,0,0.6);
}
.nnfma-hero-prev {
  left: 0;
}
.nnfma-hero-next {
  right: 0;
}
