@import url('https://fonts.googleapis.com/css2?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');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --bs-secondary-color: #FAAB34;
    --bs-primary-color: #68369B;
    --bs-light-color: #7550A6;
    --bs-gray-bg: #F9F9F9;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    max-width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;

}

img {
    max-width: 100%;
    height: auto;
}

.heading {
    margin-bottom: 50px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

button {
    outline: none;
    cursor: pointer;
    outline: 0;
    border: 0;
    box-shadow: none;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.sub-page-banner-hero {
    height: 60vh;
    background-color: var(--bs-primary-color);
}

.sub-page-banner-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
}

.sub-pg-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.sub-pg-heading h2 span {
    color: var(--bs-secondary-color);
}



