: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: #000;
    --black-2: #434343;
    --border-color: #dddddd2e;
    --body-font: "Inter", sans-serif;
    --heading-font: "Kumbh Sans", sans-serif;
    --dm-sans: "DM 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;
}

.fs10 {
    font-size: 1rem;
}

img {
    max-width: 100%;
}

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

.flex-1 {
    flex: 1;
}

.fs20 {
    font-size: 2rem;
}

.fs22 {
    font-size: 2.2rem;
}

.fs12 {
    font-size: 1.2rem;
}

.fs30 {
    font-size: 3rem;
}

.fs24 {
    font-size: 2.4rem;
}

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

.text-primary {
    color: var(--white) !important;
}

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;
}

.text-light {
    color: var(--light) !important;
}

.text-light-1 {
    color: var(--light-1) !important;
}

h1 {
    font-size: 5.5rem;
    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;
}

.arrow-right {
    rotate: -90deg;
    height: 1.2rem;
    width: 1.2rem;
}

svg.home {
    height: 1.6rem;
    width: 1.6rem;
}

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

    .hide-desktop {
        display: none;
    }
}

@media (max-width: 768px) {

.fsm16{
font-size:1.6rem;
}

    .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;
    }

    .fsm24 {
        font-size: 2.4rem;
    }

    .fsm18 {
        font-size: 1.8rem;
    }

    .fsm12 {
        font-size: 1.2rem;
    }



    .breadcrumb .title {
        width: 75%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}