* {
	margin: 0;
	padding: 0;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap");

/* Regular */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

/* SemiBold */
h1,h2,h3,h4,h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Bold */
.text-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* ExtraBold */
.text-xbold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

/* Black */
.text-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}
.bg-banner {
    background: rgb(2, 0, 36);
    background: linear-gradient( 0deg, rgba(2, 0, 36, 0.7903536414565826) 0%, rgba(46, 49, 146, 1) 35% );
    background-repeat: no-repeat;
    background-size: cover;
}