:root {
  --White: #ffffff;
  --Inspirational-Green: #e7f7f1;
  --Green-Light: #00ff6a;
  --Go-Green: #00e677;
  --Good-Green: #10a867;
  --Nedbank-Green: #006341;
  --Heritage-Green: #004d36;
  --Contrast-Green: #003a29;
  --Black: #020202;
  --News-Green: #033a28;
  --Hover-White: #e8f2ef;
  --Footer-Green: #0a6241;
  --Neon-Green: #25e47c;
  --Sponsor-Green: #80c342;
  --large: @media (max-width: 1440px);
  --medium: @media (max-width: 1200px);
  --small: @media (max-width: 1024px);
  --tablet: @media (max-width: 768px);
  --phone: @media (max-width: 480px);
}

@font-face {
  font-family: "Libre Franklin";
  src: url("../../fonts/LibreFranklin.ttf") format("truetype"), url("LibreFranklin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  font-family: Libre Franklin;
  background: var(--Good-Green);
}

p {
  margin: 0;
}

* {
  margin: 0;
}
*::before, *::after {
  margin: 0;
}

button {
  /* Reset default styles */
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Additional styles */
  cursor: pointer; /* Ensure it looks clickable */
}
button:hover, button:focus {
  /* Reset hover and focus styles */
  background: none;
  border: none;
  outline: none;
}

a {
  /* Reset default styles */
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from parent */
  /* Additional styles */
  cursor: pointer; /* Ensure it looks clickable */
}
a:hover {
  text-decoration: none; /* Underline on hover */
  color: var(--Go-Green, #00e677);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.button {
  display: flex;
  padding: 12px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  width: max-content;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  font-family: Libre Franklin;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.2px;
  border: 1px solid var(--White, #fff);
}

.button:hover {
  color: var(--Contrast-Green, #003a29);
  background-color: var(--White, #fff);
}

.button.go-green {
  border: 2px solid var(--Go-Green, #00e677);
  color: var(--Go-Green, #00e677);
}
.button.go-green:hover {
  background-color: var(--Go-Green, #00e677);
  color: var(--Contrast-Green, #003a29);
}

.button.white {
  border: 2px solid var(--White, #fff);
  color: var(--White, #fff);
}
.button.white:hover {
  background-color: var(--White, #fff);
  color: var(--Good-Green, #10a867);
}

.button.contrast {
  border: 2px solid var(--Contrast-Green, #003a29);
  color: var(--Contrast-Green, #003a29);
}
.button.contrast:hover {
  background-color: var(--Contrast-Green, #003a29);
  color: var(--Go-Green, #00e677);
}

.banner {
  color: var(--White);
}

.banner.short {
  padding: 100px 18%;
}

.banner.top {
  padding: 200px 18%;
}

h1 {
  font-family: Libre Franklin;
  font-size: 70px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  letter-spacing: -1.2px;
}

h2 {
  font-family: Libre Franklin;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}

h3 {
  font-family: Libre Franklin;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}

h4 {
  font-family: Libre Franklin;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
}

.indexes {
  display: none;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
.indexes .index {
  width: 30px;
  height: 6px;
  border-radius: 18px;
  background: var(--Good-Green, #10a867);
}
.indexes .index.selected {
  width: 60px;
  background: var(--Green-Light, #00ff6a);
}

.scroll-to-top {
  position: fixed;
  display: flex;
  right: 5%;
  bottom: 10%;
  z-index: 3;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #23252c;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: var(--Footer-Green);
}
.scroll-to-top.active {
  opacity: 1;
}
.scroll-to-top::after {
  content: "";
  display: block;
  position: relative;
  top: 3px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--Neon-Green);
  border-top: 1px solid var(--Neon-Green);
  margin: auto;
  transform: rotate(-45deg);
}

.hero-banner .banner {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  height: 500px;
  align-items: center;
  position: relative;
}

.hero-banner .banner:after {
  content: "";
  background-image: linear-gradient(90deg, rgba(0, 58, 41, 0.2) 0%, rgba(0, 58, 41, 0.2) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.hero-banner .banner .container {
  z-index: 2;
}

@media (max-width: 1440px) {
  .button {
    padding: 9px 18px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 70px;
    letter-spacing: -0.7px;
  }
  h2 {
    font-size: 40px;
    letter-spacing: -0.4px;
  }
  h3 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
  .banner.tall,
  .banner.short {
    padding: 74px 24px;
  }
  .scroll-to-top {
    bottom: 5%;
    right: 8%;
  }
}

/*# sourceMappingURL=main.css.map */
