/* GENERAL */

.download {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  flex-grow: 1;
}

.download .text h4 {
  color: var(--colorText);
  margin-right: 15px;
  font-family: "Herokid", sans-serif;
  font-weight: 500;
  font-stretch: semi-condensed;
  line-height: 130%;
  font-size: 17px;
  text-transform: uppercase;
}

.download img {
  object-fit: contain;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .download::before,
  .download::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .download {
    justify-content: start;
  }

  .download .text {
    width: 100%;
  }

  .download .text h4 {
    width: 100%;
    margin: 0;
  }
}
