.footer {
  background-color: rgba(0, 0, 0, 0.9); /* black at 50% opacity */
  height: 15.9375rem;
  width: 100%;
}

.footer a {
  text-decoration: underline;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1rem;
  color: #bcbcbc;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 535;
  line-height: 1.5625rem; /* 131.579% */
  padding-left: 2rem;
}

.footer-content a {
  color: #bcbcbc;
}

.footer-col1 {
  grid-area: 1 / 1 / 2 / 2;
  margin-top: 4rem;
}

.footer-col2 {
  grid-area: 1 / 2 / 2 / 3;
  margin-top: 4rem;
}

.footer-col3 {
  grid-area: 1 / 3 / 2 / 4;
  margin-top: 4rem;
}

.footer-blur {
  position: fixed;
  bottom: -1.5rem;
  left: -1rem;
  width: 110%;
  height: 4.14606rem;
  background: #d9d9d9;
  background-color: rgb(0, 0, 0);
  filter: blur(30px);
  z-index: 100;
}

@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    padding-left: 1.125rem;
    padding-top: 2.6rem;
    gap: 2rem;
  }

  .footer-col1,
  .footer-col2,
  .footer-col3 {
    margin-top: 0;
  }

  .footer-blur {
    /*background: #979797;*/
    filter: blur(42px);
    width: 200%;
    left: -50%;
    bottom: -30px;
    bottom: -2.07rem;
  }

  .footer {
    position: relative; /* needed for z-index to have an effect */
    z-index: 100;
  }
}
