@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html,
body {
  font-family: "Poppins", sans-serif !important;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* overflow-x: hidden; */
}

  


:root {
  --primary-orange: #ff7e1d;
  --primary-blue: #404155;
}
.back-to--top-btn {
  width: 50px;
  height: 50px;
  background-color: var(--primary-orange);
  color: white;
  position: fixed;
  z-index: 100;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0px 0px 16px 2px rgba(255,126,29,0.5);
}
.back-to--top-btn:hover{
    background-color: var(--primary-blue);
}