/* Reset Styles */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Remove Underline from anchor tag */
a {
  text-decoration: none;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}

:root {
  --primary-color: #710187;
  --secondary-color: "";
  --light-white: rgb(248, 249, 250);
}

.button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 7px 20px 7px 20px;
  transition: border-radius 0.5s ease;
}

.button:hover {
  border-radius: 20px 7px 20px 7px;
}

.dropdown-menu a {
  font-weight: 600;
  background-color: transparent !important;
  color: #710187 !important;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  background: -webkit-linear-gradient(0deg, #390352, var(--primary-color) 100%);
  display: inline-block;
  color: transparent;
  font-weight: 900;
  position: relative;
  font-size: clamp(1.8rem, calc(1.8vw + 0.5rem), 1.8rem);
  background-clip: text;
}
.section-title::after{
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  background-repeat: no-repeat;
  display: inline-block;
  height: 20px;
  width: 100%;
}

