.holes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--Nedbank-Green, #006341);
  padding: 100px 18%;
}
.holes ol {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.holes ol li {
  position: relative;
  height: inherit;
  width: 100%;
  height: 300px;
  flex: 1;
  transition: flex 0.8s ease;
  cursor: pointer;
}
.holes ol li h3 {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  transition: rotate 0.8s ease;
  margin: 0;
}
.holes ol li:hover {
  flex: 6;
}

@media (max-width: 1024px) {
  .holes {
    padding: 0;
    gap: 0;
    background: var(--Contrast-Green, #003a29);
  }
  .holes ol {
    flex-wrap: wrap;
  }
  .holes ol li {
    min-width: 33vw;
  }
  .holes ol li h3 {
    left: 12px;
  }
}

/*# sourceMappingURL=holes.css.map */
