/***************************************************************************
    DOCUMENTS
***************************************************************************/
.document {
  min-height: 85dvh;
  margin-top: 160px;
  text-align: center;
  padding: 6px 20px;
}
.document__header {
  font-size: 5rem;
  line-height: 5.2rem;
}
.document__text {
  font-size: 2rem;
}
.document__wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.document__pdf-holder {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
}
.document__adobe-view {
  height: 800px;
  width: 100%;
}
.document__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  font-weight: 300;
}
.document__svg {
  fill: var(--text);
}
.document__button:hover {
  background: #243141;
  border-color: #3498db;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 152, 219, 0.3);
}
.document__button:active {
  transform: translateY(-2px);
}
.document__svg {
  fill: var(--text);
  width: 45px;
  height: 45px;
  transition: fill 0.3s ease, transform 0.3s ease;
}
.document__button:hover .document__svg {
  fill: #3498db;
  transform: scale(1.1);
}/*# sourceMappingURL=document.css.map */