@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Figtree", sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

header {
    padding: 52px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --blue: #1366FC;
    --blue-faint: #5F90F7;
    --green: #15C39A;
    --primary: #404040;
    --secondary: #626262;
    --gradient: linear-gradient(90deg, #1179FC 0%, #15C39A 100%);
}

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

section {
    margin-top: 112px;
}

button {
    font-family: inherit;
    border: none;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    padding: 0 52px;
    color: white;
    font-weight: 600;
    border-radius: 14px;
    background: var(--blue);
    cursor: pointer;
}

button.transparent {
    gap: 12px;
    background: none;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0px;
}

button:hover {
    filter: brightness(1.1);
}

main {
    padding: 32px;
    max-width: 1092px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: var(--primary);
    font-size: 60px;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: -1.5px;
    margin: 0;
}

h2 {
    font-size: 42px;
    line-height: 140%;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    margin: 0;
}

p {
    margin: 0;
}

ol {
    list-style-type: none;
    padding: 0;
    margin: 0 0 42px 0;
}

ol li {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0 0 34px 0;
    color: #2F78FD;
    font-size: 26px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0px;
}

ol li.green {
    color: #10A582;
}

ol li.green span {
    color: #15C39A;
}

ol li span {
    text-align: center;
    width: 42px;
    min-width: 42px;
    font-size: 72px;
    font-weight: 900;
    line-height: 100%;
}

ol li:not(.green) span {
    background: linear-gradient(0deg, #1366FC 0%, #79A9FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.colored {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}