
.footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  bottom: 0px;
  background: #ccc;
  padding: 12px 15px;
}
.footercontent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
    .footer {
      display: none;
    }
  }
  