footer {
  padding-bottom: 100px;
}
.floating-banner {
  position: fixed;
  display: flex;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 40px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  z-index: 1000;
}
.floating-banner a {
  font-size: 0;
  color: white;
  text-decoration: underline;
}
.floating-banner a:hover {
  text-decoration: none;
}
.floating-btn img {
  max-width: 100%;
}
.floating-btn {
  width: 49.5%;
  max-width: 560px;
}

@media screen and (max-width: 767px) {
  .floating-banner {
    padding: 6px 10px;
    background: #FFF;
  }
  .floating-btn {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    background: #504ee0;
    overflow: hidden;
  }
  .floating-btn.btn-pink {
    background: #ff50b0;
  }
  .floating-btn img {
    width: 144%;
    max-width: none;
    height: auto;
  }
}