.footer {
  width: 100%;
  margin-top: 80px;
  background-color: var(--dark);
  padding: 40px 0;
}

.footer-content {
  width: 100%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.footer-content--item {
  width: 100%;
}

.footer-content--item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 40px 0 10px 0;
}

.footer-content--item p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin: 25px 0;
}

.footer-content--item.btn-contact {
  margin-top: 25px;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {

}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
  .footer-content {
    flex-direction: row;
    align-items: start;
    gap: 2rem;
  }

  .footer-content--item.description {
    width: 70%;
  }

  .footer-content--item.apps {
    width: 30%;
  }
}
