
@font-face {
    font-display: swap;
    font-family: HKESIJAL;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/HSBC_MtUnivers_Latin-Lt.df79a3f6.woff") format("woff")
}

@font-face {
    font-display: swap;
    font-family: HKESIJAL;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/HSBC_MtUnivers_Latin-Rg.7da1eecc.woff") format("woff")
}

@font-face {
    font-display: swap;
    font-family: HKESIJAL;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/HSBC_MtUnivers_Latin-Md.f081b353.woff") format("woff")
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: HKESIJAL, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  max-width: 100%;
  color: #333;
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  opacity: 0;
  visibility: hidden;
  animation: showBtn linear forwards;
  animation-timeline: scroll(root);
  animation-range: 200px 500px;
}

@keyframes showBtn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

.more-button-text {
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.more-button-icon-left {
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.more-button-icon-right {
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.more-button:hover .more-button-text {
  transform: translate3d(28px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.more-button:hover .more-button-icon-left {
  transform: translate3d(28px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.more-button:hover .more-button-icon-right {
  transform: translate3d(28px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

@media screen and (max-width: 768px) {
  .back-to-top {
    animation-range: 50px 100px;
  }
}
