body {
  overflow-x: hidden;
}

@media (min-width: 1001px) {
  .content-button {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
footer > p a {
  color: #fff;
}

.floating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px;
}
.floating .button {
  margin: 0;
  width: 360px;
  font-size: 22px;
}
@media (max-width: 1000px) {
  .floating .button {
    width: 1800px;
    font-size: 14px;
  }
  .floating .button::after {
    display: none;
  }
}
.floating .blue-btn {
  margin-left: 40px;
}
@media (max-width: 1000px) {
  .floating .blue-btn {
    margin: 0 20px 0 0;
  }
}
.floating .red-btn {
  margin-left: 40px;
}
@media (max-width: 1000px) {
  .floating .red-btn {
    margin: 0;
  }
}
.floating.fixed {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  transition: all 1s;
}
.floating.fixed.out {
  transform: translate(0, 105%);
}