:root {
    font-size: 62.5%;
    --primary: #141414;
    --primary-light: #3D3D3D;
    --secondary: #03C988;
    --green: #013F3B;
    --white: #fff;
    --light: #bbbbc3;
    --light-1: #EDEDED;
    --light-2: #F8F8F8;
    --mute: #71717A;
    --black-1: #1E1E1E;
    --black-2: #434343;
    --body-font: "Inter", sans-serif;
    --heading-font: "Kumbh Sans", sans-serif;
    --bs-form-select-bg-img: url(../images/dropdown.svg);

}

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

body {
    margin: 0;
    padding: 0;
    background: var(--primary);
    color: var(--white);
    font-family: var(--heading-font);
    line-height: 1.5;
    font-size: 1.6rem;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.flex-1 {
    flex: 1;
}

.fs20 {
    font-size: 2rem;
}

.text-green {
    color: var(--secondary);
}

svg {
    height: 2rem;
    width: 2rem;
}

.flex-center {
    display: flex;
    align-items: center;
}

.fs14 {
    font-size: 1.4rem;
}

.fs18 {
    font-size: 1.8rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mt-20 {
    margin-top: 2rem;
}

a {
    text-decoration: none;
}

body :is(h1, h2, h3, h4, h5, a) {
    font-family: var(--heading-font);
}

body :is(h1, h2, h3, h4, h5, a) {
    font-weight: 600;
}

p {
    margin: 0;
}

.btn,
button {
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

section {
    padding: 5rem 0;
}

h1 {
    font-size: 6rem;
    color: var(--light-1);
    line-height: 7.2rem;
    letter-spacing: 0.12rem;
}

.heading {
    font-size: 3.6rem;
    letter-spacing: 0.72px;
    color: var(--light-1);
    margin-bottom: 6.5rem;
}

.heading-content p {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--heading-font);
    color: var(--light-1);
    line-height: 1.3;
    letter-spacing: 0.63px;
}

.heading-content {
    margin-bottom: 6.5rem;
}

body :is(.green-btn, .green-outline) {
    font-size: 1.6rem;

}

.green-btn {
    background: var(--secondary) !important;
    color: var(--primary);
    border-radius: 3rem;
    padding: .7rem 3rem;
    font-weight: 600;
}

.green-outline {
    border: .1rem solid var(--secondary) !important;
    background: var(--primary) !important;
    color: var(--secondary) !important;
    border-radius: 1rem;
    padding: 1rem 3rem;
    font-weight: 400;
}


@media (min-width: 768px) {
    .container-fluid {
        width: 96%;
    }

    .hide-desktop {
        display: none;
    }
}

@media (max-width: 768px) {

    .container,
    .container-fluid {
        padding: 0 2rem;
    }

    .hidden-xs {
        display: none;
    }

    .heading {
        font-size: 2rem;
        margin-bottom: 4.5rem;
        font-weight: 600;
    }

    .heading-content p {
        font-size: 1.4rem;
    }

    .xs-column-reverse {
        flex-direction: column-reverse;
    }

    .row-gap-50 {
        row-gap: 5rem;
    }

    .text-xs-center {
        text-align: center;
    }

    .fsm14 {
        font-size: 1.4rem;
    }
}