html {
  height: auto !important;
}

body {
  scroll-behavior: smooth;
}

.return-to-top {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  height: 50px;
  width: 50px;
  bottom: 45px;
  margin-right: auto;
  margin-top: 40px;
  margin-left: 30px;
  border-radius: 50%;
  border: unset;
  background-color: #1970b7;
  transform: rotate(270deg);
  z-index: 5;
}
@media (prefers-reduced-motion: reduce) {
  .return-to-top {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .return-to-top {
    margin-right: 20px;
    margin-top: 20px;
  }
}
.return-to-top:hover {
  background-color: #488cc5;
}
.return-to-top.show {
  opacity: 1;
}

.layout-container {
  margin-bottom: -135px;
}