footer {
  background-color: #1C449B;
  color: white;
  padding: 3rem 3rem 6rem 3rem;
  overflow: hidden;
}

footer .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  grid-column-gap: 150px;
  justify-content: center;
  margin-top: 4em;
}

footer .content .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 10em;
}

footer .buttons {
  display: grid;
  grid-template-rows: 1fr 1fr;
  /* 2 rows */
  grid-row-gap: 25px;
  padding: 0 3rem;
  width: 90%;
}

footer .paid-for {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 6em;
}

footer .paid-for p {
  padding: 25px;
  border: 1px solid white
}

/* <!-- MEDIA QUERIES ---------------------------------------------------------------------------------------------> */
/* <!-- Laptop ----------------!> */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  footer {
    padding: 3rem 3rem 6rem 3rem;
  }

  footer .content {
    grid-column-gap: 150px;
    margin-top: 4em;
  }

  footer .paid-for {
    margin-top: 6em;
  }

  footer h1 {
    font-size: 5.75rem;
  }

  footer .paid-for p {
    padding: 25px;
  }
}

/* <!-- Desktop + Scale (125%) ----------------!> */
@media (max-width: 1536px) and (min-width: 1535px) and (min-resolution: 120dpi) and (max-resolution: 121dpi) {
  footer {
    padding: 4rem 3rem 4rem 3rem;
  }

  footer .content {
    grid-column-gap: 150px;
    margin-top: 2em;
  }

  footer .paid-for {
    margin-top: 4em;
  }

  footer h1 {
    font-size: 6rem;
  }

  footer .paid-for p {
    padding: 1rem;
    font-size: 0.8rem;
  }
}

/* <!-- Desktop + Scale (150% Scale) ----------------!> */
@media (max-width: 1280px) and (min-width: 1279px) and (min-resolution: 144dpi) and (max-resolution: 145dpi) {
  footer {
    padding: 3rem 3rem 3rem 3rem;
  }

  footer .content {
    grid-column-gap: 150px;
    margin-top: 2em;
  }

  footer .paid-for {
    margin-top: 3em;
  }

  footer h1 {
    font-size: 5rem;
  }

  footer .paid-for p {
    padding: 1rem;
    font-size: 0.8rem;
  }
}

/* <!-- Mobile ----------------!> */
@media only screen and (max-width: 767px),
only screen and (orientation: portrait) {
  footer {
    padding: 4rem 1rem 4rem 1rem;
  }

  footer .content {
    grid-template-columns: none;
    grid-template-rows: 1fr;
    margin-top: 2em;
  }

  footer h1{
    font-size: 4rem;
  }

  footer .content .contact {
    padding-left: 0;
    align-items: center;
  }

  .email, .address{
    font-size: 1.25rem!important;
  }

  footer .buttons {
    grid-row-gap: 1.5rem;
    padding: 0 3rem;
    width: 100%;
  }

  footer .paid-for {
    margin-top: 3.5em;
  }

}
