@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
@import url("./navbar.css");
@import url("./home.css");
@import url("./about.css");
@import url("./why.css");
@import url("./payment-methods.css");
@import url("./contact.css");
@import url("./footer.css");
@import url("./terms.css");
@import url("./privacy.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
}

:root {
  /* --main-color: #229d33; */
  /* --text-color: #000; */
  /* --bg-color: #fcf7f1; */
  /* --big-font: 5rem;
  --medium-font: 3.5rem;
  --h3-font: 2.25rem;
  --p-font: 0.9rem; */
}

html {
  width: 100%;
}

/* preload background image */
body::before {
  content: url("https://d38kut7afapgmn.cloudfront.net/billeroo/img/Billeroo_Microsite_Asset-12.svg");
  display: none;
}

body {
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  overflow-y: scroll;
  /* color: var(--text-color);
  background: var(--bg-color); */
}

*::selection {
  /* background: var(--main-color);
  color: #fff; */
}

section {
  width: 100%;
  height: auto;
  padding: 0;
  scroll-margin-top: 80px;
}

.btn {
  color: white;
  font-size: 16px;
  font-weight: 500;
  width: 230px;
  height: 48px;
  background-image: linear-gradient(to right, #8cc341, #029246);
  border-radius: 32px;
  transition: all 0.1s ease;
  border: none;
}

.btn:hover {
  /* opacity: 90%; */
  cursor: pointer;
  box-shadow: 0 0 0 3px green;
  transform: scale(1.01);
}

/* Back to Top Button */
/* .btn-top {
  padding: 20px;
  position: fixed;
  transition: all 0.25s ease-in-out;
  right: 5px;
  bottom: 5px;
  background-color: #33502f;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 2em 2em 0;
  border-radius: 50%;
  padding: 0.25em;
  width: 80px;
  height: 80px;
} */
/* .show {
  visibility: visible;
  opacity: 1;
}

.hide {
  visibility: hidden;
  opacity: 0;
}
svg {
  fill: #fff;
  width: 24px;
  height: 12px; 
}*/

@media (max-width: 820px) {
  section {
    scroll-margin-top: 72px;
  }
}
