.download a {
  color: #000;
}
.download .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download .download-button {
  display: flex;
  align-items: center;
  gap: 1em;
  border: 1px solid #000;
  padding-block: 0.5em;
  padding-block: clamp(0.3em, 1vw, 0.5em);
  padding-inline: 1em;
  padding-inline: clamp(0.7em, 1vw, 1em);
}
.download .download-button .img-container {
  width: 0.8em;
  aspect-ratio: 1;
}
.download .download-button .img-container img {
  width: 100%;
  height: 100%;
}
.download .download-button p {
  margin-bottom: 0;
  align-self: flex-end;
}
.download .back-button {
  width: 16em;
  stroke: #000;
  color: #000;
  display: flex;
  justify-content: flex-end;
  gap: 1em;
}
.download .back-button .arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.download .back-button .arrow .arrow-left {
  display: flex;
  align-items: center;
  width: 3em;
  height: 2px;
  background-color: #000;
  transition: width 0.4s ease;
}
.download .back-button .arrow svg {
  width: 1.6em;
  stroke-width: 2px;
  color: #000;
}
.download .back-button .button-font {
  width: 55%;
}
.download .back-button:hover .arrow .arrow-left {
  width: 5em;
}

@media (max-width: 560px) {
  .download .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5em;
  }
  .download .download-button {
    display: flex;
    align-items: center;
    gap: 1em;
    border: 1px solid #000;
    padding-block: 0.5em;
    padding-block: clamp(0.3em, 1vw, 0.5em);
    padding-inline: 1em;
    padding-inline: clamp(0.7em, 1vw, 1em);
  }
  .download .back-button {
    width: 16em;
    stroke: #000;
    color: #000;
    display: flex;
    justify-content: center;
    gap: 1em;
  }
  .download .back-button .arrow {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .download .back-button .arrow .arrow-left {
    display: flex;
    align-items: center;
    width: 2.9em;
    height: 2px;
    background-color: #000;
    transition: width 0.4s ease;
  }
  .download .back-button .arrow svg {
    stroke-width: 2px;
    color: #000;
  }
  .download .back-button .button-font {
    width: 55%;
  }
  .download .back-button:hover .arrow .arrow-left {
    width: 3em;
  }
}