/* CSS Document */
.header-img {
  background: url(../../img/header-8.jpg) no-repeat center/cover; }

@media screen and (max-width: 575px) {
  .document {
    padding-left: 1rem; } }
.document__title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700; }
.document__download {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; }
  @media screen and (max-width: 575px) {
    .document__download {
      gap: 1.5rem; } }
.document__file {
  padding: 0.5rem 0.5rem 0.5rem 6rem;
  border-radius: 999px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  width: 360px; }
  @media screen and (max-width: 991px) {
    .document__file {
      width: 300px; } }
  @media screen and (max-width: 767px) {
    .document__file {
      width: 250px;
      font-size: 1.7rem; } }
  @media screen and (max-width: 575px) {
    .document__file {
      width: 270px;
      font-size: 1.6rem; } }
  .document__file--pdf {
    position: relative;
    color: #E6383A;
    border: solid 1px #E6383A; }
    .document__file--pdf:hover {
      background: #E6383A;
      color: #fff;
      border: solid 1px #E6383A; }
      .document__file--pdf:hover::before {
        background: url("../../img/dl-pdf-icon-w.svg") no-repeat center/contain; }
    .document__file--pdf::before {
      background: url("../../img/dl-pdf-icon.svg") no-repeat center/contain; }
    .document__file--pdf:focus, .document__file--pdf:focus-visible {
      border: 1px solid #E6383A; }
  .document__file--excel {
    position: relative;
    color: #1EA055;
    border: solid 1px #1EA055; }
    .document__file--excel:hover {
      background: #1EA055;
      color: #fff;
      border: solid 1px #1EA055; }
      .document__file--excel:hover::before {
        background: url("../../img/dl-excel-icon-w.svg") no-repeat center/contain; }
    .document__file--excel::before {
      background: url("../../img/dl-excel-icon.svg") no-repeat center/contain; }
    .document__file--excel:focus, .document__file--excel:focus-visible {
      border: 1px solid #1EA055; }
  .document__file::before {
    content: "";
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem; }
  .document__file i {
    font-size: 3rem;
    margin-left: 1rem; }
