@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&family=Nunito+Sans:wght@200;300;400;500;600;700;800;900;1000&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-hind-maduri: 'Hind Maduri', sans-serif;
    --font-nunito-sans: 'Nunito Sans', sans-serif;
    --font-nunito: 'Nunito', sans-serif;
    --primary-color-100: #E31E24;
    --primary-color-200: #E84449;
    --primary-color-300: #EC696D;
    --primary-color-400: #F18E91;
    --primary-color-500: #F6B4B6;
    --primary-color-600: #F9D2D3;
    --secondary-color-100: #2B2A29;
    --secondary-color-200: #4E4E4D;
    --secondary-color-300: #727170;
    --secondary-color-400: #959494;
    --secondary-color-500: #B8B8B8;
    --secondary-color-600: #D5D4D4;
    --gray-color-100: #333333;
    --gray-color-200: #555555;
    --gray-color-300: #777777;
    --gray-color-400: #999999;
    --gray-color-500: #BBBBBB;
    --gray-color-600: #DDDDDD;
    --dark-shade: #040404;
    --white-shade: #FFFFFF;
}

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



body {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

body::-webkit-scrollbar {
    display: none;
}


.white-shade {
    color: #FFFFFF !important;
}

h1 {
    font-family: var(--font-nunito-sans);
    font-weight: 700;
    color: var(--gray-color-100);
    font-size: 88px;
    line-height: 110px;
}

h2 {
    font-family: var(--font-nunito-sans);
    font-weight: 700;
    color: var(--gray-color-100);
    font-size: 56px;
    line-height: 70px;
}

h3 {
    font-family: var(--font-nunito-sans);
    font-weight: 700;
    color: var(--gray-color-100);
    font-size: 48px;
    line-height: 60px;
}

h4 {
    font-family: var(--font-nunito);
    font-weight: 600;
    color: var(--gray-color-100);
    font-size: 40px;
    line-height: 50px;
}

h5 {
    font-family: var(--font-nunito);
    font-weight: 700;
    color: var(--gray-color-100);
    font-size: 32px;
    line-height: 40px;
}

h6 {
    font-family: var(--font-nunito-sans);
    font-weight: 600;
    color: var(--gray-color-100);
    font-size: 24px;
    line-height: 30px;
}

.body-text-large {
    font-family: var(--font-hind-maduri);
    font-weight: 400;
    color: var(--gray-color-100);
    font-size: 20px;
    line-height: 30px;
}

.body-text {
    font-family: var(--font-hind-maduri);
    font-weight: 400;
    color: var(--gray-color-100);
    font-size: 16px;
    line-height: 24px;
}

.body-text-white {
    font-family: var(--font-hind-maduri);
    font-weight: 400;
    color: var(--white-shade);
    font-size: 16px;
    line-height: 24px;
}

.button-text {
    font-family: var(--font-hind-maduri);
    font-weight: 400;
    color: var(--gray-color-100);
    font-size: 18px;
    line-height: 27px;
}

.caption {
    font-family: var(--font-hind-maduri);
    font-weight: 400;
    color: var(--gray-color-100);
    font-size: 14px;
    line-height: 21px;
}

.caption-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    color: var(--gray-color-600);
    font-size: 14px;
    line-height: 21px;
}



.body-text-large-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.body-text-large-bold-white {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    font-size: 20px;
    color: var(--white-shade);
    line-height: 30px;
}

.body-text-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    color: var(--gray-color-100);
    font-size: 16px;
    line-height: 24px;
}


.body-text-white-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    color: var(--white-shade);
    font-size: 16px;
    line-height: 24px;
}

.body-text-white-bold.active {
    border-bottom: solid 2px var(--white-shade);
    padding-bottom: 8px;
}

.button-text-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    color: var(--gray-color-100);
    font-size: 18px;
    line-height: 27px;
}

.caption-bold {
    font-family: var(--font-hind-maduri);
    font-weight: 600;
    color: #DDDDDD;
    font-size: 14px;
    line-height: 21px;
}

.flex {
    display: flex;
    align-items: center;
    height: 100%;
}

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

.flex-justify-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flex-space-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.primary-button {
    padding: 12px 40px;
    border-radius: 40px;
    background: var(--primary-color-100);
    color: var(--white-shade);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    font-family: var(--font-hind-maduri);
    transition: ease-out 300ms;
    outline: none;
}

.primary-button:hover {
    padding: 12px 40px;
    border-radius: 40px;
    background: transparent !important;
    border: solid 2px var(--primary-color-100);
    color: var(--primary-color-100) !important;
    transition: ease-out 300ms;
    outline: none;
}

.secondary-button {
    padding: 12px 40px;
    border-radius: 40px;
    background: transparent;
    border: solid 2px var(--white-shade);
    color: var(--white-shade);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    font-family: var(--font-hind-maduri);
    transition: ease-out 300ms;
    outline: none;
}

.text-button {
    color: var(--primary-color-100);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    font-family: var(--font-hind-maduri);
    transition: ease-out 300ms;
}

.text-button {
    color: var(--primary-color-100);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    font-family: var(--font-hind-maduri);
    transition: ease-out 300ms;
}



.secondary-button:hover {
    padding: 12px 40px;
    border-radius: 40px;
    background: #2B2A29;
    color: var(--white-shade);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    font-family: var(--font-hind-maduri);
    transition: ease-out 300ms;
    border: none;
    outline: none;
}


.primary-button:hover {
    padding: 12px 40px;
    border-radius: 40px;
    background-color: var(--secondary-color-100);
    color: var(--white-shade);
    outline: none;
}

.container {
    padding: 50px 80px;
    width: 100%;
    height: 100vh;
}

.container-small {
    padding: 50px 100px;
    width: 100%;
    height: 100vh;
}

.container-medium {
    padding: 50px 140px;
    width: 100%;
    height: 100vh;
}

.container-large {
    padding: 50px 200px;
    width: 100%;
}

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

@media (max-width: 1024px) {
    .flex {
        display: flex;
        flex-direction: row !important;
        align-items: flex-start;
        height: 100%;
    }

    .container {
        padding: 50px 40px;
        width: 100%;
        height: fit-content;
    }

    .container-small {
        padding: 50px 40px;
        width: 100%;
        height: fit-content;
    }

    .container-medium {
        padding: 50px 60px;
        width: 100%;
        height: fit-content;
    }

    .container-large {
        padding: 50px 120px;
        width: 100%;
    }

    h1 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 54px;
        line-height: 80px;
    }

    h2 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 28px;
        line-height: 40px;
    }

    h3 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 24px;
        line-height: 40px;
    }

    h4 {
        font-family: var(--font-nunito);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 20px;
        line-height: 30px;
    }

    h5 {
        font-family: var(--font-nunito);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 18px;
        line-height: 30px !important;
    }

    h6 {
        font-family: var(--font-nunito-sans);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 30px;
    }

    .body-text-large {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--gray-color-100);
        font-size: 20px;
        line-height: 30px;
    }

    .body-text {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 24px;
    }

    .body-text-white {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--white-shade);
        font-size: 16px;
        line-height: 24px;
    }

    .body-text-large-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
    }

    .body-text-large-bold-white {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        font-size: 20px;
        color: var(--white-shade);
        line-height: 30px;
    }

    .body-text-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 24px;
    }


    .body-text-white-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        color: var(--white-shade);
        font-size: 16px;
        line-height: 24px;
    }


    .primary-button {
        padding: 12px 30px;
        border-radius: 40px;
        background: var(--primary-color-100);
        color: var(--white-shade);
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        margin-bottom: 15px !important;
        outline: none;
    }

    .primary-button:hover {
        padding: 12px 30px;
        border-radius: 40px;
        background: transparent !important;
        border: solid 2px var(--primary-color-100);
        color: var(--primary-color-100) !important;
        transition: ease-out 300ms;
        outline: none;
    }

    .secondary-button {
        padding: 12px 30px;
        border-radius: 40px;
        background: transparent;
        border: solid 2px var(--white-shade);
        color: var(--white-shade);
        font-weight: 600;
        outline: none;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        margin-bottom: 15px !important;
    }


    .secondary-button:hover {
        padding: 12px 30px;
        border-radius: 40px;
        background: #2B2A29;
        color: var(--white-shade);
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        border: none;
        outline: none;
    }

}

@media screen and (max-width: 600px) {
    .flex {
        display: flex;
        flex-direction: column !important;
        align-items: flex-start;
        height: 100%;
    }

    .what-we-do-image img {
        width: 300px !important;
        height: 274px !important;
      }
    .container {
        padding: 50px 20px;
        width: 100%;
        height: fit-content;
    }

    .container-small {
        padding: 50px 20px;
        width: 100%;
        height: fit-content;
    }

    .container-medium {
        padding: 50px 20px;
        width: 100%;
        height: fit-content;
    }

    .container-large {
        padding: 50px 20px;
        width: 100%;
    }

    h1 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 54px;
        line-height: 80px;
    }

    h2 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 28px;
        line-height: 40px;
    }

    h3 {
        font-family: var(--font-nunito-sans);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 24px;
        line-height: 40px;
    }

    h4 {
        font-family: var(--font-nunito);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 20px;
        line-height: 30px;
    }

    h5 {
        font-family: var(--font-nunito);
        font-weight: 700;
        color: var(--gray-color-100);
        font-size: 18px;
        line-height: 30px !important;
    }

    h6 {
        font-family: var(--font-nunito-sans);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 30px;
    }

    .body-text-large {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--gray-color-100);
        font-size: 20px;
        line-height: 30px;
    }

    .body-text {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 24px;
    }

    .body-text-white {
        font-family: var(--font-hind-maduri);
        font-weight: 400;
        color: var(--white-shade);
        font-size: 16px;
        line-height: 24px;
    }

    .body-text-large-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
    }

    .body-text-large-bold-white {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        font-size: 20px;
        color: var(--white-shade);
        line-height: 30px;
    }

    .body-text-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        color: var(--gray-color-100);
        font-size: 16px;
        line-height: 24px;
    }


    .body-text-white-bold {
        font-family: var(--font-hind-maduri);
        font-weight: 600;
        color: var(--white-shade);
        font-size: 16px;
        line-height: 24px;
    }


    .primary-button {
        padding: 12px 30px;
        border-radius: 40px;
        background: var(--primary-color-100);
        color: var(--white-shade);
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        margin-bottom: 15px !important;
        outline: none;
    }

    .primary-button:hover {
        padding: 12px 30px;
        border-radius: 40px;
        background: transparent !important;
        border: solid 2px var(--primary-color-100);
        color: var(--primary-color-100) !important;
        transition: ease-out 300ms;
        outline: none;
    }

    .secondary-button {
        padding: 12px 30px;
        border-radius: 40px;
        background: transparent;
        border: solid 2px var(--white-shade);
        color: var(--white-shade);
        font-weight: 600;
        outline: none;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        margin-bottom: 15px !important;
    }


    .secondary-button:hover {
        padding: 12px 30px;
        border-radius: 40px;
        background: #2B2A29;
        color: var(--white-shade);
        font-weight: 600;
        font-size: 18px;
        line-height: 150%;
        font-family: var(--font-hind-maduri);
        transition: ease-out 300ms;
        border: none;
        outline: none;
    }

}
