/**
 Font 'Manrope' is used as a fallback until 'GT Walsheim Pro' is bought.
 TODO: Buy 'GT Walsheim Pro' font and add @font-face.
*/

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 800;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --font-family:
            "GT Walsheim Pro",
            "Manrope",
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;

    --bg-color-primary: #FAFBFF;
    --bg-color-secondary: #E7E7EB;
    /*Dark-Shade-blue-50*/

    --Dark-Shade-blue-300: #5C5B76;
    --Dark-Shade-blue-200: #8F8EA1;
    --Dark-Shade-blue-500: #0B0A33;

    /*--color-gray: #75747D;*/
    /*--charcoal: #111111;*/
    /*--silver: #EEEEEE;*/
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family), sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    color: var(--color-black);
    background: var(--bg-color-primary);
}

.button {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: fit-content;
    text-decoration: none;
    outline: none;
}

.button-primary {
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid #E7E7EB;
    box-shadow: 0 10px 30px 0 rgba(230, 231, 234, 0.25), 0 -4px 0 0 #F1F1F6 inset;
}

.button-secondary {
    color: var(--color-white);
    border: 1px solid #3B269A;
    background: linear-gradient(142deg, #5335D9 23.13%, #3922A1 94.85%);
    box-shadow: 0 4px 12px 0 rgba(83, 53, 217, 0.20), 0 2px 4px 0 rgba(255, 255, 255, 0.48) inset;
}

.hidden {
    display: none !important;
}

.display-block {
    display: block !important;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
}
/* Default style for ALL pricing buttons */
.pricing-content .pricing-item-wrapper .button{
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

/* Hover */
.pricing-content .pricing-item-wrapper .button:hover{
    background: #000000;
    color: #ffffff;
}

/* Keep original color ONLY for the 3rd card */
.pricing-content .pricing-item-wrapper:nth-child(3) .button{
color: var(--color-white);
    border: 1px solid #3B269A;
    background: linear-gradient(142deg, #5335D9 23.13%, #3922A1 94.85%);
    box-shadow: 0 4px 12px 0 rgba(83, 53, 217, 0.20), 0 2px 4px 0 rgba(255, 255, 255, 0.48) inset;
}

html{
    scroll-behavior: smooth;
}