:root {
    --primary-color: #99ff00;
    --secondary-color: #0080ff;
    --white-color: #ffffff;
    --charcol-dark-color: #1e1e1e;
    --bg-theme-dark: #000000;
    --text-black: #1e1e1e;
    --grey-color: #1f1f1f;
    --custom-border-radius: 14px;

    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--bg-theme-dark);
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poller One", serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none !important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-effect {
    text-align: center;
}

.text-typing-effect {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    text-transform: capitalize;
    padding: 16px 40px;
}

.text-change {
    min-width: 150px;
    display: inline-block;
    color: #fff;
}

.dud {
    /* opacity: 0.5; */
    color: var(--primary-color);
}

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

.cursor-pointer {
    cursor: pointer;
}

.common-section-spacing {
    padding: 140px 0;
}

.common-section-spacing-top {
    padding-top: 140px;
}

.common-section-spacing-bottom {
    padding-bottom: 140px;
}

.commom-heading {
    color: var(--white-color);
    font-size: 55px;
    line-height: 120%;
    letter-spacing: 0%;
}
