.footer {
  color: #fff;
  margin-top: 40px;
  background: #000000;
  padding: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  row-gap: 80px;
  box-sizing: border-box;
  padding-bottom: 80px;
}

.footer .inner {
  padding: 20px;
  box-sizing: border-box;
}

.footer-icons {
  margin-top: 20px;
}

.footer-icons a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.bt-icon {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;
  color: #fff;
  border-radius: 10px;
  align-items: center;
}

.bt-icon:hover {
  color: #3785ff;
}

.bt-zap-zap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 5px;
  background: #22cd62;
  border-radius: 40px;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .footer {
    display: block !important;
    column-count: 1;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 20px;
  }
}
