@keyframes rotateGraphic {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes revealText {
  from {
    clip-path: inset(-20% 100% -20% 0);
  }
  to {
    clip-path: inset(-20% 0 -20% 0);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.bundle-title {
  display: block;
  margin: 0 0 2rem;
}

document-bundle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 1200px) {
  document-bundle {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  document-bundle {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
document-bundle single-document a {
  height: 100%;
  position: relative;
  display: flex;
  gap: 1.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5rem;
  align-items: flex-start;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background: url("/templates/oracle/img/document.svg") no-repeat bottom -90px right;
  background-size: 7.1875rem 12.5rem;
}
@media screen and (max-width: 600px) {
  document-bundle single-document a {
    gap: 1rem;
  }
}
document-bundle single-document a .document-type {
  position: relative;
  flex-basis: 2rem;
  min-width: 2rem;
}
document-bundle single-document a .document-type svg {
  display: block;
  width: auto;
  height: 2rem;
}
document-bundle single-document a .document-type svg path {
  transition: fill 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
document-bundle single-document a .document-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
document-bundle single-document a .document-text .document-title {
  flex-grow: 1;
  color: var(--colorBlack);
  transition: color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
document-bundle single-document a .document-text .document-download {
  margin-top: auto;
  color: var(--colorLightGrey);
}
@media (hover: hover) {
  document-bundle single-document a:hover {
    border-color: transparent;
  }
  document-bundle single-document a:hover .document-type svg path {
    fill: #fff;
  }
  document-bundle single-document a:hover .document-title, document-bundle single-document a:hover .document-download {
    color: #fff;
  }
}
document-bundle single-document a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0.25rem;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, var(--colorSecondary), var(--colorPrimary));
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
document-bundle single-document a:hover:before {
  opacity: 1;
}
