@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}

:root {
    --primary: #7f56d9;
    --secondary: #f4ebff;
    --text-primary: #101828;
    --text-secondary: #667085;
    --badge-bg: #ecfdf3;
    --badge-text: #027a48;
    --white: #fafafa;
    --dropdown-bg: rgb(252, 253, 251);
    --shadow: rgba(32, 7, 65, 0.14);
    --container: 1920px;
    --nav-height: 13rem;
    --undpds-spacing-09: 3rem;
    --undpds-color-gray-400: #d4d6d8;
    --undpds-color-black: #000;
    --ink: #012740;
    --accent: #004370;
    --accent-2: #1b74b8;
    --panel: #ffffff;
    --panel-border: #e7eef6;
}

html {
    font-family: "Inter", sans-serif;
    font-size: 62.5%;
    font-style: normal;
}

body {
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: unset;
}

.container {
    max-width: unset;
    margin: 0 auto;
    padding: 0 0;
}
