body {
    font-family: 'Heebo', sans-serif!important;
    line-height: 1.375rem!important;
}

p {
    margin-bottom: 0px!important;
}

/* defining colors */
:root {
    --primary-color: #708DEB;
    --blue-color: #8EDBD6;
    --violet-color: #708DEB;
    --dark-purple-color: #A062BF;
    --light-purple-color: #8176E2;
    --dark-pink-color: #ED2F68;
    --light-pink-color: #C44A96;
    --gray-color: #BAC8D5;
    --dark-black-color: #101010;
    --dark-blue-color: #27304C;
}

.primary-color {
    color: var(--primary-color);
}

.violet-color {
    color: var(--violet-color);
}

.blue-color {
    color: var(--blue-color);
}

.gray-color {
    color: var(--gray-color);
}

.pink-gradient-text {
    background: -webkit-linear-gradient(45deg, var(--dark-pink-color) 0%, var(--light-pink-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.purple-gradient-text {
    background: -webkit-linear-gradient(45deg, var(--dark-purple-color) 0%, var(--light-purple-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* common background colours */
.violet-background {
    background-color: var(--violet-color);
}

.dark-black-background {
    background-color: var(--dark-black-color);
}

.dark-blue-background {
    background-color: var(--dark-blue-color);
}

/* font styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700!important;
    margin-bottom: 0px!important;
}

h1 {
    font-size: 60px!important;
}

h2 {
    font-size: 48px!important;
}

h3 {
    font-size: 40px!important;
}

h4 {
    font-size: 32px!important;
}

h5 {
    font-size: 24px!important;
}

h6 {
    font-size: 20px!important;
}

/* md screens */
@media only screen and (max-width: 991px) {
    h1 {
      font-size: 54px!important;
    }
    h2 {
        font-size: 40px!important;
    }
    h3 {
        font-size: 36px!important;
    }
}

/* sm screens */
@media only screen and (max-width: 767px) {
    h1 {
      font-size: 48px!important;
    }
    h2 {
        font-size: 34px!important;
    }
    h3 {
        font-size: 30px!important;
    }
}

/* xs screens */
@media only screen and (max-width: 576px) {
    h1 {
      font-size: 40px!important;
    }
    h2 {
        font-size: 30px!important;
    }
    h3 {
        font-size: 28px!important;
    }
}

.super-bold {
    font-weight: 900!important;
}

.bold {
    font-weight: 700!important;
}

.semi-bold {
    font-weight: 600!important;
}

.cardo-font {
    font-family: 'Cardo', serif!important;
}

.text-xl {
    font-size: 20px;
    line-height: 24px;
}

.tracking-widest {
    letter-spacing: 0.25em;
}

/* sm screens */
@media only screen and (max-width: 767px) {
    .tracking-widest {
        letter-spacing: 0.1em;
    }
}

/* .small-text {
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.extra-small-text {
    font-size: 0.75rem;
} */

/* defining common button styles */
button {
    outline: none;
    border: none;
    font-size: 0.875rem!important;
    padding: 0.75rem 1.75rem;
}

.gradient-button {
    background: linear-gradient(to right, var(--dark-pink-color) 0%, var(--light-pink-color) 30.18%, var(--dark-purple-color) 72.19%, var(--light-purple-color) 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    color: white;
    font-size: 18px!important;
    min-width: 250px;
    align-items: center;
    justify-content: center;
}

/* other styles */
.hover:hover {
    cursor: pointer;
}

.link {
    text-decoration: none;
    color: inherit;
}

.link:hover {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.viewport-container {
    padding-left: 10%;
    padding-right: 10%
}

.section-heading-underline {
    background-color: var(--gray-color);
    min-height: 1px;
    max-height: 1px;
}
.section-heading-underline-1 {
    min-height: 5px;
    min-width: 5px;
    background-color: var(--gray-color);
    transform: rotate(45deg);
}
.section-heading-underline-2 {
    min-width: 90px;
    max-height: 1px;
    background-color: var(--gray-color);
}
.section-heading-underline-3 {
    min-height: 5px;
    min-width: 5px;
    background-color: var(--gray-color);
    transform: rotate(45deg);
}

/* md screens */
@media only screen and (max-width: 991px) {
}

/* sm screens */
@media only screen and (max-width: 767px) {
    .viewport-container {
        padding-left: 5%;
        padding-right: 5%
    }
}

/* xs screens */
@media only screen and (max-width: 576px) {
    .viewport-container {
        padding-left: 5%;
        padding-right: 5%
    }
}